add register_listener permission

DreamingCodes committed Aug 31, 2024 at 17:40 UTC 276d847ca01a28c70c609b49bb0a39d32344c12d
12 files changed +1612 -1112
.envrc new
+1
@@ -0,0 +1 @@
1 +use flake
.gitignore
+2 -1
@@ -7,6 +7,7 @@ debug.log
7 package-lock.json
8 .vscode/settings.json
9 yarn.lock
10 +/.direnv
11
12 /.tauri
13 /target
@@ -17,4 +18,4 @@ dist-js
18 dist
19
20 # Project exclude paths
20 -/android/.gradle/
\ No newline at end of file
21 +/android/.gradle/
build.rs
+1 -1
@@ -1,4 +1,4 @@
1 -const COMMANDS: &[&str] = &["trackingAuthorizationStatus", "requestTrackingAuthorization", "configure", "configRequest", "adCreate", "adIsLoaded", "adLoad", "adShow", "adHide", "isPrivacyOptionsRequired", "showPrivacyOptionsForm"];
1 +const COMMANDS: &[&str] = &["trackingAuthorizationStatus", "requestTrackingAuthorization", "configure", "configRequest", "adCreate", "adIsLoaded", "adLoad", "adShow", "adHide", "isPrivacyOptionsRequired", "showPrivacyOptionsForm", "register_listener"];
2
3 fn main() {
4 tauri_plugin::Builder::new(COMMANDS)
devshell.nix new
+60
@@ -0,0 +1,60 @@
1 +{ pkgs }:
2 +
3 +with pkgs;
4 +
5 +# Configure your development environment.
6 +#
7 +# Documentation: https://github.com/numtide/devshell
8 +devshell.mkShell {
9 + name = "android-project";
10 + motd = ''
11 + Entered the Android app development environment.
12 + '';
13 + env = [
14 + {
15 + name = "ANDROID_HOME";
16 + value = "${android-sdk}/share/android-sdk";
17 + }
18 + {
19 + name = "ANDROID_SDK_ROOT";
20 + value = "${android-sdk}/share/android-sdk";
21 + }
22 + {
23 + name = "NDK_HOME";
24 + value = "${android-sdk}/share/android-sdk/ndk/26.1.10909125";
25 + }
26 + {
27 + name = "JAVA_HOME";
28 + value = jdk17.home;
29 + }
30 + {
31 + name = "PKG_CONFIG_PATH";
32 + value = "${pkgs.openssl.dev}/lib/pkgconfig";
33 + }
34 + ];
35 + packages = [
36 + android-sdk
37 + gradle
38 + jdk17
39 + webkitgtk_4_1
40 + file
41 + openssl
42 + libiconv
43 + pkg-config
44 + libappindicator-gtk3
45 + librsvg
46 + rustup
47 + cargo-make
48 + gcc
49 + cargo-watch
50 + sqlx-cli
51 + bun
52 + nodejs
53 + jq
54 + ];
55 +
56 + devshell.startup.initRust.text = ''
57 + rustup default stable
58 + rustup target add aarch64-linux-android armv7-linux-androideabi i686-linux-android x86_64-linux-android
59 + '';
60 +}
examples/tauri-app/src-tauri/gen/schemas/android-schema.json
+609 -553
@@ -37,7 +37,7 @@
37 ],
38 "definitions": {
39 "Capability": {
40 - "description": "A grouping and boundary mechanism developers can use to isolate access to the IPC layer.\n\nIt controls application windows fine grained access to the Tauri core, application, or plugin commands. If a window is not matching any capability then it has no access to the IPC layer at all.\n\nThis can be done to create groups of windows, based on their required system access, which can reduce impact of frontend vulnerabilities in less privileged windows. Windows can be added to a capability by exact name (e.g. `main-window`) or glob patterns like `*` or `admin-*`. A Window can have none, one, or multiple associated capabilities.\n\n## Example\n\n```json { \"identifier\": \"main-user-files-write\", \"description\": \"This capability allows the `main` window on macOS and Windows access to `filesystem` write related commands and `dialog` commands to enable programatic access to files selected by the user.\", \"windows\": [ \"main\" ], \"permissions\": [ \"path:default\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] }, \"platforms\": [\"macOS\",\"windows\"] } ```",
40 + "description": "A grouping and boundary mechanism developers can use to isolate access to the IPC layer.\n\nIt controls application windows fine grained access to the Tauri core, application, or plugin commands. If a window is not matching any capability then it has no access to the IPC layer at all.\n\nThis can be done to create groups of windows, based on their required system access, which can reduce impact of frontend vulnerabilities in less privileged windows. Windows can be added to a capability by exact name (e.g. `main-window`) or glob patterns like `*` or `admin-*`. A Window can have none, one, or multiple associated capabilities.\n\n## Example\n\n```json { \"identifier\": \"main-user-files-write\", \"description\": \"This capability allows the `main` window on macOS and Windows access to `filesystem` write related commands and `dialog` commands to enable programatic access to files selected by the user.\", \"windows\": [ \"main\" ], \"permissions\": [ \"core:default\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] }, \"platforms\": [\"macOS\",\"windows\"] } ```",
41 "type": "object",
42 "required": [
43 "identifier",
@@ -84,7 +84,7 @@
84 }
85 },
86 "permissions": {
87 - "description": "List of permissions attached to this capability.\n\nMust include the plugin name as prefix in the form of `${plugin-name}:${permission-name}`. For commands directly implemented in the application itself only `${permission-name}` is required.\n\n## Example\n\n```json [ \"path:default\", \"event:default\", \"window:default\", \"app:default\", \"image:default\", \"resources:default\", \"menu:default\", \"tray:default\", \"shell:allow-open\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] } ```",
87 + "description": "List of permissions attached to this capability.\n\nMust include the plugin name as prefix in the form of `${plugin-name}:${permission-name}`. For commands directly implemented in the application itself only `${permission-name}` is required.\n\n## Example\n\n```json [ \"core:default\", \"shell:allow-open\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] } ```",
88 "type": "array",
89 "items": {
90 "$ref": "#/definitions/PermissionEntry"
@@ -234,6 +234,13 @@
234 "admob:allow-isPrivacyOptionsRequired"
235 ]
236 },
237 + {
238 + "description": "admob:allow-register-listener -> Enables the register_listener command without any pre-configured scope.",
239 + "type": "string",
240 + "enum": [
241 + "admob:allow-register-listener"
242 + ]
243 + },
244 {
245 "description": "admob:allow-requestTrackingAuthorization -> Enables the requestTrackingAuthorization command without any pre-configured scope.",
246 "type": "string",
@@ -311,6 +318,13 @@
318 "admob:deny-isPrivacyOptionsRequired"
319 ]
320 },
321 + {
322 + "description": "admob:deny-register-listener -> Denies the register_listener command without any pre-configured scope.",
323 + "type": "string",
324 + "enum": [
325 + "admob:deny-register-listener"
326 + ]
327 + },
328 {
329 "description": "admob:deny-requestTrackingAuthorization -> Denies the requestTrackingAuthorization command without any pre-configured scope.",
330 "type": "string",
@@ -333,1934 +347,1976 @@
347 ]
348 },
349 {
336 - "description": "app:default -> Default permissions for the plugin.",
350 + "description": "core:app:default -> Default permissions for the plugin.",
351 "type": "string",
352 "enum": [
339 - "app:default"
353 + "core:app:default"
354 ]
355 },
356 {
343 - "description": "app:allow-app-hide -> Enables the app_hide command without any pre-configured scope.",
357 + "description": "core:app:allow-app-hide -> Enables the app_hide command without any pre-configured scope.",
358 "type": "string",
359 "enum": [
346 - "app:allow-app-hide"
360 + "core:app:allow-app-hide"
361 ]
362 },
363 {
350 - "description": "app:allow-app-show -> Enables the app_show command without any pre-configured scope.",
364 + "description": "core:app:allow-app-show -> Enables the app_show command without any pre-configured scope.",
365 "type": "string",
366 "enum": [
353 - "app:allow-app-show"
367 + "core:app:allow-app-show"
368 ]
369 },
370 {
357 - "description": "app:allow-default-window-icon -> Enables the default_window_icon command without any pre-configured scope.",
371 + "description": "core:app:allow-default-window-icon -> Enables the default_window_icon command without any pre-configured scope.",
372 "type": "string",
373 "enum": [
360 - "app:allow-default-window-icon"
374 + "core:app:allow-default-window-icon"
375 ]
376 },
377 {
364 - "description": "app:allow-name -> Enables the name command without any pre-configured scope.",
378 + "description": "core:app:allow-name -> Enables the name command without any pre-configured scope.",
379 "type": "string",
380 "enum": [
367 - "app:allow-name"
381 + "core:app:allow-name"
382 ]
383 },
384 {
371 - "description": "app:allow-tauri-version -> Enables the tauri_version command without any pre-configured scope.",
385 + "description": "core:app:allow-tauri-version -> Enables the tauri_version command without any pre-configured scope.",
386 "type": "string",
387 "enum": [
374 - "app:allow-tauri-version"
388 + "core:app:allow-tauri-version"
389 ]
390 },
391 {
378 - "description": "app:allow-version -> Enables the version command without any pre-configured scope.",
392 + "description": "core:app:allow-version -> Enables the version command without any pre-configured scope.",
393 "type": "string",
394 "enum": [
381 - "app:allow-version"
395 + "core:app:allow-version"
396 ]
397 },
398 {
385 - "description": "app:deny-app-hide -> Denies the app_hide command without any pre-configured scope.",
399 + "description": "core:app:deny-app-hide -> Denies the app_hide command without any pre-configured scope.",
400 "type": "string",
401 "enum": [
388 - "app:deny-app-hide"
402 + "core:app:deny-app-hide"
403 ]
404 },
405 {
392 - "description": "app:deny-app-show -> Denies the app_show command without any pre-configured scope.",
406 + "description": "core:app:deny-app-show -> Denies the app_show command without any pre-configured scope.",
407 "type": "string",
408 "enum": [
395 - "app:deny-app-show"
409 + "core:app:deny-app-show"
410 ]
411 },
412 {
399 - "description": "app:deny-default-window-icon -> Denies the default_window_icon command without any pre-configured scope.",
413 + "description": "core:app:deny-default-window-icon -> Denies the default_window_icon command without any pre-configured scope.",
414 "type": "string",
415 "enum": [
402 - "app:deny-default-window-icon"
416 + "core:app:deny-default-window-icon"
417 ]
418 },
419 {
406 - "description": "app:deny-name -> Denies the name command without any pre-configured scope.",
420 + "description": "core:app:deny-name -> Denies the name command without any pre-configured scope.",
421 "type": "string",
422 "enum": [
409 - "app:deny-name"
423 + "core:app:deny-name"
424 ]
425 },
426 {
413 - "description": "app:deny-tauri-version -> Denies the tauri_version command without any pre-configured scope.",
427 + "description": "core:app:deny-tauri-version -> Denies the tauri_version command without any pre-configured scope.",
428 "type": "string",
429 "enum": [
416 - "app:deny-tauri-version"
430 + "core:app:deny-tauri-version"
431 ]
432 },
433 {
420 - "description": "app:deny-version -> Denies the version command without any pre-configured scope.",
434 + "description": "core:app:deny-version -> Denies the version command without any pre-configured scope.",
435 "type": "string",
436 "enum": [
423 - "app:deny-version"
437 + "core:app:deny-version"
438 ]
439 },
440 {
441 + "description": "core:event:default -> Default permissions for the plugin.",
442 "type": "string",
443 "enum": [
429 - "devtools:default"
444 + "core:event:default"
445 + ]
446 + },
447 + {
448 + "description": "core:event:allow-emit -> Enables the emit command without any pre-configured scope.",
449 + "type": "string",
450 + "enum": [
451 + "core:event:allow-emit"
452 + ]
453 + },
454 + {
455 + "description": "core:event:allow-emit-to -> Enables the emit_to command without any pre-configured scope.",
456 + "type": "string",
457 + "enum": [
458 + "core:event:allow-emit-to"
459 ]
460 },
461 {
433 - "description": "event:default -> Default permissions for the plugin.",
462 + "description": "core:event:allow-listen -> Enables the listen command without any pre-configured scope.",
463 "type": "string",
464 "enum": [
436 - "event:default"
465 + "core:event:allow-listen"
466 ]
467 },
468 {
440 - "description": "event:allow-emit -> Enables the emit command without any pre-configured scope.",
469 + "description": "core:event:allow-unlisten -> Enables the unlisten command without any pre-configured scope.",
470 "type": "string",
471 "enum": [
443 - "event:allow-emit"
472 + "core:event:allow-unlisten"
473 ]
474 },
475 {
447 - "description": "event:allow-emit-to -> Enables the emit_to command without any pre-configured scope.",
476 + "description": "core:event:deny-emit -> Denies the emit command without any pre-configured scope.",
477 "type": "string",
478 "enum": [
450 - "event:allow-emit-to"
479 + "core:event:deny-emit"
480 ]
481 },
482 {
454 - "description": "event:allow-listen -> Enables the listen command without any pre-configured scope.",
483 + "description": "core:event:deny-emit-to -> Denies the emit_to command without any pre-configured scope.",
484 "type": "string",
485 "enum": [
457 - "event:allow-listen"
486 + "core:event:deny-emit-to"
487 ]
488 },
489 {
461 - "description": "event:allow-unlisten -> Enables the unlisten command without any pre-configured scope.",
490 + "description": "core:event:deny-listen -> Denies the listen command without any pre-configured scope.",
491 "type": "string",
492 "enum": [
464 - "event:allow-unlisten"
493 + "core:event:deny-listen"
494 ]
495 },
496 {
468 - "description": "event:deny-emit -> Denies the emit command without any pre-configured scope.",
497 + "description": "core:event:deny-unlisten -> Denies the unlisten command without any pre-configured scope.",
498 "type": "string",
499 "enum": [
471 - "event:deny-emit"
500 + "core:event:deny-unlisten"
501 ]
502 },
503 {
475 - "description": "event:deny-emit-to -> Denies the emit_to command without any pre-configured scope.",
504 + "description": "core:image:default -> Default permissions for the plugin.",
505 "type": "string",
506 "enum": [
478 - "event:deny-emit-to"
507 + "core:image:default"
508 ]
509 },
510 {
482 - "description": "event:deny-listen -> Denies the listen command without any pre-configured scope.",
511 + "description": "core:image:allow-from-bytes -> Enables the from_bytes command without any pre-configured scope.",
512 "type": "string",
513 "enum": [
485 - "event:deny-listen"
514 + "core:image:allow-from-bytes"
515 ]
516 },
517 {
489 - "description": "event:deny-unlisten -> Denies the unlisten command without any pre-configured scope.",
518 + "description": "core:image:allow-from-path -> Enables the from_path command without any pre-configured scope.",
519 "type": "string",
520 "enum": [
492 - "event:deny-unlisten"
521 + "core:image:allow-from-path"
522 ]
523 },
524 {
496 - "description": "image:default -> Default permissions for the plugin.",
525 + "description": "core:image:allow-new -> Enables the new command without any pre-configured scope.",
526 "type": "string",
527 "enum": [
499 - "image:default"
528 + "core:image:allow-new"
529 ]
530 },
531 {
503 - "description": "image:allow-from-bytes -> Enables the from_bytes command without any pre-configured scope.",
532 + "description": "core:image:allow-rgba -> Enables the rgba command without any pre-configured scope.",
533 "type": "string",
534 "enum": [
506 - "image:allow-from-bytes"
535 + "core:image:allow-rgba"
536 ]
537 },
538 {
510 - "description": "image:allow-from-path -> Enables the from_path command without any pre-configured scope.",
539 + "description": "core:image:allow-size -> Enables the size command without any pre-configured scope.",
540 "type": "string",
541 "enum": [
513 - "image:allow-from-path"
542 + "core:image:allow-size"
543 ]
544 },
545 {
517 - "description": "image:allow-new -> Enables the new command without any pre-configured scope.",
546 + "description": "core:image:deny-from-bytes -> Denies the from_bytes command without any pre-configured scope.",
547 "type": "string",
548 "enum": [
520 - "image:allow-new"
549 + "core:image:deny-from-bytes"
550 ]
551 },
552 {
524 - "description": "image:allow-rgba -> Enables the rgba command without any pre-configured scope.",
553 + "description": "core:image:deny-from-path -> Denies the from_path command without any pre-configured scope.",
554 "type": "string",
555 "enum": [
527 - "image:allow-rgba"
556 + "core:image:deny-from-path"
557 ]
558 },
559 {
531 - "description": "image:allow-size -> Enables the size command without any pre-configured scope.",
560 + "description": "core:image:deny-new -> Denies the new command without any pre-configured scope.",
561 "type": "string",
562 "enum": [
534 - "image:allow-size"
563 + "core:image:deny-new"
564 ]
565 },
566 {
538 - "description": "image:deny-from-bytes -> Denies the from_bytes command without any pre-configured scope.",
567 + "description": "core:image:deny-rgba -> Denies the rgba command without any pre-configured scope.",
568 "type": "string",
569 "enum": [
541 - "image:deny-from-bytes"
570 + "core:image:deny-rgba"
571 ]
572 },
573 {
545 - "description": "image:deny-from-path -> Denies the from_path command without any pre-configured scope.",
574 + "description": "core:image:deny-size -> Denies the size command without any pre-configured scope.",
575 "type": "string",
576 "enum": [
548 - "image:deny-from-path"
577 + "core:image:deny-size"
578 ]
579 },
580 {
552 - "description": "image:deny-new -> Denies the new command without any pre-configured scope.",
581 + "description": "core:menu:default -> Default permissions for the plugin.",
582 "type": "string",
583 "enum": [
555 - "image:deny-new"
584 + "core:menu:default"
585 ]
586 },
587 {
559 - "description": "image:deny-rgba -> Denies the rgba command without any pre-configured scope.",
588 + "description": "core:menu:allow-append -> Enables the append command without any pre-configured scope.",
589 "type": "string",
590 "enum": [
562 - "image:deny-rgba"
591 + "core:menu:allow-append"
592 ]
593 },
594 {
566 - "description": "image:deny-size -> Denies the size command without any pre-configured scope.",
595 + "description": "core:menu:allow-create-default -> Enables the create_default command without any pre-configured scope.",
596 "type": "string",
597 "enum": [
569 - "image:deny-size"
598 + "core:menu:allow-create-default"
599 ]
600 },
601 {
573 - "description": "menu:default -> Default permissions for the plugin.",
602 + "description": "core:menu:allow-get -> Enables the get command without any pre-configured scope.",
603 "type": "string",
604 "enum": [
576 - "menu:default"
605 + "core:menu:allow-get"
606 ]
607 },
608 {
580 - "description": "menu:allow-append -> Enables the append command without any pre-configured scope.",
609 + "description": "core:menu:allow-insert -> Enables the insert command without any pre-configured scope.",
610 "type": "string",
611 "enum": [
583 - "menu:allow-append"
612 + "core:menu:allow-insert"
613 ]
614 },
615 {
587 - "description": "menu:allow-create-default -> Enables the create_default command without any pre-configured scope.",
616 + "description": "core:menu:allow-is-checked -> Enables the is_checked command without any pre-configured scope.",
617 "type": "string",
618 "enum": [
590 - "menu:allow-create-default"
619 + "core:menu:allow-is-checked"
620 ]
621 },
622 {
594 - "description": "menu:allow-get -> Enables the get command without any pre-configured scope.",
623 + "description": "core:menu:allow-is-enabled -> Enables the is_enabled command without any pre-configured scope.",
624 "type": "string",
625 "enum": [
597 - "menu:allow-get"
626 + "core:menu:allow-is-enabled"
627 ]
628 },
629 {
601 - "description": "menu:allow-insert -> Enables the insert command without any pre-configured scope.",
630 + "description": "core:menu:allow-items -> Enables the items command without any pre-configured scope.",
631 "type": "string",
632 "enum": [
604 - "menu:allow-insert"
633 + "core:menu:allow-items"
634 ]
635 },
636 {
608 - "description": "menu:allow-is-checked -> Enables the is_checked command without any pre-configured scope.",
637 + "description": "core:menu:allow-new -> Enables the new command without any pre-configured scope.",
638 "type": "string",
639 "enum": [
611 - "menu:allow-is-checked"
640 + "core:menu:allow-new"
641 ]
642 },
643 {
615 - "description": "menu:allow-is-enabled -> Enables the is_enabled command without any pre-configured scope.",
644 + "description": "core:menu:allow-popup -> Enables the popup command without any pre-configured scope.",
645 "type": "string",
646 "enum": [
618 - "menu:allow-is-enabled"
647 + "core:menu:allow-popup"
648 ]
649 },
650 {
622 - "description": "menu:allow-items -> Enables the items command without any pre-configured scope.",
651 + "description": "core:menu:allow-prepend -> Enables the prepend command without any pre-configured scope.",
652 "type": "string",
653 "enum": [
625 - "menu:allow-items"
654 + "core:menu:allow-prepend"
655 ]
656 },
657 {
629 - "description": "menu:allow-new -> Enables the new command without any pre-configured scope.",
658 + "description": "core:menu:allow-remove -> Enables the remove command without any pre-configured scope.",
659 "type": "string",
660 "enum": [
632 - "menu:allow-new"
661 + "core:menu:allow-remove"
662 ]
663 },
664 {
636 - "description": "menu:allow-popup -> Enables the popup command without any pre-configured scope.",
665 + "description": "core:menu:allow-remove-at -> Enables the remove_at command without any pre-configured scope.",
666 "type": "string",
667 "enum": [
639 - "menu:allow-popup"
668 + "core:menu:allow-remove-at"
669 ]
670 },
671 {
643 - "description": "menu:allow-prepend -> Enables the prepend command without any pre-configured scope.",
672 + "description": "core:menu:allow-set-accelerator -> Enables the set_accelerator command without any pre-configured scope.",
673 "type": "string",
674 "enum": [
646 - "menu:allow-prepend"
675 + "core:menu:allow-set-accelerator"
676 ]
677 },
678 {
650 - "description": "menu:allow-remove -> Enables the remove command without any pre-configured scope.",
679 + "description": "core:menu:allow-set-as-app-menu -> Enables the set_as_app_menu command without any pre-configured scope.",
680 "type": "string",
681 "enum": [
653 - "menu:allow-remove"
682 + "core:menu:allow-set-as-app-menu"
683 ]
684 },
685 {
657 - "description": "menu:allow-remove-at -> Enables the remove_at command without any pre-configured scope.",
686 + "description": "core:menu:allow-set-as-help-menu-for-nsapp -> Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.",
687 "type": "string",
688 "enum": [
660 - "menu:allow-remove-at"
689 + "core:menu:allow-set-as-help-menu-for-nsapp"
690 ]
691 },
692 {
664 - "description": "menu:allow-set-accelerator -> Enables the set_accelerator command without any pre-configured scope.",
693 + "description": "core:menu:allow-set-as-window-menu -> Enables the set_as_window_menu command without any pre-configured scope.",
694 "type": "string",
695 "enum": [
667 - "menu:allow-set-accelerator"
696 + "core:menu:allow-set-as-window-menu"
697 ]
698 },
699 {
671 - "description": "menu:allow-set-as-app-menu -> Enables the set_as_app_menu command without any pre-configured scope.",
700 + "description": "core:menu:allow-set-as-windows-menu-for-nsapp -> Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
701 "type": "string",
702 "enum": [
674 - "menu:allow-set-as-app-menu"
703 + "core:menu:allow-set-as-windows-menu-for-nsapp"
704 ]
705 },
706 {
678 - "description": "menu:allow-set-as-help-menu-for-nsapp -> Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.",
707 + "description": "core:menu:allow-set-checked -> Enables the set_checked command without any pre-configured scope.",
708 "type": "string",
709 "enum": [
681 - "menu:allow-set-as-help-menu-for-nsapp"
710 + "core:menu:allow-set-checked"
711 ]
712 },
713 {
685 - "description": "menu:allow-set-as-window-menu -> Enables the set_as_window_menu command without any pre-configured scope.",
714 + "description": "core:menu:allow-set-enabled -> Enables the set_enabled command without any pre-configured scope.",
715 "type": "string",
716 "enum": [
688 - "menu:allow-set-as-window-menu"
717 + "core:menu:allow-set-enabled"
718 ]
719 },
720 {
692 - "description": "menu:allow-set-as-windows-menu-for-nsapp -> Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
721 + "description": "core:menu:allow-set-icon -> Enables the set_icon command without any pre-configured scope.",
722 "type": "string",
723 "enum": [
695 - "menu:allow-set-as-windows-menu-for-nsapp"
724 + "core:menu:allow-set-icon"
725 ]
726 },
727 {
699 - "description": "menu:allow-set-checked -> Enables the set_checked command without any pre-configured scope.",
728 + "description": "core:menu:allow-set-text -> Enables the set_text command without any pre-configured scope.",
729 "type": "string",
730 "enum": [
702 - "menu:allow-set-checked"
731 + "core:menu:allow-set-text"
732 ]
733 },
734 {
706 - "description": "menu:allow-set-enabled -> Enables the set_enabled command without any pre-configured scope.",
735 + "description": "core:menu:allow-text -> Enables the text command without any pre-configured scope.",
736 "type": "string",
737 "enum": [
709 - "menu:allow-set-enabled"
738 + "core:menu:allow-text"
739 ]
740 },
741 {
713 - "description": "menu:allow-set-icon -> Enables the set_icon command without any pre-configured scope.",
742 + "description": "core:menu:deny-append -> Denies the append command without any pre-configured scope.",
743 "type": "string",
744 "enum": [
716 - "menu:allow-set-icon"
745 + "core:menu:deny-append"
746 ]
747 },
748 {
720 - "description": "menu:allow-set-text -> Enables the set_text command without any pre-configured scope.",
749 + "description": "core:menu:deny-create-default -> Denies the create_default command without any pre-configured scope.",
750 "type": "string",
751 "enum": [
723 - "menu:allow-set-text"
752 + "core:menu:deny-create-default"
753 ]
754 },
755 {
727 - "description": "menu:allow-text -> Enables the text command without any pre-configured scope.",
756 + "description": "core:menu:deny-get -> Denies the get command without any pre-configured scope.",
757 "type": "string",
758 "enum": [
730 - "menu:allow-text"
759 + "core:menu:deny-get"
760 ]
761 },
762 {
734 - "description": "menu:deny-append -> Denies the append command without any pre-configured scope.",
763 + "description": "core:menu:deny-insert -> Denies the insert command without any pre-configured scope.",
764 "type": "string",
765 "enum": [
737 - "menu:deny-append"
766 + "core:menu:deny-insert"
767 ]
768 },
769 {
741 - "description": "menu:deny-create-default -> Denies the create_default command without any pre-configured scope.",
770 + "description": "core:menu:deny-is-checked -> Denies the is_checked command without any pre-configured scope.",
771 "type": "string",
772 "enum": [
744 - "menu:deny-create-default"
773 + "core:menu:deny-is-checked"
774 ]
775 },
776 {
748 - "description": "menu:deny-get -> Denies the get command without any pre-configured scope.",
777 + "description": "core:menu:deny-is-enabled -> Denies the is_enabled command without any pre-configured scope.",
778 "type": "string",
779 "enum": [
751 - "menu:deny-get"
780 + "core:menu:deny-is-enabled"
781 ]
782 },
783 {
755 - "description": "menu:deny-insert -> Denies the insert command without any pre-configured scope.",
784 + "description": "core:menu:deny-items -> Denies the items command without any pre-configured scope.",
785 "type": "string",
786 "enum": [
758 - "menu:deny-insert"
787 + "core:menu:deny-items"
788 ]
789 },
790 {
762 - "description": "menu:deny-is-checked -> Denies the is_checked command without any pre-configured scope.",
791 + "description": "core:menu:deny-new -> Denies the new command without any pre-configured scope.",
792 "type": "string",
793 "enum": [
765 - "menu:deny-is-checked"
794 + "core:menu:deny-new"
795 ]
796 },
797 {
769 - "description": "menu:deny-is-enabled -> Denies the is_enabled command without any pre-configured scope.",
798 + "description": "core:menu:deny-popup -> Denies the popup command without any pre-configured scope.",
799 "type": "string",
800 "enum": [
772 - "menu:deny-is-enabled"
801 + "core:menu:deny-popup"
802 ]
803 },
804 {
776 - "description": "menu:deny-items -> Denies the items command without any pre-configured scope.",
805 + "description": "core:menu:deny-prepend -> Denies the prepend command without any pre-configured scope.",
806 "type": "string",
807 "enum": [
779 - "menu:deny-items"
808 + "core:menu:deny-prepend"
809 ]
810 },
811 {
783 - "description": "menu:deny-new -> Denies the new command without any pre-configured scope.",
812 + "description": "core:menu:deny-remove -> Denies the remove command without any pre-configured scope.",
813 "type": "string",
814 "enum": [
786 - "menu:deny-new"
815 + "core:menu:deny-remove"
816 ]
817 },
818 {
790 - "description": "menu:deny-popup -> Denies the popup command without any pre-configured scope.",
819 + "description": "core:menu:deny-remove-at -> Denies the remove_at command without any pre-configured scope.",
820 "type": "string",
821 "enum": [
793 - "menu:deny-popup"
822 + "core:menu:deny-remove-at"
823 ]
824 },
825 {
797 - "description": "menu:deny-prepend -> Denies the prepend command without any pre-configured scope.",
826 + "description": "core:menu:deny-set-accelerator -> Denies the set_accelerator command without any pre-configured scope.",
827 "type": "string",
828 "enum": [
800 - "menu:deny-prepend"
829 + "core:menu:deny-set-accelerator"
830 ]
831 },
832 {
804 - "description": "menu:deny-remove -> Denies the remove command without any pre-configured scope.",
833 + "description": "core:menu:deny-set-as-app-menu -> Denies the set_as_app_menu command without any pre-configured scope.",
834 "type": "string",
835 "enum": [
807 - "menu:deny-remove"
836 + "core:menu:deny-set-as-app-menu"
837 ]
838 },
839 {
811 - "description": "menu:deny-remove-at -> Denies the remove_at command without any pre-configured scope.",
840 + "description": "core:menu:deny-set-as-help-menu-for-nsapp -> Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.",
841 "type": "string",
842 "enum": [
814 - "menu:deny-remove-at"
843 + "core:menu:deny-set-as-help-menu-for-nsapp"
844 ]
845 },
846 {
818 - "description": "menu:deny-set-accelerator -> Denies the set_accelerator command without any pre-configured scope.",
847 + "description": "core:menu:deny-set-as-window-menu -> Denies the set_as_window_menu command without any pre-configured scope.",
848 "type": "string",
849 "enum": [
821 - "menu:deny-set-accelerator"
850 + "core:menu:deny-set-as-window-menu"
851 ]
852 },
853 {
825 - "description": "menu:deny-set-as-app-menu -> Denies the set_as_app_menu command without any pre-configured scope.",
854 + "description": "core:menu:deny-set-as-windows-menu-for-nsapp -> Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
855 "type": "string",
856 "enum": [
828 - "menu:deny-set-as-app-menu"
857 + "core:menu:deny-set-as-windows-menu-for-nsapp"
858 ]
859 },
860 {
832 - "description": "menu:deny-set-as-help-menu-for-nsapp -> Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.",
861 + "description": "core:menu:deny-set-checked -> Denies the set_checked command without any pre-configured scope.",
862 "type": "string",
863 "enum": [
835 - "menu:deny-set-as-help-menu-for-nsapp"
864 + "core:menu:deny-set-checked"
865 ]
866 },
867 {
839 - "description": "menu:deny-set-as-window-menu -> Denies the set_as_window_menu command without any pre-configured scope.",
868 + "description": "core:menu:deny-set-enabled -> Denies the set_enabled command without any pre-configured scope.",
869 "type": "string",
870 "enum": [
842 - "menu:deny-set-as-window-menu"
871 + "core:menu:deny-set-enabled"
872 ]
873 },
874 {
846 - "description": "menu:deny-set-as-windows-menu-for-nsapp -> Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
875 + "description": "core:menu:deny-set-icon -> Denies the set_icon command without any pre-configured scope.",
876 "type": "string",
877 "enum": [
849 - "menu:deny-set-as-windows-menu-for-nsapp"
878 + "core:menu:deny-set-icon"
879 ]
880 },
881 {
853 - "description": "menu:deny-set-checked -> Denies the set_checked command without any pre-configured scope.",
882 + "description": "core:menu:deny-set-text -> Denies the set_text command without any pre-configured scope.",
883 "type": "string",
884 "enum": [
856 - "menu:deny-set-checked"
885 + "core:menu:deny-set-text"
886 ]
887 },
888 {
860 - "description": "menu:deny-set-enabled -> Denies the set_enabled command without any pre-configured scope.",
889 + "description": "core:menu:deny-text -> Denies the text command without any pre-configured scope.",
890 "type": "string",
891 "enum": [
863 - "menu:deny-set-enabled"
892 + "core:menu:deny-text"
893 ]
894 },
895 {
867 - "description": "menu:deny-set-icon -> Denies the set_icon command without any pre-configured scope.",
896 + "description": "core:path:default -> Default permissions for the plugin.",
897 "type": "string",
898 "enum": [
870 - "menu:deny-set-icon"
899 + "core:path:default"
900 ]
901 },
902 {
874 - "description": "menu:deny-set-text -> Denies the set_text command without any pre-configured scope.",
903 + "description": "core:path:allow-basename -> Enables the basename command without any pre-configured scope.",
904 "type": "string",
905 "enum": [
877 - "menu:deny-set-text"
906 + "core:path:allow-basename"
907 ]
908 },
909 {
881 - "description": "menu:deny-text -> Denies the text command without any pre-configured scope.",
910 + "description": "core:path:allow-dirname -> Enables the dirname command without any pre-configured scope.",
911 "type": "string",
912 "enum": [
884 - "menu:deny-text"
913 + "core:path:allow-dirname"
914 ]
915 },
916 {
888 - "description": "path:default -> Default permissions for the plugin.",
917 + "description": "core:path:allow-extname -> Enables the extname command without any pre-configured scope.",
918 "type": "string",
919 "enum": [
891 - "path:default"
920 + "core:path:allow-extname"
921 ]
922 },
923 {
895 - "description": "path:allow-basename -> Enables the basename command without any pre-configured scope.",
924 + "description": "core:path:allow-is-absolute -> Enables the is_absolute command without any pre-configured scope.",
925 "type": "string",
926 "enum": [
898 - "path:allow-basename"
927 + "core:path:allow-is-absolute"
928 ]
929 },
930 {
902 - "description": "path:allow-dirname -> Enables the dirname command without any pre-configured scope.",
931 + "description": "core:path:allow-join -> Enables the join command without any pre-configured scope.",
932 "type": "string",
933 "enum": [
905 - "path:allow-dirname"
934 + "core:path:allow-join"
935 ]
936 },
937 {
909 - "description": "path:allow-extname -> Enables the extname command without any pre-configured scope.",
938 + "description": "core:path:allow-normalize -> Enables the normalize command without any pre-configured scope.",
939 "type": "string",
940 "enum": [
912 - "path:allow-extname"
941 + "core:path:allow-normalize"
942 ]
943 },
944 {
916 - "description": "path:allow-is-absolute -> Enables the is_absolute command without any pre-configured scope.",
945 + "description": "core:path:allow-resolve -> Enables the resolve command without any pre-configured scope.",
946 "type": "string",
947 "enum": [
919 - "path:allow-is-absolute"
948 + "core:path:allow-resolve"
949 ]
950 },
951 {
923 - "description": "path:allow-join -> Enables the join command without any pre-configured scope.",
952 + "description": "core:path:allow-resolve-directory -> Enables the resolve_directory command without any pre-configured scope.",
953 "type": "string",
954 "enum": [
926 - "path:allow-join"
955 + "core:path:allow-resolve-directory"
956 ]
957 },
958 {
930 - "description": "path:allow-normalize -> Enables the normalize command without any pre-configured scope.",
959 + "description": "core:path:deny-basename -> Denies the basename command without any pre-configured scope.",
960 "type": "string",
961 "enum": [
933 - "path:allow-normalize"
962 + "core:path:deny-basename"
963 ]
964 },
965 {
937 - "description": "path:allow-resolve -> Enables the resolve command without any pre-configured scope.",
966 + "description": "core:path:deny-dirname -> Denies the dirname command without any pre-configured scope.",
967 "type": "string",
968 "enum": [
940 - "path:allow-resolve"
969 + "core:path:deny-dirname"
970 ]
971 },
972 {
944 - "description": "path:allow-resolve-directory -> Enables the resolve_directory command without any pre-configured scope.",
973 + "description": "core:path:deny-extname -> Denies the extname command without any pre-configured scope.",
974 "type": "string",
975 "enum": [
947 - "path:allow-resolve-directory"
976 + "core:path:deny-extname"
977 ]
978 },
979 {
951 - "description": "path:deny-basename -> Denies the basename command without any pre-configured scope.",
980 + "description": "core:path:deny-is-absolute -> Denies the is_absolute command without any pre-configured scope.",
981 "type": "string",
982 "enum": [
954 - "path:deny-basename"
983 + "core:path:deny-is-absolute"
984 ]
985 },
986 {
958 - "description": "path:deny-dirname -> Denies the dirname command without any pre-configured scope.",
987 + "description": "core:path:deny-join -> Denies the join command without any pre-configured scope.",
988 "type": "string",
989 "enum": [
961 - "path:deny-dirname"
990 + "core:path:deny-join"
991 ]
992 },
993 {
965 - "description": "path:deny-extname -> Denies the extname command without any pre-configured scope.",
994 + "description": "core:path:deny-normalize -> Denies the normalize command without any pre-configured scope.",
995 "type": "string",
996 "enum": [
968 - "path:deny-extname"
997 + "core:path:deny-normalize"
998 ]
999 },
1000 {
972 - "description": "path:deny-is-absolute -> Denies the is_absolute command without any pre-configured scope.",
1001 + "description": "core:path:deny-resolve -> Denies the resolve command without any pre-configured scope.",
1002 "type": "string",
1003 "enum": [
975 - "path:deny-is-absolute"
1004 + "core:path:deny-resolve"
1005 ]
1006 },
1007 {
979 - "description": "path:deny-join -> Denies the join command without any pre-configured scope.",
1008 + "description": "core:path:deny-resolve-directory -> Denies the resolve_directory command without any pre-configured scope.",
1009 "type": "string",
1010 "enum": [
982 - "path:deny-join"
1011 + "core:path:deny-resolve-directory"
1012 ]
1013 },
1014 {
986 - "description": "path:deny-normalize -> Denies the normalize command without any pre-configured scope.",
1015 + "description": "core:resources:default -> Default permissions for the plugin.",
1016 "type": "string",
1017 "enum": [
989 - "path:deny-normalize"
1018 + "core:resources:default"
1019 ]
1020 },
1021 {
993 - "description": "path:deny-resolve -> Denies the resolve command without any pre-configured scope.",
1022 + "description": "core:resources:allow-close -> Enables the close command without any pre-configured scope.",
1023 "type": "string",
1024 "enum": [
996 - "path:deny-resolve"
1025 + "core:resources:allow-close"
1026 ]
1027 },
1028 {
1000 - "description": "path:deny-resolve-directory -> Denies the resolve_directory command without any pre-configured scope.",
1029 + "description": "core:resources:deny-close -> Denies the close command without any pre-configured scope.",
1030 "type": "string",
1031 "enum": [
1003 - "path:deny-resolve-directory"
1032 + "core:resources:deny-close"
1033 ]
1034 },
1035 {
1007 - "description": "resources:default -> Default permissions for the plugin.",
1036 + "description": "core:tray:default -> Default permissions for the plugin.",
1037 "type": "string",
1038 "enum": [
1010 - "resources:default"
1039 + "core:tray:default"
1040 ]
1041 },
1042 {
1014 - "description": "resources:allow-close -> Enables the close command without any pre-configured scope.",
1043 + "description": "core:tray:allow-get-by-id -> Enables the get_by_id command without any pre-configured scope.",
1044 "type": "string",
1045 "enum": [
1017 - "resources:allow-close"
1046 + "core:tray:allow-get-by-id"
1047 ]
1048 },
1049 {
1021 - "description": "resources:deny-close -> Denies the close command without any pre-configured scope.",
1050 + "description": "core:tray:allow-new -> Enables the new command without any pre-configured scope.",
1051 "type": "string",
1052 "enum": [
1024 - "resources:deny-close"
1053 + "core:tray:allow-new"
1054 ]
1055 },
1056 {
1028 - "description": "tray:default -> Default permissions for the plugin.",
1057 + "description": "core:tray:allow-remove-by-id -> Enables the remove_by_id command without any pre-configured scope.",
1058 "type": "string",
1059 "enum": [
1031 - "tray:default"
1060 + "core:tray:allow-remove-by-id"
1061 ]
1062 },
1063 {
1035 - "description": "tray:allow-get-by-id -> Enables the get_by_id command without any pre-configured scope.",
1064 + "description": "core:tray:allow-set-icon -> Enables the set_icon command without any pre-configured scope.",
1065 "type": "string",
1066 "enum": [
1038 - "tray:allow-get-by-id"
1067 + "core:tray:allow-set-icon"
1068 ]
1069 },
1070 {
1042 - "description": "tray:allow-new -> Enables the new command without any pre-configured scope.",
1071 + "description": "core:tray:allow-set-icon-as-template -> Enables the set_icon_as_template command without any pre-configured scope.",
1072 "type": "string",
1073 "enum": [
1045 - "tray:allow-new"
1074 + "core:tray:allow-set-icon-as-template"
1075 ]
1076 },
1077 {
1049 - "description": "tray:allow-remove-by-id -> Enables the remove_by_id command without any pre-configured scope.",
1078 + "description": "core:tray:allow-set-menu -> Enables the set_menu command without any pre-configured scope.",
1079 "type": "string",
1080 "enum": [
1052 - "tray:allow-remove-by-id"
1081 + "core:tray:allow-set-menu"
1082 ]
1083 },
1084 {
1056 - "description": "tray:allow-set-icon -> Enables the set_icon command without any pre-configured scope.",
1085 + "description": "core:tray:allow-set-show-menu-on-left-click -> Enables the set_show_menu_on_left_click command without any pre-configured scope.",
1086 "type": "string",
1087 "enum": [
1059 - "tray:allow-set-icon"
1088 + "core:tray:allow-set-show-menu-on-left-click"
1089 ]
1090 },
1091 {
1063 - "description": "tray:allow-set-icon-as-template -> Enables the set_icon_as_template command without any pre-configured scope.",
1092 + "description": "core:tray:allow-set-temp-dir-path -> Enables the set_temp_dir_path command without any pre-configured scope.",
1093 "type": "string",
1094 "enum": [
1066 - "tray:allow-set-icon-as-template"
1095 + "core:tray:allow-set-temp-dir-path"
1096 ]
1097 },
1098 {
1070 - "description": "tray:allow-set-menu -> Enables the set_menu command without any pre-configured scope.",
1099 + "description": "core:tray:allow-set-title -> Enables the set_title command without any pre-configured scope.",
1100 "type": "string",
1101 "enum": [
1073 - "tray:allow-set-menu"
1102 + "core:tray:allow-set-title"
1103 ]
1104 },
1105 {
1077 - "description": "tray:allow-set-show-menu-on-left-click -> Enables the set_show_menu_on_left_click command without any pre-configured scope.",
1106 + "description": "core:tray:allow-set-tooltip -> Enables the set_tooltip command without any pre-configured scope.",
1107 "type": "string",
1108 "enum": [
1080 - "tray:allow-set-show-menu-on-left-click"
1109 + "core:tray:allow-set-tooltip"
1110 ]
1111 },
1112 {
1084 - "description": "tray:allow-set-temp-dir-path -> Enables the set_temp_dir_path command without any pre-configured scope.",
1113 + "description": "core:tray:allow-set-visible -> Enables the set_visible command without any pre-configured scope.",
1114 "type": "string",
1115 "enum": [
1087 - "tray:allow-set-temp-dir-path"
1116 + "core:tray:allow-set-visible"
1117 ]
1118 },
1119 {
1091 - "description": "tray:allow-set-title -> Enables the set_title command without any pre-configured scope.",
1120 + "description": "core:tray:deny-get-by-id -> Denies the get_by_id command without any pre-configured scope.",
1121 "type": "string",
1122 "enum": [
1094 - "tray:allow-set-title"
1123 + "core:tray:deny-get-by-id"
1124 ]
1125 },
1126 {
1098 - "description": "tray:allow-set-tooltip -> Enables the set_tooltip command without any pre-configured scope.",
1127 + "description": "core:tray:deny-new -> Denies the new command without any pre-configured scope.",
1128 "type": "string",
1129 "enum": [
1101 - "tray:allow-set-tooltip"
1130 + "core:tray:deny-new"
1131 ]
1132 },
1133 {
1105 - "description": "tray:allow-set-visible -> Enables the set_visible command without any pre-configured scope.",
1134 + "description": "core:tray:deny-remove-by-id -> Denies the remove_by_id command without any pre-configured scope.",
1135 "type": "string",
1136 "enum": [
1108 - "tray:allow-set-visible"
1137 + "core:tray:deny-remove-by-id"
1138 ]
1139 },
1140 {
1112 - "description": "tray:deny-get-by-id -> Denies the get_by_id command without any pre-configured scope.",
1141 + "description": "core:tray:deny-set-icon -> Denies the set_icon command without any pre-configured scope.",
1142 "type": "string",
1143 "enum": [
1115 - "tray:deny-get-by-id"
1144 + "core:tray:deny-set-icon"
1145 ]
1146 },
1147 {
1119 - "description": "tray:deny-new -> Denies the new command without any pre-configured scope.",
1148 + "description": "core:tray:deny-set-icon-as-template -> Denies the set_icon_as_template command without any pre-configured scope.",
1149 "type": "string",
1150 "enum": [
1122 - "tray:deny-new"
1151 + "core:tray:deny-set-icon-as-template"
1152 ]
1153 },
1154 {
1126 - "description": "tray:deny-remove-by-id -> Denies the remove_by_id command without any pre-configured scope.",
1155 + "description": "core:tray:deny-set-menu -> Denies the set_menu command without any pre-configured scope.",
1156 "type": "string",
1157 "enum": [
1129 - "tray:deny-remove-by-id"
1158 + "core:tray:deny-set-menu"
1159 ]
1160 },
1161 {
1133 - "description": "tray:deny-set-icon -> Denies the set_icon command without any pre-configured scope.",
1162 + "description": "core:tray:deny-set-show-menu-on-left-click -> Denies the set_show_menu_on_left_click command without any pre-configured scope.",
1163 "type": "string",
1164 "enum": [
1136 - "tray:deny-set-icon"
1165 + "core:tray:deny-set-show-menu-on-left-click"
1166 ]
1167 },
1168 {
1140 - "description": "tray:deny-set-icon-as-template -> Denies the set_icon_as_template command without any pre-configured scope.",
1169 + "description": "core:tray:deny-set-temp-dir-path -> Denies the set_temp_dir_path command without any pre-configured scope.",
1170 "type": "string",
1171 "enum": [
1143 - "tray:deny-set-icon-as-template"
1172 + "core:tray:deny-set-temp-dir-path"
1173 ]
1174 },
1175 {
1147 - "description": "tray:deny-set-menu -> Denies the set_menu command without any pre-configured scope.",
1176 + "description": "core:tray:deny-set-title -> Denies the set_title command without any pre-configured scope.",
1177 "type": "string",
1178 "enum": [
1150 - "tray:deny-set-menu"
1179 + "core:tray:deny-set-title"
1180 ]
1181 },
1182 {
1154 - "description": "tray:deny-set-show-menu-on-left-click -> Denies the set_show_menu_on_left_click command without any pre-configured scope.",
1183 + "description": "core:tray:deny-set-tooltip -> Denies the set_tooltip command without any pre-configured scope.",
1184 "type": "string",
1185 "enum": [
1157 - "tray:deny-set-show-menu-on-left-click"
1186 + "core:tray:deny-set-tooltip"
1187 ]
1188 },
1189 {
1161 - "description": "tray:deny-set-temp-dir-path -> Denies the set_temp_dir_path command without any pre-configured scope.",
1190 + "description": "core:tray:deny-set-visible -> Denies the set_visible command without any pre-configured scope.",
1191 "type": "string",
1192 "enum": [
1164 - "tray:deny-set-temp-dir-path"
1193 + "core:tray:deny-set-visible"
1194 ]
1195 },
1196 {
1168 - "description": "tray:deny-set-title -> Denies the set_title command without any pre-configured scope.",
1197 + "description": "core:webview:default -> Default permissions for the plugin.",
1198 "type": "string",
1199 "enum": [
1171 - "tray:deny-set-title"
1200 + "core:webview:default"
1201 ]
1202 },
1203 {
1175 - "description": "tray:deny-set-tooltip -> Denies the set_tooltip command without any pre-configured scope.",
1204 + "description": "core:webview:allow-create-webview -> Enables the create_webview command without any pre-configured scope.",
1205 "type": "string",
1206 "enum": [
1178 - "tray:deny-set-tooltip"
1207 + "core:webview:allow-create-webview"
1208 ]
1209 },
1210 {
1182 - "description": "tray:deny-set-visible -> Denies the set_visible command without any pre-configured scope.",
1211 + "description": "core:webview:allow-create-webview-window -> Enables the create_webview_window command without any pre-configured scope.",
1212 "type": "string",
1213 "enum": [
1185 - "tray:deny-set-visible"
1214 + "core:webview:allow-create-webview-window"
1215 ]
1216 },
1217 {
1189 - "description": "webview:default -> Default permissions for the plugin.",
1218 + "description": "core:webview:allow-get-all-webviews -> Enables the get_all_webviews command without any pre-configured scope.",
1219 "type": "string",
1220 "enum": [
1192 - "webview:default"
1221 + "core:webview:allow-get-all-webviews"
1222 ]
1223 },
1224 {
1196 - "description": "webview:allow-create-webview -> Enables the create_webview command without any pre-configured scope.",
1225 + "description": "core:webview:allow-internal-toggle-devtools -> Enables the internal_toggle_devtools command without any pre-configured scope.",
1226 "type": "string",
1227 "enum": [
1199 - "webview:allow-create-webview"
1228 + "core:webview:allow-internal-toggle-devtools"
1229 ]
1230 },
1231 {
1203 - "description": "webview:allow-create-webview-window -> Enables the create_webview_window command without any pre-configured scope.",
1232 + "description": "core:webview:allow-print -> Enables the print command without any pre-configured scope.",
1233 "type": "string",
1234 "enum": [
1206 - "webview:allow-create-webview-window"
1235 + "core:webview:allow-print"
1236 ]
1237 },
1238 {
1210 - "description": "webview:allow-internal-toggle-devtools -> Enables the internal_toggle_devtools command without any pre-configured scope.",
1239 + "description": "core:webview:allow-reparent -> Enables the reparent command without any pre-configured scope.",
1240 "type": "string",
1241 "enum": [
1213 - "webview:allow-internal-toggle-devtools"
1242 + "core:webview:allow-reparent"
1243 ]
1244 },
1245 {
1217 - "description": "webview:allow-print -> Enables the print command without any pre-configured scope.",
1246 + "description": "core:webview:allow-set-webview-focus -> Enables the set_webview_focus command without any pre-configured scope.",
1247 "type": "string",
1248 "enum": [
1220 - "webview:allow-print"
1249 + "core:webview:allow-set-webview-focus"
1250 ]
1251 },
1252 {
1224 - "description": "webview:allow-reparent -> Enables the reparent command without any pre-configured scope.",
1253 + "description": "core:webview:allow-set-webview-position -> Enables the set_webview_position command without any pre-configured scope.",
1254 "type": "string",
1255 "enum": [
1227 - "webview:allow-reparent"
1256 + "core:webview:allow-set-webview-position"
1257 ]
1258 },
1259 {
1231 - "description": "webview:allow-set-webview-focus -> Enables the set_webview_focus command without any pre-configured scope.",
1260 + "description": "core:webview:allow-set-webview-size -> Enables the set_webview_size command without any pre-configured scope.",
1261 "type": "string",
1262 "enum": [
1234 - "webview:allow-set-webview-focus"
1263 + "core:webview:allow-set-webview-size"
1264 ]
1265 },
1266 {
1238 - "description": "webview:allow-set-webview-position -> Enables the set_webview_position command without any pre-configured scope.",
1267 + "description": "core:webview:allow-set-webview-zoom -> Enables the set_webview_zoom command without any pre-configured scope.",
1268 "type": "string",
1269 "enum": [
1241 - "webview:allow-set-webview-position"
1270 + "core:webview:allow-set-webview-zoom"
1271 ]
1272 },
1273 {
1245 - "description": "webview:allow-set-webview-size -> Enables the set_webview_size command without any pre-configured scope.",
1274 + "description": "core:webview:allow-webview-close -> Enables the webview_close command without any pre-configured scope.",
1275 "type": "string",
1276 "enum": [
1248 - "webview:allow-set-webview-size"
1277 + "core:webview:allow-webview-close"
1278 ]
1279 },
1280 {
1252 - "description": "webview:allow-set-webview-zoom -> Enables the set_webview_zoom command without any pre-configured scope.",
1281 + "description": "core:webview:allow-webview-position -> Enables the webview_position command without any pre-configured scope.",
1282 "type": "string",
1283 "enum": [
1255 - "webview:allow-set-webview-zoom"
1284 + "core:webview:allow-webview-position"
1285 ]
1286 },
1287 {
1259 - "description": "webview:allow-webview-close -> Enables the webview_close command without any pre-configured scope.",
1288 + "description": "core:webview:allow-webview-size -> Enables the webview_size command without any pre-configured scope.",
1289 "type": "string",
1290 "enum": [
1262 - "webview:allow-webview-close"
1291 + "core:webview:allow-webview-size"
1292 ]
1293 },
1294 {
1266 - "description": "webview:allow-webview-position -> Enables the webview_position command without any pre-configured scope.",
1295 + "description": "core:webview:deny-create-webview -> Denies the create_webview command without any pre-configured scope.",
1296 "type": "string",
1297 "enum": [
1269 - "webview:allow-webview-position"
1298 + "core:webview:deny-create-webview"
1299 ]
1300 },
1301 {
1273 - "description": "webview:allow-webview-size -> Enables the webview_size command without any pre-configured scope.",
1302 + "description": "core:webview:deny-create-webview-window -> Denies the create_webview_window command without any pre-configured scope.",
1303 "type": "string",
1304 "enum": [
1276 - "webview:allow-webview-size"
1305 + "core:webview:deny-create-webview-window"
1306 ]
1307 },
1308 {
1280 - "description": "webview:deny-create-webview -> Denies the create_webview command without any pre-configured scope.",
1309 + "description": "core:webview:deny-get-all-webviews -> Denies the get_all_webviews command without any pre-configured scope.",
1310 "type": "string",
1311 "enum": [
1283 - "webview:deny-create-webview"
1312 + "core:webview:deny-get-all-webviews"
1313 ]
1314 },
1315 {
1287 - "description": "webview:deny-create-webview-window -> Denies the create_webview_window command without any pre-configured scope.",
1316 + "description": "core:webview:deny-internal-toggle-devtools -> Denies the internal_toggle_devtools command without any pre-configured scope.",
1317 "type": "string",
1318 "enum": [
1290 - "webview:deny-create-webview-window"
1319 + "core:webview:deny-internal-toggle-devtools"
1320 ]
1321 },
1322 {
1294 - "description": "webview:deny-internal-toggle-devtools -> Denies the internal_toggle_devtools command without any pre-configured scope.",
1323 + "description": "core:webview:deny-print -> Denies the print command without any pre-configured scope.",
1324 "type": "string",
1325 "enum": [
1297 - "webview:deny-internal-toggle-devtools"
1326 + "core:webview:deny-print"
1327 ]
1328 },
1329 {
1301 - "description": "webview:deny-print -> Denies the print command without any pre-configured scope.",
1330 + "description": "core:webview:deny-reparent -> Denies the reparent command without any pre-configured scope.",
1331 "type": "string",
1332 "enum": [
1304 - "webview:deny-print"
1333 + "core:webview:deny-reparent"
1334 ]
1335 },
1336 {
1308 - "description": "webview:deny-reparent -> Denies the reparent command without any pre-configured scope.",
1337 + "description": "core:webview:deny-set-webview-focus -> Denies the set_webview_focus command without any pre-configured scope.",
1338 "type": "string",
1339 "enum": [
1311 - "webview:deny-reparent"
1340 + "core:webview:deny-set-webview-focus"
1341 ]
1342 },
1343 {
1315 - "description": "webview:deny-set-webview-focus -> Denies the set_webview_focus command without any pre-configured scope.",
1344 + "description": "core:webview:deny-set-webview-position -> Denies the set_webview_position command without any pre-configured scope.",
1345 "type": "string",
1346 "enum": [
1318 - "webview:deny-set-webview-focus"
1347 + "core:webview:deny-set-webview-position"
1348 ]
1349 },
1350 {
1322 - "description": "webview:deny-set-webview-position -> Denies the set_webview_position command without any pre-configured scope.",
1351 + "description": "core:webview:deny-set-webview-size -> Denies the set_webview_size command without any pre-configured scope.",
1352 "type": "string",
1353 "enum": [
1325 - "webview:deny-set-webview-position"
1354 + "core:webview:deny-set-webview-size"
1355 ]
1356 },
1357 {
1329 - "description": "webview:deny-set-webview-size -> Denies the set_webview_size command without any pre-configured scope.",
1358 + "description": "core:webview:deny-set-webview-zoom -> Denies the set_webview_zoom command without any pre-configured scope.",
1359 "type": "string",
1360 "enum": [
1332 - "webview:deny-set-webview-size"
1361 + "core:webview:deny-set-webview-zoom"
1362 ]
1363 },
1364 {
1336 - "description": "webview:deny-set-webview-zoom -> Denies the set_webview_zoom command without any pre-configured scope.",
1365 + "description": "core:webview:deny-webview-close -> Denies the webview_close command without any pre-configured scope.",
1366 "type": "string",
1367 "enum": [
1339 - "webview:deny-set-webview-zoom"
1368 + "core:webview:deny-webview-close"
1369 ]
1370 },
1371 {
1343 - "description": "webview:deny-webview-close -> Denies the webview_close command without any pre-configured scope.",
1372 + "description": "core:webview:deny-webview-position -> Denies the webview_position command without any pre-configured scope.",
1373 "type": "string",
1374 "enum": [
1346 - "webview:deny-webview-close"
1375 + "core:webview:deny-webview-position"
1376 ]
1377 },
1378 {
1350 - "description": "webview:deny-webview-position -> Denies the webview_position command without any pre-configured scope.",
1379 + "description": "core:webview:deny-webview-size -> Denies the webview_size command without any pre-configured scope.",
1380 "type": "string",
1381 "enum": [
1353 - "webview:deny-webview-position"
1382 + "core:webview:deny-webview-size"
1383 ]
1384 },
1385 {
1357 - "description": "webview:deny-webview-size -> Denies the webview_size command without any pre-configured scope.",
1386 + "description": "core:window:default -> Default permissions for the plugin.",
1387 "type": "string",
1388 "enum": [
1360 - "webview:deny-webview-size"
1389 + "core:window:default"
1390 ]
1391 },
1392 {
1364 - "description": "window:default -> Default permissions for the plugin.",
1393 + "description": "core:window:allow-available-monitors -> Enables the available_monitors command without any pre-configured scope.",
1394 "type": "string",
1395 "enum": [
1367 - "window:default"
1396 + "core:window:allow-available-monitors"
1397 ]
1398 },
1399 {
1371 - "description": "window:allow-available-monitors -> Enables the available_monitors command without any pre-configured scope.",
1400 + "description": "core:window:allow-center -> Enables the center command without any pre-configured scope.",
1401 "type": "string",
1402 "enum": [
1374 - "window:allow-available-monitors"
1403 + "core:window:allow-center"
1404 ]
1405 },
1406 {
1378 - "description": "window:allow-center -> Enables the center command without any pre-configured scope.",
1407 + "description": "core:window:allow-close -> Enables the close command without any pre-configured scope.",
1408 "type": "string",
1409 "enum": [
1381 - "window:allow-center"
1410 + "core:window:allow-close"
1411 ]
1412 },
1413 {
1385 - "description": "window:allow-close -> Enables the close command without any pre-configured scope.",
1414 + "description": "core:window:allow-create -> Enables the create command without any pre-configured scope.",
1415 "type": "string",
1416 "enum": [
1388 - "window:allow-close"
1417 + "core:window:allow-create"
1418 ]
1419 },
1420 {
1392 - "description": "window:allow-create -> Enables the create command without any pre-configured scope.",
1421 + "description": "core:window:allow-current-monitor -> Enables the current_monitor command without any pre-configured scope.",
1422 "type": "string",
1423 "enum": [
1395 - "window:allow-create"
1424 + "core:window:allow-current-monitor"
1425 ]
1426 },
1427 {
1399 - "description": "window:allow-current-monitor -> Enables the current_monitor command without any pre-configured scope.",
1428 + "description": "core:window:allow-cursor-position -> Enables the cursor_position command without any pre-configured scope.",
1429 "type": "string",
1430 "enum": [
1402 - "window:allow-current-monitor"
1431 + "core:window:allow-cursor-position"
1432 ]
1433 },
1434 {
1406 - "description": "window:allow-cursor-position -> Enables the cursor_position command without any pre-configured scope.",
1435 + "description": "core:window:allow-destroy -> Enables the destroy command without any pre-configured scope.",
1436 "type": "string",
1437 "enum": [
1409 - "window:allow-cursor-position"
1438 + "core:window:allow-destroy"
1439 ]
1440 },
1441 {
1413 - "description": "window:allow-destroy -> Enables the destroy command without any pre-configured scope.",
1442 + "description": "core:window:allow-get-all-windows -> Enables the get_all_windows command without any pre-configured scope.",
1443 "type": "string",
1444 "enum": [
1416 - "window:allow-destroy"
1445 + "core:window:allow-get-all-windows"
1446 ]
1447 },
1448 {
1420 - "description": "window:allow-hide -> Enables the hide command without any pre-configured scope.",
1449 + "description": "core:window:allow-hide -> Enables the hide command without any pre-configured scope.",
1450 "type": "string",
1451 "enum": [
1423 - "window:allow-hide"
1452 + "core:window:allow-hide"
1453 ]
1454 },
1455 {
1427 - "description": "window:allow-inner-position -> Enables the inner_position command without any pre-configured scope.",
1456 + "description": "core:window:allow-inner-position -> Enables the inner_position command without any pre-configured scope.",
1457 "type": "string",
1458 "enum": [
1430 - "window:allow-inner-position"
1459 + "core:window:allow-inner-position"
1460 ]
1461 },
1462 {
1434 - "description": "window:allow-inner-size -> Enables the inner_size command without any pre-configured scope.",
1463 + "description": "core:window:allow-inner-size -> Enables the inner_size command without any pre-configured scope.",
1464 "type": "string",
1465 "enum": [
1437 - "window:allow-inner-size"
1466 + "core:window:allow-inner-size"
1467 ]
1468 },
1469 {
1441 - "description": "window:allow-internal-toggle-maximize -> Enables the internal_toggle_maximize command without any pre-configured scope.",
1470 + "description": "core:window:allow-internal-toggle-maximize -> Enables the internal_toggle_maximize command without any pre-configured scope.",
1471 "type": "string",
1472 "enum": [
1444 - "window:allow-internal-toggle-maximize"
1473 + "core:window:allow-internal-toggle-maximize"
1474 ]
1475 },
1476 {
1448 - "description": "window:allow-is-closable -> Enables the is_closable command without any pre-configured scope.",
1477 + "description": "core:window:allow-is-closable -> Enables the is_closable command without any pre-configured scope.",
1478 "type": "string",
1479 "enum": [
1451 - "window:allow-is-closable"
1480 + "core:window:allow-is-closable"
1481 ]
1482 },
1483 {
1455 - "description": "window:allow-is-decorated -> Enables the is_decorated command without any pre-configured scope.",
1484 + "description": "core:window:allow-is-decorated -> Enables the is_decorated command without any pre-configured scope.",
1485 "type": "string",
1486 "enum": [
1458 - "window:allow-is-decorated"
1487 + "core:window:allow-is-decorated"
1488 ]
1489 },
1490 {
1462 - "description": "window:allow-is-focused -> Enables the is_focused command without any pre-configured scope.",
1491 + "description": "core:window:allow-is-focused -> Enables the is_focused command without any pre-configured scope.",
1492 "type": "string",
1493 "enum": [
1465 - "window:allow-is-focused"
1494 + "core:window:allow-is-focused"
1495 ]
1496 },
1497 {
1469 - "description": "window:allow-is-fullscreen -> Enables the is_fullscreen command without any pre-configured scope.",
1498 + "description": "core:window:allow-is-fullscreen -> Enables the is_fullscreen command without any pre-configured scope.",
1499 "type": "string",
1500 "enum": [
1472 - "window:allow-is-fullscreen"
1501 + "core:window:allow-is-fullscreen"
1502 ]
1503 },
1504 {
1476 - "description": "window:allow-is-maximizable -> Enables the is_maximizable command without any pre-configured scope.",
1505 + "description": "core:window:allow-is-maximizable -> Enables the is_maximizable command without any pre-configured scope.",
1506 "type": "string",
1507 "enum": [
1479 - "window:allow-is-maximizable"
1508 + "core:window:allow-is-maximizable"
1509 ]
1510 },
1511 {
1483 - "description": "window:allow-is-maximized -> Enables the is_maximized command without any pre-configured scope.",
1512 + "description": "core:window:allow-is-maximized -> Enables the is_maximized command without any pre-configured scope.",
1513 "type": "string",
1514 "enum": [
1486 - "window:allow-is-maximized"
1515 + "core:window:allow-is-maximized"
1516 ]
1517 },
1518 {
1490 - "description": "window:allow-is-minimizable -> Enables the is_minimizable command without any pre-configured scope.",
1519 + "description": "core:window:allow-is-minimizable -> Enables the is_minimizable command without any pre-configured scope.",
1520 "type": "string",
1521 "enum": [
1493 - "window:allow-is-minimizable"
1522 + "core:window:allow-is-minimizable"
1523 ]
1524 },
1525 {
1497 - "description": "window:allow-is-minimized -> Enables the is_minimized command without any pre-configured scope.",
1526 + "description": "core:window:allow-is-minimized -> Enables the is_minimized command without any pre-configured scope.",
1527 "type": "string",
1528 "enum": [
1500 - "window:allow-is-minimized"
1529 + "core:window:allow-is-minimized"
1530 ]
1531 },
1532 {
1504 - "description": "window:allow-is-resizable -> Enables the is_resizable command without any pre-configured scope.",
1533 + "description": "core:window:allow-is-resizable -> Enables the is_resizable command without any pre-configured scope.",
1534 "type": "string",
1535 "enum": [
1507 - "window:allow-is-resizable"
1536 + "core:window:allow-is-resizable"
1537 ]
1538 },
1539 {
1511 - "description": "window:allow-is-visible -> Enables the is_visible command without any pre-configured scope.",
1540 + "description": "core:window:allow-is-visible -> Enables the is_visible command without any pre-configured scope.",
1541 "type": "string",
1542 "enum": [
1514 - "window:allow-is-visible"
1543 + "core:window:allow-is-visible"
1544 ]
1545 },
1546 {
1518 - "description": "window:allow-maximize -> Enables the maximize command without any pre-configured scope.",
1547 + "description": "core:window:allow-maximize -> Enables the maximize command without any pre-configured scope.",
1548 "type": "string",
1549 "enum": [
1521 - "window:allow-maximize"
1550 + "core:window:allow-maximize"
1551 ]
1552 },
1553 {
1525 - "description": "window:allow-minimize -> Enables the minimize command without any pre-configured scope.",
1554 + "description": "core:window:allow-minimize -> Enables the minimize command without any pre-configured scope.",
1555 "type": "string",
1556 "enum": [
1528 - "window:allow-minimize"
1557 + "core:window:allow-minimize"
1558 ]
1559 },
1560 {
1532 - "description": "window:allow-monitor-from-point -> Enables the monitor_from_point command without any pre-configured scope.",
1561 + "description": "core:window:allow-monitor-from-point -> Enables the monitor_from_point command without any pre-configured scope.",
1562 "type": "string",
1563 "enum": [
1535 - "window:allow-monitor-from-point"
1564 + "core:window:allow-monitor-from-point"
1565 ]
1566 },
1567 {
1539 - "description": "window:allow-outer-position -> Enables the outer_position command without any pre-configured scope.",
1568 + "description": "core:window:allow-outer-position -> Enables the outer_position command without any pre-configured scope.",
1569 "type": "string",
1570 "enum": [
1542 - "window:allow-outer-position"
1571 + "core:window:allow-outer-position"
1572 ]
1573 },
1574 {
1546 - "description": "window:allow-outer-size -> Enables the outer_size command without any pre-configured scope.",
1575 + "description": "core:window:allow-outer-size -> Enables the outer_size command without any pre-configured scope.",
1576 "type": "string",
1577 "enum": [
1549 - "window:allow-outer-size"
1578 + "core:window:allow-outer-size"
1579 ]
1580 },
1581 {
1553 - "description": "window:allow-primary-monitor -> Enables the primary_monitor command without any pre-configured scope.",
1582 + "description": "core:window:allow-primary-monitor -> Enables the primary_monitor command without any pre-configured scope.",
1583 "type": "string",
1584 "enum": [
1556 - "window:allow-primary-monitor"
1585 + "core:window:allow-primary-monitor"
1586 ]
1587 },
1588 {
1560 - "description": "window:allow-request-user-attention -> Enables the request_user_attention command without any pre-configured scope.",
1589 + "description": "core:window:allow-request-user-attention -> Enables the request_user_attention command without any pre-configured scope.",
1590 "type": "string",
1591 "enum": [
1563 - "window:allow-request-user-attention"
1592 + "core:window:allow-request-user-attention"
1593 ]
1594 },
1595 {
1567 - "description": "window:allow-scale-factor -> Enables the scale_factor command without any pre-configured scope.",
1596 + "description": "core:window:allow-scale-factor -> Enables the scale_factor command without any pre-configured scope.",
1597 "type": "string",
1598 "enum": [
1570 - "window:allow-scale-factor"
1599 + "core:window:allow-scale-factor"
1600 ]
1601 },
1602 {
1574 - "description": "window:allow-set-always-on-bottom -> Enables the set_always_on_bottom command without any pre-configured scope.",
1603 + "description": "core:window:allow-set-always-on-bottom -> Enables the set_always_on_bottom command without any pre-configured scope.",
1604 "type": "string",
1605 "enum": [
1577 - "window:allow-set-always-on-bottom"
1606 + "core:window:allow-set-always-on-bottom"
1607 ]
1608 },
1609 {
1581 - "description": "window:allow-set-always-on-top -> Enables the set_always_on_top command without any pre-configured scope.",
1610 + "description": "core:window:allow-set-always-on-top -> Enables the set_always_on_top command without any pre-configured scope.",
1611 "type": "string",
1612 "enum": [
1584 - "window:allow-set-always-on-top"
1613 + "core:window:allow-set-always-on-top"
1614 ]
1615 },
1616 {
1588 - "description": "window:allow-set-closable -> Enables the set_closable command without any pre-configured scope.",
1617 + "description": "core:window:allow-set-closable -> Enables the set_closable command without any pre-configured scope.",
1618 "type": "string",
1619 "enum": [
1591 - "window:allow-set-closable"
1620 + "core:window:allow-set-closable"
1621 ]
1622 },
1623 {
1595 - "description": "window:allow-set-content-protected -> Enables the set_content_protected command without any pre-configured scope.",
1624 + "description": "core:window:allow-set-content-protected -> Enables the set_content_protected command without any pre-configured scope.",
1625 "type": "string",
1626 "enum": [
1598 - "window:allow-set-content-protected"
1627 + "core:window:allow-set-content-protected"
1628 ]
1629 },
1630 {
1602 - "description": "window:allow-set-cursor-grab -> Enables the set_cursor_grab command without any pre-configured scope.",
1631 + "description": "core:window:allow-set-cursor-grab -> Enables the set_cursor_grab command without any pre-configured scope.",
1632 "type": "string",
1633 "enum": [
1605 - "window:allow-set-cursor-grab"
1634 + "core:window:allow-set-cursor-grab"
1635 ]
1636 },
1637 {
1609 - "description": "window:allow-set-cursor-icon -> Enables the set_cursor_icon command without any pre-configured scope.",
1638 + "description": "core:window:allow-set-cursor-icon -> Enables the set_cursor_icon command without any pre-configured scope.",
1639 "type": "string",
1640 "enum": [
1612 - "window:allow-set-cursor-icon"
1641 + "core:window:allow-set-cursor-icon"
1642 ]
1643 },
1644 {
1616 - "description": "window:allow-set-cursor-position -> Enables the set_cursor_position command without any pre-configured scope.",
1645 + "description": "core:window:allow-set-cursor-position -> Enables the set_cursor_position command without any pre-configured scope.",
1646 "type": "string",
1647 "enum": [
1619 - "window:allow-set-cursor-position"
1648 + "core:window:allow-set-cursor-position"
1649 ]
1650 },
1651 {
1623 - "description": "window:allow-set-cursor-visible -> Enables the set_cursor_visible command without any pre-configured scope.",
1652 + "description": "core:window:allow-set-cursor-visible -> Enables the set_cursor_visible command without any pre-configured scope.",
1653 "type": "string",
1654 "enum": [
1626 - "window:allow-set-cursor-visible"
1655 + "core:window:allow-set-cursor-visible"
1656 ]
1657 },
1658 {
1630 - "description": "window:allow-set-decorations -> Enables the set_decorations command without any pre-configured scope.",
1659 + "description": "core:window:allow-set-decorations -> Enables the set_decorations command without any pre-configured scope.",
1660 "type": "string",
1661 "enum": [
1633 - "window:allow-set-decorations"
1662 + "core:window:allow-set-decorations"
1663 ]
1664 },
1665 {
1637 - "description": "window:allow-set-effects -> Enables the set_effects command without any pre-configured scope.",
1666 + "description": "core:window:allow-set-effects -> Enables the set_effects command without any pre-configured scope.",
1667 "type": "string",
1668 "enum": [
1640 - "window:allow-set-effects"
1669 + "core:window:allow-set-effects"
1670 ]
1671 },
1672 {
1644 - "description": "window:allow-set-focus -> Enables the set_focus command without any pre-configured scope.",
1673 + "description": "core:window:allow-set-focus -> Enables the set_focus command without any pre-configured scope.",
1674 "type": "string",
1675 "enum": [
1647 - "window:allow-set-focus"
1676 + "core:window:allow-set-focus"
1677 ]
1678 },
1679 {
1651 - "description": "window:allow-set-fullscreen -> Enables the set_fullscreen command without any pre-configured scope.",
1680 + "description": "core:window:allow-set-fullscreen -> Enables the set_fullscreen command without any pre-configured scope.",
1681 "type": "string",
1682 "enum": [
1654 - "window:allow-set-fullscreen"
1683 + "core:window:allow-set-fullscreen"
1684 ]
1685 },
1686 {
1658 - "description": "window:allow-set-icon -> Enables the set_icon command without any pre-configured scope.",
1687 + "description": "core:window:allow-set-icon -> Enables the set_icon command without any pre-configured scope.",
1688 "type": "string",
1689 "enum": [
1661 - "window:allow-set-icon"
1690 + "core:window:allow-set-icon"
1691 ]
1692 },
1693 {
1665 - "description": "window:allow-set-ignore-cursor-events -> Enables the set_ignore_cursor_events command without any pre-configured scope.",
1694 + "description": "core:window:allow-set-ignore-cursor-events -> Enables the set_ignore_cursor_events command without any pre-configured scope.",
1695 "type": "string",
1696 "enum": [
1668 - "window:allow-set-ignore-cursor-events"
1697 + "core:window:allow-set-ignore-cursor-events"
1698 ]
1699 },
1700 {
1672 - "description": "window:allow-set-max-size -> Enables the set_max_size command without any pre-configured scope.",
1701 + "description": "core:window:allow-set-max-size -> Enables the set_max_size command without any pre-configured scope.",
1702 "type": "string",
1703 "enum": [
1675 - "window:allow-set-max-size"
1704 + "core:window:allow-set-max-size"
1705 ]
1706 },
1707 {
1679 - "description": "window:allow-set-maximizable -> Enables the set_maximizable command without any pre-configured scope.",
1708 + "description": "core:window:allow-set-maximizable -> Enables the set_maximizable command without any pre-configured scope.",
1709 "type": "string",
1710 "enum": [
1682 - "window:allow-set-maximizable"
1711 + "core:window:allow-set-maximizable"
1712 ]
1713 },
1714 {
1686 - "description": "window:allow-set-min-size -> Enables the set_min_size command without any pre-configured scope.",
1715 + "description": "core:window:allow-set-min-size -> Enables the set_min_size command without any pre-configured scope.",
1716 "type": "string",
1717 "enum": [
1689 - "window:allow-set-min-size"
1718 + "core:window:allow-set-min-size"
1719 ]
1720 },
1721 {
1693 - "description": "window:allow-set-minimizable -> Enables the set_minimizable command without any pre-configured scope.",
1722 + "description": "core:window:allow-set-minimizable -> Enables the set_minimizable command without any pre-configured scope.",
1723 "type": "string",
1724 "enum": [
1696 - "window:allow-set-minimizable"
1725 + "core:window:allow-set-minimizable"
1726 ]
1727 },
1728 {
1700 - "description": "window:allow-set-position -> Enables the set_position command without any pre-configured scope.",
1729 + "description": "core:window:allow-set-position -> Enables the set_position command without any pre-configured scope.",
1730 "type": "string",
1731 "enum": [
1703 - "window:allow-set-position"
1732 + "core:window:allow-set-position"
1733 ]
1734 },
1735 {
1707 - "description": "window:allow-set-progress-bar -> Enables the set_progress_bar command without any pre-configured scope.",
1736 + "description": "core:window:allow-set-progress-bar -> Enables the set_progress_bar command without any pre-configured scope.",
1737 "type": "string",
1738 "enum": [
1710 - "window:allow-set-progress-bar"
1739 + "core:window:allow-set-progress-bar"
1740 ]
1741 },
1742 {
1714 - "description": "window:allow-set-resizable -> Enables the set_resizable command without any pre-configured scope.",
1743 + "description": "core:window:allow-set-resizable -> Enables the set_resizable command without any pre-configured scope.",
1744 "type": "string",
1745 "enum": [
1717 - "window:allow-set-resizable"
1746 + "core:window:allow-set-resizable"
1747 ]
1748 },
1749 {
1721 - "description": "window:allow-set-shadow -> Enables the set_shadow command without any pre-configured scope.",
1750 + "description": "core:window:allow-set-shadow -> Enables the set_shadow command without any pre-configured scope.",
1751 "type": "string",
1752 "enum": [
1724 - "window:allow-set-shadow"
1753 + "core:window:allow-set-shadow"
1754 ]
1755 },
1756 {
1728 - "description": "window:allow-set-size -> Enables the set_size command without any pre-configured scope.",
1757 + "description": "core:window:allow-set-size -> Enables the set_size command without any pre-configured scope.",
1758 "type": "string",
1759 "enum": [
1731 - "window:allow-set-size"
1760 + "core:window:allow-set-size"
1761 ]
1762 },
1763 {
1735 - "description": "window:allow-set-skip-taskbar -> Enables the set_skip_taskbar command without any pre-configured scope.",
1764 + "description": "core:window:allow-set-size-constraints -> Enables the set_size_constraints command without any pre-configured scope.",
1765 "type": "string",
1766 "enum": [
1738 - "window:allow-set-skip-taskbar"
1767 + "core:window:allow-set-size-constraints"
1768 ]
1769 },
1770 {
1742 - "description": "window:allow-set-title -> Enables the set_title command without any pre-configured scope.",
1771 + "description": "core:window:allow-set-skip-taskbar -> Enables the set_skip_taskbar command without any pre-configured scope.",
1772 "type": "string",
1773 "enum": [
1745 - "window:allow-set-title"
1774 + "core:window:allow-set-skip-taskbar"
1775 ]
1776 },
1777 {
1749 - "description": "window:allow-set-title-bar-style -> Enables the set_title_bar_style command without any pre-configured scope.",
1778 + "description": "core:window:allow-set-title -> Enables the set_title command without any pre-configured scope.",
1779 "type": "string",
1780 "enum": [
1752 - "window:allow-set-title-bar-style"
1781 + "core:window:allow-set-title"
1782 ]
1783 },
1784 {
1756 - "description": "window:allow-set-visible-on-all-workspaces -> Enables the set_visible_on_all_workspaces command without any pre-configured scope.",
1785 + "description": "core:window:allow-set-title-bar-style -> Enables the set_title_bar_style command without any pre-configured scope.",
1786 "type": "string",
1787 "enum": [
1759 - "window:allow-set-visible-on-all-workspaces"
1788 + "core:window:allow-set-title-bar-style"
1789 ]
1790 },
1791 {
1763 - "description": "window:allow-show -> Enables the show command without any pre-configured scope.",
1792 + "description": "core:window:allow-set-visible-on-all-workspaces -> Enables the set_visible_on_all_workspaces command without any pre-configured scope.",
1793 "type": "string",
1794 "enum": [
1766 - "window:allow-show"
1795 + "core:window:allow-set-visible-on-all-workspaces"
1796 ]
1797 },
1798 {
1770 - "description": "window:allow-start-dragging -> Enables the start_dragging command without any pre-configured scope.",
1799 + "description": "core:window:allow-show -> Enables the show command without any pre-configured scope.",
1800 "type": "string",
1801 "enum": [
1773 - "window:allow-start-dragging"
1802 + "core:window:allow-show"
1803 ]
1804 },
1805 {
1777 - "description": "window:allow-start-resize-dragging -> Enables the start_resize_dragging command without any pre-configured scope.",
1806 + "description": "core:window:allow-start-dragging -> Enables the start_dragging command without any pre-configured scope.",
1807 "type": "string",
1808 "enum": [
1780 - "window:allow-start-resize-dragging"
1809 + "core:window:allow-start-dragging"
1810 ]
1811 },
1812 {
1784 - "description": "window:allow-theme -> Enables the theme command without any pre-configured scope.",
1813 + "description": "core:window:allow-start-resize-dragging -> Enables the start_resize_dragging command without any pre-configured scope.",
1814 "type": "string",
1815 "enum": [
1787 - "window:allow-theme"
1816 + "core:window:allow-start-resize-dragging"
1817 ]
1818 },
1819 {
1791 - "description": "window:allow-title -> Enables the title command without any pre-configured scope.",
1820 + "description": "core:window:allow-theme -> Enables the theme command without any pre-configured scope.",
1821 "type": "string",
1822 "enum": [
1794 - "window:allow-title"
1823 + "core:window:allow-theme"
1824 ]
1825 },
1826 {
1798 - "description": "window:allow-toggle-maximize -> Enables the toggle_maximize command without any pre-configured scope.",
1827 + "description": "core:window:allow-title -> Enables the title command without any pre-configured scope.",
1828 "type": "string",
1829 "enum": [
1801 - "window:allow-toggle-maximize"
1830 + "core:window:allow-title"
1831 ]
1832 },
1833 {
1805 - "description": "window:allow-unmaximize -> Enables the unmaximize command without any pre-configured scope.",
1834 + "description": "core:window:allow-toggle-maximize -> Enables the toggle_maximize command without any pre-configured scope.",
1835 "type": "string",
1836 "enum": [
1808 - "window:allow-unmaximize"
1837 + "core:window:allow-toggle-maximize"
1838 ]
1839 },
1840 {
1812 - "description": "window:allow-unminimize -> Enables the unminimize command without any pre-configured scope.",
1841 + "description": "core:window:allow-unmaximize -> Enables the unmaximize command without any pre-configured scope.",
1842 "type": "string",
1843 "enum": [
1815 - "window:allow-unminimize"
1844 + "core:window:allow-unmaximize"
1845 ]
1846 },
1847 {
1819 - "description": "window:deny-available-monitors -> Denies the available_monitors command without any pre-configured scope.",
1848 + "description": "core:window:allow-unminimize -> Enables the unminimize command without any pre-configured scope.",
1849 "type": "string",
1850 "enum": [
1822 - "window:deny-available-monitors"
1851 + "core:window:allow-unminimize"
1852 ]
1853 },
1854 {
1826 - "description": "window:deny-center -> Denies the center command without any pre-configured scope.",
1855 + "description": "core:window:deny-available-monitors -> Denies the available_monitors command without any pre-configured scope.",
1856 "type": "string",
1857 "enum": [
1829 - "window:deny-center"
1858 + "core:window:deny-available-monitors"
1859 ]
1860 },
1861 {
1833 - "description": "window:deny-close -> Denies the close command without any pre-configured scope.",
1862 + "description": "core:window:deny-center -> Denies the center command without any pre-configured scope.",
1863 "type": "string",
1864 "enum": [
1836 - "window:deny-close"
1865 + "core:window:deny-center"
1866 ]
1867 },
1868 {
1840 - "description": "window:deny-create -> Denies the create command without any pre-configured scope.",
1869 + "description": "core:window:deny-close -> Denies the close command without any pre-configured scope.",
1870 "type": "string",
1871 "enum": [
1843 - "window:deny-create"
1872 + "core:window:deny-close"
1873 ]
1874 },
1875 {
1847 - "description": "window:deny-current-monitor -> Denies the current_monitor command without any pre-configured scope.",
1876 + "description": "core:window:deny-create -> Denies the create command without any pre-configured scope.",
1877 "type": "string",
1878 "enum": [
1850 - "window:deny-current-monitor"
1879 + "core:window:deny-create"
1880 ]
1881 },
1882 {
1854 - "description": "window:deny-cursor-position -> Denies the cursor_position command without any pre-configured scope.",
1883 + "description": "core:window:deny-current-monitor -> Denies the current_monitor command without any pre-configured scope.",
1884 "type": "string",
1885 "enum": [
1857 - "window:deny-cursor-position"
1886 + "core:window:deny-current-monitor"
1887 ]
1888 },
1889 {
1861 - "description": "window:deny-destroy -> Denies the destroy command without any pre-configured scope.",
1890 + "description": "core:window:deny-cursor-position -> Denies the cursor_position command without any pre-configured scope.",
1891 "type": "string",
1892 "enum": [
1864 - "window:deny-destroy"
1893 + "core:window:deny-cursor-position"
1894 ]
1895 },
1896 {
1868 - "description": "window:deny-hide -> Denies the hide command without any pre-configured scope.",
1897 + "description": "core:window:deny-destroy -> Denies the destroy command without any pre-configured scope.",
1898 "type": "string",
1899 "enum": [
1871 - "window:deny-hide"
1900 + "core:window:deny-destroy"
1901 ]
1902 },
1903 {
1875 - "description": "window:deny-inner-position -> Denies the inner_position command without any pre-configured scope.",
1904 + "description": "core:window:deny-get-all-windows -> Denies the get_all_windows command without any pre-configured scope.",
1905 "type": "string",
1906 "enum": [
1878 - "window:deny-inner-position"
1907 + "core:window:deny-get-all-windows"
1908 ]
1909 },
1910 {
1882 - "description": "window:deny-inner-size -> Denies the inner_size command without any pre-configured scope.",
1911 + "description": "core:window:deny-hide -> Denies the hide command without any pre-configured scope.",
1912 "type": "string",
1913 "enum": [
1885 - "window:deny-inner-size"
1914 + "core:window:deny-hide"
1915 ]
1916 },
1917 {
1889 - "description": "window:deny-internal-toggle-maximize -> Denies the internal_toggle_maximize command without any pre-configured scope.",
1918 + "description": "core:window:deny-inner-position -> Denies the inner_position command without any pre-configured scope.",
1919 "type": "string",
1920 "enum": [
1892 - "window:deny-internal-toggle-maximize"
1921 + "core:window:deny-inner-position"
1922 ]
1923 },
1924 {
1896 - "description": "window:deny-is-closable -> Denies the is_closable command without any pre-configured scope.",
1925 + "description": "core:window:deny-inner-size -> Denies the inner_size command without any pre-configured scope.",
1926 "type": "string",
1927 "enum": [
1899 - "window:deny-is-closable"
1928 + "core:window:deny-inner-size"
1929 ]
1930 },
1931 {
1903 - "description": "window:deny-is-decorated -> Denies the is_decorated command without any pre-configured scope.",
1932 + "description": "core:window:deny-internal-toggle-maximize -> Denies the internal_toggle_maximize command without any pre-configured scope.",
1933 "type": "string",
1934 "enum": [
1906 - "window:deny-is-decorated"
1935 + "core:window:deny-internal-toggle-maximize"
1936 ]
1937 },
1938 {
1910 - "description": "window:deny-is-focused -> Denies the is_focused command without any pre-configured scope.",
1939 + "description": "core:window:deny-is-closable -> Denies the is_closable command without any pre-configured scope.",
1940 "type": "string",
1941 "enum": [
1913 - "window:deny-is-focused"
1942 + "core:window:deny-is-closable"
1943 ]
1944 },
1945 {
1917 - "description": "window:deny-is-fullscreen -> Denies the is_fullscreen command without any pre-configured scope.",
1946 + "description": "core:window:deny-is-decorated -> Denies the is_decorated command without any pre-configured scope.",
1947 "type": "string",
1948 "enum": [
1920 - "window:deny-is-fullscreen"
1949 + "core:window:deny-is-decorated"
1950 ]
1951 },
1952 {
1924 - "description": "window:deny-is-maximizable -> Denies the is_maximizable command without any pre-configured scope.",
1953 + "description": "core:window:deny-is-focused -> Denies the is_focused command without any pre-configured scope.",
1954 "type": "string",
1955 "enum": [
1927 - "window:deny-is-maximizable"
1956 + "core:window:deny-is-focused"
1957 ]
1958 },
1959 {
1931 - "description": "window:deny-is-maximized -> Denies the is_maximized command without any pre-configured scope.",
1960 + "description": "core:window:deny-is-fullscreen -> Denies the is_fullscreen command without any pre-configured scope.",
1961 "type": "string",
1962 "enum": [
1934 - "window:deny-is-maximized"
1963 + "core:window:deny-is-fullscreen"
1964 ]
1965 },
1966 {
1938 - "description": "window:deny-is-minimizable -> Denies the is_minimizable command without any pre-configured scope.",
1967 + "description": "core:window:deny-is-maximizable -> Denies the is_maximizable command without any pre-configured scope.",
1968 "type": "string",
1969 "enum": [
1941 - "window:deny-is-minimizable"
1970 + "core:window:deny-is-maximizable"
1971 ]
1972 },
1973 {
1945 - "description": "window:deny-is-minimized -> Denies the is_minimized command without any pre-configured scope.",
1974 + "description": "core:window:deny-is-maximized -> Denies the is_maximized command without any pre-configured scope.",
1975 "type": "string",
1976 "enum": [
1948 - "window:deny-is-minimized"
1977 + "core:window:deny-is-maximized"
1978 ]
1979 },
1980 {
1952 - "description": "window:deny-is-resizable -> Denies the is_resizable command without any pre-configured scope.",
1981 + "description": "core:window:deny-is-minimizable -> Denies the is_minimizable command without any pre-configured scope.",
1982 "type": "string",
1983 "enum": [
1955 - "window:deny-is-resizable"
1984 + "core:window:deny-is-minimizable"
1985 ]
1986 },
1987 {
1959 - "description": "window:deny-is-visible -> Denies the is_visible command without any pre-configured scope.",
1988 + "description": "core:window:deny-is-minimized -> Denies the is_minimized command without any pre-configured scope.",
1989 "type": "string",
1990 "enum": [
1962 - "window:deny-is-visible"
1991 + "core:window:deny-is-minimized"
1992 ]
1993 },
1994 {
1966 - "description": "window:deny-maximize -> Denies the maximize command without any pre-configured scope.",
1995 + "description": "core:window:deny-is-resizable -> Denies the is_resizable command without any pre-configured scope.",
1996 "type": "string",
1997 "enum": [
1969 - "window:deny-maximize"
1998 + "core:window:deny-is-resizable"
1999 ]
2000 },
2001 {
1973 - "description": "window:deny-minimize -> Denies the minimize command without any pre-configured scope.",
2002 + "description": "core:window:deny-is-visible -> Denies the is_visible command without any pre-configured scope.",
2003 "type": "string",
2004 "enum": [
1976 - "window:deny-minimize"
2005 + "core:window:deny-is-visible"
2006 ]
2007 },
2008 {
1980 - "description": "window:deny-monitor-from-point -> Denies the monitor_from_point command without any pre-configured scope.",
2009 + "description": "core:window:deny-maximize -> Denies the maximize command without any pre-configured scope.",
2010 "type": "string",
2011 "enum": [
1983 - "window:deny-monitor-from-point"
2012 + "core:window:deny-maximize"
2013 ]
2014 },
2015 {
1987 - "description": "window:deny-outer-position -> Denies the outer_position command without any pre-configured scope.",
2016 + "description": "core:window:deny-minimize -> Denies the minimize command without any pre-configured scope.",
2017 "type": "string",
2018 "enum": [
1990 - "window:deny-outer-position"
2019 + "core:window:deny-minimize"
2020 ]
2021 },
2022 {
1994 - "description": "window:deny-outer-size -> Denies the outer_size command without any pre-configured scope.",
2023 + "description": "core:window:deny-monitor-from-point -> Denies the monitor_from_point command without any pre-configured scope.",
2024 "type": "string",
2025 "enum": [
1997 - "window:deny-outer-size"
2026 + "core:window:deny-monitor-from-point"
2027 ]
2028 },
2029 {
2001 - "description": "window:deny-primary-monitor -> Denies the primary_monitor command without any pre-configured scope.",
2030 + "description": "core:window:deny-outer-position -> Denies the outer_position command without any pre-configured scope.",
2031 "type": "string",
2032 "enum": [
2004 - "window:deny-primary-monitor"
2033 + "core:window:deny-outer-position"
2034 ]
2035 },
2036 {
2008 - "description": "window:deny-request-user-attention -> Denies the request_user_attention command without any pre-configured scope.",
2037 + "description": "core:window:deny-outer-size -> Denies the outer_size command without any pre-configured scope.",
2038 "type": "string",
2039 "enum": [
2011 - "window:deny-request-user-attention"
2040 + "core:window:deny-outer-size"
2041 ]
2042 },
2043 {
2015 - "description": "window:deny-scale-factor -> Denies the scale_factor command without any pre-configured scope.",
2044 + "description": "core:window:deny-primary-monitor -> Denies the primary_monitor command without any pre-configured scope.",
2045 "type": "string",
2046 "enum": [
2018 - "window:deny-scale-factor"
2047 + "core:window:deny-primary-monitor"
2048 ]
2049 },
2050 {
2022 - "description": "window:deny-set-always-on-bottom -> Denies the set_always_on_bottom command without any pre-configured scope.",
2051 + "description": "core:window:deny-request-user-attention -> Denies the request_user_attention command without any pre-configured scope.",
2052 "type": "string",
2053 "enum": [
2025 - "window:deny-set-always-on-bottom"
2054 + "core:window:deny-request-user-attention"
2055 ]
2056 },
2057 {
2029 - "description": "window:deny-set-always-on-top -> Denies the set_always_on_top command without any pre-configured scope.",
2058 + "description": "core:window:deny-scale-factor -> Denies the scale_factor command without any pre-configured scope.",
2059 "type": "string",
2060 "enum": [
2032 - "window:deny-set-always-on-top"
2061 + "core:window:deny-scale-factor"
2062 ]
2063 },
2064 {
2036 - "description": "window:deny-set-closable -> Denies the set_closable command without any pre-configured scope.",
2065 + "description": "core:window:deny-set-always-on-bottom -> Denies the set_always_on_bottom command without any pre-configured scope.",
2066 "type": "string",
2067 "enum": [
2039 - "window:deny-set-closable"
2068 + "core:window:deny-set-always-on-bottom"
2069 ]
2070 },
2071 {
2043 - "description": "window:deny-set-content-protected -> Denies the set_content_protected command without any pre-configured scope.",
2072 + "description": "core:window:deny-set-always-on-top -> Denies the set_always_on_top command without any pre-configured scope.",
2073 "type": "string",
2074 "enum": [
2046 - "window:deny-set-content-protected"
2075 + "core:window:deny-set-always-on-top"
2076 ]
2077 },
2078 {
2050 - "description": "window:deny-set-cursor-grab -> Denies the set_cursor_grab command without any pre-configured scope.",
2079 + "description": "core:window:deny-set-closable -> Denies the set_closable command without any pre-configured scope.",
2080 "type": "string",
2081 "enum": [
2053 - "window:deny-set-cursor-grab"
2082 + "core:window:deny-set-closable"
2083 ]
2084 },
2085 {
2057 - "description": "window:deny-set-cursor-icon -> Denies the set_cursor_icon command without any pre-configured scope.",
2086 + "description": "core:window:deny-set-content-protected -> Denies the set_content_protected command without any pre-configured scope.",
2087 "type": "string",
2088 "enum": [
2060 - "window:deny-set-cursor-icon"
2089 + "core:window:deny-set-content-protected"
2090 ]
2091 },
2092 {
2064 - "description": "window:deny-set-cursor-position -> Denies the set_cursor_position command without any pre-configured scope.",
2093 + "description": "core:window:deny-set-cursor-grab -> Denies the set_cursor_grab command without any pre-configured scope.",
2094 "type": "string",
2095 "enum": [
2067 - "window:deny-set-cursor-position"
2096 + "core:window:deny-set-cursor-grab"
2097 ]
2098 },
2099 {
2071 - "description": "window:deny-set-cursor-visible -> Denies the set_cursor_visible command without any pre-configured scope.",
2100 + "description": "core:window:deny-set-cursor-icon -> Denies the set_cursor_icon command without any pre-configured scope.",
2101 "type": "string",
2102 "enum": [
2074 - "window:deny-set-cursor-visible"
2103 + "core:window:deny-set-cursor-icon"
2104 ]
2105 },
2106 {
2078 - "description": "window:deny-set-decorations -> Denies the set_decorations command without any pre-configured scope.",
2107 + "description": "core:window:deny-set-cursor-position -> Denies the set_cursor_position command without any pre-configured scope.",
2108 "type": "string",
2109 "enum": [
2081 - "window:deny-set-decorations"
2110 + "core:window:deny-set-cursor-position"
2111 ]
2112 },
2113 {
2085 - "description": "window:deny-set-effects -> Denies the set_effects command without any pre-configured scope.",
2114 + "description": "core:window:deny-set-cursor-visible -> Denies the set_cursor_visible command without any pre-configured scope.",
2115 "type": "string",
2116 "enum": [
2088 - "window:deny-set-effects"
2117 + "core:window:deny-set-cursor-visible"
2118 ]
2119 },
2120 {
2092 - "description": "window:deny-set-focus -> Denies the set_focus command without any pre-configured scope.",
2121 + "description": "core:window:deny-set-decorations -> Denies the set_decorations command without any pre-configured scope.",
2122 "type": "string",
2123 "enum": [
2095 - "window:deny-set-focus"
2124 + "core:window:deny-set-decorations"
2125 ]
2126 },
2127 {
2099 - "description": "window:deny-set-fullscreen -> Denies the set_fullscreen command without any pre-configured scope.",
2128 + "description": "core:window:deny-set-effects -> Denies the set_effects command without any pre-configured scope.",
2129 "type": "string",
2130 "enum": [
2102 - "window:deny-set-fullscreen"
2131 + "core:window:deny-set-effects"
2132 ]
2133 },
2134 {
2106 - "description": "window:deny-set-icon -> Denies the set_icon command without any pre-configured scope.",
2135 + "description": "core:window:deny-set-focus -> Denies the set_focus command without any pre-configured scope.",
2136 "type": "string",
2137 "enum": [
2109 - "window:deny-set-icon"
2138 + "core:window:deny-set-focus"
2139 ]
2140 },
2141 {
2113 - "description": "window:deny-set-ignore-cursor-events -> Denies the set_ignore_cursor_events command without any pre-configured scope.",
2142 + "description": "core:window:deny-set-fullscreen -> Denies the set_fullscreen command without any pre-configured scope.",
2143 "type": "string",
2144 "enum": [
2116 - "window:deny-set-ignore-cursor-events"
2145 + "core:window:deny-set-fullscreen"
2146 ]
2147 },
2148 {
2120 - "description": "window:deny-set-max-size -> Denies the set_max_size command without any pre-configured scope.",
2149 + "description": "core:window:deny-set-icon -> Denies the set_icon command without any pre-configured scope.",
2150 "type": "string",
2151 "enum": [
2123 - "window:deny-set-max-size"
2152 + "core:window:deny-set-icon"
2153 ]
2154 },
2155 {
2127 - "description": "window:deny-set-maximizable -> Denies the set_maximizable command without any pre-configured scope.",
2156 + "description": "core:window:deny-set-ignore-cursor-events -> Denies the set_ignore_cursor_events command without any pre-configured scope.",
2157 "type": "string",
2158 "enum": [
2130 - "window:deny-set-maximizable"
2159 + "core:window:deny-set-ignore-cursor-events"
2160 ]
2161 },
2162 {
2134 - "description": "window:deny-set-min-size -> Denies the set_min_size command without any pre-configured scope.",
2163 + "description": "core:window:deny-set-max-size -> Denies the set_max_size command without any pre-configured scope.",
2164 "type": "string",
2165 "enum": [
2137 - "window:deny-set-min-size"
2166 + "core:window:deny-set-max-size"
2167 ]
2168 },
2169 {
2141 - "description": "window:deny-set-minimizable -> Denies the set_minimizable command without any pre-configured scope.",
2170 + "description": "core:window:deny-set-maximizable -> Denies the set_maximizable command without any pre-configured scope.",
2171 "type": "string",
2172 "enum": [
2144 - "window:deny-set-minimizable"
2173 + "core:window:deny-set-maximizable"
2174 ]
2175 },
2176 {
2148 - "description": "window:deny-set-position -> Denies the set_position command without any pre-configured scope.",
2177 + "description": "core:window:deny-set-min-size -> Denies the set_min_size command without any pre-configured scope.",
2178 "type": "string",
2179 "enum": [
2151 - "window:deny-set-position"
2180 + "core:window:deny-set-min-size"
2181 ]
2182 },
2183 {
2155 - "description": "window:deny-set-progress-bar -> Denies the set_progress_bar command without any pre-configured scope.",
2184 + "description": "core:window:deny-set-minimizable -> Denies the set_minimizable command without any pre-configured scope.",
2185 "type": "string",
2186 "enum": [
2158 - "window:deny-set-progress-bar"
2187 + "core:window:deny-set-minimizable"
2188 ]
2189 },
2190 {
2162 - "description": "window:deny-set-resizable -> Denies the set_resizable command without any pre-configured scope.",
2191 + "description": "core:window:deny-set-position -> Denies the set_position command without any pre-configured scope.",
2192 "type": "string",
2193 "enum": [
2165 - "window:deny-set-resizable"
2194 + "core:window:deny-set-position"
2195 ]
2196 },
2197 {
2169 - "description": "window:deny-set-shadow -> Denies the set_shadow command without any pre-configured scope.",
2198 + "description": "core:window:deny-set-progress-bar -> Denies the set_progress_bar command without any pre-configured scope.",
2199 "type": "string",
2200 "enum": [
2172 - "window:deny-set-shadow"
2201 + "core:window:deny-set-progress-bar"
2202 ]
2203 },
2204 {
2176 - "description": "window:deny-set-size -> Denies the set_size command without any pre-configured scope.",
2205 + "description": "core:window:deny-set-resizable -> Denies the set_resizable command without any pre-configured scope.",
2206 "type": "string",
2207 "enum": [
2179 - "window:deny-set-size"
2208 + "core:window:deny-set-resizable"
2209 ]
2210 },
2211 {
2183 - "description": "window:deny-set-skip-taskbar -> Denies the set_skip_taskbar command without any pre-configured scope.",
2212 + "description": "core:window:deny-set-shadow -> Denies the set_shadow command without any pre-configured scope.",
2213 "type": "string",
2214 "enum": [
2186 - "window:deny-set-skip-taskbar"
2215 + "core:window:deny-set-shadow"
2216 ]
2217 },
2218 {
2190 - "description": "window:deny-set-title -> Denies the set_title command without any pre-configured scope.",
2219 + "description": "core:window:deny-set-size -> Denies the set_size command without any pre-configured scope.",
2220 "type": "string",
2221 "enum": [
2193 - "window:deny-set-title"
2222 + "core:window:deny-set-size"
2223 ]
2224 },
2225 {
2197 - "description": "window:deny-set-title-bar-style -> Denies the set_title_bar_style command without any pre-configured scope.",
2226 + "description": "core:window:deny-set-size-constraints -> Denies the set_size_constraints command without any pre-configured scope.",
2227 "type": "string",
2228 "enum": [
2200 - "window:deny-set-title-bar-style"
2229 + "core:window:deny-set-size-constraints"
2230 ]
2231 },
2232 {
2204 - "description": "window:deny-set-visible-on-all-workspaces -> Denies the set_visible_on_all_workspaces command without any pre-configured scope.",
2233 + "description": "core:window:deny-set-skip-taskbar -> Denies the set_skip_taskbar command without any pre-configured scope.",
2234 "type": "string",
2235 "enum": [
2207 - "window:deny-set-visible-on-all-workspaces"
2236 + "core:window:deny-set-skip-taskbar"
2237 ]
2238 },
2239 {
2211 - "description": "window:deny-show -> Denies the show command without any pre-configured scope.",
2240 + "description": "core:window:deny-set-title -> Denies the set_title command without any pre-configured scope.",
2241 "type": "string",
2242 "enum": [
2214 - "window:deny-show"
2243 + "core:window:deny-set-title"
2244 ]
2245 },
2246 {
2218 - "description": "window:deny-start-dragging -> Denies the start_dragging command without any pre-configured scope.",
2247 + "description": "core:window:deny-set-title-bar-style -> Denies the set_title_bar_style command without any pre-configured scope.",
2248 "type": "string",
2249 "enum": [
2221 - "window:deny-start-dragging"
2250 + "core:window:deny-set-title-bar-style"
2251 ]
2252 },
2253 {
2225 - "description": "window:deny-start-resize-dragging -> Denies the start_resize_dragging command without any pre-configured scope.",
2254 + "description": "core:window:deny-set-visible-on-all-workspaces -> Denies the set_visible_on_all_workspaces command without any pre-configured scope.",
2255 "type": "string",
2256 "enum": [
2228 - "window:deny-start-resize-dragging"
2257 + "core:window:deny-set-visible-on-all-workspaces"
2258 ]
2259 },
2260 {
2232 - "description": "window:deny-theme -> Denies the theme command without any pre-configured scope.",
2261 + "description": "core:window:deny-show -> Denies the show command without any pre-configured scope.",
2262 "type": "string",
2263 "enum": [
2235 - "window:deny-theme"
2264 + "core:window:deny-show"
2265 ]
2266 },
2267 {
2239 - "description": "window:deny-title -> Denies the title command without any pre-configured scope.",
2268 + "description": "core:window:deny-start-dragging -> Denies the start_dragging command without any pre-configured scope.",
2269 "type": "string",
2270 "enum": [
2242 - "window:deny-title"
2271 + "core:window:deny-start-dragging"
2272 ]
2273 },
2274 {
2246 - "description": "window:deny-toggle-maximize -> Denies the toggle_maximize command without any pre-configured scope.",
2275 + "description": "core:window:deny-start-resize-dragging -> Denies the start_resize_dragging command without any pre-configured scope.",
2276 "type": "string",
2277 "enum": [
2249 - "window:deny-toggle-maximize"
2278 + "core:window:deny-start-resize-dragging"
2279 ]
2280 },
2281 {
2253 - "description": "window:deny-unmaximize -> Denies the unmaximize command without any pre-configured scope.",
2282 + "description": "core:window:deny-theme -> Denies the theme command without any pre-configured scope.",
2283 "type": "string",
2284 "enum": [
2256 - "window:deny-unmaximize"
2285 + "core:window:deny-theme"
2286 ]
2287 },
2288 {
2260 - "description": "window:deny-unminimize -> Denies the unminimize command without any pre-configured scope.",
2289 + "description": "core:window:deny-title -> Denies the title command without any pre-configured scope.",
2290 "type": "string",
2291 "enum": [
2263 - "window:deny-unminimize"
2292 + "core:window:deny-title"
2293 + ]
2294 + },
2295 + {
2296 + "description": "core:window:deny-toggle-maximize -> Denies the toggle_maximize command without any pre-configured scope.",
2297 + "type": "string",
2298 + "enum": [
2299 + "core:window:deny-toggle-maximize"
2300 + ]
2301 + },
2302 + {
2303 + "description": "core:window:deny-unmaximize -> Denies the unmaximize command without any pre-configured scope.",
2304 + "type": "string",
2305 + "enum": [
2306 + "core:window:deny-unmaximize"
2307 + ]
2308 + },
2309 + {
2310 + "description": "core:window:deny-unminimize -> Denies the unminimize command without any pre-configured scope.",
2311 + "type": "string",
2312 + "enum": [
2313 + "core:window:deny-unminimize"
2314 + ]
2315 + },
2316 + {
2317 + "type": "string",
2318 + "enum": [
2319 + "devtools:default"
2320 ]
2321 }
2322 ]
examples/tauri-app/src-tauri/gen/schemas/mobile-schema.json
+609 -553
@@ -37,7 +37,7 @@
37 ],
38 "definitions": {
39 "Capability": {
40 - "description": "A grouping and boundary mechanism developers can use to isolate access to the IPC layer.\n\nIt controls application windows fine grained access to the Tauri core, application, or plugin commands. If a window is not matching any capability then it has no access to the IPC layer at all.\n\nThis can be done to create groups of windows, based on their required system access, which can reduce impact of frontend vulnerabilities in less privileged windows. Windows can be added to a capability by exact name (e.g. `main-window`) or glob patterns like `*` or `admin-*`. A Window can have none, one, or multiple associated capabilities.\n\n## Example\n\n```json { \"identifier\": \"main-user-files-write\", \"description\": \"This capability allows the `main` window on macOS and Windows access to `filesystem` write related commands and `dialog` commands to enable programatic access to files selected by the user.\", \"windows\": [ \"main\" ], \"permissions\": [ \"path:default\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] }, \"platforms\": [\"macOS\",\"windows\"] } ```",
40 + "description": "A grouping and boundary mechanism developers can use to isolate access to the IPC layer.\n\nIt controls application windows fine grained access to the Tauri core, application, or plugin commands. If a window is not matching any capability then it has no access to the IPC layer at all.\n\nThis can be done to create groups of windows, based on their required system access, which can reduce impact of frontend vulnerabilities in less privileged windows. Windows can be added to a capability by exact name (e.g. `main-window`) or glob patterns like `*` or `admin-*`. A Window can have none, one, or multiple associated capabilities.\n\n## Example\n\n```json { \"identifier\": \"main-user-files-write\", \"description\": \"This capability allows the `main` window on macOS and Windows access to `filesystem` write related commands and `dialog` commands to enable programatic access to files selected by the user.\", \"windows\": [ \"main\" ], \"permissions\": [ \"core:default\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] }, \"platforms\": [\"macOS\",\"windows\"] } ```",
41 "type": "object",
42 "required": [
43 "identifier",
@@ -84,7 +84,7 @@
84 }
85 },
86 "permissions": {
87 - "description": "List of permissions attached to this capability.\n\nMust include the plugin name as prefix in the form of `${plugin-name}:${permission-name}`. For commands directly implemented in the application itself only `${permission-name}` is required.\n\n## Example\n\n```json [ \"path:default\", \"event:default\", \"window:default\", \"app:default\", \"image:default\", \"resources:default\", \"menu:default\", \"tray:default\", \"shell:allow-open\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] } ```",
87 + "description": "List of permissions attached to this capability.\n\nMust include the plugin name as prefix in the form of `${plugin-name}:${permission-name}`. For commands directly implemented in the application itself only `${permission-name}` is required.\n\n## Example\n\n```json [ \"core:default\", \"shell:allow-open\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] } ```",
88 "type": "array",
89 "items": {
90 "$ref": "#/definitions/PermissionEntry"
@@ -234,6 +234,13 @@
234 "admob:allow-isPrivacyOptionsRequired"
235 ]
236 },
237 + {
238 + "description": "admob:allow-register-listener -> Enables the register_listener command without any pre-configured scope.",
239 + "type": "string",
240 + "enum": [
241 + "admob:allow-register-listener"
242 + ]
243 + },
244 {
245 "description": "admob:allow-requestTrackingAuthorization -> Enables the requestTrackingAuthorization command without any pre-configured scope.",
246 "type": "string",
@@ -311,6 +318,13 @@
318 "admob:deny-isPrivacyOptionsRequired"
319 ]
320 },
321 + {
322 + "description": "admob:deny-register-listener -> Denies the register_listener command without any pre-configured scope.",
323 + "type": "string",
324 + "enum": [
325 + "admob:deny-register-listener"
326 + ]
327 + },
328 {
329 "description": "admob:deny-requestTrackingAuthorization -> Denies the requestTrackingAuthorization command without any pre-configured scope.",
330 "type": "string",
@@ -333,1934 +347,1976 @@
347 ]
348 },
349 {
336 - "description": "app:default -> Default permissions for the plugin.",
350 + "description": "core:app:default -> Default permissions for the plugin.",
351 "type": "string",
352 "enum": [
339 - "app:default"
353 + "core:app:default"
354 ]
355 },
356 {
343 - "description": "app:allow-app-hide -> Enables the app_hide command without any pre-configured scope.",
357 + "description": "core:app:allow-app-hide -> Enables the app_hide command without any pre-configured scope.",
358 "type": "string",
359 "enum": [
346 - "app:allow-app-hide"
360 + "core:app:allow-app-hide"
361 ]
362 },
363 {
350 - "description": "app:allow-app-show -> Enables the app_show command without any pre-configured scope.",
364 + "description": "core:app:allow-app-show -> Enables the app_show command without any pre-configured scope.",
365 "type": "string",
366 "enum": [
353 - "app:allow-app-show"
367 + "core:app:allow-app-show"
368 ]
369 },
370 {
357 - "description": "app:allow-default-window-icon -> Enables the default_window_icon command without any pre-configured scope.",
371 + "description": "core:app:allow-default-window-icon -> Enables the default_window_icon command without any pre-configured scope.",
372 "type": "string",
373 "enum": [
360 - "app:allow-default-window-icon"
374 + "core:app:allow-default-window-icon"
375 ]
376 },
377 {
364 - "description": "app:allow-name -> Enables the name command without any pre-configured scope.",
378 + "description": "core:app:allow-name -> Enables the name command without any pre-configured scope.",
379 "type": "string",
380 "enum": [
367 - "app:allow-name"
381 + "core:app:allow-name"
382 ]
383 },
384 {
371 - "description": "app:allow-tauri-version -> Enables the tauri_version command without any pre-configured scope.",
385 + "description": "core:app:allow-tauri-version -> Enables the tauri_version command without any pre-configured scope.",
386 "type": "string",
387 "enum": [
374 - "app:allow-tauri-version"
388 + "core:app:allow-tauri-version"
389 ]
390 },
391 {
378 - "description": "app:allow-version -> Enables the version command without any pre-configured scope.",
392 + "description": "core:app:allow-version -> Enables the version command without any pre-configured scope.",
393 "type": "string",
394 "enum": [
381 - "app:allow-version"
395 + "core:app:allow-version"
396 ]
397 },
398 {
385 - "description": "app:deny-app-hide -> Denies the app_hide command without any pre-configured scope.",
399 + "description": "core:app:deny-app-hide -> Denies the app_hide command without any pre-configured scope.",
400 "type": "string",
401 "enum": [
388 - "app:deny-app-hide"
402 + "core:app:deny-app-hide"
403 ]
404 },
405 {
392 - "description": "app:deny-app-show -> Denies the app_show command without any pre-configured scope.",
406 + "description": "core:app:deny-app-show -> Denies the app_show command without any pre-configured scope.",
407 "type": "string",
408 "enum": [
395 - "app:deny-app-show"
409 + "core:app:deny-app-show"
410 ]
411 },
412 {
399 - "description": "app:deny-default-window-icon -> Denies the default_window_icon command without any pre-configured scope.",
413 + "description": "core:app:deny-default-window-icon -> Denies the default_window_icon command without any pre-configured scope.",
414 "type": "string",
415 "enum": [
402 - "app:deny-default-window-icon"
416 + "core:app:deny-default-window-icon"
417 ]
418 },
419 {
406 - "description": "app:deny-name -> Denies the name command without any pre-configured scope.",
420 + "description": "core:app:deny-name -> Denies the name command without any pre-configured scope.",
421 "type": "string",
422 "enum": [
409 - "app:deny-name"
423 + "core:app:deny-name"
424 ]
425 },
426 {
413 - "description": "app:deny-tauri-version -> Denies the tauri_version command without any pre-configured scope.",
427 + "description": "core:app:deny-tauri-version -> Denies the tauri_version command without any pre-configured scope.",
428 "type": "string",
429 "enum": [
416 - "app:deny-tauri-version"
430 + "core:app:deny-tauri-version"
431 ]
432 },
433 {
420 - "description": "app:deny-version -> Denies the version command without any pre-configured scope.",
434 + "description": "core:app:deny-version -> Denies the version command without any pre-configured scope.",
435 "type": "string",
436 "enum": [
423 - "app:deny-version"
437 + "core:app:deny-version"
438 ]
439 },
440 {
441 + "description": "core:event:default -> Default permissions for the plugin.",
442 "type": "string",
443 "enum": [
429 - "devtools:default"
444 + "core:event:default"
445 + ]
446 + },
447 + {
448 + "description": "core:event:allow-emit -> Enables the emit command without any pre-configured scope.",
449 + "type": "string",
450 + "enum": [
451 + "core:event:allow-emit"
452 + ]
453 + },
454 + {
455 + "description": "core:event:allow-emit-to -> Enables the emit_to command without any pre-configured scope.",
456 + "type": "string",
457 + "enum": [
458 + "core:event:allow-emit-to"
459 ]
460 },
461 {
433 - "description": "event:default -> Default permissions for the plugin.",
462 + "description": "core:event:allow-listen -> Enables the listen command without any pre-configured scope.",
463 "type": "string",
464 "enum": [
436 - "event:default"
465 + "core:event:allow-listen"
466 ]
467 },
468 {
440 - "description": "event:allow-emit -> Enables the emit command without any pre-configured scope.",
469 + "description": "core:event:allow-unlisten -> Enables the unlisten command without any pre-configured scope.",
470 "type": "string",
471 "enum": [
443 - "event:allow-emit"
472 + "core:event:allow-unlisten"
473 ]
474 },
475 {
447 - "description": "event:allow-emit-to -> Enables the emit_to command without any pre-configured scope.",
476 + "description": "core:event:deny-emit -> Denies the emit command without any pre-configured scope.",
477 "type": "string",
478 "enum": [
450 - "event:allow-emit-to"
479 + "core:event:deny-emit"
480 ]
481 },
482 {
454 - "description": "event:allow-listen -> Enables the listen command without any pre-configured scope.",
483 + "description": "core:event:deny-emit-to -> Denies the emit_to command without any pre-configured scope.",
484 "type": "string",
485 "enum": [
457 - "event:allow-listen"
486 + "core:event:deny-emit-to"
487 ]
488 },
489 {
461 - "description": "event:allow-unlisten -> Enables the unlisten command without any pre-configured scope.",
490 + "description": "core:event:deny-listen -> Denies the listen command without any pre-configured scope.",
491 "type": "string",
492 "enum": [
464 - "event:allow-unlisten"
493 + "core:event:deny-listen"
494 ]
495 },
496 {
468 - "description": "event:deny-emit -> Denies the emit command without any pre-configured scope.",
497 + "description": "core:event:deny-unlisten -> Denies the unlisten command without any pre-configured scope.",
498 "type": "string",
499 "enum": [
471 - "event:deny-emit"
500 + "core:event:deny-unlisten"
501 ]
502 },
503 {
475 - "description": "event:deny-emit-to -> Denies the emit_to command without any pre-configured scope.",
504 + "description": "core:image:default -> Default permissions for the plugin.",
505 "type": "string",
506 "enum": [
478 - "event:deny-emit-to"
507 + "core:image:default"
508 ]
509 },
510 {
482 - "description": "event:deny-listen -> Denies the listen command without any pre-configured scope.",
511 + "description": "core:image:allow-from-bytes -> Enables the from_bytes command without any pre-configured scope.",
512 "type": "string",
513 "enum": [
485 - "event:deny-listen"
514 + "core:image:allow-from-bytes"
515 ]
516 },
517 {
489 - "description": "event:deny-unlisten -> Denies the unlisten command without any pre-configured scope.",
518 + "description": "core:image:allow-from-path -> Enables the from_path command without any pre-configured scope.",
519 "type": "string",
520 "enum": [
492 - "event:deny-unlisten"
521 + "core:image:allow-from-path"
522 ]
523 },
524 {
496 - "description": "image:default -> Default permissions for the plugin.",
525 + "description": "core:image:allow-new -> Enables the new command without any pre-configured scope.",
526 "type": "string",
527 "enum": [
499 - "image:default"
528 + "core:image:allow-new"
529 ]
530 },
531 {
503 - "description": "image:allow-from-bytes -> Enables the from_bytes command without any pre-configured scope.",
532 + "description": "core:image:allow-rgba -> Enables the rgba command without any pre-configured scope.",
533 "type": "string",
534 "enum": [
506 - "image:allow-from-bytes"
535 + "core:image:allow-rgba"
536 ]
537 },
538 {
510 - "description": "image:allow-from-path -> Enables the from_path command without any pre-configured scope.",
539 + "description": "core:image:allow-size -> Enables the size command without any pre-configured scope.",
540 "type": "string",
541 "enum": [
513 - "image:allow-from-path"
542 + "core:image:allow-size"
543 ]
544 },
545 {
517 - "description": "image:allow-new -> Enables the new command without any pre-configured scope.",
546 + "description": "core:image:deny-from-bytes -> Denies the from_bytes command without any pre-configured scope.",
547 "type": "string",
548 "enum": [
520 - "image:allow-new"
549 + "core:image:deny-from-bytes"
550 ]
551 },
552 {
524 - "description": "image:allow-rgba -> Enables the rgba command without any pre-configured scope.",
553 + "description": "core:image:deny-from-path -> Denies the from_path command without any pre-configured scope.",
554 "type": "string",
555 "enum": [
527 - "image:allow-rgba"
556 + "core:image:deny-from-path"
557 ]
558 },
559 {
531 - "description": "image:allow-size -> Enables the size command without any pre-configured scope.",
560 + "description": "core:image:deny-new -> Denies the new command without any pre-configured scope.",
561 "type": "string",
562 "enum": [
534 - "image:allow-size"
563 + "core:image:deny-new"
564 ]
565 },
566 {
538 - "description": "image:deny-from-bytes -> Denies the from_bytes command without any pre-configured scope.",
567 + "description": "core:image:deny-rgba -> Denies the rgba command without any pre-configured scope.",
568 "type": "string",
569 "enum": [
541 - "image:deny-from-bytes"
570 + "core:image:deny-rgba"
571 ]
572 },
573 {
545 - "description": "image:deny-from-path -> Denies the from_path command without any pre-configured scope.",
574 + "description": "core:image:deny-size -> Denies the size command without any pre-configured scope.",
575 "type": "string",
576 "enum": [
548 - "image:deny-from-path"
577 + "core:image:deny-size"
578 ]
579 },
580 {
552 - "description": "image:deny-new -> Denies the new command without any pre-configured scope.",
581 + "description": "core:menu:default -> Default permissions for the plugin.",
582 "type": "string",
583 "enum": [
555 - "image:deny-new"
584 + "core:menu:default"
585 ]
586 },
587 {
559 - "description": "image:deny-rgba -> Denies the rgba command without any pre-configured scope.",
588 + "description": "core:menu:allow-append -> Enables the append command without any pre-configured scope.",
589 "type": "string",
590 "enum": [
562 - "image:deny-rgba"
591 + "core:menu:allow-append"
592 ]
593 },
594 {
566 - "description": "image:deny-size -> Denies the size command without any pre-configured scope.",
595 + "description": "core:menu:allow-create-default -> Enables the create_default command without any pre-configured scope.",
596 "type": "string",
597 "enum": [
569 - "image:deny-size"
598 + "core:menu:allow-create-default"
599 ]
600 },
601 {
573 - "description": "menu:default -> Default permissions for the plugin.",
602 + "description": "core:menu:allow-get -> Enables the get command without any pre-configured scope.",
603 "type": "string",
604 "enum": [
576 - "menu:default"
605 + "core:menu:allow-get"
606 ]
607 },
608 {
580 - "description": "menu:allow-append -> Enables the append command without any pre-configured scope.",
609 + "description": "core:menu:allow-insert -> Enables the insert command without any pre-configured scope.",
610 "type": "string",
611 "enum": [
583 - "menu:allow-append"
612 + "core:menu:allow-insert"
613 ]
614 },
615 {
587 - "description": "menu:allow-create-default -> Enables the create_default command without any pre-configured scope.",
616 + "description": "core:menu:allow-is-checked -> Enables the is_checked command without any pre-configured scope.",
617 "type": "string",
618 "enum": [
590 - "menu:allow-create-default"
619 + "core:menu:allow-is-checked"
620 ]
621 },
622 {
594 - "description": "menu:allow-get -> Enables the get command without any pre-configured scope.",
623 + "description": "core:menu:allow-is-enabled -> Enables the is_enabled command without any pre-configured scope.",
624 "type": "string",
625 "enum": [
597 - "menu:allow-get"
626 + "core:menu:allow-is-enabled"
627 ]
628 },
629 {
601 - "description": "menu:allow-insert -> Enables the insert command without any pre-configured scope.",
630 + "description": "core:menu:allow-items -> Enables the items command without any pre-configured scope.",
631 "type": "string",
632 "enum": [
604 - "menu:allow-insert"
633 + "core:menu:allow-items"
634 ]
635 },
636 {
608 - "description": "menu:allow-is-checked -> Enables the is_checked command without any pre-configured scope.",
637 + "description": "core:menu:allow-new -> Enables the new command without any pre-configured scope.",
638 "type": "string",
639 "enum": [
611 - "menu:allow-is-checked"
640 + "core:menu:allow-new"
641 ]
642 },
643 {
615 - "description": "menu:allow-is-enabled -> Enables the is_enabled command without any pre-configured scope.",
644 + "description": "core:menu:allow-popup -> Enables the popup command without any pre-configured scope.",
645 "type": "string",
646 "enum": [
618 - "menu:allow-is-enabled"
647 + "core:menu:allow-popup"
648 ]
649 },
650 {
622 - "description": "menu:allow-items -> Enables the items command without any pre-configured scope.",
651 + "description": "core:menu:allow-prepend -> Enables the prepend command without any pre-configured scope.",
652 "type": "string",
653 "enum": [
625 - "menu:allow-items"
654 + "core:menu:allow-prepend"
655 ]
656 },
657 {
629 - "description": "menu:allow-new -> Enables the new command without any pre-configured scope.",
658 + "description": "core:menu:allow-remove -> Enables the remove command without any pre-configured scope.",
659 "type": "string",
660 "enum": [
632 - "menu:allow-new"
661 + "core:menu:allow-remove"
662 ]
663 },
664 {
636 - "description": "menu:allow-popup -> Enables the popup command without any pre-configured scope.",
665 + "description": "core:menu:allow-remove-at -> Enables the remove_at command without any pre-configured scope.",
666 "type": "string",
667 "enum": [
639 - "menu:allow-popup"
668 + "core:menu:allow-remove-at"
669 ]
670 },
671 {
643 - "description": "menu:allow-prepend -> Enables the prepend command without any pre-configured scope.",
672 + "description": "core:menu:allow-set-accelerator -> Enables the set_accelerator command without any pre-configured scope.",
673 "type": "string",
674 "enum": [
646 - "menu:allow-prepend"
675 + "core:menu:allow-set-accelerator"
676 ]
677 },
678 {
650 - "description": "menu:allow-remove -> Enables the remove command without any pre-configured scope.",
679 + "description": "core:menu:allow-set-as-app-menu -> Enables the set_as_app_menu command without any pre-configured scope.",
680 "type": "string",
681 "enum": [
653 - "menu:allow-remove"
682 + "core:menu:allow-set-as-app-menu"
683 ]
684 },
685 {
657 - "description": "menu:allow-remove-at -> Enables the remove_at command without any pre-configured scope.",
686 + "description": "core:menu:allow-set-as-help-menu-for-nsapp -> Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.",
687 "type": "string",
688 "enum": [
660 - "menu:allow-remove-at"
689 + "core:menu:allow-set-as-help-menu-for-nsapp"
690 ]
691 },
692 {
664 - "description": "menu:allow-set-accelerator -> Enables the set_accelerator command without any pre-configured scope.",
693 + "description": "core:menu:allow-set-as-window-menu -> Enables the set_as_window_menu command without any pre-configured scope.",
694 "type": "string",
695 "enum": [
667 - "menu:allow-set-accelerator"
696 + "core:menu:allow-set-as-window-menu"
697 ]
698 },
699 {
671 - "description": "menu:allow-set-as-app-menu -> Enables the set_as_app_menu command without any pre-configured scope.",
700 + "description": "core:menu:allow-set-as-windows-menu-for-nsapp -> Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
701 "type": "string",
702 "enum": [
674 - "menu:allow-set-as-app-menu"
703 + "core:menu:allow-set-as-windows-menu-for-nsapp"
704 ]
705 },
706 {
678 - "description": "menu:allow-set-as-help-menu-for-nsapp -> Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.",
707 + "description": "core:menu:allow-set-checked -> Enables the set_checked command without any pre-configured scope.",
708 "type": "string",
709 "enum": [
681 - "menu:allow-set-as-help-menu-for-nsapp"
710 + "core:menu:allow-set-checked"
711 ]
712 },
713 {
685 - "description": "menu:allow-set-as-window-menu -> Enables the set_as_window_menu command without any pre-configured scope.",
714 + "description": "core:menu:allow-set-enabled -> Enables the set_enabled command without any pre-configured scope.",
715 "type": "string",
716 "enum": [
688 - "menu:allow-set-as-window-menu"
717 + "core:menu:allow-set-enabled"
718 ]
719 },
720 {
692 - "description": "menu:allow-set-as-windows-menu-for-nsapp -> Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
721 + "description": "core:menu:allow-set-icon -> Enables the set_icon command without any pre-configured scope.",
722 "type": "string",
723 "enum": [
695 - "menu:allow-set-as-windows-menu-for-nsapp"
724 + "core:menu:allow-set-icon"
725 ]
726 },
727 {
699 - "description": "menu:allow-set-checked -> Enables the set_checked command without any pre-configured scope.",
728 + "description": "core:menu:allow-set-text -> Enables the set_text command without any pre-configured scope.",
729 "type": "string",
730 "enum": [
702 - "menu:allow-set-checked"
731 + "core:menu:allow-set-text"
732 ]
733 },
734 {
706 - "description": "menu:allow-set-enabled -> Enables the set_enabled command without any pre-configured scope.",
735 + "description": "core:menu:allow-text -> Enables the text command without any pre-configured scope.",
736 "type": "string",
737 "enum": [
709 - "menu:allow-set-enabled"
738 + "core:menu:allow-text"
739 ]
740 },
741 {
713 - "description": "menu:allow-set-icon -> Enables the set_icon command without any pre-configured scope.",
742 + "description": "core:menu:deny-append -> Denies the append command without any pre-configured scope.",
743 "type": "string",
744 "enum": [
716 - "menu:allow-set-icon"
745 + "core:menu:deny-append"
746 ]
747 },
748 {
720 - "description": "menu:allow-set-text -> Enables the set_text command without any pre-configured scope.",
749 + "description": "core:menu:deny-create-default -> Denies the create_default command without any pre-configured scope.",
750 "type": "string",
751 "enum": [
723 - "menu:allow-set-text"
752 + "core:menu:deny-create-default"
753 ]
754 },
755 {
727 - "description": "menu:allow-text -> Enables the text command without any pre-configured scope.",
756 + "description": "core:menu:deny-get -> Denies the get command without any pre-configured scope.",
757 "type": "string",
758 "enum": [
730 - "menu:allow-text"
759 + "core:menu:deny-get"
760 ]
761 },
762 {
734 - "description": "menu:deny-append -> Denies the append command without any pre-configured scope.",
763 + "description": "core:menu:deny-insert -> Denies the insert command without any pre-configured scope.",
764 "type": "string",
765 "enum": [
737 - "menu:deny-append"
766 + "core:menu:deny-insert"
767 ]
768 },
769 {
741 - "description": "menu:deny-create-default -> Denies the create_default command without any pre-configured scope.",
770 + "description": "core:menu:deny-is-checked -> Denies the is_checked command without any pre-configured scope.",
771 "type": "string",
772 "enum": [
744 - "menu:deny-create-default"
773 + "core:menu:deny-is-checked"
774 ]
775 },
776 {
748 - "description": "menu:deny-get -> Denies the get command without any pre-configured scope.",
777 + "description": "core:menu:deny-is-enabled -> Denies the is_enabled command without any pre-configured scope.",
778 "type": "string",
779 "enum": [
751 - "menu:deny-get"
780 + "core:menu:deny-is-enabled"
781 ]
782 },
783 {
755 - "description": "menu:deny-insert -> Denies the insert command without any pre-configured scope.",
784 + "description": "core:menu:deny-items -> Denies the items command without any pre-configured scope.",
785 "type": "string",
786 "enum": [
758 - "menu:deny-insert"
787 + "core:menu:deny-items"
788 ]
789 },
790 {
762 - "description": "menu:deny-is-checked -> Denies the is_checked command without any pre-configured scope.",
791 + "description": "core:menu:deny-new -> Denies the new command without any pre-configured scope.",
792 "type": "string",
793 "enum": [
765 - "menu:deny-is-checked"
794 + "core:menu:deny-new"
795 ]
796 },
797 {
769 - "description": "menu:deny-is-enabled -> Denies the is_enabled command without any pre-configured scope.",
798 + "description": "core:menu:deny-popup -> Denies the popup command without any pre-configured scope.",
799 "type": "string",
800 "enum": [
772 - "menu:deny-is-enabled"
801 + "core:menu:deny-popup"
802 ]
803 },
804 {
776 - "description": "menu:deny-items -> Denies the items command without any pre-configured scope.",
805 + "description": "core:menu:deny-prepend -> Denies the prepend command without any pre-configured scope.",
806 "type": "string",
807 "enum": [
779 - "menu:deny-items"
808 + "core:menu:deny-prepend"
809 ]
810 },
811 {
783 - "description": "menu:deny-new -> Denies the new command without any pre-configured scope.",
812 + "description": "core:menu:deny-remove -> Denies the remove command without any pre-configured scope.",
813 "type": "string",
814 "enum": [
786 - "menu:deny-new"
815 + "core:menu:deny-remove"
816 ]
817 },
818 {
790 - "description": "menu:deny-popup -> Denies the popup command without any pre-configured scope.",
819 + "description": "core:menu:deny-remove-at -> Denies the remove_at command without any pre-configured scope.",
820 "type": "string",
821 "enum": [
793 - "menu:deny-popup"
822 + "core:menu:deny-remove-at"
823 ]
824 },
825 {
797 - "description": "menu:deny-prepend -> Denies the prepend command without any pre-configured scope.",
826 + "description": "core:menu:deny-set-accelerator -> Denies the set_accelerator command without any pre-configured scope.",
827 "type": "string",
828 "enum": [
800 - "menu:deny-prepend"
829 + "core:menu:deny-set-accelerator"
830 ]
831 },
832 {
804 - "description": "menu:deny-remove -> Denies the remove command without any pre-configured scope.",
833 + "description": "core:menu:deny-set-as-app-menu -> Denies the set_as_app_menu command without any pre-configured scope.",
834 "type": "string",
835 "enum": [
807 - "menu:deny-remove"
836 + "core:menu:deny-set-as-app-menu"
837 ]
838 },
839 {
811 - "description": "menu:deny-remove-at -> Denies the remove_at command without any pre-configured scope.",
840 + "description": "core:menu:deny-set-as-help-menu-for-nsapp -> Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.",
841 "type": "string",
842 "enum": [
814 - "menu:deny-remove-at"
843 + "core:menu:deny-set-as-help-menu-for-nsapp"
844 ]
845 },
846 {
818 - "description": "menu:deny-set-accelerator -> Denies the set_accelerator command without any pre-configured scope.",
847 + "description": "core:menu:deny-set-as-window-menu -> Denies the set_as_window_menu command without any pre-configured scope.",
848 "type": "string",
849 "enum": [
821 - "menu:deny-set-accelerator"
850 + "core:menu:deny-set-as-window-menu"
851 ]
852 },
853 {
825 - "description": "menu:deny-set-as-app-menu -> Denies the set_as_app_menu command without any pre-configured scope.",
854 + "description": "core:menu:deny-set-as-windows-menu-for-nsapp -> Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
855 "type": "string",
856 "enum": [
828 - "menu:deny-set-as-app-menu"
857 + "core:menu:deny-set-as-windows-menu-for-nsapp"
858 ]
859 },
860 {
832 - "description": "menu:deny-set-as-help-menu-for-nsapp -> Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.",
861 + "description": "core:menu:deny-set-checked -> Denies the set_checked command without any pre-configured scope.",
862 "type": "string",
863 "enum": [
835 - "menu:deny-set-as-help-menu-for-nsapp"
864 + "core:menu:deny-set-checked"
865 ]
866 },
867 {
839 - "description": "menu:deny-set-as-window-menu -> Denies the set_as_window_menu command without any pre-configured scope.",
868 + "description": "core:menu:deny-set-enabled -> Denies the set_enabled command without any pre-configured scope.",
869 "type": "string",
870 "enum": [
842 - "menu:deny-set-as-window-menu"
871 + "core:menu:deny-set-enabled"
872 ]
873 },
874 {
846 - "description": "menu:deny-set-as-windows-menu-for-nsapp -> Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
875 + "description": "core:menu:deny-set-icon -> Denies the set_icon command without any pre-configured scope.",
876 "type": "string",
877 "enum": [
849 - "menu:deny-set-as-windows-menu-for-nsapp"
878 + "core:menu:deny-set-icon"
879 ]
880 },
881 {
853 - "description": "menu:deny-set-checked -> Denies the set_checked command without any pre-configured scope.",
882 + "description": "core:menu:deny-set-text -> Denies the set_text command without any pre-configured scope.",
883 "type": "string",
884 "enum": [
856 - "menu:deny-set-checked"
885 + "core:menu:deny-set-text"
886 ]
887 },
888 {
860 - "description": "menu:deny-set-enabled -> Denies the set_enabled command without any pre-configured scope.",
889 + "description": "core:menu:deny-text -> Denies the text command without any pre-configured scope.",
890 "type": "string",
891 "enum": [
863 - "menu:deny-set-enabled"
892 + "core:menu:deny-text"
893 ]
894 },
895 {
867 - "description": "menu:deny-set-icon -> Denies the set_icon command without any pre-configured scope.",
896 + "description": "core:path:default -> Default permissions for the plugin.",
897 "type": "string",
898 "enum": [
870 - "menu:deny-set-icon"
899 + "core:path:default"
900 ]
901 },
902 {
874 - "description": "menu:deny-set-text -> Denies the set_text command without any pre-configured scope.",
903 + "description": "core:path:allow-basename -> Enables the basename command without any pre-configured scope.",
904 "type": "string",
905 "enum": [
877 - "menu:deny-set-text"
906 + "core:path:allow-basename"
907 ]
908 },
909 {
881 - "description": "menu:deny-text -> Denies the text command without any pre-configured scope.",
910 + "description": "core:path:allow-dirname -> Enables the dirname command without any pre-configured scope.",
911 "type": "string",
912 "enum": [
884 - "menu:deny-text"
913 + "core:path:allow-dirname"
914 ]
915 },
916 {
888 - "description": "path:default -> Default permissions for the plugin.",
917 + "description": "core:path:allow-extname -> Enables the extname command without any pre-configured scope.",
918 "type": "string",
919 "enum": [
891 - "path:default"
920 + "core:path:allow-extname"
921 ]
922 },
923 {
895 - "description": "path:allow-basename -> Enables the basename command without any pre-configured scope.",
924 + "description": "core:path:allow-is-absolute -> Enables the is_absolute command without any pre-configured scope.",
925 "type": "string",
926 "enum": [
898 - "path:allow-basename"
927 + "core:path:allow-is-absolute"
928 ]
929 },
930 {
902 - "description": "path:allow-dirname -> Enables the dirname command without any pre-configured scope.",
931 + "description": "core:path:allow-join -> Enables the join command without any pre-configured scope.",
932 "type": "string",
933 "enum": [
905 - "path:allow-dirname"
934 + "core:path:allow-join"
935 ]
936 },
937 {
909 - "description": "path:allow-extname -> Enables the extname command without any pre-configured scope.",
938 + "description": "core:path:allow-normalize -> Enables the normalize command without any pre-configured scope.",
939 "type": "string",
940 "enum": [
912 - "path:allow-extname"
941 + "core:path:allow-normalize"
942 ]
943 },
944 {
916 - "description": "path:allow-is-absolute -> Enables the is_absolute command without any pre-configured scope.",
945 + "description": "core:path:allow-resolve -> Enables the resolve command without any pre-configured scope.",
946 "type": "string",
947 "enum": [
919 - "path:allow-is-absolute"
948 + "core:path:allow-resolve"
949 ]
950 },
951 {
923 - "description": "path:allow-join -> Enables the join command without any pre-configured scope.",
952 + "description": "core:path:allow-resolve-directory -> Enables the resolve_directory command without any pre-configured scope.",
953 "type": "string",
954 "enum": [
926 - "path:allow-join"
955 + "core:path:allow-resolve-directory"
956 ]
957 },
958 {
930 - "description": "path:allow-normalize -> Enables the normalize command without any pre-configured scope.",
959 + "description": "core:path:deny-basename -> Denies the basename command without any pre-configured scope.",
960 "type": "string",
961 "enum": [
933 - "path:allow-normalize"
962 + "core:path:deny-basename"
963 ]
964 },
965 {
937 - "description": "path:allow-resolve -> Enables the resolve command without any pre-configured scope.",
966 + "description": "core:path:deny-dirname -> Denies the dirname command without any pre-configured scope.",
967 "type": "string",
968 "enum": [
940 - "path:allow-resolve"
969 + "core:path:deny-dirname"
970 ]
971 },
972 {
944 - "description": "path:allow-resolve-directory -> Enables the resolve_directory command without any pre-configured scope.",
973 + "description": "core:path:deny-extname -> Denies the extname command without any pre-configured scope.",
974 "type": "string",
975 "enum": [
947 - "path:allow-resolve-directory"
976 + "core:path:deny-extname"
977 ]
978 },
979 {
951 - "description": "path:deny-basename -> Denies the basename command without any pre-configured scope.",
980 + "description": "core:path:deny-is-absolute -> Denies the is_absolute command without any pre-configured scope.",
981 "type": "string",
982 "enum": [
954 - "path:deny-basename"
983 + "core:path:deny-is-absolute"
984 ]
985 },
986 {
958 - "description": "path:deny-dirname -> Denies the dirname command without any pre-configured scope.",
987 + "description": "core:path:deny-join -> Denies the join command without any pre-configured scope.",
988 "type": "string",
989 "enum": [
961 - "path:deny-dirname"
990 + "core:path:deny-join"
991 ]
992 },
993 {
965 - "description": "path:deny-extname -> Denies the extname command without any pre-configured scope.",
994 + "description": "core:path:deny-normalize -> Denies the normalize command without any pre-configured scope.",
995 "type": "string",
996 "enum": [
968 - "path:deny-extname"
997 + "core:path:deny-normalize"
998 ]
999 },
1000 {
972 - "description": "path:deny-is-absolute -> Denies the is_absolute command without any pre-configured scope.",
1001 + "description": "core:path:deny-resolve -> Denies the resolve command without any pre-configured scope.",
1002 "type": "string",
1003 "enum": [
975 - "path:deny-is-absolute"
1004 + "core:path:deny-resolve"
1005 ]
1006 },
1007 {
979 - "description": "path:deny-join -> Denies the join command without any pre-configured scope.",
1008 + "description": "core:path:deny-resolve-directory -> Denies the resolve_directory command without any pre-configured scope.",
1009 "type": "string",
1010 "enum": [
982 - "path:deny-join"
1011 + "core:path:deny-resolve-directory"
1012 ]
1013 },
1014 {
986 - "description": "path:deny-normalize -> Denies the normalize command without any pre-configured scope.",
1015 + "description": "core:resources:default -> Default permissions for the plugin.",
1016 "type": "string",
1017 "enum": [
989 - "path:deny-normalize"
1018 + "core:resources:default"
1019 ]
1020 },
1021 {
993 - "description": "path:deny-resolve -> Denies the resolve command without any pre-configured scope.",
1022 + "description": "core:resources:allow-close -> Enables the close command without any pre-configured scope.",
1023 "type": "string",
1024 "enum": [
996 - "path:deny-resolve"
1025 + "core:resources:allow-close"
1026 ]
1027 },
1028 {
1000 - "description": "path:deny-resolve-directory -> Denies the resolve_directory command without any pre-configured scope.",
1029 + "description": "core:resources:deny-close -> Denies the close command without any pre-configured scope.",
1030 "type": "string",
1031 "enum": [
1003 - "path:deny-resolve-directory"
1032 + "core:resources:deny-close"
1033 ]
1034 },
1035 {
1007 - "description": "resources:default -> Default permissions for the plugin.",
1036 + "description": "core:tray:default -> Default permissions for the plugin.",
1037 "type": "string",
1038 "enum": [
1010 - "resources:default"
1039 + "core:tray:default"
1040 ]
1041 },
1042 {
1014 - "description": "resources:allow-close -> Enables the close command without any pre-configured scope.",
1043 + "description": "core:tray:allow-get-by-id -> Enables the get_by_id command without any pre-configured scope.",
1044 "type": "string",
1045 "enum": [
1017 - "resources:allow-close"
1046 + "core:tray:allow-get-by-id"
1047 ]
1048 },
1049 {
1021 - "description": "resources:deny-close -> Denies the close command without any pre-configured scope.",
1050 + "description": "core:tray:allow-new -> Enables the new command without any pre-configured scope.",
1051 "type": "string",
1052 "enum": [
1024 - "resources:deny-close"
1053 + "core:tray:allow-new"
1054 ]
1055 },
1056 {
1028 - "description": "tray:default -> Default permissions for the plugin.",
1057 + "description": "core:tray:allow-remove-by-id -> Enables the remove_by_id command without any pre-configured scope.",
1058 "type": "string",
1059 "enum": [
1031 - "tray:default"
1060 + "core:tray:allow-remove-by-id"
1061 ]
1062 },
1063 {
1035 - "description": "tray:allow-get-by-id -> Enables the get_by_id command without any pre-configured scope.",
1064 + "description": "core:tray:allow-set-icon -> Enables the set_icon command without any pre-configured scope.",
1065 "type": "string",
1066 "enum": [
1038 - "tray:allow-get-by-id"
1067 + "core:tray:allow-set-icon"
1068 ]
1069 },
1070 {
1042 - "description": "tray:allow-new -> Enables the new command without any pre-configured scope.",
1071 + "description": "core:tray:allow-set-icon-as-template -> Enables the set_icon_as_template command without any pre-configured scope.",
1072 "type": "string",
1073 "enum": [
1045 - "tray:allow-new"
1074 + "core:tray:allow-set-icon-as-template"
1075 ]
1076 },
1077 {
1049 - "description": "tray:allow-remove-by-id -> Enables the remove_by_id command without any pre-configured scope.",
1078 + "description": "core:tray:allow-set-menu -> Enables the set_menu command without any pre-configured scope.",
1079 "type": "string",
1080 "enum": [
1052 - "tray:allow-remove-by-id"
1081 + "core:tray:allow-set-menu"
1082 ]
1083 },
1084 {
1056 - "description": "tray:allow-set-icon -> Enables the set_icon command without any pre-configured scope.",
1085 + "description": "core:tray:allow-set-show-menu-on-left-click -> Enables the set_show_menu_on_left_click command without any pre-configured scope.",
1086 "type": "string",
1087 "enum": [
1059 - "tray:allow-set-icon"
1088 + "core:tray:allow-set-show-menu-on-left-click"
1089 ]
1090 },
1091 {
1063 - "description": "tray:allow-set-icon-as-template -> Enables the set_icon_as_template command without any pre-configured scope.",
1092 + "description": "core:tray:allow-set-temp-dir-path -> Enables the set_temp_dir_path command without any pre-configured scope.",
1093 "type": "string",
1094 "enum": [
1066 - "tray:allow-set-icon-as-template"
1095 + "core:tray:allow-set-temp-dir-path"
1096 ]
1097 },
1098 {
1070 - "description": "tray:allow-set-menu -> Enables the set_menu command without any pre-configured scope.",
1099 + "description": "core:tray:allow-set-title -> Enables the set_title command without any pre-configured scope.",
1100 "type": "string",
1101 "enum": [
1073 - "tray:allow-set-menu"
1102 + "core:tray:allow-set-title"
1103 ]
1104 },
1105 {
1077 - "description": "tray:allow-set-show-menu-on-left-click -> Enables the set_show_menu_on_left_click command without any pre-configured scope.",
1106 + "description": "core:tray:allow-set-tooltip -> Enables the set_tooltip command without any pre-configured scope.",
1107 "type": "string",
1108 "enum": [
1080 - "tray:allow-set-show-menu-on-left-click"
1109 + "core:tray:allow-set-tooltip"
1110 ]
1111 },
1112 {
1084 - "description": "tray:allow-set-temp-dir-path -> Enables the set_temp_dir_path command without any pre-configured scope.",
1113 + "description": "core:tray:allow-set-visible -> Enables the set_visible command without any pre-configured scope.",
1114 "type": "string",
1115 "enum": [
1087 - "tray:allow-set-temp-dir-path"
1116 + "core:tray:allow-set-visible"
1117 ]
1118 },
1119 {
1091 - "description": "tray:allow-set-title -> Enables the set_title command without any pre-configured scope.",
1120 + "description": "core:tray:deny-get-by-id -> Denies the get_by_id command without any pre-configured scope.",
1121 "type": "string",
1122 "enum": [
1094 - "tray:allow-set-title"
1123 + "core:tray:deny-get-by-id"
1124 ]
1125 },
1126 {
1098 - "description": "tray:allow-set-tooltip -> Enables the set_tooltip command without any pre-configured scope.",
1127 + "description": "core:tray:deny-new -> Denies the new command without any pre-configured scope.",
1128 "type": "string",
1129 "enum": [
1101 - "tray:allow-set-tooltip"
1130 + "core:tray:deny-new"
1131 ]
1132 },
1133 {
1105 - "description": "tray:allow-set-visible -> Enables the set_visible command without any pre-configured scope.",
1134 + "description": "core:tray:deny-remove-by-id -> Denies the remove_by_id command without any pre-configured scope.",
1135 "type": "string",
1136 "enum": [
1108 - "tray:allow-set-visible"
1137 + "core:tray:deny-remove-by-id"
1138 ]
1139 },
1140 {
1112 - "description": "tray:deny-get-by-id -> Denies the get_by_id command without any pre-configured scope.",
1141 + "description": "core:tray:deny-set-icon -> Denies the set_icon command without any pre-configured scope.",
1142 "type": "string",
1143 "enum": [
1115 - "tray:deny-get-by-id"
1144 + "core:tray:deny-set-icon"
1145 ]
1146 },
1147 {
1119 - "description": "tray:deny-new -> Denies the new command without any pre-configured scope.",
1148 + "description": "core:tray:deny-set-icon-as-template -> Denies the set_icon_as_template command without any pre-configured scope.",
1149 "type": "string",
1150 "enum": [
1122 - "tray:deny-new"
1151 + "core:tray:deny-set-icon-as-template"
1152 ]
1153 },
1154 {
1126 - "description": "tray:deny-remove-by-id -> Denies the remove_by_id command without any pre-configured scope.",
1155 + "description": "core:tray:deny-set-menu -> Denies the set_menu command without any pre-configured scope.",
1156 "type": "string",
1157 "enum": [
1129 - "tray:deny-remove-by-id"
1158 + "core:tray:deny-set-menu"
1159 ]
1160 },
1161 {
1133 - "description": "tray:deny-set-icon -> Denies the set_icon command without any pre-configured scope.",
1162 + "description": "core:tray:deny-set-show-menu-on-left-click -> Denies the set_show_menu_on_left_click command without any pre-configured scope.",
1163 "type": "string",
1164 "enum": [
1136 - "tray:deny-set-icon"
1165 + "core:tray:deny-set-show-menu-on-left-click"
1166 ]
1167 },
1168 {
1140 - "description": "tray:deny-set-icon-as-template -> Denies the set_icon_as_template command without any pre-configured scope.",
1169 + "description": "core:tray:deny-set-temp-dir-path -> Denies the set_temp_dir_path command without any pre-configured scope.",
1170 "type": "string",
1171 "enum": [
1143 - "tray:deny-set-icon-as-template"
1172 + "core:tray:deny-set-temp-dir-path"
1173 ]
1174 },
1175 {
1147 - "description": "tray:deny-set-menu -> Denies the set_menu command without any pre-configured scope.",
1176 + "description": "core:tray:deny-set-title -> Denies the set_title command without any pre-configured scope.",
1177 "type": "string",
1178 "enum": [
1150 - "tray:deny-set-menu"
1179 + "core:tray:deny-set-title"
1180 ]
1181 },
1182 {
1154 - "description": "tray:deny-set-show-menu-on-left-click -> Denies the set_show_menu_on_left_click command without any pre-configured scope.",
1183 + "description": "core:tray:deny-set-tooltip -> Denies the set_tooltip command without any pre-configured scope.",
1184 "type": "string",
1185 "enum": [
1157 - "tray:deny-set-show-menu-on-left-click"
1186 + "core:tray:deny-set-tooltip"
1187 ]
1188 },
1189 {
1161 - "description": "tray:deny-set-temp-dir-path -> Denies the set_temp_dir_path command without any pre-configured scope.",
1190 + "description": "core:tray:deny-set-visible -> Denies the set_visible command without any pre-configured scope.",
1191 "type": "string",
1192 "enum": [
1164 - "tray:deny-set-temp-dir-path"
1193 + "core:tray:deny-set-visible"
1194 ]
1195 },
1196 {
1168 - "description": "tray:deny-set-title -> Denies the set_title command without any pre-configured scope.",
1197 + "description": "core:webview:default -> Default permissions for the plugin.",
1198 "type": "string",
1199 "enum": [
1171 - "tray:deny-set-title"
1200 + "core:webview:default"
1201 ]
1202 },
1203 {
1175 - "description": "tray:deny-set-tooltip -> Denies the set_tooltip command without any pre-configured scope.",
1204 + "description": "core:webview:allow-create-webview -> Enables the create_webview command without any pre-configured scope.",
1205 "type": "string",
1206 "enum": [
1178 - "tray:deny-set-tooltip"
1207 + "core:webview:allow-create-webview"
1208 ]
1209 },
1210 {
1182 - "description": "tray:deny-set-visible -> Denies the set_visible command without any pre-configured scope.",
1211 + "description": "core:webview:allow-create-webview-window -> Enables the create_webview_window command without any pre-configured scope.",
1212 "type": "string",
1213 "enum": [
1185 - "tray:deny-set-visible"
1214 + "core:webview:allow-create-webview-window"
1215 ]
1216 },
1217 {
1189 - "description": "webview:default -> Default permissions for the plugin.",
1218 + "description": "core:webview:allow-get-all-webviews -> Enables the get_all_webviews command without any pre-configured scope.",
1219 "type": "string",
1220 "enum": [
1192 - "webview:default"
1221 + "core:webview:allow-get-all-webviews"
1222 ]
1223 },
1224 {
1196 - "description": "webview:allow-create-webview -> Enables the create_webview command without any pre-configured scope.",
1225 + "description": "core:webview:allow-internal-toggle-devtools -> Enables the internal_toggle_devtools command without any pre-configured scope.",
1226 "type": "string",
1227 "enum": [
1199 - "webview:allow-create-webview"
1228 + "core:webview:allow-internal-toggle-devtools"
1229 ]
1230 },
1231 {
1203 - "description": "webview:allow-create-webview-window -> Enables the create_webview_window command without any pre-configured scope.",
1232 + "description": "core:webview:allow-print -> Enables the print command without any pre-configured scope.",
1233 "type": "string",
1234 "enum": [
1206 - "webview:allow-create-webview-window"
1235 + "core:webview:allow-print"
1236 ]
1237 },
1238 {
1210 - "description": "webview:allow-internal-toggle-devtools -> Enables the internal_toggle_devtools command without any pre-configured scope.",
1239 + "description": "core:webview:allow-reparent -> Enables the reparent command without any pre-configured scope.",
1240 "type": "string",
1241 "enum": [
1213 - "webview:allow-internal-toggle-devtools"
1242 + "core:webview:allow-reparent"
1243 ]
1244 },
1245 {
1217 - "description": "webview:allow-print -> Enables the print command without any pre-configured scope.",
1246 + "description": "core:webview:allow-set-webview-focus -> Enables the set_webview_focus command without any pre-configured scope.",
1247 "type": "string",
1248 "enum": [
1220 - "webview:allow-print"
1249 + "core:webview:allow-set-webview-focus"
1250 ]
1251 },
1252 {
1224 - "description": "webview:allow-reparent -> Enables the reparent command without any pre-configured scope.",
1253 + "description": "core:webview:allow-set-webview-position -> Enables the set_webview_position command without any pre-configured scope.",
1254 "type": "string",
1255 "enum": [
1227 - "webview:allow-reparent"
1256 + "core:webview:allow-set-webview-position"
1257 ]
1258 },
1259 {
1231 - "description": "webview:allow-set-webview-focus -> Enables the set_webview_focus command without any pre-configured scope.",
1260 + "description": "core:webview:allow-set-webview-size -> Enables the set_webview_size command without any pre-configured scope.",
1261 "type": "string",
1262 "enum": [
1234 - "webview:allow-set-webview-focus"
1263 + "core:webview:allow-set-webview-size"
1264 ]
1265 },
1266 {
1238 - "description": "webview:allow-set-webview-position -> Enables the set_webview_position command without any pre-configured scope.",
1267 + "description": "core:webview:allow-set-webview-zoom -> Enables the set_webview_zoom command without any pre-configured scope.",
1268 "type": "string",
1269 "enum": [
1241 - "webview:allow-set-webview-position"
1270 + "core:webview:allow-set-webview-zoom"
1271 ]
1272 },
1273 {
1245 - "description": "webview:allow-set-webview-size -> Enables the set_webview_size command without any pre-configured scope.",
1274 + "description": "core:webview:allow-webview-close -> Enables the webview_close command without any pre-configured scope.",
1275 "type": "string",
1276 "enum": [
1248 - "webview:allow-set-webview-size"
1277 + "core:webview:allow-webview-close"
1278 ]
1279 },
1280 {
1252 - "description": "webview:allow-set-webview-zoom -> Enables the set_webview_zoom command without any pre-configured scope.",
1281 + "description": "core:webview:allow-webview-position -> Enables the webview_position command without any pre-configured scope.",
1282 "type": "string",
1283 "enum": [
1255 - "webview:allow-set-webview-zoom"
1284 + "core:webview:allow-webview-position"
1285 ]
1286 },
1287 {
1259 - "description": "webview:allow-webview-close -> Enables the webview_close command without any pre-configured scope.",
1288 + "description": "core:webview:allow-webview-size -> Enables the webview_size command without any pre-configured scope.",
1289 "type": "string",
1290 "enum": [
1262 - "webview:allow-webview-close"
1291 + "core:webview:allow-webview-size"
1292 ]
1293 },
1294 {
1266 - "description": "webview:allow-webview-position -> Enables the webview_position command without any pre-configured scope.",
1295 + "description": "core:webview:deny-create-webview -> Denies the create_webview command without any pre-configured scope.",
1296 "type": "string",
1297 "enum": [
1269 - "webview:allow-webview-position"
1298 + "core:webview:deny-create-webview"
1299 ]
1300 },
1301 {
1273 - "description": "webview:allow-webview-size -> Enables the webview_size command without any pre-configured scope.",
1302 + "description": "core:webview:deny-create-webview-window -> Denies the create_webview_window command without any pre-configured scope.",
1303 "type": "string",
1304 "enum": [
1276 - "webview:allow-webview-size"
1305 + "core:webview:deny-create-webview-window"
1306 ]
1307 },
1308 {
1280 - "description": "webview:deny-create-webview -> Denies the create_webview command without any pre-configured scope.",
1309 + "description": "core:webview:deny-get-all-webviews -> Denies the get_all_webviews command without any pre-configured scope.",
1310 "type": "string",
1311 "enum": [
1283 - "webview:deny-create-webview"
1312 + "core:webview:deny-get-all-webviews"
1313 ]
1314 },
1315 {
1287 - "description": "webview:deny-create-webview-window -> Denies the create_webview_window command without any pre-configured scope.",
1316 + "description": "core:webview:deny-internal-toggle-devtools -> Denies the internal_toggle_devtools command without any pre-configured scope.",
1317 "type": "string",
1318 "enum": [
1290 - "webview:deny-create-webview-window"
1319 + "core:webview:deny-internal-toggle-devtools"
1320 ]
1321 },
1322 {
1294 - "description": "webview:deny-internal-toggle-devtools -> Denies the internal_toggle_devtools command without any pre-configured scope.",
1323 + "description": "core:webview:deny-print -> Denies the print command without any pre-configured scope.",
1324 "type": "string",
1325 "enum": [
1297 - "webview:deny-internal-toggle-devtools"
1326 + "core:webview:deny-print"
1327 ]
1328 },
1329 {
1301 - "description": "webview:deny-print -> Denies the print command without any pre-configured scope.",
1330 + "description": "core:webview:deny-reparent -> Denies the reparent command without any pre-configured scope.",
1331 "type": "string",
1332 "enum": [
1304 - "webview:deny-print"
1333 + "core:webview:deny-reparent"
1334 ]
1335 },
1336 {
1308 - "description": "webview:deny-reparent -> Denies the reparent command without any pre-configured scope.",
1337 + "description": "core:webview:deny-set-webview-focus -> Denies the set_webview_focus command without any pre-configured scope.",
1338 "type": "string",
1339 "enum": [
1311 - "webview:deny-reparent"
1340 + "core:webview:deny-set-webview-focus"
1341 ]
1342 },
1343 {
1315 - "description": "webview:deny-set-webview-focus -> Denies the set_webview_focus command without any pre-configured scope.",
1344 + "description": "core:webview:deny-set-webview-position -> Denies the set_webview_position command without any pre-configured scope.",
1345 "type": "string",
1346 "enum": [
1318 - "webview:deny-set-webview-focus"
1347 + "core:webview:deny-set-webview-position"
1348 ]
1349 },
1350 {
1322 - "description": "webview:deny-set-webview-position -> Denies the set_webview_position command without any pre-configured scope.",
1351 + "description": "core:webview:deny-set-webview-size -> Denies the set_webview_size command without any pre-configured scope.",
1352 "type": "string",
1353 "enum": [
1325 - "webview:deny-set-webview-position"
1354 + "core:webview:deny-set-webview-size"
1355 ]
1356 },
1357 {
1329 - "description": "webview:deny-set-webview-size -> Denies the set_webview_size command without any pre-configured scope.",
1358 + "description": "core:webview:deny-set-webview-zoom -> Denies the set_webview_zoom command without any pre-configured scope.",
1359 "type": "string",
1360 "enum": [
1332 - "webview:deny-set-webview-size"
1361 + "core:webview:deny-set-webview-zoom"
1362 ]
1363 },
1364 {
1336 - "description": "webview:deny-set-webview-zoom -> Denies the set_webview_zoom command without any pre-configured scope.",
1365 + "description": "core:webview:deny-webview-close -> Denies the webview_close command without any pre-configured scope.",
1366 "type": "string",
1367 "enum": [
1339 - "webview:deny-set-webview-zoom"
1368 + "core:webview:deny-webview-close"
1369 ]
1370 },
1371 {
1343 - "description": "webview:deny-webview-close -> Denies the webview_close command without any pre-configured scope.",
1372 + "description": "core:webview:deny-webview-position -> Denies the webview_position command without any pre-configured scope.",
1373 "type": "string",
1374 "enum": [
1346 - "webview:deny-webview-close"
1375 + "core:webview:deny-webview-position"
1376 ]
1377 },
1378 {
1350 - "description": "webview:deny-webview-position -> Denies the webview_position command without any pre-configured scope.",
1379 + "description": "core:webview:deny-webview-size -> Denies the webview_size command without any pre-configured scope.",
1380 "type": "string",
1381 "enum": [
1353 - "webview:deny-webview-position"
1382 + "core:webview:deny-webview-size"
1383 ]
1384 },
1385 {
1357 - "description": "webview:deny-webview-size -> Denies the webview_size command without any pre-configured scope.",
1386 + "description": "core:window:default -> Default permissions for the plugin.",
1387 "type": "string",
1388 "enum": [
1360 - "webview:deny-webview-size"
1389 + "core:window:default"
1390 ]
1391 },
1392 {
1364 - "description": "window:default -> Default permissions for the plugin.",
1393 + "description": "core:window:allow-available-monitors -> Enables the available_monitors command without any pre-configured scope.",
1394 "type": "string",
1395 "enum": [
1367 - "window:default"
1396 + "core:window:allow-available-monitors"
1397 ]
1398 },
1399 {
1371 - "description": "window:allow-available-monitors -> Enables the available_monitors command without any pre-configured scope.",
1400 + "description": "core:window:allow-center -> Enables the center command without any pre-configured scope.",
1401 "type": "string",
1402 "enum": [
1374 - "window:allow-available-monitors"
1403 + "core:window:allow-center"
1404 ]
1405 },
1406 {
1378 - "description": "window:allow-center -> Enables the center command without any pre-configured scope.",
1407 + "description": "core:window:allow-close -> Enables the close command without any pre-configured scope.",
1408 "type": "string",
1409 "enum": [
1381 - "window:allow-center"
1410 + "core:window:allow-close"
1411 ]
1412 },
1413 {
1385 - "description": "window:allow-close -> Enables the close command without any pre-configured scope.",
1414 + "description": "core:window:allow-create -> Enables the create command without any pre-configured scope.",
1415 "type": "string",
1416 "enum": [
1388 - "window:allow-close"
1417 + "core:window:allow-create"
1418 ]
1419 },
1420 {
1392 - "description": "window:allow-create -> Enables the create command without any pre-configured scope.",
1421 + "description": "core:window:allow-current-monitor -> Enables the current_monitor command without any pre-configured scope.",
1422 "type": "string",
1423 "enum": [
1395 - "window:allow-create"
1424 + "core:window:allow-current-monitor"
1425 ]
1426 },
1427 {
1399 - "description": "window:allow-current-monitor -> Enables the current_monitor command without any pre-configured scope.",
1428 + "description": "core:window:allow-cursor-position -> Enables the cursor_position command without any pre-configured scope.",
1429 "type": "string",
1430 "enum": [
1402 - "window:allow-current-monitor"
1431 + "core:window:allow-cursor-position"
1432 ]
1433 },
1434 {
1406 - "description": "window:allow-cursor-position -> Enables the cursor_position command without any pre-configured scope.",
1435 + "description": "core:window:allow-destroy -> Enables the destroy command without any pre-configured scope.",
1436 "type": "string",
1437 "enum": [
1409 - "window:allow-cursor-position"
1438 + "core:window:allow-destroy"
1439 ]
1440 },
1441 {
1413 - "description": "window:allow-destroy -> Enables the destroy command without any pre-configured scope.",
1442 + "description": "core:window:allow-get-all-windows -> Enables the get_all_windows command without any pre-configured scope.",
1443 "type": "string",
1444 "enum": [
1416 - "window:allow-destroy"
1445 + "core:window:allow-get-all-windows"
1446 ]
1447 },
1448 {
1420 - "description": "window:allow-hide -> Enables the hide command without any pre-configured scope.",
1449 + "description": "core:window:allow-hide -> Enables the hide command without any pre-configured scope.",
1450 "type": "string",
1451 "enum": [
1423 - "window:allow-hide"
1452 + "core:window:allow-hide"
1453 ]
1454 },
1455 {
1427 - "description": "window:allow-inner-position -> Enables the inner_position command without any pre-configured scope.",
1456 + "description": "core:window:allow-inner-position -> Enables the inner_position command without any pre-configured scope.",
1457 "type": "string",
1458 "enum": [
1430 - "window:allow-inner-position"
1459 + "core:window:allow-inner-position"
1460 ]
1461 },
1462 {
1434 - "description": "window:allow-inner-size -> Enables the inner_size command without any pre-configured scope.",
1463 + "description": "core:window:allow-inner-size -> Enables the inner_size command without any pre-configured scope.",
1464 "type": "string",
1465 "enum": [
1437 - "window:allow-inner-size"
1466 + "core:window:allow-inner-size"
1467 ]
1468 },
1469 {
1441 - "description": "window:allow-internal-toggle-maximize -> Enables the internal_toggle_maximize command without any pre-configured scope.",
1470 + "description": "core:window:allow-internal-toggle-maximize -> Enables the internal_toggle_maximize command without any pre-configured scope.",
1471 "type": "string",
1472 "enum": [
1444 - "window:allow-internal-toggle-maximize"
1473 + "core:window:allow-internal-toggle-maximize"
1474 ]
1475 },
1476 {
1448 - "description": "window:allow-is-closable -> Enables the is_closable command without any pre-configured scope.",
1477 + "description": "core:window:allow-is-closable -> Enables the is_closable command without any pre-configured scope.",
1478 "type": "string",
1479 "enum": [
1451 - "window:allow-is-closable"
1480 + "core:window:allow-is-closable"
1481 ]
1482 },
1483 {
1455 - "description": "window:allow-is-decorated -> Enables the is_decorated command without any pre-configured scope.",
1484 + "description": "core:window:allow-is-decorated -> Enables the is_decorated command without any pre-configured scope.",
1485 "type": "string",
1486 "enum": [
1458 - "window:allow-is-decorated"
1487 + "core:window:allow-is-decorated"
1488 ]
1489 },
1490 {
1462 - "description": "window:allow-is-focused -> Enables the is_focused command without any pre-configured scope.",
1491 + "description": "core:window:allow-is-focused -> Enables the is_focused command without any pre-configured scope.",
1492 "type": "string",
1493 "enum": [
1465 - "window:allow-is-focused"
1494 + "core:window:allow-is-focused"
1495 ]
1496 },
1497 {
1469 - "description": "window:allow-is-fullscreen -> Enables the is_fullscreen command without any pre-configured scope.",
1498 + "description": "core:window:allow-is-fullscreen -> Enables the is_fullscreen command without any pre-configured scope.",
1499 "type": "string",
1500 "enum": [
1472 - "window:allow-is-fullscreen"
1501 + "core:window:allow-is-fullscreen"
1502 ]
1503 },
1504 {
1476 - "description": "window:allow-is-maximizable -> Enables the is_maximizable command without any pre-configured scope.",
1505 + "description": "core:window:allow-is-maximizable -> Enables the is_maximizable command without any pre-configured scope.",
1506 "type": "string",
1507 "enum": [
1479 - "window:allow-is-maximizable"
1508 + "core:window:allow-is-maximizable"
1509 ]
1510 },
1511 {
1483 - "description": "window:allow-is-maximized -> Enables the is_maximized command without any pre-configured scope.",
1512 + "description": "core:window:allow-is-maximized -> Enables the is_maximized command without any pre-configured scope.",
1513 "type": "string",
1514 "enum": [
1486 - "window:allow-is-maximized"
1515 + "core:window:allow-is-maximized"
1516 ]
1517 },
1518 {
1490 - "description": "window:allow-is-minimizable -> Enables the is_minimizable command without any pre-configured scope.",
1519 + "description": "core:window:allow-is-minimizable -> Enables the is_minimizable command without any pre-configured scope.",
1520 "type": "string",
1521 "enum": [
1493 - "window:allow-is-minimizable"
1522 + "core:window:allow-is-minimizable"
1523 ]
1524 },
1525 {
1497 - "description": "window:allow-is-minimized -> Enables the is_minimized command without any pre-configured scope.",
1526 + "description": "core:window:allow-is-minimized -> Enables the is_minimized command without any pre-configured scope.",
1527 "type": "string",
1528 "enum": [
1500 - "window:allow-is-minimized"
1529 + "core:window:allow-is-minimized"
1530 ]
1531 },
1532 {
1504 - "description": "window:allow-is-resizable -> Enables the is_resizable command without any pre-configured scope.",
1533 + "description": "core:window:allow-is-resizable -> Enables the is_resizable command without any pre-configured scope.",
1534 "type": "string",
1535 "enum": [
1507 - "window:allow-is-resizable"
1536 + "core:window:allow-is-resizable"
1537 ]
1538 },
1539 {
1511 - "description": "window:allow-is-visible -> Enables the is_visible command without any pre-configured scope.",
1540 + "description": "core:window:allow-is-visible -> Enables the is_visible command without any pre-configured scope.",
1541 "type": "string",
1542 "enum": [
1514 - "window:allow-is-visible"
1543 + "core:window:allow-is-visible"
1544 ]
1545 },
1546 {
1518 - "description": "window:allow-maximize -> Enables the maximize command without any pre-configured scope.",
1547 + "description": "core:window:allow-maximize -> Enables the maximize command without any pre-configured scope.",
1548 "type": "string",
1549 "enum": [
1521 - "window:allow-maximize"
1550 + "core:window:allow-maximize"
1551 ]
1552 },
1553 {
1525 - "description": "window:allow-minimize -> Enables the minimize command without any pre-configured scope.",
1554 + "description": "core:window:allow-minimize -> Enables the minimize command without any pre-configured scope.",
1555 "type": "string",
1556 "enum": [
1528 - "window:allow-minimize"
1557 + "core:window:allow-minimize"
1558 ]
1559 },
1560 {
1532 - "description": "window:allow-monitor-from-point -> Enables the monitor_from_point command without any pre-configured scope.",
1561 + "description": "core:window:allow-monitor-from-point -> Enables the monitor_from_point command without any pre-configured scope.",
1562 "type": "string",
1563 "enum": [
1535 - "window:allow-monitor-from-point"
1564 + "core:window:allow-monitor-from-point"
1565 ]
1566 },
1567 {
1539 - "description": "window:allow-outer-position -> Enables the outer_position command without any pre-configured scope.",
1568 + "description": "core:window:allow-outer-position -> Enables the outer_position command without any pre-configured scope.",
1569 "type": "string",
1570 "enum": [
1542 - "window:allow-outer-position"
1571 + "core:window:allow-outer-position"
1572 ]
1573 },
1574 {
1546 - "description": "window:allow-outer-size -> Enables the outer_size command without any pre-configured scope.",
1575 + "description": "core:window:allow-outer-size -> Enables the outer_size command without any pre-configured scope.",
1576 "type": "string",
1577 "enum": [
1549 - "window:allow-outer-size"
1578 + "core:window:allow-outer-size"
1579 ]
1580 },
1581 {
1553 - "description": "window:allow-primary-monitor -> Enables the primary_monitor command without any pre-configured scope.",
1582 + "description": "core:window:allow-primary-monitor -> Enables the primary_monitor command without any pre-configured scope.",
1583 "type": "string",
1584 "enum": [
1556 - "window:allow-primary-monitor"
1585 + "core:window:allow-primary-monitor"
1586 ]
1587 },
1588 {
1560 - "description": "window:allow-request-user-attention -> Enables the request_user_attention command without any pre-configured scope.",
1589 + "description": "core:window:allow-request-user-attention -> Enables the request_user_attention command without any pre-configured scope.",
1590 "type": "string",
1591 "enum": [
1563 - "window:allow-request-user-attention"
1592 + "core:window:allow-request-user-attention"
1593 ]
1594 },
1595 {
1567 - "description": "window:allow-scale-factor -> Enables the scale_factor command without any pre-configured scope.",
1596 + "description": "core:window:allow-scale-factor -> Enables the scale_factor command without any pre-configured scope.",
1597 "type": "string",
1598 "enum": [
1570 - "window:allow-scale-factor"
1599 + "core:window:allow-scale-factor"
1600 ]
1601 },
1602 {
1574 - "description": "window:allow-set-always-on-bottom -> Enables the set_always_on_bottom command without any pre-configured scope.",
1603 + "description": "core:window:allow-set-always-on-bottom -> Enables the set_always_on_bottom command without any pre-configured scope.",
1604 "type": "string",
1605 "enum": [
1577 - "window:allow-set-always-on-bottom"
1606 + "core:window:allow-set-always-on-bottom"
1607 ]
1608 },
1609 {
1581 - "description": "window:allow-set-always-on-top -> Enables the set_always_on_top command without any pre-configured scope.",
1610 + "description": "core:window:allow-set-always-on-top -> Enables the set_always_on_top command without any pre-configured scope.",
1611 "type": "string",
1612 "enum": [
1584 - "window:allow-set-always-on-top"
1613 + "core:window:allow-set-always-on-top"
1614 ]
1615 },
1616 {
1588 - "description": "window:allow-set-closable -> Enables the set_closable command without any pre-configured scope.",
1617 + "description": "core:window:allow-set-closable -> Enables the set_closable command without any pre-configured scope.",
1618 "type": "string",
1619 "enum": [
1591 - "window:allow-set-closable"
1620 + "core:window:allow-set-closable"
1621 ]
1622 },
1623 {
1595 - "description": "window:allow-set-content-protected -> Enables the set_content_protected command without any pre-configured scope.",
1624 + "description": "core:window:allow-set-content-protected -> Enables the set_content_protected command without any pre-configured scope.",
1625 "type": "string",
1626 "enum": [
1598 - "window:allow-set-content-protected"
1627 + "core:window:allow-set-content-protected"
1628 ]
1629 },
1630 {
1602 - "description": "window:allow-set-cursor-grab -> Enables the set_cursor_grab command without any pre-configured scope.",
1631 + "description": "core:window:allow-set-cursor-grab -> Enables the set_cursor_grab command without any pre-configured scope.",
1632 "type": "string",
1633 "enum": [
1605 - "window:allow-set-cursor-grab"
1634 + "core:window:allow-set-cursor-grab"
1635 ]
1636 },
1637 {
1609 - "description": "window:allow-set-cursor-icon -> Enables the set_cursor_icon command without any pre-configured scope.",
1638 + "description": "core:window:allow-set-cursor-icon -> Enables the set_cursor_icon command without any pre-configured scope.",
1639 "type": "string",
1640 "enum": [
1612 - "window:allow-set-cursor-icon"
1641 + "core:window:allow-set-cursor-icon"
1642 ]
1643 },
1644 {
1616 - "description": "window:allow-set-cursor-position -> Enables the set_cursor_position command without any pre-configured scope.",
1645 + "description": "core:window:allow-set-cursor-position -> Enables the set_cursor_position command without any pre-configured scope.",
1646 "type": "string",
1647 "enum": [
1619 - "window:allow-set-cursor-position"
1648 + "core:window:allow-set-cursor-position"
1649 ]
1650 },
1651 {
1623 - "description": "window:allow-set-cursor-visible -> Enables the set_cursor_visible command without any pre-configured scope.",
1652 + "description": "core:window:allow-set-cursor-visible -> Enables the set_cursor_visible command without any pre-configured scope.",
1653 "type": "string",
1654 "enum": [
1626 - "window:allow-set-cursor-visible"
1655 + "core:window:allow-set-cursor-visible"
1656 ]
1657 },
1658 {
1630 - "description": "window:allow-set-decorations -> Enables the set_decorations command without any pre-configured scope.",
1659 + "description": "core:window:allow-set-decorations -> Enables the set_decorations command without any pre-configured scope.",
1660 "type": "string",
1661 "enum": [
1633 - "window:allow-set-decorations"
1662 + "core:window:allow-set-decorations"
1663 ]
1664 },
1665 {
1637 - "description": "window:allow-set-effects -> Enables the set_effects command without any pre-configured scope.",
1666 + "description": "core:window:allow-set-effects -> Enables the set_effects command without any pre-configured scope.",
1667 "type": "string",
1668 "enum": [
1640 - "window:allow-set-effects"
1669 + "core:window:allow-set-effects"
1670 ]
1671 },
1672 {
1644 - "description": "window:allow-set-focus -> Enables the set_focus command without any pre-configured scope.",
1673 + "description": "core:window:allow-set-focus -> Enables the set_focus command without any pre-configured scope.",
1674 "type": "string",
1675 "enum": [
1647 - "window:allow-set-focus"
1676 + "core:window:allow-set-focus"
1677 ]
1678 },
1679 {
1651 - "description": "window:allow-set-fullscreen -> Enables the set_fullscreen command without any pre-configured scope.",
1680 + "description": "core:window:allow-set-fullscreen -> Enables the set_fullscreen command without any pre-configured scope.",
1681 "type": "string",
1682 "enum": [
1654 - "window:allow-set-fullscreen"
1683 + "core:window:allow-set-fullscreen"
1684 ]
1685 },
1686 {
1658 - "description": "window:allow-set-icon -> Enables the set_icon command without any pre-configured scope.",
1687 + "description": "core:window:allow-set-icon -> Enables the set_icon command without any pre-configured scope.",
1688 "type": "string",
1689 "enum": [
1661 - "window:allow-set-icon"
1690 + "core:window:allow-set-icon"
1691 ]
1692 },
1693 {
1665 - "description": "window:allow-set-ignore-cursor-events -> Enables the set_ignore_cursor_events command without any pre-configured scope.",
1694 + "description": "core:window:allow-set-ignore-cursor-events -> Enables the set_ignore_cursor_events command without any pre-configured scope.",
1695 "type": "string",
1696 "enum": [
1668 - "window:allow-set-ignore-cursor-events"
1697 + "core:window:allow-set-ignore-cursor-events"
1698 ]
1699 },
1700 {
1672 - "description": "window:allow-set-max-size -> Enables the set_max_size command without any pre-configured scope.",
1701 + "description": "core:window:allow-set-max-size -> Enables the set_max_size command without any pre-configured scope.",
1702 "type": "string",
1703 "enum": [
1675 - "window:allow-set-max-size"
1704 + "core:window:allow-set-max-size"
1705 ]
1706 },
1707 {
1679 - "description": "window:allow-set-maximizable -> Enables the set_maximizable command without any pre-configured scope.",
1708 + "description": "core:window:allow-set-maximizable -> Enables the set_maximizable command without any pre-configured scope.",
1709 "type": "string",
1710 "enum": [
1682 - "window:allow-set-maximizable"
1711 + "core:window:allow-set-maximizable"
1712 ]
1713 },
1714 {
1686 - "description": "window:allow-set-min-size -> Enables the set_min_size command without any pre-configured scope.",
1715 + "description": "core:window:allow-set-min-size -> Enables the set_min_size command without any pre-configured scope.",
1716 "type": "string",
1717 "enum": [
1689 - "window:allow-set-min-size"
1718 + "core:window:allow-set-min-size"
1719 ]
1720 },
1721 {
1693 - "description": "window:allow-set-minimizable -> Enables the set_minimizable command without any pre-configured scope.",
1722 + "description": "core:window:allow-set-minimizable -> Enables the set_minimizable command without any pre-configured scope.",
1723 "type": "string",
1724 "enum": [
1696 - "window:allow-set-minimizable"
1725 + "core:window:allow-set-minimizable"
1726 ]
1727 },
1728 {
1700 - "description": "window:allow-set-position -> Enables the set_position command without any pre-configured scope.",
1729 + "description": "core:window:allow-set-position -> Enables the set_position command without any pre-configured scope.",
1730 "type": "string",
1731 "enum": [
1703 - "window:allow-set-position"
1732 + "core:window:allow-set-position"
1733 ]
1734 },
1735 {
1707 - "description": "window:allow-set-progress-bar -> Enables the set_progress_bar command without any pre-configured scope.",
1736 + "description": "core:window:allow-set-progress-bar -> Enables the set_progress_bar command without any pre-configured scope.",
1737 "type": "string",
1738 "enum": [
1710 - "window:allow-set-progress-bar"
1739 + "core:window:allow-set-progress-bar"
1740 ]
1741 },
1742 {
1714 - "description": "window:allow-set-resizable -> Enables the set_resizable command without any pre-configured scope.",
1743 + "description": "core:window:allow-set-resizable -> Enables the set_resizable command without any pre-configured scope.",
1744 "type": "string",
1745 "enum": [
1717 - "window:allow-set-resizable"
1746 + "core:window:allow-set-resizable"
1747 ]
1748 },
1749 {
1721 - "description": "window:allow-set-shadow -> Enables the set_shadow command without any pre-configured scope.",
1750 + "description": "core:window:allow-set-shadow -> Enables the set_shadow command without any pre-configured scope.",
1751 "type": "string",
1752 "enum": [
1724 - "window:allow-set-shadow"
1753 + "core:window:allow-set-shadow"
1754 ]
1755 },
1756 {
1728 - "description": "window:allow-set-size -> Enables the set_size command without any pre-configured scope.",
1757 + "description": "core:window:allow-set-size -> Enables the set_size command without any pre-configured scope.",
1758 "type": "string",
1759 "enum": [
1731 - "window:allow-set-size"
1760 + "core:window:allow-set-size"
1761 ]
1762 },
1763 {
1735 - "description": "window:allow-set-skip-taskbar -> Enables the set_skip_taskbar command without any pre-configured scope.",
1764 + "description": "core:window:allow-set-size-constraints -> Enables the set_size_constraints command without any pre-configured scope.",
1765 "type": "string",
1766 "enum": [
1738 - "window:allow-set-skip-taskbar"
1767 + "core:window:allow-set-size-constraints"
1768 ]
1769 },
1770 {
1742 - "description": "window:allow-set-title -> Enables the set_title command without any pre-configured scope.",
1771 + "description": "core:window:allow-set-skip-taskbar -> Enables the set_skip_taskbar command without any pre-configured scope.",
1772 "type": "string",
1773 "enum": [
1745 - "window:allow-set-title"
1774 + "core:window:allow-set-skip-taskbar"
1775 ]
1776 },
1777 {
1749 - "description": "window:allow-set-title-bar-style -> Enables the set_title_bar_style command without any pre-configured scope.",
1778 + "description": "core:window:allow-set-title -> Enables the set_title command without any pre-configured scope.",
1779 "type": "string",
1780 "enum": [
1752 - "window:allow-set-title-bar-style"
1781 + "core:window:allow-set-title"
1782 ]
1783 },
1784 {
1756 - "description": "window:allow-set-visible-on-all-workspaces -> Enables the set_visible_on_all_workspaces command without any pre-configured scope.",
1785 + "description": "core:window:allow-set-title-bar-style -> Enables the set_title_bar_style command without any pre-configured scope.",
1786 "type": "string",
1787 "enum": [
1759 - "window:allow-set-visible-on-all-workspaces"
1788 + "core:window:allow-set-title-bar-style"
1789 ]
1790 },
1791 {
1763 - "description": "window:allow-show -> Enables the show command without any pre-configured scope.",
1792 + "description": "core:window:allow-set-visible-on-all-workspaces -> Enables the set_visible_on_all_workspaces command without any pre-configured scope.",
1793 "type": "string",
1794 "enum": [
1766 - "window:allow-show"
1795 + "core:window:allow-set-visible-on-all-workspaces"
1796 ]
1797 },
1798 {
1770 - "description": "window:allow-start-dragging -> Enables the start_dragging command without any pre-configured scope.",
1799 + "description": "core:window:allow-show -> Enables the show command without any pre-configured scope.",
1800 "type": "string",
1801 "enum": [
1773 - "window:allow-start-dragging"
1802 + "core:window:allow-show"
1803 ]
1804 },
1805 {
1777 - "description": "window:allow-start-resize-dragging -> Enables the start_resize_dragging command without any pre-configured scope.",
1806 + "description": "core:window:allow-start-dragging -> Enables the start_dragging command without any pre-configured scope.",
1807 "type": "string",
1808 "enum": [
1780 - "window:allow-start-resize-dragging"
1809 + "core:window:allow-start-dragging"
1810 ]
1811 },
1812 {
1784 - "description": "window:allow-theme -> Enables the theme command without any pre-configured scope.",
1813 + "description": "core:window:allow-start-resize-dragging -> Enables the start_resize_dragging command without any pre-configured scope.",
1814 "type": "string",
1815 "enum": [
1787 - "window:allow-theme"
1816 + "core:window:allow-start-resize-dragging"
1817 ]
1818 },
1819 {
1791 - "description": "window:allow-title -> Enables the title command without any pre-configured scope.",
1820 + "description": "core:window:allow-theme -> Enables the theme command without any pre-configured scope.",
1821 "type": "string",
1822 "enum": [
1794 - "window:allow-title"
1823 + "core:window:allow-theme"
1824 ]
1825 },
1826 {
1798 - "description": "window:allow-toggle-maximize -> Enables the toggle_maximize command without any pre-configured scope.",
1827 + "description": "core:window:allow-title -> Enables the title command without any pre-configured scope.",
1828 "type": "string",
1829 "enum": [
1801 - "window:allow-toggle-maximize"
1830 + "core:window:allow-title"
1831 ]
1832 },
1833 {
1805 - "description": "window:allow-unmaximize -> Enables the unmaximize command without any pre-configured scope.",
1834 + "description": "core:window:allow-toggle-maximize -> Enables the toggle_maximize command without any pre-configured scope.",
1835 "type": "string",
1836 "enum": [
1808 - "window:allow-unmaximize"
1837 + "core:window:allow-toggle-maximize"
1838 ]
1839 },
1840 {
1812 - "description": "window:allow-unminimize -> Enables the unminimize command without any pre-configured scope.",
1841 + "description": "core:window:allow-unmaximize -> Enables the unmaximize command without any pre-configured scope.",
1842 "type": "string",
1843 "enum": [
1815 - "window:allow-unminimize"
1844 + "core:window:allow-unmaximize"
1845 ]
1846 },
1847 {
1819 - "description": "window:deny-available-monitors -> Denies the available_monitors command without any pre-configured scope.",
1848 + "description": "core:window:allow-unminimize -> Enables the unminimize command without any pre-configured scope.",
1849 "type": "string",
1850 "enum": [
1822 - "window:deny-available-monitors"
1851 + "core:window:allow-unminimize"
1852 ]
1853 },
1854 {
1826 - "description": "window:deny-center -> Denies the center command without any pre-configured scope.",
1855 + "description": "core:window:deny-available-monitors -> Denies the available_monitors command without any pre-configured scope.",
1856 "type": "string",
1857 "enum": [
1829 - "window:deny-center"
1858 + "core:window:deny-available-monitors"
1859 ]
1860 },
1861 {
1833 - "description": "window:deny-close -> Denies the close command without any pre-configured scope.",
1862 + "description": "core:window:deny-center -> Denies the center command without any pre-configured scope.",
1863 "type": "string",
1864 "enum": [
1836 - "window:deny-close"
1865 + "core:window:deny-center"
1866 ]
1867 },
1868 {
1840 - "description": "window:deny-create -> Denies the create command without any pre-configured scope.",
1869 + "description": "core:window:deny-close -> Denies the close command without any pre-configured scope.",
1870 "type": "string",
1871 "enum": [
1843 - "window:deny-create"
1872 + "core:window:deny-close"
1873 ]
1874 },
1875 {
1847 - "description": "window:deny-current-monitor -> Denies the current_monitor command without any pre-configured scope.",
1876 + "description": "core:window:deny-create -> Denies the create command without any pre-configured scope.",
1877 "type": "string",
1878 "enum": [
1850 - "window:deny-current-monitor"
1879 + "core:window:deny-create"
1880 ]
1881 },
1882 {
1854 - "description": "window:deny-cursor-position -> Denies the cursor_position command without any pre-configured scope.",
1883 + "description": "core:window:deny-current-monitor -> Denies the current_monitor command without any pre-configured scope.",
1884 "type": "string",
1885 "enum": [
1857 - "window:deny-cursor-position"
1886 + "core:window:deny-current-monitor"
1887 ]
1888 },
1889 {
1861 - "description": "window:deny-destroy -> Denies the destroy command without any pre-configured scope.",
1890 + "description": "core:window:deny-cursor-position -> Denies the cursor_position command without any pre-configured scope.",
1891 "type": "string",
1892 "enum": [
1864 - "window:deny-destroy"
1893 + "core:window:deny-cursor-position"
1894 ]
1895 },
1896 {
1868 - "description": "window:deny-hide -> Denies the hide command without any pre-configured scope.",
1897 + "description": "core:window:deny-destroy -> Denies the destroy command without any pre-configured scope.",
1898 "type": "string",
1899 "enum": [
1871 - "window:deny-hide"
1900 + "core:window:deny-destroy"
1901 ]
1902 },
1903 {
1875 - "description": "window:deny-inner-position -> Denies the inner_position command without any pre-configured scope.",
1904 + "description": "core:window:deny-get-all-windows -> Denies the get_all_windows command without any pre-configured scope.",
1905 "type": "string",
1906 "enum": [
1878 - "window:deny-inner-position"
1907 + "core:window:deny-get-all-windows"
1908 ]
1909 },
1910 {
1882 - "description": "window:deny-inner-size -> Denies the inner_size command without any pre-configured scope.",
1911 + "description": "core:window:deny-hide -> Denies the hide command without any pre-configured scope.",
1912 "type": "string",
1913 "enum": [
1885 - "window:deny-inner-size"
1914 + "core:window:deny-hide"
1915 ]
1916 },
1917 {
1889 - "description": "window:deny-internal-toggle-maximize -> Denies the internal_toggle_maximize command without any pre-configured scope.",
1918 + "description": "core:window:deny-inner-position -> Denies the inner_position command without any pre-configured scope.",
1919 "type": "string",
1920 "enum": [
1892 - "window:deny-internal-toggle-maximize"
1921 + "core:window:deny-inner-position"
1922 ]
1923 },
1924 {
1896 - "description": "window:deny-is-closable -> Denies the is_closable command without any pre-configured scope.",
1925 + "description": "core:window:deny-inner-size -> Denies the inner_size command without any pre-configured scope.",
1926 "type": "string",
1927 "enum": [
1899 - "window:deny-is-closable"
1928 + "core:window:deny-inner-size"
1929 ]
1930 },
1931 {
1903 - "description": "window:deny-is-decorated -> Denies the is_decorated command without any pre-configured scope.",
1932 + "description": "core:window:deny-internal-toggle-maximize -> Denies the internal_toggle_maximize command without any pre-configured scope.",
1933 "type": "string",
1934 "enum": [
1906 - "window:deny-is-decorated"
1935 + "core:window:deny-internal-toggle-maximize"
1936 ]
1937 },
1938 {
1910 - "description": "window:deny-is-focused -> Denies the is_focused command without any pre-configured scope.",
1939 + "description": "core:window:deny-is-closable -> Denies the is_closable command without any pre-configured scope.",
1940 "type": "string",
1941 "enum": [
1913 - "window:deny-is-focused"
1942 + "core:window:deny-is-closable"
1943 ]
1944 },
1945 {
1917 - "description": "window:deny-is-fullscreen -> Denies the is_fullscreen command without any pre-configured scope.",
1946 + "description": "core:window:deny-is-decorated -> Denies the is_decorated command without any pre-configured scope.",
1947 "type": "string",
1948 "enum": [
1920 - "window:deny-is-fullscreen"
1949 + "core:window:deny-is-decorated"
1950 ]
1951 },
1952 {
1924 - "description": "window:deny-is-maximizable -> Denies the is_maximizable command without any pre-configured scope.",
1953 + "description": "core:window:deny-is-focused -> Denies the is_focused command without any pre-configured scope.",
1954 "type": "string",
1955 "enum": [
1927 - "window:deny-is-maximizable"
1956 + "core:window:deny-is-focused"
1957 ]
1958 },
1959 {
1931 - "description": "window:deny-is-maximized -> Denies the is_maximized command without any pre-configured scope.",
1960 + "description": "core:window:deny-is-fullscreen -> Denies the is_fullscreen command without any pre-configured scope.",
1961 "type": "string",
1962 "enum": [
1934 - "window:deny-is-maximized"
1963 + "core:window:deny-is-fullscreen"
1964 ]
1965 },
1966 {
1938 - "description": "window:deny-is-minimizable -> Denies the is_minimizable command without any pre-configured scope.",
1967 + "description": "core:window:deny-is-maximizable -> Denies the is_maximizable command without any pre-configured scope.",
1968 "type": "string",
1969 "enum": [
1941 - "window:deny-is-minimizable"
1970 + "core:window:deny-is-maximizable"
1971 ]
1972 },
1973 {
1945 - "description": "window:deny-is-minimized -> Denies the is_minimized command without any pre-configured scope.",
1974 + "description": "core:window:deny-is-maximized -> Denies the is_maximized command without any pre-configured scope.",
1975 "type": "string",
1976 "enum": [
1948 - "window:deny-is-minimized"
1977 + "core:window:deny-is-maximized"
1978 ]
1979 },
1980 {
1952 - "description": "window:deny-is-resizable -> Denies the is_resizable command without any pre-configured scope.",
1981 + "description": "core:window:deny-is-minimizable -> Denies the is_minimizable command without any pre-configured scope.",
1982 "type": "string",
1983 "enum": [
1955 - "window:deny-is-resizable"
1984 + "core:window:deny-is-minimizable"
1985 ]
1986 },
1987 {
1959 - "description": "window:deny-is-visible -> Denies the is_visible command without any pre-configured scope.",
1988 + "description": "core:window:deny-is-minimized -> Denies the is_minimized command without any pre-configured scope.",
1989 "type": "string",
1990 "enum": [
1962 - "window:deny-is-visible"
1991 + "core:window:deny-is-minimized"
1992 ]
1993 },
1994 {
1966 - "description": "window:deny-maximize -> Denies the maximize command without any pre-configured scope.",
1995 + "description": "core:window:deny-is-resizable -> Denies the is_resizable command without any pre-configured scope.",
1996 "type": "string",
1997 "enum": [
1969 - "window:deny-maximize"
1998 + "core:window:deny-is-resizable"
1999 ]
2000 },
2001 {
1973 - "description": "window:deny-minimize -> Denies the minimize command without any pre-configured scope.",
2002 + "description": "core:window:deny-is-visible -> Denies the is_visible command without any pre-configured scope.",
2003 "type": "string",
2004 "enum": [
1976 - "window:deny-minimize"
2005 + "core:window:deny-is-visible"
2006 ]
2007 },
2008 {
1980 - "description": "window:deny-monitor-from-point -> Denies the monitor_from_point command without any pre-configured scope.",
2009 + "description": "core:window:deny-maximize -> Denies the maximize command without any pre-configured scope.",
2010 "type": "string",
2011 "enum": [
1983 - "window:deny-monitor-from-point"
2012 + "core:window:deny-maximize"
2013 ]
2014 },
2015 {
1987 - "description": "window:deny-outer-position -> Denies the outer_position command without any pre-configured scope.",
2016 + "description": "core:window:deny-minimize -> Denies the minimize command without any pre-configured scope.",
2017 "type": "string",
2018 "enum": [
1990 - "window:deny-outer-position"
2019 + "core:window:deny-minimize"
2020 ]
2021 },
2022 {
1994 - "description": "window:deny-outer-size -> Denies the outer_size command without any pre-configured scope.",
2023 + "description": "core:window:deny-monitor-from-point -> Denies the monitor_from_point command without any pre-configured scope.",
2024 "type": "string",
2025 "enum": [
1997 - "window:deny-outer-size"
2026 + "core:window:deny-monitor-from-point"
2027 ]
2028 },
2029 {
2001 - "description": "window:deny-primary-monitor -> Denies the primary_monitor command without any pre-configured scope.",
2030 + "description": "core:window:deny-outer-position -> Denies the outer_position command without any pre-configured scope.",
2031 "type": "string",
2032 "enum": [
2004 - "window:deny-primary-monitor"
2033 + "core:window:deny-outer-position"
2034 ]
2035 },
2036 {
2008 - "description": "window:deny-request-user-attention -> Denies the request_user_attention command without any pre-configured scope.",
2037 + "description": "core:window:deny-outer-size -> Denies the outer_size command without any pre-configured scope.",
2038 "type": "string",
2039 "enum": [
2011 - "window:deny-request-user-attention"
2040 + "core:window:deny-outer-size"
2041 ]
2042 },
2043 {
2015 - "description": "window:deny-scale-factor -> Denies the scale_factor command without any pre-configured scope.",
2044 + "description": "core:window:deny-primary-monitor -> Denies the primary_monitor command without any pre-configured scope.",
2045 "type": "string",
2046 "enum": [
2018 - "window:deny-scale-factor"
2047 + "core:window:deny-primary-monitor"
2048 ]
2049 },
2050 {
2022 - "description": "window:deny-set-always-on-bottom -> Denies the set_always_on_bottom command without any pre-configured scope.",
2051 + "description": "core:window:deny-request-user-attention -> Denies the request_user_attention command without any pre-configured scope.",
2052 "type": "string",
2053 "enum": [
2025 - "window:deny-set-always-on-bottom"
2054 + "core:window:deny-request-user-attention"
2055 ]
2056 },
2057 {
2029 - "description": "window:deny-set-always-on-top -> Denies the set_always_on_top command without any pre-configured scope.",
2058 + "description": "core:window:deny-scale-factor -> Denies the scale_factor command without any pre-configured scope.",
2059 "type": "string",
2060 "enum": [
2032 - "window:deny-set-always-on-top"
2061 + "core:window:deny-scale-factor"
2062 ]
2063 },
2064 {
2036 - "description": "window:deny-set-closable -> Denies the set_closable command without any pre-configured scope.",
2065 + "description": "core:window:deny-set-always-on-bottom -> Denies the set_always_on_bottom command without any pre-configured scope.",
2066 "type": "string",
2067 "enum": [
2039 - "window:deny-set-closable"
2068 + "core:window:deny-set-always-on-bottom"
2069 ]
2070 },
2071 {
2043 - "description": "window:deny-set-content-protected -> Denies the set_content_protected command without any pre-configured scope.",
2072 + "description": "core:window:deny-set-always-on-top -> Denies the set_always_on_top command without any pre-configured scope.",
2073 "type": "string",
2074 "enum": [
2046 - "window:deny-set-content-protected"
2075 + "core:window:deny-set-always-on-top"
2076 ]
2077 },
2078 {
2050 - "description": "window:deny-set-cursor-grab -> Denies the set_cursor_grab command without any pre-configured scope.",
2079 + "description": "core:window:deny-set-closable -> Denies the set_closable command without any pre-configured scope.",
2080 "type": "string",
2081 "enum": [
2053 - "window:deny-set-cursor-grab"
2082 + "core:window:deny-set-closable"
2083 ]
2084 },
2085 {
2057 - "description": "window:deny-set-cursor-icon -> Denies the set_cursor_icon command without any pre-configured scope.",
2086 + "description": "core:window:deny-set-content-protected -> Denies the set_content_protected command without any pre-configured scope.",
2087 "type": "string",
2088 "enum": [
2060 - "window:deny-set-cursor-icon"
2089 + "core:window:deny-set-content-protected"
2090 ]
2091 },
2092 {
2064 - "description": "window:deny-set-cursor-position -> Denies the set_cursor_position command without any pre-configured scope.",
2093 + "description": "core:window:deny-set-cursor-grab -> Denies the set_cursor_grab command without any pre-configured scope.",
2094 "type": "string",
2095 "enum": [
2067 - "window:deny-set-cursor-position"
2096 + "core:window:deny-set-cursor-grab"
2097 ]
2098 },
2099 {
2071 - "description": "window:deny-set-cursor-visible -> Denies the set_cursor_visible command without any pre-configured scope.",
2100 + "description": "core:window:deny-set-cursor-icon -> Denies the set_cursor_icon command without any pre-configured scope.",
2101 "type": "string",
2102 "enum": [
2074 - "window:deny-set-cursor-visible"
2103 + "core:window:deny-set-cursor-icon"
2104 ]
2105 },
2106 {
2078 - "description": "window:deny-set-decorations -> Denies the set_decorations command without any pre-configured scope.",
2107 + "description": "core:window:deny-set-cursor-position -> Denies the set_cursor_position command without any pre-configured scope.",
2108 "type": "string",
2109 "enum": [
2081 - "window:deny-set-decorations"
2110 + "core:window:deny-set-cursor-position"
2111 ]
2112 },
2113 {
2085 - "description": "window:deny-set-effects -> Denies the set_effects command without any pre-configured scope.",
2114 + "description": "core:window:deny-set-cursor-visible -> Denies the set_cursor_visible command without any pre-configured scope.",
2115 "type": "string",
2116 "enum": [
2088 - "window:deny-set-effects"
2117 + "core:window:deny-set-cursor-visible"
2118 ]
2119 },
2120 {
2092 - "description": "window:deny-set-focus -> Denies the set_focus command without any pre-configured scope.",
2121 + "description": "core:window:deny-set-decorations -> Denies the set_decorations command without any pre-configured scope.",
2122 "type": "string",
2123 "enum": [
2095 - "window:deny-set-focus"
2124 + "core:window:deny-set-decorations"
2125 ]
2126 },
2127 {
2099 - "description": "window:deny-set-fullscreen -> Denies the set_fullscreen command without any pre-configured scope.",
2128 + "description": "core:window:deny-set-effects -> Denies the set_effects command without any pre-configured scope.",
2129 "type": "string",
2130 "enum": [
2102 - "window:deny-set-fullscreen"
2131 + "core:window:deny-set-effects"
2132 ]
2133 },
2134 {
2106 - "description": "window:deny-set-icon -> Denies the set_icon command without any pre-configured scope.",
2135 + "description": "core:window:deny-set-focus -> Denies the set_focus command without any pre-configured scope.",
2136 "type": "string",
2137 "enum": [
2109 - "window:deny-set-icon"
2138 + "core:window:deny-set-focus"
2139 ]
2140 },
2141 {
2113 - "description": "window:deny-set-ignore-cursor-events -> Denies the set_ignore_cursor_events command without any pre-configured scope.",
2142 + "description": "core:window:deny-set-fullscreen -> Denies the set_fullscreen command without any pre-configured scope.",
2143 "type": "string",
2144 "enum": [
2116 - "window:deny-set-ignore-cursor-events"
2145 + "core:window:deny-set-fullscreen"
2146 ]
2147 },
2148 {
2120 - "description": "window:deny-set-max-size -> Denies the set_max_size command without any pre-configured scope.",
2149 + "description": "core:window:deny-set-icon -> Denies the set_icon command without any pre-configured scope.",
2150 "type": "string",
2151 "enum": [
2123 - "window:deny-set-max-size"
2152 + "core:window:deny-set-icon"
2153 ]
2154 },
2155 {
2127 - "description": "window:deny-set-maximizable -> Denies the set_maximizable command without any pre-configured scope.",
2156 + "description": "core:window:deny-set-ignore-cursor-events -> Denies the set_ignore_cursor_events command without any pre-configured scope.",
2157 "type": "string",
2158 "enum": [
2130 - "window:deny-set-maximizable"
2159 + "core:window:deny-set-ignore-cursor-events"
2160 ]
2161 },
2162 {
2134 - "description": "window:deny-set-min-size -> Denies the set_min_size command without any pre-configured scope.",
2163 + "description": "core:window:deny-set-max-size -> Denies the set_max_size command without any pre-configured scope.",
2164 "type": "string",
2165 "enum": [
2137 - "window:deny-set-min-size"
2166 + "core:window:deny-set-max-size"
2167 ]
2168 },
2169 {
2141 - "description": "window:deny-set-minimizable -> Denies the set_minimizable command without any pre-configured scope.",
2170 + "description": "core:window:deny-set-maximizable -> Denies the set_maximizable command without any pre-configured scope.",
2171 "type": "string",
2172 "enum": [
2144 - "window:deny-set-minimizable"
2173 + "core:window:deny-set-maximizable"
2174 ]
2175 },
2176 {
2148 - "description": "window:deny-set-position -> Denies the set_position command without any pre-configured scope.",
2177 + "description": "core:window:deny-set-min-size -> Denies the set_min_size command without any pre-configured scope.",
2178 "type": "string",
2179 "enum": [
2151 - "window:deny-set-position"
2180 + "core:window:deny-set-min-size"
2181 ]
2182 },
2183 {
2155 - "description": "window:deny-set-progress-bar -> Denies the set_progress_bar command without any pre-configured scope.",
2184 + "description": "core:window:deny-set-minimizable -> Denies the set_minimizable command without any pre-configured scope.",
2185 "type": "string",
2186 "enum": [
2158 - "window:deny-set-progress-bar"
2187 + "core:window:deny-set-minimizable"
2188 ]
2189 },
2190 {
2162 - "description": "window:deny-set-resizable -> Denies the set_resizable command without any pre-configured scope.",
2191 + "description": "core:window:deny-set-position -> Denies the set_position command without any pre-configured scope.",
2192 "type": "string",
2193 "enum": [
2165 - "window:deny-set-resizable"
2194 + "core:window:deny-set-position"
2195 ]
2196 },
2197 {
2169 - "description": "window:deny-set-shadow -> Denies the set_shadow command without any pre-configured scope.",
2198 + "description": "core:window:deny-set-progress-bar -> Denies the set_progress_bar command without any pre-configured scope.",
2199 "type": "string",
2200 "enum": [
2172 - "window:deny-set-shadow"
2201 + "core:window:deny-set-progress-bar"
2202 ]
2203 },
2204 {
2176 - "description": "window:deny-set-size -> Denies the set_size command without any pre-configured scope.",
2205 + "description": "core:window:deny-set-resizable -> Denies the set_resizable command without any pre-configured scope.",
2206 "type": "string",
2207 "enum": [
2179 - "window:deny-set-size"
2208 + "core:window:deny-set-resizable"
2209 ]
2210 },
2211 {
2183 - "description": "window:deny-set-skip-taskbar -> Denies the set_skip_taskbar command without any pre-configured scope.",
2212 + "description": "core:window:deny-set-shadow -> Denies the set_shadow command without any pre-configured scope.",
2213 "type": "string",
2214 "enum": [
2186 - "window:deny-set-skip-taskbar"
2215 + "core:window:deny-set-shadow"
2216 ]
2217 },
2218 {
2190 - "description": "window:deny-set-title -> Denies the set_title command without any pre-configured scope.",
2219 + "description": "core:window:deny-set-size -> Denies the set_size command without any pre-configured scope.",
2220 "type": "string",
2221 "enum": [
2193 - "window:deny-set-title"
2222 + "core:window:deny-set-size"
2223 ]
2224 },
2225 {
2197 - "description": "window:deny-set-title-bar-style -> Denies the set_title_bar_style command without any pre-configured scope.",
2226 + "description": "core:window:deny-set-size-constraints -> Denies the set_size_constraints command without any pre-configured scope.",
2227 "type": "string",
2228 "enum": [
2200 - "window:deny-set-title-bar-style"
2229 + "core:window:deny-set-size-constraints"
2230 ]
2231 },
2232 {
2204 - "description": "window:deny-set-visible-on-all-workspaces -> Denies the set_visible_on_all_workspaces command without any pre-configured scope.",
2233 + "description": "core:window:deny-set-skip-taskbar -> Denies the set_skip_taskbar command without any pre-configured scope.",
2234 "type": "string",
2235 "enum": [
2207 - "window:deny-set-visible-on-all-workspaces"
2236 + "core:window:deny-set-skip-taskbar"
2237 ]
2238 },
2239 {
2211 - "description": "window:deny-show -> Denies the show command without any pre-configured scope.",
2240 + "description": "core:window:deny-set-title -> Denies the set_title command without any pre-configured scope.",
2241 "type": "string",
2242 "enum": [
2214 - "window:deny-show"
2243 + "core:window:deny-set-title"
2244 ]
2245 },
2246 {
2218 - "description": "window:deny-start-dragging -> Denies the start_dragging command without any pre-configured scope.",
2247 + "description": "core:window:deny-set-title-bar-style -> Denies the set_title_bar_style command without any pre-configured scope.",
2248 "type": "string",
2249 "enum": [
2221 - "window:deny-start-dragging"
2250 + "core:window:deny-set-title-bar-style"
2251 ]
2252 },
2253 {
2225 - "description": "window:deny-start-resize-dragging -> Denies the start_resize_dragging command without any pre-configured scope.",
2254 + "description": "core:window:deny-set-visible-on-all-workspaces -> Denies the set_visible_on_all_workspaces command without any pre-configured scope.",
2255 "type": "string",
2256 "enum": [
2228 - "window:deny-start-resize-dragging"
2257 + "core:window:deny-set-visible-on-all-workspaces"
2258 ]
2259 },
2260 {
2232 - "description": "window:deny-theme -> Denies the theme command without any pre-configured scope.",
2261 + "description": "core:window:deny-show -> Denies the show command without any pre-configured scope.",
2262 "type": "string",
2263 "enum": [
2235 - "window:deny-theme"
2264 + "core:window:deny-show"
2265 ]
2266 },
2267 {
2239 - "description": "window:deny-title -> Denies the title command without any pre-configured scope.",
2268 + "description": "core:window:deny-start-dragging -> Denies the start_dragging command without any pre-configured scope.",
2269 "type": "string",
2270 "enum": [
2242 - "window:deny-title"
2271 + "core:window:deny-start-dragging"
2272 ]
2273 },
2274 {
2246 - "description": "window:deny-toggle-maximize -> Denies the toggle_maximize command without any pre-configured scope.",
2275 + "description": "core:window:deny-start-resize-dragging -> Denies the start_resize_dragging command without any pre-configured scope.",
2276 "type": "string",
2277 "enum": [
2249 - "window:deny-toggle-maximize"
2278 + "core:window:deny-start-resize-dragging"
2279 ]
2280 },
2281 {
2253 - "description": "window:deny-unmaximize -> Denies the unmaximize command without any pre-configured scope.",
2282 + "description": "core:window:deny-theme -> Denies the theme command without any pre-configured scope.",
2283 "type": "string",
2284 "enum": [
2256 - "window:deny-unmaximize"
2285 + "core:window:deny-theme"
2286 ]
2287 },
2288 {
2260 - "description": "window:deny-unminimize -> Denies the unminimize command without any pre-configured scope.",
2289 + "description": "core:window:deny-title -> Denies the title command without any pre-configured scope.",
2290 "type": "string",
2291 "enum": [
2263 - "window:deny-unminimize"
2292 + "core:window:deny-title"
2293 + ]
2294 + },
2295 + {
2296 + "description": "core:window:deny-toggle-maximize -> Denies the toggle_maximize command without any pre-configured scope.",
2297 + "type": "string",
2298 + "enum": [
2299 + "core:window:deny-toggle-maximize"
2300 + ]
2301 + },
2302 + {
2303 + "description": "core:window:deny-unmaximize -> Denies the unmaximize command without any pre-configured scope.",
2304 + "type": "string",
2305 + "enum": [
2306 + "core:window:deny-unmaximize"
2307 + ]
2308 + },
2309 + {
2310 + "description": "core:window:deny-unminimize -> Denies the unminimize command without any pre-configured scope.",
2311 + "type": "string",
2312 + "enum": [
2313 + "core:window:deny-unminimize"
2314 + ]
2315 + },
2316 + {
2317 + "type": "string",
2318 + "enum": [
2319 + "devtools:default"
2320 ]
2321 }
2322 ]
examples/tauri-app/src-tauri/tauri.conf.json
+2 -2
@@ -3,8 +3,8 @@
3 "version": "0.0.0",
4 "identifier": "com.tauri.dev",
5 "build": {
6 - "beforeDevCommand": "yarn dev",
7 - "beforeBuildCommand": "yarn build",
6 + "beforeDevCommand": "bun run dev",
7 + "beforeBuildCommand": "bun run build",
8 "devUrl": "http://localhost:1420",
9 "frontendDist": "../dist"
10 },
flake.lock new
+221
@@ -0,0 +1,221 @@
1 +{
2 + "nodes": {
3 + "android": {
4 + "inputs": {
5 + "devshell": "devshell",
6 + "flake-utils": "flake-utils_2",
7 + "nixpkgs": "nixpkgs"
8 + },
9 + "locked": {
10 + "lastModified": 1720988215,
11 + "narHash": "sha256-nQ0Zx0vAWJo0IOGNFjCOdIkDSgOpMa//GalR8tbTl3A=",
12 + "owner": "tadfisher",
13 + "repo": "android-nixpkgs",
14 + "rev": "5a052c62cdb51b210bc0717177d5bd014cba3df1",
15 + "type": "github"
16 + },
17 + "original": {
18 + "owner": "tadfisher",
19 + "repo": "android-nixpkgs",
20 + "type": "github"
21 + }
22 + },
23 + "devshell": {
24 + "inputs": {
25 + "flake-utils": "flake-utils",
26 + "nixpkgs": [
27 + "android",
28 + "nixpkgs"
29 + ]
30 + },
31 + "locked": {
32 + "lastModified": 1717408969,
33 + "narHash": "sha256-Q0OEFqe35fZbbRPPRdrjTUUChKVhhWXz3T9ZSKmaoVY=",
34 + "owner": "numtide",
35 + "repo": "devshell",
36 + "rev": "1ebbe68d57457c8cae98145410b164b5477761f4",
37 + "type": "github"
38 + },
39 + "original": {
40 + "owner": "numtide",
41 + "repo": "devshell",
42 + "type": "github"
43 + }
44 + },
45 + "devshell_2": {
46 + "inputs": {
47 + "nixpkgs": "nixpkgs_2"
48 + },
49 + "locked": {
50 + "lastModified": 1722113426,
51 + "narHash": "sha256-Yo/3loq572A8Su6aY5GP56knpuKYRvM2a1meP9oJZCw=",
52 + "owner": "numtide",
53 + "repo": "devshell",
54 + "rev": "67cce7359e4cd3c45296fb4aaf6a19e2a9c757ae",
55 + "type": "github"
56 + },
57 + "original": {
58 + "owner": "numtide",
59 + "repo": "devshell",
60 + "type": "github"
61 + }
62 + },
63 + "flake-utils": {
64 + "inputs": {
65 + "systems": "systems"
66 + },
67 + "locked": {
68 + "lastModified": 1701680307,
69 + "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=",
70 + "owner": "numtide",
71 + "repo": "flake-utils",
72 + "rev": "4022d587cbbfd70fe950c1e2083a02621806a725",
73 + "type": "github"
74 + },
75 + "original": {
76 + "owner": "numtide",
77 + "repo": "flake-utils",
78 + "type": "github"
79 + }
80 + },
81 + "flake-utils_2": {
82 + "inputs": {
83 + "systems": "systems_2"
84 + },
85 + "locked": {
86 + "lastModified": 1710146030,
87 + "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
88 + "owner": "numtide",
89 + "repo": "flake-utils",
90 + "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
91 + "type": "github"
92 + },
93 + "original": {
94 + "owner": "numtide",
95 + "repo": "flake-utils",
96 + "type": "github"
97 + }
98 + },
99 + "flake-utils_3": {
100 + "inputs": {
101 + "systems": "systems_3"
102 + },
103 + "locked": {
104 + "lastModified": 1710146030,
105 + "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
106 + "owner": "numtide",
107 + "repo": "flake-utils",
108 + "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
109 + "type": "github"
110 + },
111 + "original": {
112 + "owner": "numtide",
113 + "repo": "flake-utils",
114 + "type": "github"
115 + }
116 + },
117 + "nixpkgs": {
118 + "locked": {
119 + "lastModified": 1720768451,
120 + "narHash": "sha256-EYekUHJE2gxeo2pM/zM9Wlqw1Uw2XTJXOSAO79ksc4Y=",
121 + "owner": "NixOS",
122 + "repo": "nixpkgs",
123 + "rev": "7e7c39ea35c5cdd002cd4588b03a3fb9ece6fad9",
124 + "type": "github"
125 + },
126 + "original": {
127 + "owner": "NixOS",
128 + "ref": "nixos-unstable",
129 + "repo": "nixpkgs",
130 + "type": "github"
131 + }
132 + },
133 + "nixpkgs_2": {
134 + "locked": {
135 + "lastModified": 1722073938,
136 + "narHash": "sha256-OpX0StkL8vpXyWOGUD6G+MA26wAXK6SpT94kLJXo6B4=",
137 + "owner": "NixOS",
138 + "repo": "nixpkgs",
139 + "rev": "e36e9f57337d0ff0cf77aceb58af4c805472bfae",
140 + "type": "github"
141 + },
142 + "original": {
143 + "owner": "NixOS",
144 + "ref": "nixpkgs-unstable",
145 + "repo": "nixpkgs",
146 + "type": "github"
147 + }
148 + },
149 + "nixpkgs_3": {
150 + "locked": {
151 + "lastModified": 1724819573,
152 + "narHash": "sha256-GnR7/ibgIH1vhoy8cYdmXE6iyZqKqFxQSVkFgosBh6w=",
153 + "owner": "NixOS",
154 + "repo": "nixpkgs",
155 + "rev": "71e91c409d1e654808b2621f28a327acfdad8dc2",
156 + "type": "github"
157 + },
158 + "original": {
159 + "owner": "NixOS",
160 + "ref": "nixos-unstable",
161 + "repo": "nixpkgs",
162 + "type": "github"
163 + }
164 + },
165 + "root": {
166 + "inputs": {
167 + "android": "android",
168 + "devshell": "devshell_2",
169 + "flake-utils": "flake-utils_3",
170 + "nixpkgs": "nixpkgs_3"
171 + }
172 + },
173 + "systems": {
174 + "locked": {
175 + "lastModified": 1681028828,
176 + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
177 + "owner": "nix-systems",
178 + "repo": "default",
179 + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
180 + "type": "github"
181 + },
182 + "original": {
183 + "owner": "nix-systems",
184 + "repo": "default",
185 + "type": "github"
186 + }
187 + },
188 + "systems_2": {
189 + "locked": {
190 + "lastModified": 1681028828,
191 + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
192 + "owner": "nix-systems",
193 + "repo": "default",
194 + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
195 + "type": "github"
196 + },
197 + "original": {
198 + "owner": "nix-systems",
199 + "repo": "default",
200 + "type": "github"
201 + }
202 + },
203 + "systems_3": {
204 + "locked": {
205 + "lastModified": 1681028828,
206 + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
207 + "owner": "nix-systems",
208 + "repo": "default",
209 + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
210 + "type": "github"
211 + },
212 + "original": {
213 + "owner": "nix-systems",
214 + "repo": "default",
215 + "type": "github"
216 + }
217 + }
218 + },
219 + "root": "root",
220 + "version": 7
221 +}
flake.nix new
+52
@@ -0,0 +1,52 @@
1 +{
2 + description = "My Android project";
3 +
4 + inputs = {
5 + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
6 + devshell.url = "github:numtide/devshell";
7 + flake-utils.url = "github:numtide/flake-utils";
8 + android.url = "github:tadfisher/android-nixpkgs";
9 + };
10 +
11 + outputs = { self, nixpkgs, devshell, flake-utils, android }:
12 + {
13 + overlay = final: prev: {
14 + inherit (self.packages.${final.system}) android-sdk android-studio;
15 + };
16 + }
17 + //
18 + flake-utils.lib.eachSystem [ "aarch64-darwin" "x86_64-darwin" "x86_64-linux" ] (system:
19 + let
20 + inherit (nixpkgs) lib;
21 + pkgs = import nixpkgs {
22 + inherit system;
23 + config.allowUnfree = true;
24 + overlays = [
25 + devshell.overlays.default
26 + self.overlay
27 + ];
28 + };
29 + in
30 + {
31 + packages = {
32 + android-sdk = android.sdk.${system} (sdkPkgs: with sdkPkgs; [
33 + # Useful packages for building and testing.
34 + build-tools-30-0-3
35 + cmdline-tools-latest
36 + platform-tools
37 + platforms-android-32
38 + platforms-android-33
39 + platforms-android-34
40 + emulator
41 +
42 + # Other useful packages for a development environment.
43 + ndk-26-1-10909125
44 + # skiaparser-3
45 + # sources-android-34
46 + ]);
47 + };
48 +
49 + devShell = import ./devshell.nix { inherit pkgs; };
50 + }
51 + );
52 +}
permissions/autogenerated/commands/register_listener.toml new
+13
@@ -0,0 +1,13 @@
1 +# Automatically generated - DO NOT EDIT!
2 +
3 +"$schema" = "../../schemas/schema.json"
4 +
5 +[[permission]]
6 +identifier = "allow-register-listener"
7 +description = "Enables the register_listener command without any pre-configured scope."
8 +commands.allow = ["register_listener"]
9 +
10 +[[permission]]
11 +identifier = "deny-register-listener"
12 +description = "Denies the register_listener command without any pre-configured scope."
13 +commands.deny = ["register_listener"]
permissions/autogenerated/reference.md
+28 -2
@@ -12,9 +12,9 @@ Default permissions for the plugin
12 - `allow-requestTrackingAuthorization`
13 - `allow-trackingAuthorizationStatus`
14 - `allow-isPrivacyOptionsRequired`
15 -- ``
15 +- `allow-showPrivacyOptionsForm`
16
17 -### Permission Table
17 +## Permission Table
18
19 <table>
20 <tr>
@@ -234,6 +234,32 @@ Denies the isPrivacyOptionsRequired command without any pre-configured scope.
234 <tr>
235 <td>
236
237 +`admob:allow-register-listener`
238 +
239 +</td>
240 +<td>
241 +
242 +Enables the register_listener command without any pre-configured scope.
243 +
244 +</td>
245 +</tr>
246 +
247 +<tr>
248 +<td>
249 +
250 +`admob:deny-register-listener`
251 +
252 +</td>
253 +<td>
254 +
255 +Denies the register_listener command without any pre-configured scope.
256 +
257 +</td>
258 +</tr>
259 +
260 +<tr>
261 +<td>
262 +
263 `admob:allow-requestTrackingAuthorization`
264
265 </td>
permissions/schemas/schema.json
+14
@@ -406,6 +406,20 @@
406 "deny-isPrivacyOptionsRequired"
407 ]
408 },
409 + {
410 + "description": "allow-register-listener -> Enables the register_listener command without any pre-configured scope.",
411 + "type": "string",
412 + "enum": [
413 + "allow-register-listener"
414 + ]
415 + },
416 + {
417 + "description": "deny-register-listener -> Denies the register_listener command without any pre-configured scope.",
418 + "type": "string",
419 + "enum": [
420 + "deny-register-listener"
421 + ]
422 + },
423 {
424 "description": "allow-requestTrackingAuthorization -> Enables the requestTrackingAuthorization command without any pre-configured scope.",
425 "type": "string",