typeclaw 0.1.3 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -708,86 +708,123 @@
708
708
  },
709
709
  "network": {
710
710
  "default": {
711
- "blockInternal": true
711
+ "blockInternal": true,
712
+ "autoAllowResolvers": true,
713
+ "allow": []
712
714
  },
713
715
  "type": "object",
714
716
  "properties": {
715
717
  "blockInternal": {
716
718
  "default": true,
717
719
  "type": "boolean"
720
+ },
721
+ "autoAllowResolvers": {
722
+ "default": true,
723
+ "type": "boolean"
724
+ },
725
+ "allow": {
726
+ "default": [],
727
+ "type": "array",
728
+ "items": {
729
+ "type": "string"
730
+ }
718
731
  }
719
732
  }
720
733
  },
721
- "dockerfile": {
734
+ "docker": {
722
735
  "default": {
723
- "ffmpeg": false,
724
- "gh": true,
725
- "python": true,
726
- "tmux": true,
727
- "append": []
736
+ "file": {
737
+ "ffmpeg": false,
738
+ "gh": true,
739
+ "python": true,
740
+ "tmux": true,
741
+ "append": []
742
+ }
728
743
  },
729
744
  "type": "object",
730
745
  "properties": {
731
- "ffmpeg": {
732
- "default": false,
733
- "anyOf": [
734
- {
735
- "type": "boolean"
746
+ "file": {
747
+ "default": {
748
+ "ffmpeg": false,
749
+ "gh": true,
750
+ "python": true,
751
+ "tmux": true,
752
+ "append": []
753
+ },
754
+ "type": "object",
755
+ "properties": {
756
+ "ffmpeg": {
757
+ "default": false,
758
+ "anyOf": [
759
+ {
760
+ "type": "boolean"
761
+ },
762
+ {
763
+ "type": "string",
764
+ "minLength": 1
765
+ }
766
+ ]
736
767
  },
737
- {
738
- "type": "string",
739
- "minLength": 1
740
- }
741
- ]
742
- },
743
- "gh": {
744
- "default": true,
745
- "anyOf": [
746
- {
747
- "type": "boolean"
768
+ "gh": {
769
+ "default": true,
770
+ "anyOf": [
771
+ {
772
+ "type": "boolean"
773
+ },
774
+ {
775
+ "type": "string",
776
+ "minLength": 1
777
+ }
778
+ ]
748
779
  },
749
- {
750
- "type": "string",
751
- "minLength": 1
752
- }
753
- ]
754
- },
755
- "python": {
756
- "default": true,
757
- "type": "boolean"
758
- },
759
- "tmux": {
760
- "default": true,
761
- "anyOf": [
762
- {
780
+ "python": {
781
+ "default": true,
763
782
  "type": "boolean"
764
783
  },
765
- {
766
- "type": "string",
767
- "minLength": 1
784
+ "tmux": {
785
+ "default": true,
786
+ "anyOf": [
787
+ {
788
+ "type": "boolean"
789
+ },
790
+ {
791
+ "type": "string",
792
+ "minLength": 1
793
+ }
794
+ ]
795
+ },
796
+ "append": {
797
+ "default": [],
798
+ "type": "array",
799
+ "items": {
800
+ "type": "string"
801
+ }
768
802
  }
769
- ]
770
- },
771
- "append": {
772
- "default": [],
773
- "type": "array",
774
- "items": {
775
- "type": "string"
776
803
  }
777
804
  }
778
805
  }
779
806
  },
780
- "gitignore": {
807
+ "git": {
781
808
  "default": {
782
- "append": []
809
+ "ignore": {
810
+ "append": []
811
+ }
783
812
  },
784
813
  "type": "object",
785
814
  "properties": {
786
- "append": {
787
- "default": [],
788
- "type": "array",
789
- "items": {
790
- "type": "string"
815
+ "ignore": {
816
+ "default": {
817
+ "append": []
818
+ },
819
+ "type": "object",
820
+ "properties": {
821
+ "append": {
822
+ "default": [],
823
+ "type": "array",
824
+ "items": {
825
+ "type": "string"
826
+ }
827
+ }
791
828
  }
792
829
  }
793
830
  }