@goodbones/core 0.1.0-beta.12 → 0.1.0-beta.14

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.
@@ -1181,6 +1181,9 @@
1181
1181
  }
1182
1182
  }
1183
1183
  ]
1184
+ },
1185
+ "value": {
1186
+ "type": "number"
1184
1187
  }
1185
1188
  },
1186
1189
  "required": [
@@ -1324,6 +1327,9 @@
1324
1327
  }
1325
1328
  }
1326
1329
  ]
1330
+ },
1331
+ "value": {
1332
+ "type": "number"
1327
1333
  }
1328
1334
  },
1329
1335
  "required": [
@@ -2483,6 +2489,701 @@
2483
2489
  }
2484
2490
  ]
2485
2491
  },
2492
+ "measure": {
2493
+ "anyOf": [
2494
+ {
2495
+ "anyOf": [
2496
+ {
2497
+ "anyOf": [
2498
+ {
2499
+ "$ref": "#/$defs/Use"
2500
+ },
2501
+ {
2502
+ "$ref": "#/$defs/Include"
2503
+ },
2504
+ {
2505
+ "type": "object",
2506
+ "properties": {
2507
+ "lines": {
2508
+ "type": "boolean",
2509
+ "enum": [
2510
+ true
2511
+ ]
2512
+ }
2513
+ },
2514
+ "required": [
2515
+ "lines"
2516
+ ],
2517
+ "additionalProperties": false
2518
+ }
2519
+ ]
2520
+ },
2521
+ {
2522
+ "anyOf": [
2523
+ {
2524
+ "$ref": "#/$defs/Use"
2525
+ },
2526
+ {
2527
+ "$ref": "#/$defs/Include"
2528
+ },
2529
+ {
2530
+ "type": "object",
2531
+ "properties": {
2532
+ "files": {
2533
+ "type": "boolean",
2534
+ "enum": [
2535
+ true
2536
+ ]
2537
+ }
2538
+ },
2539
+ "required": [
2540
+ "files"
2541
+ ],
2542
+ "additionalProperties": false
2543
+ }
2544
+ ]
2545
+ },
2546
+ {
2547
+ "anyOf": [
2548
+ {
2549
+ "$ref": "#/$defs/Use"
2550
+ },
2551
+ {
2552
+ "$ref": "#/$defs/Include"
2553
+ },
2554
+ {
2555
+ "type": "object",
2556
+ "properties": {
2557
+ "report": {
2558
+ "anyOf": [
2559
+ {
2560
+ "$ref": "#/$defs/Use"
2561
+ },
2562
+ {
2563
+ "$ref": "#/$defs/Include"
2564
+ },
2565
+ {
2566
+ "type": "object",
2567
+ "properties": {
2568
+ "command": {
2569
+ "anyOf": [
2570
+ {
2571
+ "type": "string"
2572
+ },
2573
+ {
2574
+ "anyOf": [
2575
+ {
2576
+ "$ref": "#/$defs/Include"
2577
+ },
2578
+ {
2579
+ "type": "array",
2580
+ "items": {
2581
+ "type": "string"
2582
+ },
2583
+ "allOf": [
2584
+ {
2585
+ "minItems": 1
2586
+ }
2587
+ ]
2588
+ }
2589
+ ]
2590
+ }
2591
+ ]
2592
+ },
2593
+ "file": {
2594
+ "anyOf": [
2595
+ {
2596
+ "type": "string"
2597
+ },
2598
+ {
2599
+ "anyOf": [
2600
+ {
2601
+ "$ref": "#/$defs/Include"
2602
+ },
2603
+ {
2604
+ "type": "array",
2605
+ "items": {
2606
+ "type": "string"
2607
+ },
2608
+ "allOf": [
2609
+ {
2610
+ "minItems": 1
2611
+ }
2612
+ ]
2613
+ }
2614
+ ]
2615
+ }
2616
+ ]
2617
+ },
2618
+ "format": {
2619
+ "type": "string",
2620
+ "enum": [
2621
+ "tsc",
2622
+ "eslint",
2623
+ "oxlint",
2624
+ "regex"
2625
+ ]
2626
+ },
2627
+ "pattern": {
2628
+ "type": "string"
2629
+ },
2630
+ "codes": {
2631
+ "anyOf": [
2632
+ {
2633
+ "$ref": "#/$defs/Include"
2634
+ },
2635
+ {
2636
+ "type": "array",
2637
+ "items": {
2638
+ "type": "string"
2639
+ }
2640
+ }
2641
+ ]
2642
+ },
2643
+ "codesNot": {
2644
+ "anyOf": [
2645
+ {
2646
+ "$ref": "#/$defs/Include"
2647
+ },
2648
+ {
2649
+ "type": "array",
2650
+ "items": {
2651
+ "type": "string"
2652
+ }
2653
+ }
2654
+ ]
2655
+ }
2656
+ },
2657
+ "required": [
2658
+ "format"
2659
+ ],
2660
+ "additionalProperties": false
2661
+ }
2662
+ ]
2663
+ }
2664
+ },
2665
+ "required": [
2666
+ "report"
2667
+ ],
2668
+ "additionalProperties": false
2669
+ }
2670
+ ]
2671
+ },
2672
+ {
2673
+ "anyOf": [
2674
+ {
2675
+ "$ref": "#/$defs/Use"
2676
+ },
2677
+ {
2678
+ "$ref": "#/$defs/Include"
2679
+ },
2680
+ {
2681
+ "type": "object",
2682
+ "properties": {
2683
+ "fn": {
2684
+ "type": "string"
2685
+ }
2686
+ },
2687
+ "required": [
2688
+ "fn"
2689
+ ],
2690
+ "additionalProperties": false
2691
+ }
2692
+ ]
2693
+ }
2694
+ ]
2695
+ },
2696
+ {
2697
+ "anyOf": [
2698
+ {
2699
+ "$ref": "#/$defs/Use"
2700
+ },
2701
+ {
2702
+ "$ref": "#/$defs/Include"
2703
+ },
2704
+ {
2705
+ "type": "object",
2706
+ "properties": {
2707
+ "ratio": {
2708
+ "anyOf": [
2709
+ {
2710
+ "$ref": "#/$defs/Use"
2711
+ },
2712
+ {
2713
+ "$ref": "#/$defs/Include"
2714
+ },
2715
+ {
2716
+ "type": "object",
2717
+ "properties": {
2718
+ "of": {
2719
+ "anyOf": [
2720
+ {
2721
+ "anyOf": [
2722
+ {
2723
+ "$ref": "#/$defs/Use"
2724
+ },
2725
+ {
2726
+ "$ref": "#/$defs/Include"
2727
+ },
2728
+ {
2729
+ "type": "object",
2730
+ "properties": {
2731
+ "lines": {
2732
+ "type": "boolean",
2733
+ "enum": [
2734
+ true
2735
+ ]
2736
+ }
2737
+ },
2738
+ "required": [
2739
+ "lines"
2740
+ ],
2741
+ "additionalProperties": false
2742
+ }
2743
+ ]
2744
+ },
2745
+ {
2746
+ "anyOf": [
2747
+ {
2748
+ "$ref": "#/$defs/Use"
2749
+ },
2750
+ {
2751
+ "$ref": "#/$defs/Include"
2752
+ },
2753
+ {
2754
+ "type": "object",
2755
+ "properties": {
2756
+ "files": {
2757
+ "type": "boolean",
2758
+ "enum": [
2759
+ true
2760
+ ]
2761
+ }
2762
+ },
2763
+ "required": [
2764
+ "files"
2765
+ ],
2766
+ "additionalProperties": false
2767
+ }
2768
+ ]
2769
+ },
2770
+ {
2771
+ "anyOf": [
2772
+ {
2773
+ "$ref": "#/$defs/Use"
2774
+ },
2775
+ {
2776
+ "$ref": "#/$defs/Include"
2777
+ },
2778
+ {
2779
+ "type": "object",
2780
+ "properties": {
2781
+ "report": {
2782
+ "anyOf": [
2783
+ {
2784
+ "$ref": "#/$defs/Use"
2785
+ },
2786
+ {
2787
+ "$ref": "#/$defs/Include"
2788
+ },
2789
+ {
2790
+ "type": "object",
2791
+ "properties": {
2792
+ "command": {
2793
+ "anyOf": [
2794
+ {
2795
+ "type": "string"
2796
+ },
2797
+ {
2798
+ "anyOf": [
2799
+ {
2800
+ "$ref": "#/$defs/Include"
2801
+ },
2802
+ {
2803
+ "type": "array",
2804
+ "items": {
2805
+ "type": "string"
2806
+ },
2807
+ "allOf": [
2808
+ {
2809
+ "minItems": 1
2810
+ }
2811
+ ]
2812
+ }
2813
+ ]
2814
+ }
2815
+ ]
2816
+ },
2817
+ "file": {
2818
+ "anyOf": [
2819
+ {
2820
+ "type": "string"
2821
+ },
2822
+ {
2823
+ "anyOf": [
2824
+ {
2825
+ "$ref": "#/$defs/Include"
2826
+ },
2827
+ {
2828
+ "type": "array",
2829
+ "items": {
2830
+ "type": "string"
2831
+ },
2832
+ "allOf": [
2833
+ {
2834
+ "minItems": 1
2835
+ }
2836
+ ]
2837
+ }
2838
+ ]
2839
+ }
2840
+ ]
2841
+ },
2842
+ "format": {
2843
+ "type": "string",
2844
+ "enum": [
2845
+ "tsc",
2846
+ "eslint",
2847
+ "oxlint",
2848
+ "regex"
2849
+ ]
2850
+ },
2851
+ "pattern": {
2852
+ "type": "string"
2853
+ },
2854
+ "codes": {
2855
+ "anyOf": [
2856
+ {
2857
+ "$ref": "#/$defs/Include"
2858
+ },
2859
+ {
2860
+ "type": "array",
2861
+ "items": {
2862
+ "type": "string"
2863
+ }
2864
+ }
2865
+ ]
2866
+ },
2867
+ "codesNot": {
2868
+ "anyOf": [
2869
+ {
2870
+ "$ref": "#/$defs/Include"
2871
+ },
2872
+ {
2873
+ "type": "array",
2874
+ "items": {
2875
+ "type": "string"
2876
+ }
2877
+ }
2878
+ ]
2879
+ }
2880
+ },
2881
+ "required": [
2882
+ "format"
2883
+ ],
2884
+ "additionalProperties": false
2885
+ }
2886
+ ]
2887
+ }
2888
+ },
2889
+ "required": [
2890
+ "report"
2891
+ ],
2892
+ "additionalProperties": false
2893
+ }
2894
+ ]
2895
+ },
2896
+ {
2897
+ "anyOf": [
2898
+ {
2899
+ "$ref": "#/$defs/Use"
2900
+ },
2901
+ {
2902
+ "$ref": "#/$defs/Include"
2903
+ },
2904
+ {
2905
+ "type": "object",
2906
+ "properties": {
2907
+ "fn": {
2908
+ "type": "string"
2909
+ }
2910
+ },
2911
+ "required": [
2912
+ "fn"
2913
+ ],
2914
+ "additionalProperties": false
2915
+ }
2916
+ ]
2917
+ }
2918
+ ]
2919
+ },
2920
+ "per": {
2921
+ "anyOf": [
2922
+ {
2923
+ "anyOf": [
2924
+ {
2925
+ "$ref": "#/$defs/Use"
2926
+ },
2927
+ {
2928
+ "$ref": "#/$defs/Include"
2929
+ },
2930
+ {
2931
+ "type": "object",
2932
+ "properties": {
2933
+ "lines": {
2934
+ "type": "boolean",
2935
+ "enum": [
2936
+ true
2937
+ ]
2938
+ }
2939
+ },
2940
+ "required": [
2941
+ "lines"
2942
+ ],
2943
+ "additionalProperties": false
2944
+ }
2945
+ ]
2946
+ },
2947
+ {
2948
+ "anyOf": [
2949
+ {
2950
+ "$ref": "#/$defs/Use"
2951
+ },
2952
+ {
2953
+ "$ref": "#/$defs/Include"
2954
+ },
2955
+ {
2956
+ "type": "object",
2957
+ "properties": {
2958
+ "files": {
2959
+ "type": "boolean",
2960
+ "enum": [
2961
+ true
2962
+ ]
2963
+ }
2964
+ },
2965
+ "required": [
2966
+ "files"
2967
+ ],
2968
+ "additionalProperties": false
2969
+ }
2970
+ ]
2971
+ },
2972
+ {
2973
+ "anyOf": [
2974
+ {
2975
+ "$ref": "#/$defs/Use"
2976
+ },
2977
+ {
2978
+ "$ref": "#/$defs/Include"
2979
+ },
2980
+ {
2981
+ "type": "object",
2982
+ "properties": {
2983
+ "report": {
2984
+ "anyOf": [
2985
+ {
2986
+ "$ref": "#/$defs/Use"
2987
+ },
2988
+ {
2989
+ "$ref": "#/$defs/Include"
2990
+ },
2991
+ {
2992
+ "type": "object",
2993
+ "properties": {
2994
+ "command": {
2995
+ "anyOf": [
2996
+ {
2997
+ "type": "string"
2998
+ },
2999
+ {
3000
+ "anyOf": [
3001
+ {
3002
+ "$ref": "#/$defs/Include"
3003
+ },
3004
+ {
3005
+ "type": "array",
3006
+ "items": {
3007
+ "type": "string"
3008
+ },
3009
+ "allOf": [
3010
+ {
3011
+ "minItems": 1
3012
+ }
3013
+ ]
3014
+ }
3015
+ ]
3016
+ }
3017
+ ]
3018
+ },
3019
+ "file": {
3020
+ "anyOf": [
3021
+ {
3022
+ "type": "string"
3023
+ },
3024
+ {
3025
+ "anyOf": [
3026
+ {
3027
+ "$ref": "#/$defs/Include"
3028
+ },
3029
+ {
3030
+ "type": "array",
3031
+ "items": {
3032
+ "type": "string"
3033
+ },
3034
+ "allOf": [
3035
+ {
3036
+ "minItems": 1
3037
+ }
3038
+ ]
3039
+ }
3040
+ ]
3041
+ }
3042
+ ]
3043
+ },
3044
+ "format": {
3045
+ "type": "string",
3046
+ "enum": [
3047
+ "tsc",
3048
+ "eslint",
3049
+ "oxlint",
3050
+ "regex"
3051
+ ]
3052
+ },
3053
+ "pattern": {
3054
+ "type": "string"
3055
+ },
3056
+ "codes": {
3057
+ "anyOf": [
3058
+ {
3059
+ "$ref": "#/$defs/Include"
3060
+ },
3061
+ {
3062
+ "type": "array",
3063
+ "items": {
3064
+ "type": "string"
3065
+ }
3066
+ }
3067
+ ]
3068
+ },
3069
+ "codesNot": {
3070
+ "anyOf": [
3071
+ {
3072
+ "$ref": "#/$defs/Include"
3073
+ },
3074
+ {
3075
+ "type": "array",
3076
+ "items": {
3077
+ "type": "string"
3078
+ }
3079
+ }
3080
+ ]
3081
+ }
3082
+ },
3083
+ "required": [
3084
+ "format"
3085
+ ],
3086
+ "additionalProperties": false
3087
+ }
3088
+ ]
3089
+ }
3090
+ },
3091
+ "required": [
3092
+ "report"
3093
+ ],
3094
+ "additionalProperties": false
3095
+ }
3096
+ ]
3097
+ },
3098
+ {
3099
+ "anyOf": [
3100
+ {
3101
+ "$ref": "#/$defs/Use"
3102
+ },
3103
+ {
3104
+ "$ref": "#/$defs/Include"
3105
+ },
3106
+ {
3107
+ "type": "object",
3108
+ "properties": {
3109
+ "fn": {
3110
+ "type": "string"
3111
+ }
3112
+ },
3113
+ "required": [
3114
+ "fn"
3115
+ ],
3116
+ "additionalProperties": false
3117
+ }
3118
+ ]
3119
+ }
3120
+ ]
3121
+ },
3122
+ "scale": {
3123
+ "type": "number"
3124
+ }
3125
+ },
3126
+ "required": [
3127
+ "of",
3128
+ "per"
3129
+ ],
3130
+ "additionalProperties": false
3131
+ }
3132
+ ]
3133
+ }
3134
+ },
3135
+ "required": [
3136
+ "ratio"
3137
+ ],
3138
+ "additionalProperties": false
3139
+ }
3140
+ ]
3141
+ },
3142
+ {
3143
+ "anyOf": [
3144
+ {
3145
+ "$ref": "#/$defs/Use"
3146
+ },
3147
+ {
3148
+ "$ref": "#/$defs/Include"
3149
+ },
3150
+ {
3151
+ "type": "object",
3152
+ "properties": {
3153
+ "command": {
3154
+ "type": "string"
3155
+ },
3156
+ "pattern": {
3157
+ "type": "string"
3158
+ }
3159
+ },
3160
+ "required": [
3161
+ "command"
3162
+ ],
3163
+ "additionalProperties": false
3164
+ }
3165
+ ]
3166
+ }
3167
+ ]
3168
+ },
3169
+ "direction": {
3170
+ "type": "string",
3171
+ "enum": [
3172
+ "down",
3173
+ "up"
3174
+ ]
3175
+ },
3176
+ "tolerance": {
3177
+ "type": "number",
3178
+ "allOf": [
3179
+ {
3180
+ "minimum": 0
3181
+ }
3182
+ ]
3183
+ },
3184
+ "target": {
3185
+ "type": "number"
3186
+ },
2486
3187
  "until": {
2487
3188
  "type": "string",
2488
3189
  "allOf": [
@@ -2633,6 +3334,9 @@
2633
3334
  }
2634
3335
  }
2635
3336
  ]
3337
+ },
3338
+ "value": {
3339
+ "type": "number"
2636
3340
  }
2637
3341
  },
2638
3342
  "required": [
@@ -2776,6 +3480,9 @@
2776
3480
  }
2777
3481
  }
2778
3482
  ]
3483
+ },
3484
+ "value": {
3485
+ "type": "number"
2779
3486
  }
2780
3487
  },
2781
3488
  "required": [
@@ -2797,9 +3504,6 @@
2797
3504
  ]
2798
3505
  }
2799
3506
  },
2800
- "required": [
2801
- "holdout"
2802
- ],
2803
3507
  "additionalProperties": false
2804
3508
  }
2805
3509
  ]