@cyberismo/backend 0.0.15 → 0.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/dist/app.d.ts +21 -0
  2. package/dist/app.js +11 -3
  3. package/dist/app.js.map +1 -1
  4. package/dist/common/validationSchemas.d.ts +48 -0
  5. package/dist/domain/calculations/index.d.ts +15 -0
  6. package/dist/domain/calculations/schema.d.ts +16 -0
  7. package/dist/domain/calculations/service.d.ts +14 -0
  8. package/dist/domain/cardTypes/index.d.ts +15 -0
  9. package/dist/domain/cardTypes/schema.d.ts +17 -0
  10. package/dist/domain/cardTypes/service.d.ts +15 -0
  11. package/dist/domain/cards/index.d.ts +15 -0
  12. package/dist/domain/cards/index.js +22 -6
  13. package/dist/domain/cards/index.js.map +1 -1
  14. package/dist/domain/cards/lib.d.ts +29 -0
  15. package/dist/domain/cards/lib.js +73 -2
  16. package/dist/domain/cards/lib.js.map +1 -1
  17. package/dist/domain/cards/service.d.ts +61 -0
  18. package/dist/domain/cards/service.js +20 -12
  19. package/dist/domain/cards/service.js.map +1 -1
  20. package/dist/domain/fieldTypes/index.d.ts +15 -0
  21. package/dist/domain/fieldTypes/schema.d.ts +28 -0
  22. package/dist/domain/fieldTypes/service.d.ts +16 -0
  23. package/dist/domain/graphModels/index.d.ts +15 -0
  24. package/dist/domain/graphModels/schema.d.ts +16 -0
  25. package/dist/domain/graphModels/service.d.ts +14 -0
  26. package/dist/domain/graphViews/index.d.ts +15 -0
  27. package/dist/domain/graphViews/schema.d.ts +4 -0
  28. package/dist/domain/graphViews/service.d.ts +14 -0
  29. package/dist/domain/labels/index.d.ts +15 -0
  30. package/dist/domain/labels/index.js +33 -0
  31. package/dist/domain/labels/index.js.map +1 -0
  32. package/dist/domain/labels/service.d.ts +19 -0
  33. package/dist/domain/labels/service.js +21 -0
  34. package/dist/domain/labels/service.js.map +1 -0
  35. package/dist/domain/linkTypes/index.d.ts +15 -0
  36. package/dist/domain/linkTypes/schema.d.ts +16 -0
  37. package/dist/domain/linkTypes/service.d.ts +15 -0
  38. package/dist/domain/logicPrograms/index.d.ts +15 -0
  39. package/dist/domain/logicPrograms/service.d.ts +15 -0
  40. package/dist/domain/project/index.d.ts +15 -0
  41. package/dist/domain/project/index.js +42 -0
  42. package/dist/domain/project/index.js.map +1 -0
  43. package/dist/domain/project/schema.d.ts +20 -0
  44. package/dist/domain/project/schema.js +21 -0
  45. package/dist/domain/project/schema.js.map +1 -0
  46. package/dist/domain/project/service.d.ts +30 -0
  47. package/dist/domain/project/service.js +54 -0
  48. package/dist/domain/project/service.js.map +1 -0
  49. package/dist/domain/reports/index.d.ts +15 -0
  50. package/dist/domain/reports/schema.d.ts +16 -0
  51. package/dist/domain/reports/service.d.ts +14 -0
  52. package/dist/domain/resources/index.d.ts +15 -0
  53. package/dist/domain/resources/schema.d.ts +60 -0
  54. package/dist/domain/resources/service.d.ts +36 -0
  55. package/dist/domain/resources/service.js +60 -31
  56. package/dist/domain/resources/service.js.map +1 -1
  57. package/dist/domain/templates/index.d.ts +15 -0
  58. package/dist/domain/templates/index.js +1 -1
  59. package/dist/domain/templates/index.js.map +1 -1
  60. package/dist/domain/templates/schema.d.ts +22 -0
  61. package/dist/domain/templates/service.d.ts +16 -0
  62. package/dist/domain/tree/index.d.ts +15 -0
  63. package/dist/domain/tree/index.js +3 -2
  64. package/dist/domain/tree/index.js.map +1 -1
  65. package/dist/domain/tree/service.d.ts +22 -0
  66. package/dist/domain/tree/service.js +10 -2
  67. package/dist/domain/tree/service.js.map +1 -1
  68. package/dist/domain/workflows/index.d.ts +15 -0
  69. package/dist/domain/workflows/schema.d.ts +16 -0
  70. package/dist/domain/workflows/service.d.ts +14 -0
  71. package/dist/export.d.ts +42 -0
  72. package/dist/export.js +48 -152
  73. package/dist/export.js.map +1 -1
  74. package/dist/index.d.ts +13 -0
  75. package/dist/index.js.map +1 -1
  76. package/dist/main.d.ts +1 -0
  77. package/dist/middleware/commandManager.d.ts +20 -0
  78. package/dist/middleware/tree.d.ts +9 -0
  79. package/dist/middleware/tree.js +13 -0
  80. package/dist/middleware/tree.js.map +1 -0
  81. package/dist/middleware/zvalidator.d.ts +9 -0
  82. package/dist/public/THIRD-PARTY.txt +77 -83
  83. package/dist/public/assets/index-BrNy_4vV.js +163198 -0
  84. package/dist/public/index.html +1 -1
  85. package/dist/types.d.ts +29 -0
  86. package/dist/utils.d.ts +11 -0
  87. package/dist/utils.js +0 -32
  88. package/dist/utils.js.map +1 -1
  89. package/package.json +14 -8
  90. package/src/app.ts +13 -4
  91. package/src/domain/cards/index.ts +31 -6
  92. package/src/domain/cards/lib.ts +93 -3
  93. package/src/domain/cards/service.ts +36 -24
  94. package/src/domain/labels/index.ts +36 -0
  95. package/src/domain/labels/service.ts +23 -0
  96. package/src/domain/project/index.ts +58 -0
  97. package/src/domain/project/schema.ts +23 -0
  98. package/src/domain/project/service.ts +88 -0
  99. package/src/domain/resources/service.ts +87 -41
  100. package/src/domain/templates/index.ts +1 -1
  101. package/src/domain/tree/index.ts +10 -3
  102. package/src/domain/tree/service.ts +15 -1
  103. package/src/export.ts +59 -192
  104. package/src/index.ts +5 -1
  105. package/src/middleware/tree.ts +17 -0
  106. package/src/types.ts +13 -0
  107. package/src/utils.ts +0 -39
  108. package/dist/public/assets/index-Dtn1rQ-9.js +0 -163921
