@adminforth/dashboard 1.4.1 → 1.5.0

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.
@@ -3485,872 +3485,6 @@ export declare const DashboardWidgetDataResponseZodSchema: z.ZodUnion<readonly [
3485
3485
  export declare const SlugRequestZodSchema: z.ZodObject<{
3486
3486
  slug: z.ZodString;
3487
3487
  }, z.core.$strict>;
3488
- export declare const SetDashboardConfigRequestZodSchema: z.ZodObject<{
3489
- slug: z.ZodString;
3490
- config: z.ZodObject<{
3491
- version: z.ZodNumber;
3492
- groups: z.ZodArray<z.ZodObject<{
3493
- id: z.ZodString;
3494
- label: z.ZodString;
3495
- order: z.ZodNumber;
3496
- }, z.core.$strict>>;
3497
- widgets: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
3498
- label: z.ZodOptional<z.ZodString>;
3499
- variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
3500
- size: z.ZodOptional<z.ZodEnum<{
3501
- small: "small";
3502
- medium: "medium";
3503
- large: "large";
3504
- wide: "wide";
3505
- full: "full";
3506
- }>>;
3507
- width: z.ZodOptional<z.ZodNumber>;
3508
- height: z.ZodOptional<z.ZodNumber>;
3509
- min_width: z.ZodOptional<z.ZodNumber>;
3510
- max_width: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3511
- id: z.ZodString;
3512
- group_id: z.ZodString;
3513
- order: z.ZodNumber;
3514
- target: z.ZodLiteral<"empty">;
3515
- }, z.core.$strict>, z.ZodObject<{
3516
- label: z.ZodOptional<z.ZodString>;
3517
- variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
3518
- size: z.ZodOptional<z.ZodEnum<{
3519
- small: "small";
3520
- medium: "medium";
3521
- large: "large";
3522
- wide: "wide";
3523
- full: "full";
3524
- }>>;
3525
- width: z.ZodOptional<z.ZodNumber>;
3526
- height: z.ZodOptional<z.ZodNumber>;
3527
- min_width: z.ZodOptional<z.ZodNumber>;
3528
- max_width: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3529
- id: z.ZodString;
3530
- group_id: z.ZodString;
3531
- order: z.ZodNumber;
3532
- target: z.ZodLiteral<"table">;
3533
- table: z.ZodOptional<z.ZodObject<{
3534
- columns: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
3535
- field: z.ZodString;
3536
- label: z.ZodOptional<z.ZodString>;
3537
- format: z.ZodOptional<z.ZodEnum<{
3538
- number: "number";
3539
- compact_number: "compact_number";
3540
- currency: "currency";
3541
- percent: "percent";
3542
- percent_delta: "percent_delta";
3543
- number_delta: "number_delta";
3544
- currency_delta: "currency_delta";
3545
- }>>;
3546
- }, z.core.$strict>]>>>;
3547
- pagination: z.ZodOptional<z.ZodBoolean>;
3548
- page_size: z.ZodOptional<z.ZodNumber>;
3549
- }, z.core.$strict>>;
3550
- query: z.ZodObject<{
3551
- resource: z.ZodString;
3552
- select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
3553
- field: z.ZodString;
3554
- as: z.ZodOptional<z.ZodString>;
3555
- grain: z.ZodOptional<z.ZodEnum<{
3556
- day: "day";
3557
- week: "week";
3558
- month: "month";
3559
- year: "year";
3560
- }>>;
3561
- }, z.core.$strict>, z.ZodObject<{
3562
- agg: z.ZodEnum<{
3563
- sum: "sum";
3564
- count: "count";
3565
- count_distinct: "count_distinct";
3566
- avg: "avg";
3567
- min: "min";
3568
- max: "max";
3569
- median: "median";
3570
- }>;
3571
- field: z.ZodOptional<z.ZodString>;
3572
- as: z.ZodString;
3573
- filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
3574
- }, z.core.$strict>, z.ZodObject<{
3575
- calc: z.ZodString;
3576
- as: z.ZodString;
3577
- }, z.core.$strict>]>>>;
3578
- filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
3579
- group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
3580
- field: z.ZodString;
3581
- as: z.ZodOptional<z.ZodString>;
3582
- grain: z.ZodOptional<z.ZodEnum<{
3583
- day: "day";
3584
- week: "week";
3585
- month: "month";
3586
- year: "year";
3587
- }>>;
3588
- timezone: z.ZodOptional<z.ZodString>;
3589
- }, z.core.$strict>]>>>;
3590
- order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
3591
- field: z.ZodString;
3592
- direction: z.ZodOptional<z.ZodEnum<{
3593
- asc: "asc";
3594
- desc: "desc";
3595
- }>>;
3596
- }, z.core.$strict>>>;
3597
- limit: z.ZodOptional<z.ZodNumber>;
3598
- offset: z.ZodOptional<z.ZodNumber>;
3599
- time_series: z.ZodOptional<z.ZodObject<{
3600
- field: z.ZodString;
3601
- grain: z.ZodEnum<{
3602
- day: "day";
3603
- week: "week";
3604
- month: "month";
3605
- year: "year";
3606
- }>;
3607
- timezone: z.ZodOptional<z.ZodString>;
3608
- }, z.core.$strict>>;
3609
- period: z.ZodOptional<z.ZodObject<{
3610
- field: z.ZodString;
3611
- gte: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
3612
- lt: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
3613
- }, z.core.$strict>>;
3614
- bucket: z.ZodOptional<z.ZodObject<{
3615
- field: z.ZodString;
3616
- buckets: z.ZodArray<z.ZodObject<{
3617
- label: z.ZodString;
3618
- min: z.ZodOptional<z.ZodNumber>;
3619
- max: z.ZodOptional<z.ZodNumber>;
3620
- }, z.core.$strict>>;
3621
- }, z.core.$strict>>;
3622
- calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
3623
- calc: z.ZodString;
3624
- as: z.ZodString;
3625
- }, z.core.$strict>>>;
3626
- formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
3627
- }, z.core.$strict>;
3628
- }, z.core.$strict>, z.ZodObject<{
3629
- label: z.ZodOptional<z.ZodString>;
3630
- variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
3631
- size: z.ZodOptional<z.ZodEnum<{
3632
- small: "small";
3633
- medium: "medium";
3634
- large: "large";
3635
- wide: "wide";
3636
- full: "full";
3637
- }>>;
3638
- width: z.ZodOptional<z.ZodNumber>;
3639
- height: z.ZodOptional<z.ZodNumber>;
3640
- min_width: z.ZodOptional<z.ZodNumber>;
3641
- max_width: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3642
- id: z.ZodString;
3643
- group_id: z.ZodString;
3644
- order: z.ZodNumber;
3645
- target: z.ZodLiteral<"chart">;
3646
- chart: z.ZodDiscriminatedUnion<[z.ZodObject<{
3647
- title: z.ZodOptional<z.ZodString>;
3648
- type: z.ZodLiteral<"line">;
3649
- x: z.ZodObject<{
3650
- field: z.ZodString;
3651
- label: z.ZodOptional<z.ZodString>;
3652
- format: z.ZodOptional<z.ZodEnum<{
3653
- number: "number";
3654
- compact_number: "compact_number";
3655
- currency: "currency";
3656
- percent: "percent";
3657
- percent_delta: "percent_delta";
3658
- number_delta: "number_delta";
3659
- currency_delta: "currency_delta";
3660
- }>>;
3661
- }, z.core.$strict>;
3662
- y: z.ZodArray<z.ZodObject<{
3663
- field: z.ZodString;
3664
- label: z.ZodOptional<z.ZodString>;
3665
- format: z.ZodOptional<z.ZodEnum<{
3666
- number: "number";
3667
- compact_number: "compact_number";
3668
- currency: "currency";
3669
- percent: "percent";
3670
- percent_delta: "percent_delta";
3671
- number_delta: "number_delta";
3672
- currency_delta: "currency_delta";
3673
- }>>;
3674
- }, z.core.$strict>>;
3675
- series: z.ZodOptional<z.ZodObject<{
3676
- field: z.ZodString;
3677
- label: z.ZodOptional<z.ZodString>;
3678
- }, z.core.$strict>>;
3679
- color: z.ZodOptional<z.ZodString>;
3680
- colors: z.ZodOptional<z.ZodArray<z.ZodString>>;
3681
- }, z.core.$strict>, z.ZodObject<{
3682
- title: z.ZodOptional<z.ZodString>;
3683
- type: z.ZodLiteral<"bar">;
3684
- x: z.ZodObject<{
3685
- field: z.ZodString;
3686
- label: z.ZodOptional<z.ZodString>;
3687
- format: z.ZodOptional<z.ZodEnum<{
3688
- number: "number";
3689
- compact_number: "compact_number";
3690
- currency: "currency";
3691
- percent: "percent";
3692
- percent_delta: "percent_delta";
3693
- number_delta: "number_delta";
3694
- currency_delta: "currency_delta";
3695
- }>>;
3696
- }, z.core.$strict>;
3697
- y: z.ZodObject<{
3698
- field: z.ZodString;
3699
- label: z.ZodOptional<z.ZodString>;
3700
- format: z.ZodOptional<z.ZodEnum<{
3701
- number: "number";
3702
- compact_number: "compact_number";
3703
- currency: "currency";
3704
- percent: "percent";
3705
- percent_delta: "percent_delta";
3706
- number_delta: "number_delta";
3707
- currency_delta: "currency_delta";
3708
- }>>;
3709
- }, z.core.$strict>;
3710
- color: z.ZodOptional<z.ZodString>;
3711
- }, z.core.$strict>, z.ZodObject<{
3712
- title: z.ZodOptional<z.ZodString>;
3713
- type: z.ZodLiteral<"stacked_bar">;
3714
- x: z.ZodObject<{
3715
- field: z.ZodString;
3716
- label: z.ZodOptional<z.ZodString>;
3717
- format: z.ZodOptional<z.ZodEnum<{
3718
- number: "number";
3719
- compact_number: "compact_number";
3720
- currency: "currency";
3721
- percent: "percent";
3722
- percent_delta: "percent_delta";
3723
- number_delta: "number_delta";
3724
- currency_delta: "currency_delta";
3725
- }>>;
3726
- }, z.core.$strict>;
3727
- y: z.ZodUnion<readonly [z.ZodObject<{
3728
- field: z.ZodString;
3729
- label: z.ZodOptional<z.ZodString>;
3730
- format: z.ZodOptional<z.ZodEnum<{
3731
- number: "number";
3732
- compact_number: "compact_number";
3733
- currency: "currency";
3734
- percent: "percent";
3735
- percent_delta: "percent_delta";
3736
- number_delta: "number_delta";
3737
- currency_delta: "currency_delta";
3738
- }>>;
3739
- }, z.core.$strict>, z.ZodArray<z.ZodObject<{
3740
- field: z.ZodString;
3741
- label: z.ZodOptional<z.ZodString>;
3742
- format: z.ZodOptional<z.ZodEnum<{
3743
- number: "number";
3744
- compact_number: "compact_number";
3745
- currency: "currency";
3746
- percent: "percent";
3747
- percent_delta: "percent_delta";
3748
- number_delta: "number_delta";
3749
- currency_delta: "currency_delta";
3750
- }>>;
3751
- }, z.core.$strict>>]>;
3752
- series: z.ZodOptional<z.ZodObject<{
3753
- field: z.ZodString;
3754
- label: z.ZodOptional<z.ZodString>;
3755
- }, z.core.$strict>>;
3756
- colors: z.ZodOptional<z.ZodArray<z.ZodString>>;
3757
- }, z.core.$strict>, z.ZodObject<{
3758
- title: z.ZodOptional<z.ZodString>;
3759
- type: z.ZodLiteral<"pie">;
3760
- label: z.ZodObject<{
3761
- field: z.ZodString;
3762
- label: z.ZodOptional<z.ZodString>;
3763
- format: z.ZodOptional<z.ZodEnum<{
3764
- number: "number";
3765
- compact_number: "compact_number";
3766
- currency: "currency";
3767
- percent: "percent";
3768
- percent_delta: "percent_delta";
3769
- number_delta: "number_delta";
3770
- currency_delta: "currency_delta";
3771
- }>>;
3772
- }, z.core.$strict>;
3773
- value: z.ZodObject<{
3774
- field: z.ZodString;
3775
- label: z.ZodOptional<z.ZodString>;
3776
- format: z.ZodOptional<z.ZodEnum<{
3777
- number: "number";
3778
- compact_number: "compact_number";
3779
- currency: "currency";
3780
- percent: "percent";
3781
- percent_delta: "percent_delta";
3782
- number_delta: "number_delta";
3783
- currency_delta: "currency_delta";
3784
- }>>;
3785
- }, z.core.$strict>;
3786
- colors: z.ZodOptional<z.ZodArray<z.ZodString>>;
3787
- }, z.core.$strict>, z.ZodObject<{
3788
- title: z.ZodOptional<z.ZodString>;
3789
- type: z.ZodLiteral<"histogram">;
3790
- x: z.ZodObject<{
3791
- field: z.ZodString;
3792
- label: z.ZodOptional<z.ZodString>;
3793
- format: z.ZodOptional<z.ZodEnum<{
3794
- number: "number";
3795
- compact_number: "compact_number";
3796
- currency: "currency";
3797
- percent: "percent";
3798
- percent_delta: "percent_delta";
3799
- number_delta: "number_delta";
3800
- currency_delta: "currency_delta";
3801
- }>>;
3802
- }, z.core.$strict>;
3803
- y: z.ZodObject<{
3804
- field: z.ZodString;
3805
- label: z.ZodOptional<z.ZodString>;
3806
- format: z.ZodOptional<z.ZodEnum<{
3807
- number: "number";
3808
- compact_number: "compact_number";
3809
- currency: "currency";
3810
- percent: "percent";
3811
- percent_delta: "percent_delta";
3812
- number_delta: "number_delta";
3813
- currency_delta: "currency_delta";
3814
- }>>;
3815
- }, z.core.$strict>;
3816
- buckets: z.ZodOptional<z.ZodArray<z.ZodObject<{
3817
- label: z.ZodString;
3818
- min: z.ZodOptional<z.ZodNumber>;
3819
- max: z.ZodOptional<z.ZodNumber>;
3820
- }, z.core.$strict>>>;
3821
- color: z.ZodOptional<z.ZodString>;
3822
- }, z.core.$strict>, z.ZodObject<{
3823
- title: z.ZodOptional<z.ZodString>;
3824
- type: z.ZodLiteral<"funnel">;
3825
- label: z.ZodOptional<z.ZodObject<{
3826
- field: z.ZodString;
3827
- label: z.ZodOptional<z.ZodString>;
3828
- format: z.ZodOptional<z.ZodEnum<{
3829
- number: "number";
3830
- compact_number: "compact_number";
3831
- currency: "currency";
3832
- percent: "percent";
3833
- percent_delta: "percent_delta";
3834
- number_delta: "number_delta";
3835
- currency_delta: "currency_delta";
3836
- }>>;
3837
- }, z.core.$strict>>;
3838
- value: z.ZodOptional<z.ZodObject<{
3839
- field: z.ZodString;
3840
- label: z.ZodOptional<z.ZodString>;
3841
- format: z.ZodOptional<z.ZodEnum<{
3842
- number: "number";
3843
- compact_number: "compact_number";
3844
- currency: "currency";
3845
- percent: "percent";
3846
- percent_delta: "percent_delta";
3847
- number_delta: "number_delta";
3848
- currency_delta: "currency_delta";
3849
- }>>;
3850
- }, z.core.$strict>>;
3851
- colors: z.ZodOptional<z.ZodArray<z.ZodString>>;
3852
- }, z.core.$strict>], "type">;
3853
- query: z.ZodUnion<readonly [z.ZodObject<{
3854
- resource: z.ZodString;
3855
- select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
3856
- field: z.ZodString;
3857
- as: z.ZodOptional<z.ZodString>;
3858
- grain: z.ZodOptional<z.ZodEnum<{
3859
- day: "day";
3860
- week: "week";
3861
- month: "month";
3862
- year: "year";
3863
- }>>;
3864
- }, z.core.$strict>, z.ZodObject<{
3865
- agg: z.ZodEnum<{
3866
- sum: "sum";
3867
- count: "count";
3868
- count_distinct: "count_distinct";
3869
- avg: "avg";
3870
- min: "min";
3871
- max: "max";
3872
- median: "median";
3873
- }>;
3874
- field: z.ZodOptional<z.ZodString>;
3875
- as: z.ZodString;
3876
- filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
3877
- }, z.core.$strict>, z.ZodObject<{
3878
- calc: z.ZodString;
3879
- as: z.ZodString;
3880
- }, z.core.$strict>]>>>;
3881
- filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
3882
- group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
3883
- field: z.ZodString;
3884
- as: z.ZodOptional<z.ZodString>;
3885
- grain: z.ZodOptional<z.ZodEnum<{
3886
- day: "day";
3887
- week: "week";
3888
- month: "month";
3889
- year: "year";
3890
- }>>;
3891
- timezone: z.ZodOptional<z.ZodString>;
3892
- }, z.core.$strict>]>>>;
3893
- order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
3894
- field: z.ZodString;
3895
- direction: z.ZodOptional<z.ZodEnum<{
3896
- asc: "asc";
3897
- desc: "desc";
3898
- }>>;
3899
- }, z.core.$strict>>>;
3900
- limit: z.ZodOptional<z.ZodNumber>;
3901
- offset: z.ZodOptional<z.ZodNumber>;
3902
- time_series: z.ZodOptional<z.ZodObject<{
3903
- field: z.ZodString;
3904
- grain: z.ZodEnum<{
3905
- day: "day";
3906
- week: "week";
3907
- month: "month";
3908
- year: "year";
3909
- }>;
3910
- timezone: z.ZodOptional<z.ZodString>;
3911
- }, z.core.$strict>>;
3912
- period: z.ZodOptional<z.ZodObject<{
3913
- field: z.ZodString;
3914
- gte: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
3915
- lt: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
3916
- }, z.core.$strict>>;
3917
- bucket: z.ZodOptional<z.ZodObject<{
3918
- field: z.ZodString;
3919
- buckets: z.ZodArray<z.ZodObject<{
3920
- label: z.ZodString;
3921
- min: z.ZodOptional<z.ZodNumber>;
3922
- max: z.ZodOptional<z.ZodNumber>;
3923
- }, z.core.$strict>>;
3924
- }, z.core.$strict>>;
3925
- calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
3926
- calc: z.ZodString;
3927
- as: z.ZodString;
3928
- }, z.core.$strict>>>;
3929
- formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
3930
- }, z.core.$strict>, z.ZodObject<{
3931
- steps: z.ZodArray<z.ZodObject<{
3932
- name: z.ZodString;
3933
- resource: z.ZodString;
3934
- metric: z.ZodObject<{
3935
- agg: z.ZodEnum<{
3936
- sum: "sum";
3937
- count: "count";
3938
- count_distinct: "count_distinct";
3939
- avg: "avg";
3940
- min: "min";
3941
- max: "max";
3942
- median: "median";
3943
- }>;
3944
- field: z.ZodOptional<z.ZodString>;
3945
- as: z.ZodString;
3946
- filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
3947
- }, z.core.$strict>;
3948
- filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
3949
- }, z.core.$strict>>;
3950
- calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
3951
- calc: z.ZodString;
3952
- as: z.ZodString;
3953
- }, z.core.$strict>>>;
3954
- }, z.core.$strict>]>;
3955
- }, z.core.$strict>, z.ZodObject<{
3956
- label: z.ZodOptional<z.ZodString>;
3957
- variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
3958
- size: z.ZodOptional<z.ZodEnum<{
3959
- small: "small";
3960
- medium: "medium";
3961
- large: "large";
3962
- wide: "wide";
3963
- full: "full";
3964
- }>>;
3965
- width: z.ZodOptional<z.ZodNumber>;
3966
- height: z.ZodOptional<z.ZodNumber>;
3967
- min_width: z.ZodOptional<z.ZodNumber>;
3968
- max_width: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3969
- id: z.ZodString;
3970
- group_id: z.ZodString;
3971
- order: z.ZodNumber;
3972
- target: z.ZodLiteral<"kpi_card">;
3973
- card: z.ZodObject<{
3974
- title: z.ZodOptional<z.ZodString>;
3975
- value: z.ZodObject<{
3976
- field: z.ZodString;
3977
- format: z.ZodOptional<z.ZodEnum<{
3978
- number: "number";
3979
- compact_number: "compact_number";
3980
- currency: "currency";
3981
- percent: "percent";
3982
- percent_delta: "percent_delta";
3983
- number_delta: "number_delta";
3984
- currency_delta: "currency_delta";
3985
- }>>;
3986
- prefix: z.ZodOptional<z.ZodString>;
3987
- suffix: z.ZodOptional<z.ZodString>;
3988
- }, z.core.$strict>;
3989
- subtitle: z.ZodOptional<z.ZodObject<{
3990
- text: z.ZodOptional<z.ZodString>;
3991
- field: z.ZodOptional<z.ZodString>;
3992
- }, z.core.$strict>>;
3993
- comparison: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
3994
- sparkline: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
3995
- }, z.core.$strict>;
3996
- query: z.ZodObject<{
3997
- resource: z.ZodString;
3998
- select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
3999
- field: z.ZodString;
4000
- as: z.ZodOptional<z.ZodString>;
4001
- grain: z.ZodOptional<z.ZodEnum<{
4002
- day: "day";
4003
- week: "week";
4004
- month: "month";
4005
- year: "year";
4006
- }>>;
4007
- }, z.core.$strict>, z.ZodObject<{
4008
- agg: z.ZodEnum<{
4009
- sum: "sum";
4010
- count: "count";
4011
- count_distinct: "count_distinct";
4012
- avg: "avg";
4013
- min: "min";
4014
- max: "max";
4015
- median: "median";
4016
- }>;
4017
- field: z.ZodOptional<z.ZodString>;
4018
- as: z.ZodString;
4019
- filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
4020
- }, z.core.$strict>, z.ZodObject<{
4021
- calc: z.ZodString;
4022
- as: z.ZodString;
4023
- }, z.core.$strict>]>>>;
4024
- filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
4025
- group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
4026
- field: z.ZodString;
4027
- as: z.ZodOptional<z.ZodString>;
4028
- grain: z.ZodOptional<z.ZodEnum<{
4029
- day: "day";
4030
- week: "week";
4031
- month: "month";
4032
- year: "year";
4033
- }>>;
4034
- timezone: z.ZodOptional<z.ZodString>;
4035
- }, z.core.$strict>]>>>;
4036
- order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
4037
- field: z.ZodString;
4038
- direction: z.ZodOptional<z.ZodEnum<{
4039
- asc: "asc";
4040
- desc: "desc";
4041
- }>>;
4042
- }, z.core.$strict>>>;
4043
- limit: z.ZodOptional<z.ZodNumber>;
4044
- offset: z.ZodOptional<z.ZodNumber>;
4045
- time_series: z.ZodOptional<z.ZodObject<{
4046
- field: z.ZodString;
4047
- grain: z.ZodEnum<{
4048
- day: "day";
4049
- week: "week";
4050
- month: "month";
4051
- year: "year";
4052
- }>;
4053
- timezone: z.ZodOptional<z.ZodString>;
4054
- }, z.core.$strict>>;
4055
- period: z.ZodOptional<z.ZodObject<{
4056
- field: z.ZodString;
4057
- gte: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
4058
- lt: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
4059
- }, z.core.$strict>>;
4060
- bucket: z.ZodOptional<z.ZodObject<{
4061
- field: z.ZodString;
4062
- buckets: z.ZodArray<z.ZodObject<{
4063
- label: z.ZodString;
4064
- min: z.ZodOptional<z.ZodNumber>;
4065
- max: z.ZodOptional<z.ZodNumber>;
4066
- }, z.core.$strict>>;
4067
- }, z.core.$strict>>;
4068
- calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
4069
- calc: z.ZodString;
4070
- as: z.ZodString;
4071
- }, z.core.$strict>>>;
4072
- formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
4073
- }, z.core.$strict>;
4074
- }, z.core.$strict>, z.ZodObject<{
4075
- label: z.ZodOptional<z.ZodString>;
4076
- variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
4077
- size: z.ZodOptional<z.ZodEnum<{
4078
- small: "small";
4079
- medium: "medium";
4080
- large: "large";
4081
- wide: "wide";
4082
- full: "full";
4083
- }>>;
4084
- width: z.ZodOptional<z.ZodNumber>;
4085
- height: z.ZodOptional<z.ZodNumber>;
4086
- min_width: z.ZodOptional<z.ZodNumber>;
4087
- max_width: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4088
- id: z.ZodString;
4089
- group_id: z.ZodString;
4090
- order: z.ZodNumber;
4091
- target: z.ZodLiteral<"gauge_card">;
4092
- card: z.ZodObject<{
4093
- title: z.ZodOptional<z.ZodString>;
4094
- value: z.ZodObject<{
4095
- field: z.ZodString;
4096
- format: z.ZodOptional<z.ZodEnum<{
4097
- number: "number";
4098
- compact_number: "compact_number";
4099
- currency: "currency";
4100
- percent: "percent";
4101
- percent_delta: "percent_delta";
4102
- number_delta: "number_delta";
4103
- currency_delta: "currency_delta";
4104
- }>>;
4105
- prefix: z.ZodOptional<z.ZodString>;
4106
- suffix: z.ZodOptional<z.ZodString>;
4107
- }, z.core.$strict>;
4108
- target: z.ZodOptional<z.ZodObject<{
4109
- value: z.ZodOptional<z.ZodNumber>;
4110
- field: z.ZodOptional<z.ZodString>;
4111
- label: z.ZodOptional<z.ZodString>;
4112
- }, z.core.$strict>>;
4113
- progress: z.ZodOptional<z.ZodObject<{
4114
- value_field: z.ZodString;
4115
- target_value: z.ZodOptional<z.ZodNumber>;
4116
- target_field: z.ZodOptional<z.ZodString>;
4117
- format: z.ZodOptional<z.ZodEnum<{
4118
- number: "number";
4119
- compact_number: "compact_number";
4120
- currency: "currency";
4121
- percent: "percent";
4122
- percent_delta: "percent_delta";
4123
- number_delta: "number_delta";
4124
- currency_delta: "currency_delta";
4125
- }>>;
4126
- }, z.core.$strict>>;
4127
- color: z.ZodOptional<z.ZodString>;
4128
- }, z.core.$strict>;
4129
- query: z.ZodObject<{
4130
- resource: z.ZodString;
4131
- select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
4132
- field: z.ZodString;
4133
- as: z.ZodOptional<z.ZodString>;
4134
- grain: z.ZodOptional<z.ZodEnum<{
4135
- day: "day";
4136
- week: "week";
4137
- month: "month";
4138
- year: "year";
4139
- }>>;
4140
- }, z.core.$strict>, z.ZodObject<{
4141
- agg: z.ZodEnum<{
4142
- sum: "sum";
4143
- count: "count";
4144
- count_distinct: "count_distinct";
4145
- avg: "avg";
4146
- min: "min";
4147
- max: "max";
4148
- median: "median";
4149
- }>;
4150
- field: z.ZodOptional<z.ZodString>;
4151
- as: z.ZodString;
4152
- filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
4153
- }, z.core.$strict>, z.ZodObject<{
4154
- calc: z.ZodString;
4155
- as: z.ZodString;
4156
- }, z.core.$strict>]>>>;
4157
- filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
4158
- group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
4159
- field: z.ZodString;
4160
- as: z.ZodOptional<z.ZodString>;
4161
- grain: z.ZodOptional<z.ZodEnum<{
4162
- day: "day";
4163
- week: "week";
4164
- month: "month";
4165
- year: "year";
4166
- }>>;
4167
- timezone: z.ZodOptional<z.ZodString>;
4168
- }, z.core.$strict>]>>>;
4169
- order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
4170
- field: z.ZodString;
4171
- direction: z.ZodOptional<z.ZodEnum<{
4172
- asc: "asc";
4173
- desc: "desc";
4174
- }>>;
4175
- }, z.core.$strict>>>;
4176
- limit: z.ZodOptional<z.ZodNumber>;
4177
- offset: z.ZodOptional<z.ZodNumber>;
4178
- time_series: z.ZodOptional<z.ZodObject<{
4179
- field: z.ZodString;
4180
- grain: z.ZodEnum<{
4181
- day: "day";
4182
- week: "week";
4183
- month: "month";
4184
- year: "year";
4185
- }>;
4186
- timezone: z.ZodOptional<z.ZodString>;
4187
- }, z.core.$strict>>;
4188
- period: z.ZodOptional<z.ZodObject<{
4189
- field: z.ZodString;
4190
- gte: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
4191
- lt: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
4192
- }, z.core.$strict>>;
4193
- bucket: z.ZodOptional<z.ZodObject<{
4194
- field: z.ZodString;
4195
- buckets: z.ZodArray<z.ZodObject<{
4196
- label: z.ZodString;
4197
- min: z.ZodOptional<z.ZodNumber>;
4198
- max: z.ZodOptional<z.ZodNumber>;
4199
- }, z.core.$strict>>;
4200
- }, z.core.$strict>>;
4201
- calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
4202
- calc: z.ZodString;
4203
- as: z.ZodString;
4204
- }, z.core.$strict>>>;
4205
- formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
4206
- }, z.core.$strict>;
4207
- }, z.core.$strict>, z.ZodObject<{
4208
- label: z.ZodOptional<z.ZodString>;
4209
- variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
4210
- size: z.ZodOptional<z.ZodEnum<{
4211
- small: "small";
4212
- medium: "medium";
4213
- large: "large";
4214
- wide: "wide";
4215
- full: "full";
4216
- }>>;
4217
- width: z.ZodOptional<z.ZodNumber>;
4218
- height: z.ZodOptional<z.ZodNumber>;
4219
- min_width: z.ZodOptional<z.ZodNumber>;
4220
- max_width: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4221
- id: z.ZodString;
4222
- group_id: z.ZodString;
4223
- order: z.ZodNumber;
4224
- target: z.ZodLiteral<"pivot_table">;
4225
- pivot: z.ZodObject<{
4226
- rows: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
4227
- field: z.ZodString;
4228
- label: z.ZodOptional<z.ZodString>;
4229
- format: z.ZodOptional<z.ZodEnum<{
4230
- number: "number";
4231
- compact_number: "compact_number";
4232
- currency: "currency";
4233
- percent: "percent";
4234
- percent_delta: "percent_delta";
4235
- number_delta: "number_delta";
4236
- currency_delta: "currency_delta";
4237
- }>>;
4238
- }, z.core.$strict>]>>;
4239
- columns: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
4240
- field: z.ZodString;
4241
- label: z.ZodOptional<z.ZodString>;
4242
- format: z.ZodOptional<z.ZodEnum<{
4243
- number: "number";
4244
- compact_number: "compact_number";
4245
- currency: "currency";
4246
- percent: "percent";
4247
- percent_delta: "percent_delta";
4248
- number_delta: "number_delta";
4249
- currency_delta: "currency_delta";
4250
- }>>;
4251
- }, z.core.$strict>]>>>;
4252
- values: z.ZodArray<z.ZodObject<{
4253
- field: z.ZodString;
4254
- label: z.ZodOptional<z.ZodString>;
4255
- format: z.ZodOptional<z.ZodEnum<{
4256
- number: "number";
4257
- compact_number: "compact_number";
4258
- currency: "currency";
4259
- percent: "percent";
4260
- percent_delta: "percent_delta";
4261
- number_delta: "number_delta";
4262
- currency_delta: "currency_delta";
4263
- }>>;
4264
- aggregation: z.ZodOptional<z.ZodEnum<{
4265
- sum: "sum";
4266
- count: "count";
4267
- avg: "avg";
4268
- min: "min";
4269
- max: "max";
4270
- }>>;
4271
- }, z.core.$strict>>;
4272
- }, z.core.$strict>;
4273
- query: z.ZodObject<{
4274
- resource: z.ZodString;
4275
- select: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
4276
- field: z.ZodString;
4277
- as: z.ZodOptional<z.ZodString>;
4278
- grain: z.ZodOptional<z.ZodEnum<{
4279
- day: "day";
4280
- week: "week";
4281
- month: "month";
4282
- year: "year";
4283
- }>>;
4284
- }, z.core.$strict>, z.ZodObject<{
4285
- agg: z.ZodEnum<{
4286
- sum: "sum";
4287
- count: "count";
4288
- count_distinct: "count_distinct";
4289
- avg: "avg";
4290
- min: "min";
4291
- max: "max";
4292
- median: "median";
4293
- }>;
4294
- field: z.ZodOptional<z.ZodString>;
4295
- as: z.ZodString;
4296
- filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
4297
- }, z.core.$strict>, z.ZodObject<{
4298
- calc: z.ZodString;
4299
- as: z.ZodString;
4300
- }, z.core.$strict>]>>>;
4301
- filters: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
4302
- group_by: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
4303
- field: z.ZodString;
4304
- as: z.ZodOptional<z.ZodString>;
4305
- grain: z.ZodOptional<z.ZodEnum<{
4306
- day: "day";
4307
- week: "week";
4308
- month: "month";
4309
- year: "year";
4310
- }>>;
4311
- timezone: z.ZodOptional<z.ZodString>;
4312
- }, z.core.$strict>]>>>;
4313
- order_by: z.ZodOptional<z.ZodArray<z.ZodObject<{
4314
- field: z.ZodString;
4315
- direction: z.ZodOptional<z.ZodEnum<{
4316
- asc: "asc";
4317
- desc: "desc";
4318
- }>>;
4319
- }, z.core.$strict>>>;
4320
- limit: z.ZodOptional<z.ZodNumber>;
4321
- offset: z.ZodOptional<z.ZodNumber>;
4322
- time_series: z.ZodOptional<z.ZodObject<{
4323
- field: z.ZodString;
4324
- grain: z.ZodEnum<{
4325
- day: "day";
4326
- week: "week";
4327
- month: "month";
4328
- year: "year";
4329
- }>;
4330
- timezone: z.ZodOptional<z.ZodString>;
4331
- }, z.core.$strict>>;
4332
- period: z.ZodOptional<z.ZodObject<{
4333
- field: z.ZodString;
4334
- gte: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
4335
- lt: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
4336
- }, z.core.$strict>>;
4337
- bucket: z.ZodOptional<z.ZodObject<{
4338
- field: z.ZodString;
4339
- buckets: z.ZodArray<z.ZodObject<{
4340
- label: z.ZodString;
4341
- min: z.ZodOptional<z.ZodNumber>;
4342
- max: z.ZodOptional<z.ZodNumber>;
4343
- }, z.core.$strict>>;
4344
- }, z.core.$strict>>;
4345
- calcs: z.ZodOptional<z.ZodArray<z.ZodObject<{
4346
- calc: z.ZodString;
4347
- as: z.ZodString;
4348
- }, z.core.$strict>>>;
4349
- formatting: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>>;
4350
- }, z.core.$strict>;
4351
- }, z.core.$strict>], "target">>;
4352
- }, z.core.$strict>;
4353
- }, z.core.$strict>;
4354
3488
  export declare const GroupIdRequestZodSchema: z.ZodObject<{
4355
3489
  slug: z.ZodString;
4356
3490
  groupId: z.ZodString;
@@ -5241,7 +4375,6 @@ export declare const DashboardResponseSchema: z.core.ZodStandardJSONSchemaPayloa
5241
4375
  export declare const DashboardApiResponseSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
5242
4376
  export declare const DashboardWidgetDataResponseSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
5243
4377
  export declare const SlugRequestSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
5244
- export declare const SetDashboardConfigRequestSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
5245
4378
  export declare const GroupIdRequestSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
5246
4379
  export declare const MoveGroupRequestSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
5247
4380
  export declare const SetGroupConfigRequestSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;