@cyberismo/backend 0.0.15 → 0.0.16

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 (93) hide show
  1. package/dist/app.d.ts +21 -0
  2. package/dist/app.js +9 -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/reports/index.d.ts +15 -0
  41. package/dist/domain/reports/schema.d.ts +16 -0
  42. package/dist/domain/reports/service.d.ts +14 -0
  43. package/dist/domain/resources/index.d.ts +15 -0
  44. package/dist/domain/resources/schema.d.ts +60 -0
  45. package/dist/domain/resources/service.d.ts +36 -0
  46. package/dist/domain/templates/index.d.ts +15 -0
  47. package/dist/domain/templates/index.js +1 -1
  48. package/dist/domain/templates/index.js.map +1 -1
  49. package/dist/domain/templates/schema.d.ts +22 -0
  50. package/dist/domain/templates/service.d.ts +16 -0
  51. package/dist/domain/tree/index.d.ts +15 -0
  52. package/dist/domain/tree/index.js +3 -2
  53. package/dist/domain/tree/index.js.map +1 -1
  54. package/dist/domain/tree/service.d.ts +22 -0
  55. package/dist/domain/tree/service.js +10 -2
  56. package/dist/domain/tree/service.js.map +1 -1
  57. package/dist/domain/workflows/index.d.ts +15 -0
  58. package/dist/domain/workflows/schema.d.ts +16 -0
  59. package/dist/domain/workflows/service.d.ts +14 -0
  60. package/dist/export.d.ts +42 -0
  61. package/dist/export.js +48 -152
  62. package/dist/export.js.map +1 -1
  63. package/dist/index.d.ts +13 -0
  64. package/dist/index.js.map +1 -1
  65. package/dist/main.d.ts +1 -0
  66. package/dist/middleware/commandManager.d.ts +20 -0
  67. package/dist/middleware/tree.d.ts +9 -0
  68. package/dist/middleware/tree.js +13 -0
  69. package/dist/middleware/tree.js.map +1 -0
  70. package/dist/middleware/zvalidator.d.ts +9 -0
  71. package/dist/public/THIRD-PARTY.txt +53 -53
  72. package/dist/public/assets/{index-Dtn1rQ-9.js → index-D410yunq.js} +26486 -26409
  73. package/dist/public/index.html +1 -1
  74. package/dist/types.d.ts +29 -0
  75. package/dist/utils.d.ts +11 -0
  76. package/dist/utils.js +0 -32
  77. package/dist/utils.js.map +1 -1
  78. package/package.json +6 -6
  79. package/src/app.ts +11 -4
  80. package/src/domain/cards/index.ts +31 -6
  81. package/src/domain/cards/lib.ts +93 -3
  82. package/src/domain/cards/service.ts +36 -24
  83. package/src/domain/labels/index.ts +36 -0
  84. package/src/domain/labels/service.ts +23 -0
  85. package/src/domain/resources/service.ts +3 -3
  86. package/src/domain/templates/index.ts +1 -1
  87. package/src/domain/tree/index.ts +10 -3
  88. package/src/domain/tree/service.ts +15 -1
  89. package/src/export.ts +59 -192
  90. package/src/index.ts +5 -1
  91. package/src/middleware/tree.ts +17 -0
  92. package/src/types.ts +13 -0
  93. package/src/utils.ts +0 -39
@@ -1465,7 +1465,7 @@ SOFTWARE.
1465
1465
  ---
1466
1466
 
1467
1467
  Name: @cyberismo/data-handler
1468
- Version: 0.0.15
1468
+ Version: 0.0.16
1469
1469
  License: AGPL-3.0
1470
1470
  Private: false
1471
1471
  Description: Command handler for cards and web service
@@ -2171,11 +2171,11 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2171
2171
  ---
2172
2172
 
2173
2173
  Name: vega-util
2174
- Version: 2.0.0
2174
+ Version: 2.1.0
2175
2175
  License: BSD-3-Clause
2176
2176
  Private: false
2177
2177
  Description: JavaScript utilities for Vega.