@@ -1465,7 +1465,7 @@ SOFTWARE.
1465
1465
  ---
1466
1466
 
1467
1467
  Name: @cyberismo/data-handler
1468
- Version: 0.0.15
1468
+ Version: 0.0.17
1469
1469
  License: AGPL-3.0
1470
1470
  Private: false
1471
1471
  Description: Command handler for cards and web service
@@ -2004,45 +2004,39 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2004
2004
 
2005
2005
  ---
2006
2006
 
2007
- Name: moment
2008
- Version: 2.30.1
2007
+ Name: date-fns
2008
+ Version: 4.1.0
2009
2009
  License: MIT
2010
2010
  Private: false
2011
- Description: Parse, validate, manipulate, and display dates
2012
- Repository: https://github.com/moment/moment.git
2013
- Homepage: https://momentjs.com
2014
- Author: Iskren Ivov Chernev <iskren.chernev@gmail.com> (https://github.com/ichernev)
2011
+ Description: Modern JavaScript date utility library
2012
+ Repository: undefined
2015
2013
  Contributors:
2016
- Tim Wood <washwithcare@gmail.com> (http://timwoodcreates.com/)
2017
- Rocky Meza (http://rockymeza.com)
2018
- Matt Johnson <mj1856@hotmail.com> (http://codeofmatt.com)
2019
- Isaac Cambron <isaac@isaaccambron.com> (http://isaaccambron.com)
2020
- Andre Polykanine <andre@oire.org> (https://github.com/oire)
2014
+ Sasha Koss <koss@nocorp.me>
2015
+ Lesha Koss <regiusprod@gmail.com>
2021
2016
  License Copyright:
2022
2017
  ===
2023
2018
 
2024
- Copyright (c) JS Foundation and other contributors
2019
+ MIT License
2025
2020
 
2026
- Permission is hereby granted, free of charge, to any person
2027
- obtaining a copy of this software and associated documentation
2028
- files (the "Software"), to deal in the Software without
2029
- restriction, including without limitation the rights to use,
2030
- copy, modify, merge, publish, distribute, sublicense, and/or sell
2031
- copies of the Software, and to permit persons to whom the
2032
- Software is furnished to do so, subject to the following
2033
- conditions:
2021
+ Copyright (c) 2021 Sasha Koss and Lesha Koss https://kossnocorp.mit-license.org
2034
2022
 
2035
- The above copyright notice and this permission notice shall be
2036
- included in all copies or substantial portions of the Software.
2023
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2024
+ of this software and associated documentation files (the "Software"), to deal
2025
+ in the Software without restriction, including without limitation the rights
2026
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2027
+ copies of the Software, and to permit persons to whom the Software is
2028
+ furnished to do so, subject to the following conditions:
2037
2029
 
2038
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2039
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2040
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2041
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2042
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2043
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2044
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2045
- OTHER DEALINGS IN THE SOFTWARE.
2030
+ The above copyright notice and this permission notice shall be included in all
2031
+ copies or substantial portions of the Software.
2032
+
2033
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2034
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2035
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2036
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2037
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2038
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2039
+ SOFTWARE.
2046
2040
 
2047
2041
  ---
2048
2042
 
@@ -2171,11 +2165,11 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2171
2165
  ---
2172
2166
 
2173
2167
  Name: vega-util
2174
- Version: 2.0.0
2168
+ Version: 2.1.0
2175
2169
  License: BSD-3-Clause
2176
2170
  Private: false
2177
2171
  Description: JavaScript utilities for Vega.
2178
- Repository: undefined
2172
+ Repository: git+https://github.com/vega/vega.git
2179
2173
  Author: Vega (https://vega.github.io)
2180
2174
  License Copyright:
2181
2175
  ===
@@ -2373,11 +2367,11 @@ THIS SOFTWARE.
2373
2367
  ---
2374
2368
 
2375
2369
  Name: vega-time
2376
- Version: 3.0.0
2370
+ Version: 3.1.0
2377
2371
  License: BSD-3-Clause
2378
2372
  Private: false
2379
2373
  Description: JavaScript date/time utilities for Vega.
2380
- Repository: undefined
2374
+ Repository: git+https://github.com/vega/vega.git
2381
2375
  Author: Vega (https://vega.github.io)
2382
2376
  License Copyright:
2383
2377
  ===
@@ -2440,11 +2434,11 @@ THIS SOFTWARE.
2440
2434
  ---
2441
2435
 
2442
2436
  Name: vega-format
2443
- Version: 2.0.0
2437
+ Version: 2.1.0
2444
2438
  License: BSD-3-Clause
2445
2439
  Private: false
2446
2440
  Description: JavaScript string formatting utilities for Vega.
2447
- Repository: undefined
2441
+ Repository: git+https://github.com/vega/vega.git
2448
2442
  Author: Vega (https://vega.github.io)
2449
2443
  License Copyright:
2450
2444
  ===
@@ -2480,11 +2474,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2480
2474
  ---
2481
2475
 
2482
2476
  Name: vega-loader
2483
- Version: 5.0.0
2477
+ Version: 5.1.0
2484
2478
  License: BSD-3-Clause
2485
2479
  Private: false
2486
2480
  Description: Network request and file loading utilities.
2487
- Repository: undefined
2481
+ Repository: git+https://github.com/vega/vega.git
2488
2482
  Author: Vega (https://vega.github.io)
2489
2483
  License Copyright:
2490
2484
  ===
@@ -2520,11 +2514,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2520
2514
  ---
2521
2515
 
2522
2516
  Name: vega-dataflow
2523
- Version: 6.0.0
2517
+ Version: 6.1.0
2524
2518
  License: BSD-3-Clause
2525
2519
  Private: false
2526
2520
  Description: Reactive dataflow processing.
2527
- Repository: undefined
2521
+ Repository: git+https://github.com/vega/vega.git
2528
2522
  Author: Vega (https://vega.github.io)
2529
2523
  License Copyright:
2530
2524
  ===
@@ -2600,11 +2594,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2600
2594
  ---
2601
2595
 
2602
2596
  Name: vega-transforms
2603
- Version: 5.0.0
2597
+ Version: 5.1.0
2604
2598
  License: BSD-3-Clause
2605
2599
  Private: false
2606
2600
  Description: Data processing transforms for Vega dataflows.
2607
- Repository: undefined
2601
+ Repository: git+https://github.com/vega/vega.git
2608
2602
  Author: Vega (https://vega.github.io)
2609
2603
  License Copyright:
2610
2604
  ===
@@ -2857,11 +2851,11 @@ specific language governing permissions and limitations under the License.
2857
2851
  ---
2858
2852
 
2859
2853
  Name: vega-scale
2860
- Version: 8.0.0
2854
+ Version: 8.1.0
2861
2855
  License: BSD-3-Clause
2862
2856
  Private: false
2863
2857
  Description: Scales and color schemes for visual encoding.
2864
- Repository: undefined
2858
+ Repository: git+https://github.com/vega/vega.git
2865
2859
  Author: Vega (https://vega.github.io)
2866
2860
  License Copyright:
2867
2861
  ===
@@ -2897,11 +2891,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2897
2891
  ---
2898
2892
 
2899
2893
  Name: vega-scenegraph
2900
- Version: 5.0.0
2894
+ Version: 5.1.0
2901
2895
  License: BSD-3-Clause
2902
2896
  Private: false
2903
2897
  Description: Vega scenegraph and renderers.
2904
- Repository: undefined
2898
+ Repository: git+https://github.com/vega/vega.git
2905
2899
  Author: Vega (https://vega.github.io)
2906
2900
  License Copyright:
2907
2901
  ===
@@ -2937,11 +2931,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2937
2931
  ---
2938
2932
 
2939
2933
  Name: vega-view-transforms
2940
- Version: 5.0.0
2934
+ Version: 5.1.0
2941
2935
  License: BSD-3-Clause
2942
2936
  Private: false
2943
2937
  Description: View-specific transforms for Vega dataflows.
2944
- Repository: undefined
2938
+ Repository: git+https://github.com/vega/vega.git
2945
2939
  Author: Vega (https://vega.github.io)
2946
2940
  License Copyright:
2947
2941
  ===
@@ -2977,11 +2971,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2977
2971
  ---
2978
2972
 
2979
2973
  Name: vega-encode
2980
- Version: 5.0.0
2974
+ Version: 5.1.0
2981
2975
  License: BSD-3-Clause
2982
2976
  Private: false
2983
2977
  Description: Visual encoding transforms for Vega dataflows.
2984
- Repository: undefined
2978
+ Repository: git+https://github.com/vega/vega.git
2985
2979
  Author: Vega (https://vega.github.io)
2986
2980
  License Copyright:
2987
2981
  ===
@@ -3119,11 +3113,11 @@ THE SOFTWARE.
3119
3113
  ---
3120
3114
 
3121
3115
  Name: vega-projection
3122
- Version: 2.0.0
3116
+ Version: 2.1.0
3123
3117
  License: BSD-3-Clause
3124
3118
  Private: false
3125
3119
  Description: Projections for cartographic mapping.
3126
- Repository: undefined
3120
+ Repository: git+https://github.com/vega/vega.git
3127
3121
  Author: Vega (https://vega.github.io)
3128
3122
  License Copyright:
3129
3123
  ===
@@ -3159,11 +3153,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3159
3153
  ---
3160
3154
 
3161
3155
  Name: vega-geo
3162
- Version: 5.0.0
3156
+ Version: 5.1.0
3163
3157
  License: BSD-3-Clause
3164
3158
  Private: false
3165
3159
  Description: Geographic data transforms for Vega dataflows.
3166
- Repository: undefined
3160
+ Repository: git+https://github.com/vega/vega.git
3167
3161
  Author: Vega (https://vega.github.io)
3168
3162
  License Copyright:
3169
3163
  ===
@@ -3307,11 +3301,11 @@ THIS SOFTWARE.
3307
3301
  ---
3308
3302
 
3309
3303
  Name: vega-force
3310
- Version: 5.0.0
3304
+ Version: 5.1.0
3311
3305
  License: BSD-3-Clause
3312
3306
  Private: false
3313
3307
  Description: Force simulation transform for Vega dataflows.
3314
- Repository: undefined
3308
+ Repository: git+https://github.com/vega/vega.git
3315
3309
  Author: Vega (https://vega.github.io)
3316
3310
  License Copyright:
3317
3311
  ===
@@ -3374,11 +3368,11 @@ THIS SOFTWARE.
3374
3368
  ---
3375
3369
 
3376
3370
  Name: vega-hierarchy
3377
- Version: 5.0.0
3371
+ Version: 5.1.0
3378
3372
  License: BSD-3-Clause
3379
3373
  Private: false
3380
3374
  Description: Hierarchical layout transforms for Vega dataflows.
3381
- Repository: undefined
3375
+ Repository: git+https://github.com/vega/vega.git
3382
3376
  Author: Vega (https://vega.github.io)
3383
3377
  License Copyright:
3384
3378
  ===
@@ -3414,11 +3408,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3414
3408
  ---
3415
3409
 
3416
3410
  Name: vega-label
3417
- Version: 2.0.0
3411
+ Version: 2.1.0
3418
3412
  License: BSD-3-Clause
3419
3413
  Private: false
3420
3414
  Description: Label layout transform for Vega dataflows.
3421
- Repository: undefined
3415
+ Repository: git+https://github.com/vega/vega.git
3422
3416
  Author: UW Interactive Data Lab (http://idl.cs.washington.edu)
3423
3417
  License Copyright:
3424
3418
  ===
@@ -3454,11 +3448,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3454
3448
  ---
3455
3449
 
3456
3450
  Name: vega-regression
3457
- Version: 2.0.0
3451
+ Version: 2.1.0
3458
3452
  License: BSD-3-Clause
3459
3453
  Private: false
3460
3454
  Description: Regression transform for Vega dataflows.
3461
- Repository: undefined
3455
+ Repository: git+https://github.com/vega/vega.git
3462
3456
  Author: Vega (https://vega.github.io)
3463
3457
  License Copyright:
3464
3458
  ===
@@ -3590,11 +3584,11 @@ THIS SOFTWARE.
3590
3584
  ---
3591
3585
 
3592
3586
  Name: vega-voronoi
3593
- Version: 5.0.0
3587
+ Version: 5.1.0
3594
3588
  License: BSD-3-Clause
3595
3589
  Private: false
3596
3590
  Description: Voronoi diagram transform for Vega dataflows.
3597
- Repository: undefined
3591
+ Repository: git+https://github.com/vega/vega.git
3598
3592
  Author: Vega (https://vega.github.io)
3599
3593
  License Copyright:
3600
3594
  ===
@@ -3630,11 +3624,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3630
3624
  ---
3631
3625
 
3632
3626
  Name: vega-wordcloud
3633
- Version: 5.0.0
3627
+ Version: 5.1.0
3634
3628
  License: BSD-3-Clause
3635
3629
  Private: false
3636
3630
  Description: Wordcloud layout transform for Vega dataflows.
3637
- Repository: undefined
3631
+ Repository: git+https://github.com/vega/vega.git
3638
3632
  Author: Vega (https://vega.github.io)
3639
3633
  License Copyright:
3640
3634
  ===
@@ -3670,11 +3664,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3670
3664
  ---
3671
3665
 
3672
3666
  Name: vega-crossfilter
3673
- Version: 5.0.0
3667
+ Version: 5.1.0
3674
3668
  License: BSD-3-Clause
3675
3669
  Private: false
3676
3670
  Description: Indexed cross-filtering for Vega dataflows.
3677
- Repository: undefined
3671
+ Repository: git+https://github.com/vega/vega.git
3678
3672
  Author: Vega (https://vega.github.io)
3679
3673
  License Copyright:
3680
3674
  ===
@@ -3710,11 +3704,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3710
3704
  ---
3711
3705
 
3712
3706
  Name: vega-expression
3713
- Version: 6.0.0
3707
+ Version: 6.1.0
3714
3708
  License: BSD-3-Clause
3715
3709
  Private: false
3716
3710
  Description: Vega expression parser and code generator.
3717
- Repository: undefined
3711
+ Repository: git+https://github.com/vega/vega.git
3718
3712
  Author: Vega (https://vega.github.io)
3719
3713
  License Copyright:
3720
3714
  ===
@@ -3750,11 +3744,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3750
3744
  ---
3751
3745
 
3752
3746
  Name: vega-selections
3753
- Version: 6.0.0
3747
+ Version: 6.1.0
3754
3748
  License: BSD-3-Clause
3755
3749
  Private: false
3756
3750
  Description: Vega expression functions for Vega-Lite selections.
3757
- Repository: undefined
3751
+ Repository: git+https://github.com/vega/vega.git
3758
3752
  Author: Arvind Satyanarayan (http://arvindsatya.com)
3759
3753
  License Copyright:
3760
3754
  ===
@@ -3790,11 +3784,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3790
3784
  ---
3791
3785
 
3792
3786
  Name: vega-functions
3793
- Version: 6.0.0
3787
+ Version: 6.1.0
3794
3788
  License: BSD-3-Clause
3795
3789
  Private: false
3796
3790
  Description: Custom functions for the Vega expression language.
3797
- Repository: undefined
3791
+ Repository: git+https://github.com/vega/vega.git
3798
3792
  Author: Vega (https://vega.github.io)
3799
3793
  License Copyright:
3800
3794
  ===
@@ -3830,11 +3824,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3830
3824
  ---
3831
3825
 
3832
3826
  Name: vega-runtime
3833
- Version: 7.0.0
3827
+ Version: 7.1.0
3834
3828
  License: BSD-3-Clause
3835
3829
  Private: false
3836
3830
  Description: Runtime support for Vega dataflows.
3837
- Repository: undefined
3831
+ Repository: git+https://github.com/vega/vega.git
3838
3832
  Author: Vega (https://vega.github.io)
3839
3833
  License Copyright:
3840
3834
  ===
@@ -3870,11 +3864,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3870
3864
  ---
3871
3865
 
3872
3866
  Name: vega-view
3873
- Version: 6.0.0
3867
+ Version: 6.1.0
3874
3868
  License: BSD-3-Clause
3875
3869
  Private: false
3876
3870
  Description: View component and transforms for Vega visualizations.
3877
- Repository: undefined
3871
+ Repository: git+https://github.com/vega/vega.git
3878
3872
  Author: Vega (https://vega.github.io)
3879
3873
  License Copyright:
3880
3874
  ===
@@ -3950,11 +3944,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3950
3944
  ---
3951
3945
 
3952
3946
  Name: vega-parser
3953
- Version: 7.0.0
3947
+ Version: 7.1.0
3954
3948
  License: BSD-3-Clause
3955
3949
  Private: false
3956
3950
  Description: Parse Vega specifications to runtime dataflows.
3957
- Repository: undefined
3951
+ Repository: git+https://github.com/vega/vega.git
3958
3952
  Author: Vega (https://vega.github.io)
3959
3953
  License Copyright:
3960
3954
  ===
@@ -3990,7 +3984,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3990
3984
  ---
3991
3985
 
3992
3986
  Name: vega
3993
- Version: 6.1.2
3987
+ Version: 6.2.0
3994
3988
  License: BSD-3-Clause
3995
3989
  Private: false
3996
3990
  Description: The Vega visualization grammar.
@@ -4030,7 +4024,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4030
4024
  ---
4031
4025
 
4032
4026
  Name: vega-lite
4033
- Version: 6.3.1
4027
+ Version: 6.4.1
4034
4028
  License: BSD-3-Clause
4035
4029
  Private: false
4036
4030
  Description: Vega-Lite is a concise high-level language for interactive visualization.