2178
- Repository: undefined
2178
+ Repository: git+https://github.com/vega/vega.git
2179
2179
  Author: Vega (https://vega.github.io)
2180
2180
  License Copyright:
2181
2181
  ===
@@ -2373,11 +2373,11 @@ THIS SOFTWARE.
2373
2373
  ---
2374
2374
 
2375
2375
  Name: vega-time
2376
- Version: 3.0.0
2376
+ Version: 3.1.0
2377
2377
  License: BSD-3-Clause
2378
2378
  Private: false
2379
2379
  Description: JavaScript date/time utilities for Vega.
2380
- Repository: undefined
2380
+ Repository: git+https://github.com/vega/vega.git
2381
2381
  Author: Vega (https://vega.github.io)
2382
2382
  License Copyright:
2383
2383
  ===
@@ -2440,11 +2440,11 @@ THIS SOFTWARE.
2440
2440
  ---
2441
2441
 
2442
2442
  Name: vega-format
2443
- Version: 2.0.0
2443
+ Version: 2.1.0
2444
2444
  License: BSD-3-Clause
2445
2445
  Private: false
2446
2446
  Description: JavaScript string formatting utilities for Vega.
2447
- Repository: undefined
2447
+ Repository: git+https://github.com/vega/vega.git
2448
2448
  Author: Vega (https://vega.github.io)
2449
2449
  License Copyright:
2450
2450
  ===
@@ -2480,11 +2480,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2480
2480
  ---
2481
2481
 
2482
2482
  Name: vega-loader
2483
- Version: 5.0.0
2483
+ Version: 5.1.0
2484
2484
  License: BSD-3-Clause
2485
2485
  Private: false
2486
2486
  Description: Network request and file loading utilities.
2487
- Repository: undefined
2487
+ Repository: git+https://github.com/vega/vega.git
2488
2488
  Author: Vega (https://vega.github.io)
2489
2489
  License Copyright:
2490
2490
  ===
@@ -2520,11 +2520,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2520
2520
  ---
2521
2521
 
2522
2522
  Name: vega-dataflow
2523
- Version: 6.0.0
2523
+ Version: 6.1.0
2524
2524
  License: BSD-3-Clause
2525
2525
  Private: false
2526
2526
  Description: Reactive dataflow processing.
2527
- Repository: undefined
2527
+ Repository: git+https://github.com/vega/vega.git
2528
2528
  Author: Vega (https://vega.github.io)
2529
2529
  License Copyright:
2530
2530
  ===
@@ -2600,11 +2600,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2600
2600
  ---
2601
2601
 
2602
2602
  Name: vega-transforms
2603
- Version: 5.0.0
2603
+ Version: 5.1.0
2604
2604
  License: BSD-3-Clause
2605
2605
  Private: false
2606
2606
  Description: Data processing transforms for Vega dataflows.
2607
- Repository: undefined
2607
+ Repository: git+https://github.com/vega/vega.git
2608
2608
  Author: Vega (https://vega.github.io)
2609
2609
  License Copyright:
2610
2610
  ===
@@ -2857,11 +2857,11 @@ specific language governing permissions and limitations under the License.
2857
2857
  ---
2858
2858
 
2859
2859
  Name: vega-scale
2860
- Version: 8.0.0
2860
+ Version: 8.1.0
2861
2861
  License: BSD-3-Clause
2862
2862
  Private: false
2863
2863
  Description: Scales and color schemes for visual encoding.
2864
- Repository: undefined
2864
+ Repository: git+https://github.com/vega/vega.git
2865
2865
  Author: Vega (https://vega.github.io)
2866
2866
  License Copyright:
2867
2867
  ===
@@ -2897,11 +2897,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2897
2897
  ---
2898
2898
 
2899
2899
  Name: vega-scenegraph
2900
- Version: 5.0.0
2900
+ Version: 5.1.0
2901
2901
  License: BSD-3-Clause
2902
2902
  Private: false
2903
2903
  Description: Vega scenegraph and renderers.
2904
- Repository: undefined
2904
+ Repository: git+https://github.com/vega/vega.git
2905
2905
  Author: Vega (https://vega.github.io)
2906
2906
  License Copyright:
2907
2907
  ===
@@ -2937,11 +2937,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2937
2937
  ---
2938
2938
 
2939
2939
  Name: vega-view-transforms
2940
- Version: 5.0.0
2940
+ Version: 5.1.0
2941
2941
  License: BSD-3-Clause
2942
2942
  Private: false
2943
2943
  Description: View-specific transforms for Vega dataflows.
2944
- Repository: undefined
2944
+ Repository: git+https://github.com/vega/vega.git
2945
2945
  Author: Vega (https://vega.github.io)
2946
2946
  License Copyright:
2947
2947
  ===
@@ -2977,11 +2977,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2977
2977
  ---
2978
2978
 
2979
2979
  Name: vega-encode
2980
- Version: 5.0.0
2980
+ Version: 5.1.0
2981
2981
  License: BSD-3-Clause
2982
2982
  Private: false
2983
2983
  Description: Visual encoding transforms for Vega dataflows.
2984
- Repository: undefined
2984
+ Repository: git+https://github.com/vega/vega.git
2985
2985
  Author: Vega (https://vega.github.io)
2986
2986
  License Copyright:
2987
2987
  ===
@@ -3119,11 +3119,11 @@ THE SOFTWARE.
3119
3119
  ---
3120
3120
 
3121
3121
  Name: vega-projection
3122
- Version: 2.0.0
3122
+ Version: 2.1.0
3123
3123
  License: BSD-3-Clause
3124
3124
  Private: false
3125
3125
  Description: Projections for cartographic mapping.
3126
- Repository: undefined
3126
+ Repository: git+https://github.com/vega/vega.git
3127
3127
  Author: Vega (https://vega.github.io)
3128
3128
  License Copyright:
3129
3129
  ===
@@ -3159,11 +3159,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3159
3159
  ---
3160
3160
 
3161
3161
  Name: vega-geo
3162
- Version: 5.0.0
3162
+ Version: 5.1.0
3163
3163
  License: BSD-3-Clause
3164
3164
  Private: false
3165
3165
  Description: Geographic data transforms for Vega dataflows.
3166
- Repository: undefined
3166
+ Repository: git+https://github.com/vega/vega.git
3167
3167
  Author: Vega (https://vega.github.io)
3168
3168
  License Copyright:
3169
3169
  ===
@@ -3307,11 +3307,11 @@ THIS SOFTWARE.
3307
3307
  ---
3308
3308
 
3309
3309
  Name: vega-force
3310
- Version: 5.0.0
3310
+ Version: 5.1.0
3311
3311
  License: BSD-3-Clause
3312
3312
  Private: false
3313
3313
  Description: Force simulation transform for Vega dataflows.
3314
- Repository: undefined
3314
+ Repository: git+https://github.com/vega/vega.git
3315
3315
  Author: Vega (https://vega.github.io)
3316
3316
  License Copyright:
3317
3317
  ===
@@ -3374,11 +3374,11 @@ THIS SOFTWARE.
3374
3374
  ---
3375
3375
 
3376
3376
  Name: vega-hierarchy
3377
- Version: 5.0.0
3377
+ Version: 5.1.0
3378
3378
  License: BSD-3-Clause
3379
3379
  Private: false
3380
3380
  Description: Hierarchical layout transforms for Vega dataflows.
3381
- Repository: undefined
3381
+ Repository: git+https://github.com/vega/vega.git
3382
3382
  Author: Vega (https://vega.github.io)
3383
3383
  License Copyright:
3384
3384
  ===
@@ -3414,11 +3414,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3414
3414
  ---
3415
3415
 
3416
3416
  Name: vega-label
3417
- Version: 2.0.0
3417
+ Version: 2.1.0
3418
3418
  License: BSD-3-Clause
3419
3419
  Private: false
3420
3420
  Description: Label layout transform for Vega dataflows.
3421
- Repository: undefined
3421
+ Repository: git+https://github.com/vega/vega.git
3422
3422
  Author: UW Interactive Data Lab (http://idl.cs.washington.edu)
3423
3423
  License Copyright:
3424
3424
  ===
@@ -3454,11 +3454,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3454
3454
  ---
3455
3455
 
3456
3456
  Name: vega-regression
3457
- Version: 2.0.0
3457
+ Version: 2.1.0
3458
3458
  License: BSD-3-Clause
3459
3459
  Private: false
3460
3460
  Description: Regression transform for Vega dataflows.
3461
- Repository: undefined
3461
+ Repository: git+https://github.com/vega/vega.git
3462
3462
  Author: Vega (https://vega.github.io)
3463
3463
  License Copyright:
3464
3464
  ===
@@ -3590,11 +3590,11 @@ THIS SOFTWARE.
3590
3590
  ---
3591
3591
 
3592
3592
  Name: vega-voronoi
3593
- Version: 5.0.0
3593
+ Version: 5.1.0
3594
3594
  License: BSD-3-Clause
3595
3595
  Private: false
3596
3596
  Description: Voronoi diagram transform for Vega dataflows.
3597
- Repository: undefined
3597
+ Repository: git+https://github.com/vega/vega.git
3598
3598
  Author: Vega (https://vega.github.io)
3599
3599
  License Copyright:
3600
3600
  ===
@@ -3630,11 +3630,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3630
3630
  ---
3631
3631
 
3632
3632
  Name: vega-wordcloud
3633
- Version: 5.0.0
3633
+ Version: 5.1.0
3634
3634
  License: BSD-3-Clause
3635
3635
  Private: false
3636
3636
  Description: Wordcloud layout transform for Vega dataflows.
3637
- Repository: undefined
3637
+ Repository: git+https://github.com/vega/vega.git
3638
3638
  Author: Vega (https://vega.github.io)
3639
3639
  License Copyright:
3640
3640
  ===
@@ -3670,11 +3670,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3670
3670
  ---
3671
3671
 
3672
3672
  Name: vega-crossfilter
3673
- Version: 5.0.0
3673
+ Version: 5.1.0
3674
3674
  License: BSD-3-Clause
3675
3675
  Private: false
3676
3676
  Description: Indexed cross-filtering for Vega dataflows.
3677
- Repository: undefined
3677
+ Repository: git+https://github.com/vega/vega.git
3678
3678
  Author: Vega (https://vega.github.io)
3679
3679
  License Copyright:
3680
3680
  ===
@@ -3710,11 +3710,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3710
3710
  ---
3711
3711
 
3712
3712
  Name: vega-expression
3713
- Version: 6.0.0
3713
+ Version: 6.1.0
3714
3714
  License: BSD-3-Clause
3715
3715
  Private: false
3716
3716
  Description: Vega expression parser and code generator.
3717
- Repository: undefined
3717
+ Repository: git+https://github.com/vega/vega.git
3718
3718
  Author: Vega (https://vega.github.io)
3719
3719
  License Copyright:
3720
3720
  ===
@@ -3750,11 +3750,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3750
3750
  ---
3751
3751
 
3752
3752
  Name: vega-selections
3753
- Version: 6.0.0
3753
+ Version: 6.1.0
3754
3754
  License: BSD-3-Clause
3755
3755
  Private: false
3756
3756
  Description: Vega expression functions for Vega-Lite selections.
3757
- Repository: undefined
3757
+ Repository: git+https://github.com/vega/vega.git
3758
3758
  Author: Arvind Satyanarayan (http://arvindsatya.com)
3759
3759
  License Copyright:
3760
3760
  ===
@@ -3790,11 +3790,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3790
3790
  ---
3791
3791
 
3792
3792
  Name: vega-functions
3793
- Version: 6.0.0
3793
+ Version: 6.1.0
3794
3794
  License: BSD-3-Clause
3795
3795
  Private: false
3796
3796
  Description: Custom functions for the Vega expression language.
3797
- Repository: undefined
3797
+ Repository: git+https://github.com/vega/vega.git
3798
3798
  Author: Vega (https://vega.github.io)
3799
3799
  License Copyright:
3800
3800
  ===
@@ -3830,11 +3830,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3830
3830
  ---
3831
3831
 
3832
3832
  Name: vega-runtime
3833
- Version: 7.0.0
3833
+ Version: 7.1.0
3834
3834
  License: BSD-3-Clause
3835
3835
  Private: false
3836
3836
  Description: Runtime support for Vega dataflows.
3837
- Repository: undefined
3837
+ Repository: git+https://github.com/vega/vega.git
3838
3838
  Author: Vega (https://vega.github.io)
3839
3839
  License Copyright:
3840
3840
  ===
@@ -3870,11 +3870,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3870
3870
  ---
3871
3871
 
3872
3872
  Name: vega-view
3873
- Version: 6.0.0
3873
+ Version: 6.1.0
3874
3874
  License: BSD-3-Clause
3875
3875
  Private: false
3876
3876
  Description: View component and transforms for Vega visualizations.
3877
- Repository: undefined
3877
+ Repository: git+https://github.com/vega/vega.git
3878
3878
  Author: Vega (https://vega.github.io)
3879
3879
  License Copyright:
3880
3880
  ===
@@ -3950,11 +3950,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3950
3950
  ---
3951
3951
 
3952
3952
  Name: vega-parser
3953
- Version: 7.0.0
3953
+ Version: 7.1.0
3954
3954
  License: BSD-3-Clause
3955
3955
  Private: false
3956
3956
  Description: Parse Vega specifications to runtime dataflows.
3957
- Repository: undefined
3957
+ Repository: git+https://github.com/vega/vega.git
3958
3958
  Author: Vega (https://vega.github.io)
3959
3959
  License Copyright:
3960
3960
  ===
@@ -3990,7 +3990,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3990
3990
  ---
3991
3991
 
3992
3992
  Name: vega
3993
- Version: 6.1.2
3993
+ Version: 6.2.0
3994
3994
  License: BSD-3-Clause
3995
3995
  Private: false
3996
3996
  Description: The Vega visualization grammar.
@@ -4030,7 +4030,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4030
4030
  ---
4031
4031
 
4032
4032
  Name: vega-lite
4033
- Version: 6.3.1
4033
+ Version: 6.4.1
4034
4034
  License: BSD-3-Clause
4035
4035
  Private: false
4036
4036
  Description: Vega-Lite is a concise high-level language for interactive visualization.