@dragonmastery/dragoncore-shared 0.0.21 → 0.0.23

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.
package/dist/index.d.mts CHANGED
@@ -3577,6 +3577,768 @@ declare const signupSchema: z.ZodObject<{
3577
3577
  /** Parsed/validated signup input - acceptances is always present after parse (defaults to {}). */
3578
3578
  type SignupInputDto = z.output<typeof signupSchema>;
3579
3579
  //#endregion
3580
+ //#region src/validation/signup_initiate_zod.d.ts
3581
+ /** Input for signupInitiate - email and password only (no acceptances). */
3582
+ declare const signupInitiateSchema: z.ZodObject<{
3583
+ email: z.ZodString;
3584
+ passwords: z.ZodEffects<z.ZodObject<{
3585
+ password: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
3586
+ password_confirm: z.ZodString;
3587
+ }, "strip", z.ZodTypeAny, {
3588
+ password: string;
3589
+ password_confirm: string;
3590
+ }, {
3591
+ password: string;
3592
+ password_confirm: string;
3593
+ }>, {
3594
+ password: string;
3595
+ password_confirm: string;
3596
+ }, {
3597
+ password: string;
3598
+ password_confirm: string;
3599
+ }>;
3600
+ }, "strip", z.ZodTypeAny, {
3601
+ email: string;
3602
+ passwords: {
3603
+ password: string;
3604
+ password_confirm: string;
3605
+ };
3606
+ }, {
3607
+ email: string;
3608
+ passwords: {
3609
+ password: string;
3610
+ password_confirm: string;
3611
+ };
3612
+ }>;
3613
+ type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
3614
+ /** Response when consents are required - token + consents to display. */
3615
+ declare const signupInitiateConsentRequiredSchema: z.ZodObject<{
3616
+ created: z.ZodLiteral<false>;
3617
+ signup_consent_token: z.ZodString;
3618
+ consents: z.ZodArray<z.ZodObject<{
3619
+ type: z.ZodString;
3620
+ required: z.ZodBoolean;
3621
+ url: z.ZodString;
3622
+ label: z.ZodString;
3623
+ version: z.ZodString;
3624
+ effective_at: z.ZodString;
3625
+ content: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3626
+ }, "strip", z.ZodTypeAny, {
3627
+ type: string;
3628
+ required: boolean;
3629
+ url: string;
3630
+ label: string;
3631
+ version: string;
3632
+ effective_at: string;
3633
+ content?: string | null | undefined;
3634
+ }, {
3635
+ type: string;
3636
+ required: boolean;
3637
+ url: string;
3638
+ label: string;
3639
+ version: string;
3640
+ effective_at: string;
3641
+ content?: string | null | undefined;
3642
+ }>, "many">;
3643
+ }, "strip", z.ZodTypeAny, {
3644
+ created: false;
3645
+ signup_consent_token: string;
3646
+ consents: {
3647
+ type: string;
3648
+ required: boolean;
3649
+ url: string;
3650
+ label: string;
3651
+ version: string;
3652
+ effective_at: string;
3653
+ content?: string | null | undefined;
3654
+ }[];
3655
+ }, {
3656
+ created: false;
3657
+ signup_consent_token: string;
3658
+ consents: {
3659
+ type: string;
3660
+ required: boolean;
3661
+ url: string;
3662
+ label: string;
3663
+ version: string;
3664
+ effective_at: string;
3665
+ content?: string | null | undefined;
3666
+ }[];
3667
+ }>;
3668
+ /** Response when account is created immediately (no consents). */
3669
+ declare const signupInitiateCreatedSchema: z.ZodObject<{
3670
+ created: z.ZodLiteral<true>;
3671
+ session: z.ZodObject<{
3672
+ frontend_session: z.ZodObject<{
3673
+ created_at: z.ZodString;
3674
+ expires_at: z.ZodString;
3675
+ status: z.ZodString;
3676
+ user_agent: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3677
+ ip_address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3678
+ user: z.ZodObject<{
3679
+ userId: z.ZodString;
3680
+ email: z.ZodString;
3681
+ username: z.ZodString;
3682
+ email_verified: z.ZodBoolean;
3683
+ user_type: z.ZodString;
3684
+ first_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3685
+ last_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3686
+ avatar_url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3687
+ consents_complete: z.ZodOptional<z.ZodBoolean>;
3688
+ subscriptions: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
3689
+ subscription_id: z.ZodString;
3690
+ subscription_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3691
+ subscription_created: z.ZodString;
3692
+ subscription_current_period_start: z.ZodString;
3693
+ subscription_current_period_end: z.ZodString;
3694
+ subscription_cancel_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3695
+ subscription_canceled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3696
+ product_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3697
+ price_amount: z.ZodNullable<z.ZodNumber>;
3698
+ price_currency: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3699
+ }, "strip", z.ZodTypeAny, {
3700
+ subscription_id: string;
3701
+ subscription_created: string;
3702
+ subscription_current_period_start: string;
3703
+ subscription_current_period_end: string;
3704
+ price_amount: number | null;
3705
+ subscription_status?: string | null | undefined;
3706
+ subscription_cancel_at?: string | null | undefined;
3707
+ subscription_canceled_at?: string | null | undefined;
3708
+ product_name?: string | null | undefined;
3709
+ price_currency?: string | null | undefined;
3710
+ }, {
3711
+ subscription_id: string;
3712
+ subscription_created: string;
3713
+ subscription_current_period_start: string;
3714
+ subscription_current_period_end: string;
3715
+ price_amount: number | null;
3716
+ subscription_status?: string | null | undefined;
3717
+ subscription_cancel_at?: string | null | undefined;
3718
+ subscription_canceled_at?: string | null | undefined;
3719
+ product_name?: string | null | undefined;
3720
+ price_currency?: string | null | undefined;
3721
+ }>, "many">>>;
3722
+ }, "strip", z.ZodTypeAny, {
3723
+ userId: string;
3724
+ email: string;
3725
+ username: string;
3726
+ email_verified: boolean;
3727
+ user_type: string;
3728
+ first_name?: string | null | undefined;
3729
+ last_name?: string | null | undefined;
3730
+ avatar_url?: string | null | undefined;
3731
+ consents_complete?: boolean | undefined;
3732
+ subscriptions?: {
3733
+ subscription_id: string;
3734
+ subscription_created: string;
3735
+ subscription_current_period_start: string;
3736
+ subscription_current_period_end: string;
3737
+ price_amount: number | null;
3738
+ subscription_status?: string | null | undefined;
3739
+ subscription_cancel_at?: string | null | undefined;
3740
+ subscription_canceled_at?: string | null | undefined;
3741
+ product_name?: string | null | undefined;
3742
+ price_currency?: string | null | undefined;
3743
+ }[] | null | undefined;
3744
+ }, {
3745
+ userId: string;
3746
+ email: string;
3747
+ username: string;
3748
+ email_verified: boolean;
3749
+ user_type: string;
3750
+ first_name?: string | null | undefined;
3751
+ last_name?: string | null | undefined;
3752
+ avatar_url?: string | null | undefined;
3753
+ consents_complete?: boolean | undefined;
3754
+ subscriptions?: {
3755
+ subscription_id: string;
3756
+ subscription_created: string;
3757
+ subscription_current_period_start: string;
3758
+ subscription_current_period_end: string;
3759
+ price_amount: number | null;
3760
+ subscription_status?: string | null | undefined;
3761
+ subscription_cancel_at?: string | null | undefined;
3762
+ subscription_canceled_at?: string | null | undefined;
3763
+ product_name?: string | null | undefined;
3764
+ price_currency?: string | null | undefined;
3765
+ }[] | null | undefined;
3766
+ }>;
3767
+ }, "strip", z.ZodTypeAny, {
3768
+ user: {
3769
+ userId: string;
3770
+ email: string;
3771
+ username: string;
3772
+ email_verified: boolean;
3773
+ user_type: string;
3774
+ first_name?: string | null | undefined;
3775
+ last_name?: string | null | undefined;
3776
+ avatar_url?: string | null | undefined;
3777
+ consents_complete?: boolean | undefined;
3778
+ subscriptions?: {
3779
+ subscription_id: string;
3780
+ subscription_created: string;
3781
+ subscription_current_period_start: string;
3782
+ subscription_current_period_end: string;
3783
+ price_amount: number | null;
3784
+ subscription_status?: string | null | undefined;
3785
+ subscription_cancel_at?: string | null | undefined;
3786
+ subscription_canceled_at?: string | null | undefined;
3787
+ product_name?: string | null | undefined;
3788
+ price_currency?: string | null | undefined;
3789
+ }[] | null | undefined;
3790
+ };
3791
+ created_at: string;
3792
+ expires_at: string;
3793
+ status: string;
3794
+ user_agent?: string | null | undefined;
3795
+ ip_address?: string | null | undefined;
3796
+ }, {
3797
+ user: {
3798
+ userId: string;
3799
+ email: string;
3800
+ username: string;
3801
+ email_verified: boolean;
3802
+ user_type: string;
3803
+ first_name?: string | null | undefined;
3804
+ last_name?: string | null | undefined;
3805
+ avatar_url?: string | null | undefined;
3806
+ consents_complete?: boolean | undefined;
3807
+ subscriptions?: {
3808
+ subscription_id: string;
3809
+ subscription_created: string;
3810
+ subscription_current_period_start: string;
3811
+ subscription_current_period_end: string;
3812
+ price_amount: number | null;
3813
+ subscription_status?: string | null | undefined;
3814
+ subscription_cancel_at?: string | null | undefined;
3815
+ subscription_canceled_at?: string | null | undefined;
3816
+ product_name?: string | null | undefined;
3817
+ price_currency?: string | null | undefined;
3818
+ }[] | null | undefined;
3819
+ };
3820
+ created_at: string;
3821
+ expires_at: string;
3822
+ status: string;
3823
+ user_agent?: string | null | undefined;
3824
+ ip_address?: string | null | undefined;
3825
+ }>;
3826
+ access_token: z.ZodString;
3827
+ refresh_token: z.ZodString;
3828
+ user_details_token: z.ZodString;
3829
+ }, "strip", z.ZodTypeAny, {
3830
+ refresh_token: string;
3831
+ frontend_session: {
3832
+ user: {
3833
+ userId: string;
3834
+ email: string;
3835
+ username: string;
3836
+ email_verified: boolean;
3837
+ user_type: string;
3838
+ first_name?: string | null | undefined;
3839
+ last_name?: string | null | undefined;
3840
+ avatar_url?: string | null | undefined;
3841
+ consents_complete?: boolean | undefined;
3842
+ subscriptions?: {
3843
+ subscription_id: string;
3844
+ subscription_created: string;
3845
+ subscription_current_period_start: string;
3846
+ subscription_current_period_end: string;
3847
+ price_amount: number | null;
3848
+ subscription_status?: string | null | undefined;
3849
+ subscription_cancel_at?: string | null | undefined;
3850
+ subscription_canceled_at?: string | null | undefined;
3851
+ product_name?: string | null | undefined;
3852
+ price_currency?: string | null | undefined;
3853
+ }[] | null | undefined;
3854
+ };
3855
+ created_at: string;
3856
+ expires_at: string;
3857
+ status: string;
3858
+ user_agent?: string | null | undefined;
3859
+ ip_address?: string | null | undefined;
3860
+ };
3861
+ access_token: string;
3862
+ user_details_token: string;
3863
+ }, {
3864
+ refresh_token: string;
3865
+ frontend_session: {
3866
+ user: {
3867
+ userId: string;
3868
+ email: string;
3869
+ username: string;
3870
+ email_verified: boolean;
3871
+ user_type: string;
3872
+ first_name?: string | null | undefined;
3873
+ last_name?: string | null | undefined;
3874
+ avatar_url?: string | null | undefined;
3875
+ consents_complete?: boolean | undefined;
3876
+ subscriptions?: {
3877
+ subscription_id: string;
3878
+ subscription_created: string;
3879
+ subscription_current_period_start: string;
3880
+ subscription_current_period_end: string;
3881
+ price_amount: number | null;
3882
+ subscription_status?: string | null | undefined;
3883
+ subscription_cancel_at?: string | null | undefined;
3884
+ subscription_canceled_at?: string | null | undefined;
3885
+ product_name?: string | null | undefined;
3886
+ price_currency?: string | null | undefined;
3887
+ }[] | null | undefined;
3888
+ };
3889
+ created_at: string;
3890
+ expires_at: string;
3891
+ status: string;
3892
+ user_agent?: string | null | undefined;
3893
+ ip_address?: string | null | undefined;
3894
+ };
3895
+ access_token: string;
3896
+ user_details_token: string;
3897
+ }>;
3898
+ }, "strip", z.ZodTypeAny, {
3899
+ created: true;
3900
+ session: {
3901
+ refresh_token: string;
3902
+ frontend_session: {
3903
+ user: {
3904
+ userId: string;
3905
+ email: string;
3906
+ username: string;
3907
+ email_verified: boolean;
3908
+ user_type: string;
3909
+ first_name?: string | null | undefined;
3910
+ last_name?: string | null | undefined;
3911
+ avatar_url?: string | null | undefined;
3912
+ consents_complete?: boolean | undefined;
3913
+ subscriptions?: {
3914
+ subscription_id: string;
3915
+ subscription_created: string;
3916
+ subscription_current_period_start: string;
3917
+ subscription_current_period_end: string;
3918
+ price_amount: number | null;
3919
+ subscription_status?: string | null | undefined;
3920
+ subscription_cancel_at?: string | null | undefined;
3921
+ subscription_canceled_at?: string | null | undefined;
3922
+ product_name?: string | null | undefined;
3923
+ price_currency?: string | null | undefined;
3924
+ }[] | null | undefined;
3925
+ };
3926
+ created_at: string;
3927
+ expires_at: string;
3928
+ status: string;
3929
+ user_agent?: string | null | undefined;
3930
+ ip_address?: string | null | undefined;
3931
+ };
3932
+ access_token: string;
3933
+ user_details_token: string;
3934
+ };
3935
+ }, {
3936
+ created: true;
3937
+ session: {
3938
+ refresh_token: string;
3939
+ frontend_session: {
3940
+ user: {
3941
+ userId: string;
3942
+ email: string;
3943
+ username: string;
3944
+ email_verified: boolean;
3945
+ user_type: string;
3946
+ first_name?: string | null | undefined;
3947
+ last_name?: string | null | undefined;
3948
+ avatar_url?: string | null | undefined;
3949
+ consents_complete?: boolean | undefined;
3950
+ subscriptions?: {
3951
+ subscription_id: string;
3952
+ subscription_created: string;
3953
+ subscription_current_period_start: string;
3954
+ subscription_current_period_end: string;
3955
+ price_amount: number | null;
3956
+ subscription_status?: string | null | undefined;
3957
+ subscription_cancel_at?: string | null | undefined;
3958
+ subscription_canceled_at?: string | null | undefined;
3959
+ product_name?: string | null | undefined;
3960
+ price_currency?: string | null | undefined;
3961
+ }[] | null | undefined;
3962
+ };
3963
+ created_at: string;
3964
+ expires_at: string;
3965
+ status: string;
3966
+ user_agent?: string | null | undefined;
3967
+ ip_address?: string | null | undefined;
3968
+ };
3969
+ access_token: string;
3970
+ user_details_token: string;
3971
+ };
3972
+ }>;
3973
+ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [z.ZodObject<{
3974
+ created: z.ZodLiteral<false>;
3975
+ signup_consent_token: z.ZodString;
3976
+ consents: z.ZodArray<z.ZodObject<{
3977
+ type: z.ZodString;
3978
+ required: z.ZodBoolean;
3979
+ url: z.ZodString;
3980
+ label: z.ZodString;
3981
+ version: z.ZodString;
3982
+ effective_at: z.ZodString;
3983
+ content: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3984
+ }, "strip", z.ZodTypeAny, {
3985
+ type: string;
3986
+ required: boolean;
3987
+ url: string;
3988
+ label: string;
3989
+ version: string;
3990
+ effective_at: string;
3991
+ content?: string | null | undefined;
3992
+ }, {
3993
+ type: string;
3994
+ required: boolean;
3995
+ url: string;
3996
+ label: string;
3997
+ version: string;
3998
+ effective_at: string;
3999
+ content?: string | null | undefined;
4000
+ }>, "many">;
4001
+ }, "strip", z.ZodTypeAny, {
4002
+ created: false;
4003
+ signup_consent_token: string;
4004
+ consents: {
4005
+ type: string;
4006
+ required: boolean;
4007
+ url: string;
4008
+ label: string;
4009
+ version: string;
4010
+ effective_at: string;
4011
+ content?: string | null | undefined;
4012
+ }[];
4013
+ }, {
4014
+ created: false;
4015
+ signup_consent_token: string;
4016
+ consents: {
4017
+ type: string;
4018
+ required: boolean;
4019
+ url: string;
4020
+ label: string;
4021
+ version: string;
4022
+ effective_at: string;
4023
+ content?: string | null | undefined;
4024
+ }[];
4025
+ }>, z.ZodObject<{
4026
+ created: z.ZodLiteral<true>;
4027
+ session: z.ZodObject<{
4028
+ frontend_session: z.ZodObject<{
4029
+ created_at: z.ZodString;
4030
+ expires_at: z.ZodString;
4031
+ status: z.ZodString;
4032
+ user_agent: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4033
+ ip_address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4034
+ user: z.ZodObject<{
4035
+ userId: z.ZodString;
4036
+ email: z.ZodString;
4037
+ username: z.ZodString;
4038
+ email_verified: z.ZodBoolean;
4039
+ user_type: z.ZodString;
4040
+ first_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4041
+ last_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4042
+ avatar_url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4043
+ consents_complete: z.ZodOptional<z.ZodBoolean>;
4044
+ subscriptions: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
4045
+ subscription_id: z.ZodString;
4046
+ subscription_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4047
+ subscription_created: z.ZodString;
4048
+ subscription_current_period_start: z.ZodString;
4049
+ subscription_current_period_end: z.ZodString;
4050
+ subscription_cancel_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4051
+ subscription_canceled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4052
+ product_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4053
+ price_amount: z.ZodNullable<z.ZodNumber>;
4054
+ price_currency: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4055
+ }, "strip", z.ZodTypeAny, {
4056
+ subscription_id: string;
4057
+ subscription_created: string;
4058
+ subscription_current_period_start: string;
4059
+ subscription_current_period_end: string;
4060
+ price_amount: number | null;
4061
+ subscription_status?: string | null | undefined;
4062
+ subscription_cancel_at?: string | null | undefined;
4063
+ subscription_canceled_at?: string | null | undefined;
4064
+ product_name?: string | null | undefined;
4065
+ price_currency?: string | null | undefined;
4066
+ }, {
4067
+ subscription_id: string;
4068
+ subscription_created: string;
4069
+ subscription_current_period_start: string;
4070
+ subscription_current_period_end: string;
4071
+ price_amount: number | null;
4072
+ subscription_status?: string | null | undefined;
4073
+ subscription_cancel_at?: string | null | undefined;
4074
+ subscription_canceled_at?: string | null | undefined;
4075
+ product_name?: string | null | undefined;
4076
+ price_currency?: string | null | undefined;
4077
+ }>, "many">>>;
4078
+ }, "strip", z.ZodTypeAny, {
4079
+ userId: string;
4080
+ email: string;
4081
+ username: string;
4082
+ email_verified: boolean;
4083
+ user_type: string;
4084
+ first_name?: string | null | undefined;
4085
+ last_name?: string | null | undefined;
4086
+ avatar_url?: string | null | undefined;
4087
+ consents_complete?: boolean | undefined;
4088
+ subscriptions?: {
4089
+ subscription_id: string;
4090
+ subscription_created: string;
4091
+ subscription_current_period_start: string;
4092
+ subscription_current_period_end: string;
4093
+ price_amount: number | null;
4094
+ subscription_status?: string | null | undefined;
4095
+ subscription_cancel_at?: string | null | undefined;
4096
+ subscription_canceled_at?: string | null | undefined;
4097
+ product_name?: string | null | undefined;
4098
+ price_currency?: string | null | undefined;
4099
+ }[] | null | undefined;
4100
+ }, {
4101
+ userId: string;
4102
+ email: string;
4103
+ username: string;
4104
+ email_verified: boolean;
4105
+ user_type: string;
4106
+ first_name?: string | null | undefined;
4107
+ last_name?: string | null | undefined;
4108
+ avatar_url?: string | null | undefined;
4109
+ consents_complete?: boolean | undefined;
4110
+ subscriptions?: {
4111
+ subscription_id: string;
4112
+ subscription_created: string;
4113
+ subscription_current_period_start: string;
4114
+ subscription_current_period_end: string;
4115
+ price_amount: number | null;
4116
+ subscription_status?: string | null | undefined;
4117
+ subscription_cancel_at?: string | null | undefined;
4118
+ subscription_canceled_at?: string | null | undefined;
4119
+ product_name?: string | null | undefined;
4120
+ price_currency?: string | null | undefined;
4121
+ }[] | null | undefined;
4122
+ }>;
4123
+ }, "strip", z.ZodTypeAny, {
4124
+ user: {
4125
+ userId: string;
4126
+ email: string;
4127
+ username: string;
4128
+ email_verified: boolean;
4129
+ user_type: string;
4130
+ first_name?: string | null | undefined;
4131
+ last_name?: string | null | undefined;
4132
+ avatar_url?: string | null | undefined;
4133
+ consents_complete?: boolean | undefined;
4134
+ subscriptions?: {
4135
+ subscription_id: string;
4136
+ subscription_created: string;
4137
+ subscription_current_period_start: string;
4138
+ subscription_current_period_end: string;
4139
+ price_amount: number | null;
4140
+ subscription_status?: string | null | undefined;
4141
+ subscription_cancel_at?: string | null | undefined;
4142
+ subscription_canceled_at?: string | null | undefined;
4143
+ product_name?: string | null | undefined;
4144
+ price_currency?: string | null | undefined;
4145
+ }[] | null | undefined;
4146
+ };
4147
+ created_at: string;
4148
+ expires_at: string;
4149
+ status: string;
4150
+ user_agent?: string | null | undefined;
4151
+ ip_address?: string | null | undefined;
4152
+ }, {
4153
+ user: {
4154
+ userId: string;
4155
+ email: string;
4156
+ username: string;
4157
+ email_verified: boolean;
4158
+ user_type: string;
4159
+ first_name?: string | null | undefined;
4160
+ last_name?: string | null | undefined;
4161
+ avatar_url?: string | null | undefined;
4162
+ consents_complete?: boolean | undefined;
4163
+ subscriptions?: {
4164
+ subscription_id: string;
4165
+ subscription_created: string;
4166
+ subscription_current_period_start: string;
4167
+ subscription_current_period_end: string;
4168
+ price_amount: number | null;
4169
+ subscription_status?: string | null | undefined;
4170
+ subscription_cancel_at?: string | null | undefined;
4171
+ subscription_canceled_at?: string | null | undefined;
4172
+ product_name?: string | null | undefined;
4173
+ price_currency?: string | null | undefined;
4174
+ }[] | null | undefined;
4175
+ };
4176
+ created_at: string;
4177
+ expires_at: string;
4178
+ status: string;
4179
+ user_agent?: string | null | undefined;
4180
+ ip_address?: string | null | undefined;
4181
+ }>;
4182
+ access_token: z.ZodString;
4183
+ refresh_token: z.ZodString;
4184
+ user_details_token: z.ZodString;
4185
+ }, "strip", z.ZodTypeAny, {
4186
+ refresh_token: string;
4187
+ frontend_session: {
4188
+ user: {
4189
+ userId: string;
4190
+ email: string;
4191
+ username: string;
4192
+ email_verified: boolean;
4193
+ user_type: string;
4194
+ first_name?: string | null | undefined;
4195
+ last_name?: string | null | undefined;
4196
+ avatar_url?: string | null | undefined;
4197
+ consents_complete?: boolean | undefined;
4198
+ subscriptions?: {
4199
+ subscription_id: string;
4200
+ subscription_created: string;
4201
+ subscription_current_period_start: string;
4202
+ subscription_current_period_end: string;
4203
+ price_amount: number | null;
4204
+ subscription_status?: string | null | undefined;
4205
+ subscription_cancel_at?: string | null | undefined;
4206
+ subscription_canceled_at?: string | null | undefined;
4207
+ product_name?: string | null | undefined;
4208
+ price_currency?: string | null | undefined;
4209
+ }[] | null | undefined;
4210
+ };
4211
+ created_at: string;
4212
+ expires_at: string;
4213
+ status: string;
4214
+ user_agent?: string | null | undefined;
4215
+ ip_address?: string | null | undefined;
4216
+ };
4217
+ access_token: string;
4218
+ user_details_token: string;
4219
+ }, {
4220
+ refresh_token: string;
4221
+ frontend_session: {
4222
+ user: {
4223
+ userId: string;
4224
+ email: string;
4225
+ username: string;
4226
+ email_verified: boolean;
4227
+ user_type: string;
4228
+ first_name?: string | null | undefined;
4229
+ last_name?: string | null | undefined;
4230
+ avatar_url?: string | null | undefined;
4231
+ consents_complete?: boolean | undefined;
4232
+ subscriptions?: {
4233
+ subscription_id: string;
4234
+ subscription_created: string;
4235
+ subscription_current_period_start: string;
4236
+ subscription_current_period_end: string;
4237
+ price_amount: number | null;
4238
+ subscription_status?: string | null | undefined;
4239
+ subscription_cancel_at?: string | null | undefined;
4240
+ subscription_canceled_at?: string | null | undefined;
4241
+ product_name?: string | null | undefined;
4242
+ price_currency?: string | null | undefined;
4243
+ }[] | null | undefined;
4244
+ };
4245
+ created_at: string;
4246
+ expires_at: string;
4247
+ status: string;
4248
+ user_agent?: string | null | undefined;
4249
+ ip_address?: string | null | undefined;
4250
+ };
4251
+ access_token: string;
4252
+ user_details_token: string;
4253
+ }>;
4254
+ }, "strip", z.ZodTypeAny, {
4255
+ created: true;
4256
+ session: {
4257
+ refresh_token: string;
4258
+ frontend_session: {
4259
+ user: {
4260
+ userId: string;
4261
+ email: string;
4262
+ username: string;
4263
+ email_verified: boolean;
4264
+ user_type: string;
4265
+ first_name?: string | null | undefined;
4266
+ last_name?: string | null | undefined;
4267
+ avatar_url?: string | null | undefined;
4268
+ consents_complete?: boolean | undefined;
4269
+ subscriptions?: {
4270
+ subscription_id: string;
4271
+ subscription_created: string;
4272
+ subscription_current_period_start: string;
4273
+ subscription_current_period_end: string;
4274
+ price_amount: number | null;
4275
+ subscription_status?: string | null | undefined;
4276
+ subscription_cancel_at?: string | null | undefined;
4277
+ subscription_canceled_at?: string | null | undefined;
4278
+ product_name?: string | null | undefined;
4279
+ price_currency?: string | null | undefined;
4280
+ }[] | null | undefined;
4281
+ };
4282
+ created_at: string;
4283
+ expires_at: string;
4284
+ status: string;
4285
+ user_agent?: string | null | undefined;
4286
+ ip_address?: string | null | undefined;
4287
+ };
4288
+ access_token: string;
4289
+ user_details_token: string;
4290
+ };
4291
+ }, {
4292
+ created: true;
4293
+ session: {
4294
+ refresh_token: string;
4295
+ frontend_session: {
4296
+ user: {
4297
+ userId: string;
4298
+ email: string;
4299
+ username: string;
4300
+ email_verified: boolean;
4301
+ user_type: string;
4302
+ first_name?: string | null | undefined;
4303
+ last_name?: string | null | undefined;
4304
+ avatar_url?: string | null | undefined;
4305
+ consents_complete?: boolean | undefined;
4306
+ subscriptions?: {
4307
+ subscription_id: string;
4308
+ subscription_created: string;
4309
+ subscription_current_period_start: string;
4310
+ subscription_current_period_end: string;
4311
+ price_amount: number | null;
4312
+ subscription_status?: string | null | undefined;
4313
+ subscription_cancel_at?: string | null | undefined;
4314
+ subscription_canceled_at?: string | null | undefined;
4315
+ product_name?: string | null | undefined;
4316
+ price_currency?: string | null | undefined;
4317
+ }[] | null | undefined;
4318
+ };
4319
+ created_at: string;
4320
+ expires_at: string;
4321
+ status: string;
4322
+ user_agent?: string | null | undefined;
4323
+ ip_address?: string | null | undefined;
4324
+ };
4325
+ access_token: string;
4326
+ user_details_token: string;
4327
+ };
4328
+ }>]>;
4329
+ type SignupInitiateResponseDto = z.infer<typeof signupInitiateResponseSchema>;
4330
+ //#endregion
4331
+ //#region src/validation/signup_complete_zod.d.ts
4332
+ /** Input for signupComplete - acceptances only. Token is in Authorization: Bearer header. */
4333
+ declare const signupCompleteSchema: z.ZodObject<{
4334
+ acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
4335
+ }, "strip", z.ZodTypeAny, {
4336
+ acceptances: Record<string, boolean>;
4337
+ }, {
4338
+ acceptances?: Record<string, boolean> | undefined;
4339
+ }>;
4340
+ type SignupCompleteInputDto = z.infer<typeof signupCompleteSchema>;
4341
+ //#endregion
3580
4342
  //#region src/validation/record_subscriber/record_subscriber_create_zod.d.ts
3581
4343
  declare const RecordSubscriberCreateSchema: z.ZodObject<{
3582
4344
  record_type: z.ZodEnum<["app_setting", "attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff", "user_consent"]>;
@@ -7359,13 +8121,13 @@ declare const TeamFiltersSchema: z.ZodObject<{
7359
8121
  values?: any[] | undefined;
7360
8122
  caseSensitive?: boolean | undefined;
7361
8123
  } | undefined;
7362
- display_name?: {
8124
+ unique_name?: {
7363
8125
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
7364
8126
  value?: string | undefined;
7365
8127
  values?: string[] | undefined;
7366
8128
  caseSensitive?: boolean | undefined;
7367
8129
  } | undefined;
7368
- unique_name?: {
8130
+ display_name?: {
7369
8131
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
7370
8132
  value?: string | undefined;
7371
8133
  values?: string[] | undefined;
@@ -7459,13 +8221,13 @@ declare const TeamFiltersSchema: z.ZodObject<{
7459
8221
  values?: any[] | undefined;
7460
8222
  caseSensitive?: boolean | undefined;
7461
8223
  } | undefined;
7462
- display_name?: {
8224
+ unique_name?: {
7463
8225
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
7464
8226
  value?: string | undefined;
7465
8227
  values?: string[] | undefined;
7466
8228
  caseSensitive?: boolean | undefined;
7467
8229
  } | undefined;
7468
- unique_name?: {
8230
+ display_name?: {
7469
8231
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
7470
8232
  value?: string | undefined;
7471
8233
  values?: string[] | undefined;
@@ -8928,6 +9690,12 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
8928
9690
  values?: number[] | undefined;
8929
9691
  caseSensitive?: boolean | undefined;
8930
9692
  } | undefined;
9693
+ display_name?: {
9694
+ operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
9695
+ value?: string | undefined;
9696
+ values?: string[] | undefined;
9697
+ caseSensitive?: boolean | undefined;
9698
+ } | undefined;
8931
9699
  team_id?: {
8932
9700
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
8933
9701
  value?: string | undefined;
@@ -8952,12 +9720,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
8952
9720
  values?: ("owner" | "manager" | "member" | "client")[] | undefined;
8953
9721
  caseSensitive?: boolean | undefined;
8954
9722
  } | undefined;
8955
- display_name?: {
8956
- operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
8957
- value?: string | undefined;
8958
- values?: string[] | undefined;
8959
- caseSensitive?: boolean | undefined;
8960
- } | undefined;
8961
9723
  business_phone?: {
8962
9724
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
8963
9725
  value?: string | undefined;
@@ -9058,6 +9820,12 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
9058
9820
  values?: number[] | undefined;
9059
9821
  caseSensitive?: boolean | undefined;
9060
9822
  } | undefined;
9823
+ display_name?: {
9824
+ operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
9825
+ value?: string | undefined;
9826
+ values?: string[] | undefined;
9827
+ caseSensitive?: boolean | undefined;
9828
+ } | undefined;
9061
9829
  team_id?: {
9062
9830
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
9063
9831
  value?: string | undefined;
@@ -9082,12 +9850,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
9082
9850
  values?: ("owner" | "manager" | "member" | "client")[] | undefined;
9083
9851
  caseSensitive?: boolean | undefined;
9084
9852
  } | undefined;
9085
- display_name?: {
9086
- operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
9087
- value?: string | undefined;
9088
- values?: string[] | undefined;
9089
- caseSensitive?: boolean | undefined;
9090
- } | undefined;
9091
9853
  business_phone?: {
9092
9854
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
9093
9855
  value?: string | undefined;
@@ -9134,9 +9896,9 @@ declare const TeamMemberCreateSchema: z.ZodObject<{
9134
9896
  time_zone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9135
9897
  }, "strip", z.ZodTypeAny, {
9136
9898
  user_id: string;
9899
+ display_name: string;
9137
9900
  team_id: string;
9138
9901
  role: "owner" | "manager" | "member" | "client";
9139
- display_name: string;
9140
9902
  email_address: string;
9141
9903
  business_phone?: string | null | undefined;
9142
9904
  mobile_phone?: string | null | undefined;
@@ -9144,9 +9906,9 @@ declare const TeamMemberCreateSchema: z.ZodObject<{
9144
9906
  time_zone?: string | null | undefined;
9145
9907
  }, {
9146
9908
  user_id: string;
9909
+ display_name: string;
9147
9910
  team_id: string;
9148
9911
  role: "owner" | "manager" | "member" | "client";
9149
- display_name: string;
9150
9912
  email_address: string;
9151
9913
  business_phone?: string | null | undefined;
9152
9914
  mobile_phone?: string | null | undefined;
@@ -9169,9 +9931,9 @@ declare const TeamMemberUpdateSchema: z.ZodObject<{
9169
9931
  }, "strip", z.ZodTypeAny, {
9170
9932
  id: string;
9171
9933
  user_id: string;
9934
+ display_name: string;
9172
9935
  team_id: string;
9173
9936
  role: "owner" | "manager" | "member" | "client";
9174
- display_name: string;
9175
9937
  email_address: string;
9176
9938
  business_phone?: string | null | undefined;
9177
9939
  mobile_phone?: string | null | undefined;
@@ -9180,9 +9942,9 @@ declare const TeamMemberUpdateSchema: z.ZodObject<{
9180
9942
  }, {
9181
9943
  id: string;
9182
9944
  user_id: string;
9945
+ display_name: string;
9183
9946
  team_id: string;
9184
9947
  role: "owner" | "manager" | "member" | "client";
9185
- display_name: string;
9186
9948
  email_address: string;
9187
9949
  business_phone?: string | null | undefined;
9188
9950
  mobile_phone?: string | null | undefined;
@@ -9229,9 +9991,9 @@ declare const TeamMemberReadSchema: z.ZodObject<{
9229
9991
  original_id?: number | null | undefined;
9230
9992
  created_by_display_name?: string | null | undefined;
9231
9993
  updated_by_display_name?: string | null | undefined;
9994
+ display_name?: string | null | undefined;
9232
9995
  original_team_id?: string | null | undefined;
9233
9996
  original_user_id?: string | null | undefined;
9234
- display_name?: string | null | undefined;
9235
9997
  business_phone?: string | null | undefined;
9236
9998
  mobile_phone?: string | null | undefined;
9237
9999
  website_address?: string | null | undefined;
@@ -9251,9 +10013,9 @@ declare const TeamMemberReadSchema: z.ZodObject<{
9251
10013
  original_id?: number | null | undefined;
9252
10014
  created_by_display_name?: string | null | undefined;
9253
10015
  updated_by_display_name?: string | null | undefined;
10016
+ display_name?: string | null | undefined;
9254
10017
  original_team_id?: string | null | undefined;
9255
10018
  original_user_id?: string | null | undefined;
9256
- display_name?: string | null | undefined;
9257
10019
  business_phone?: string | null | undefined;
9258
10020
  mobile_phone?: string | null | undefined;
9259
10021
  website_address?: string | null | undefined;
@@ -9303,9 +10065,9 @@ declare const TeamMemberOptionSchema: z.ZodObject<{
9303
10065
  original_id?: number | null | undefined;
9304
10066
  created_by_display_name?: string | null | undefined;
9305
10067
  updated_by_display_name?: string | null | undefined;
10068
+ display_name?: string | null | undefined;
9306
10069
  original_team_id?: string | null | undefined;
9307
10070
  original_user_id?: string | null | undefined;
9308
- display_name?: string | null | undefined;
9309
10071
  business_phone?: string | null | undefined;
9310
10072
  mobile_phone?: string | null | undefined;
9311
10073
  website_address?: string | null | undefined;
@@ -9325,9 +10087,9 @@ declare const TeamMemberOptionSchema: z.ZodObject<{
9325
10087
  original_id?: number | null | undefined;
9326
10088
  created_by_display_name?: string | null | undefined;
9327
10089
  updated_by_display_name?: string | null | undefined;
10090
+ display_name?: string | null | undefined;
9328
10091
  original_team_id?: string | null | undefined;
9329
10092
  original_user_id?: string | null | undefined;
9330
- display_name?: string | null | undefined;
9331
10093
  business_phone?: string | null | undefined;
9332
10094
  mobile_phone?: string | null | undefined;
9333
10095
  website_address?: string | null | undefined;
@@ -9375,9 +10137,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
9375
10137
  original_id?: number | null | undefined;
9376
10138
  created_by_display_name?: string | null | undefined;
9377
10139
  updated_by_display_name?: string | null | undefined;
10140
+ display_name?: string | null | undefined;
9378
10141
  original_team_id?: string | null | undefined;
9379
10142
  original_user_id?: string | null | undefined;
9380
- display_name?: string | null | undefined;
9381
10143
  business_phone?: string | null | undefined;
9382
10144
  mobile_phone?: string | null | undefined;
9383
10145
  website_address?: string | null | undefined;
@@ -9397,9 +10159,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
9397
10159
  original_id?: number | null | undefined;
9398
10160
  created_by_display_name?: string | null | undefined;
9399
10161
  updated_by_display_name?: string | null | undefined;
10162
+ display_name?: string | null | undefined;
9400
10163
  original_team_id?: string | null | undefined;
9401
10164
  original_user_id?: string | null | undefined;
9402
- display_name?: string | null | undefined;
9403
10165
  business_phone?: string | null | undefined;
9404
10166
  mobile_phone?: string | null | undefined;
9405
10167
  website_address?: string | null | undefined;
@@ -9421,9 +10183,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
9421
10183
  original_id?: number | null | undefined;
9422
10184
  created_by_display_name?: string | null | undefined;
9423
10185
  updated_by_display_name?: string | null | undefined;
10186
+ display_name?: string | null | undefined;
9424
10187
  original_team_id?: string | null | undefined;
9425
10188
  original_user_id?: string | null | undefined;
9426
- display_name?: string | null | undefined;
9427
10189
  business_phone?: string | null | undefined;
9428
10190
  mobile_phone?: string | null | undefined;
9429
10191
  website_address?: string | null | undefined;
@@ -9445,9 +10207,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
9445
10207
  original_id?: number | null | undefined;
9446
10208
  created_by_display_name?: string | null | undefined;
9447
10209
  updated_by_display_name?: string | null | undefined;
10210
+ display_name?: string | null | undefined;
9448
10211
  original_team_id?: string | null | undefined;
9449
10212
  original_user_id?: string | null | undefined;
9450
- display_name?: string | null | undefined;
9451
10213
  business_phone?: string | null | undefined;
9452
10214
  mobile_phone?: string | null | undefined;
9453
10215
  website_address?: string | null | undefined;
@@ -10104,6 +10866,19 @@ interface UserApi {
10104
10866
  * Sign up a new user
10105
10867
  */
10106
10868
  signupUser(input: SignupInputDto): Promise<CreateUserDtoOutput>;
10869
+ /**
10870
+ * Get signup consents for the current signup_consent token. Requires token in Authorization header.
10871
+ * Used when SignupConsentFlow opens in new tab (no sessionStorage). Returns empty when consent feature disabled.
10872
+ */
10873
+ getSignupConsentsForToken(): Promise<SignupRequirementsDto>;
10874
+ /**
10875
+ * Initiate signup - returns session if no consents, or token+consents if consents required
10876
+ */
10877
+ signupInitiate(input: SignupInitiateInputDto): Promise<SignupInitiateResponseDto>;
10878
+ /**
10879
+ * Complete signup after accepting consents. Requires signup_consent token in Authorization: Bearer header.
10880
+ */
10881
+ signupComplete(input: SignupCompleteInputDto): Promise<LoginResponse>;
10107
10882
  /**
10108
10883
  * Create a new user
10109
10884
  */
@@ -10348,5 +11123,5 @@ declare const formatCurrency: (value: number) => string;
10348
11123
  */
10349
11124
  declare const formatDollar: (amount: string | null | undefined) => string;
10350
11125
  //#endregion
10351
- export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, RejectSupportTicketDto, RejectSupportTicketSchema, ResendVerificationEmailResult, ResetMonthlyBalanceDto, ResetMonthlyBalanceSchema, ResetPasswordDto, ResetPasswordInputDto, RevertSupportTicketDto, RevertSupportTicketSchema, SUPPORT_TICKET_APPROVAL_FILTER_OPTIONS, SUPPORT_TICKET_DEV_LIFECYCLE_FILTER_OPTIONS, SUPPORT_TICKET_NUMBER_TO_PRIORITY, SUPPORT_TICKET_PRIORITY_FILTER_OPTIONS, SUPPORT_TICKET_PRIORITY_NUMBER_TO_LABEL, SUPPORT_TICKET_PRIORITY_TO_NUMBER, SUPPORT_TICKET_STATUS_FILTER_OPTIONS, SUPPORT_TICKET_TYPE_FILTER_OPTIONS, SavedFilterApi, SavedFilterCreateDto, SavedFilterCreateSchema, SavedFilterReadDto, SavedFilterReadSchema, SavedFilterUpdateDto, SavedFilterUpdateSchema, SelectOption, SetMonthlyAllocationDto, SetMonthlyAllocationSchema, SignupConsentConfigDto, SignupConsentConfigSchema, SignupConsentItemFormDto, SignupConsentItemFormSchema, SignupInputDto, SignupRequirementsDto, SignupRequirementsFormDto, SignupRequirementsFormSchema, SignupRequirementsSchema, SortDirectionSchema, StaffSupportTicketCreateDto, StaffSupportTicketCreateSchema, StaffSupportTicketFiltersDto, StaffSupportTicketFiltersSchema, StaffSupportTicketInputDto, StaffSupportTicketInputSchema, StaffSupportTicketPageDto, StaffSupportTicketPageSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateDto, StaffSupportTicketUpdateSchema, StringFilter, StringFilterSchema, StringOperator, StringOperatorSchema, SupportStaffApi, SupportStaffMember, SupportTicketApi, SupportTicketApproval, SupportTicketApprovalEnum, SupportTicketApprovalFilterSchema, SupportTicketApprovalSchema, SupportTicketDevLifecycle, SupportTicketDevLifecycleEnum, SupportTicketDevLifecycleFilterSchema, SupportTicketDevLifecycleSchema, SupportTicketDevLifecycleUpdate, SupportTicketDevLifecycleUpdateEnum, SupportTicketDevLifecycleUpdateSchema, SupportTicketEnrichmentData, SupportTicketEventType, SupportTicketEventTypeEnum, SupportTicketEventTypeValues, SupportTicketPriority, SupportTicketPriorityEnum, SupportTicketPriorityFilterSchema, SupportTicketPriorityNumber, SupportTicketPriorityNumberEnum, SupportTicketPriorityNumberSchema, SupportTicketPriorityNumberType, SupportTicketPrioritySchema, SupportTicketRecordDataSchema, SupportTicketStatus, SupportTicketStatusEnum, SupportTicketStatusFilterSchema, SupportTicketStatusSchema, SupportTicketSubscriberCreateDto, SupportTicketSubscriberCreateSchema, SupportTicketType, SupportTicketTypeEnum, SupportTicketTypeFilterSchema, SupportTicketTypeSchema, TeamApi, TeamCreateDto, TeamCreateSchema, TeamFiltersDto, TeamFiltersSchema, TeamInputBaseSchema, TeamMemberApi, TeamMemberCreateDto, TeamMemberCreateSchema, TeamMemberFiltersDto, TeamMemberFiltersSchema, TeamMemberOptionDto, TeamMemberOptionSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberRole, TeamMemberRoleEnum, TeamMemberRoleFilterSchema, TeamMemberRoleSchema, TeamMemberUpdateDto, TeamMemberUpdateSchema, TeamOptionDto, TeamOptionSchema, TeamPageDto, TeamPageSchema, TeamReadDto, TeamReadSchema, TeamStatus, TeamStatusSchema, TeamUpdateDto, TeamUpdateSchema, USER_TYPES, UserApi, UserProfileApi, UserProfileBaseSchema, UserProfileReadDto, UserProfileReadSchema, UserProfileUpdateDto, UserProfileUpdateSchema, UserReadDto, UserReadSchema, UserSessionApi, UserSessionReadDto, UserTeamMembersDto, UserTeamMembersSchema, UserTeamsDto, UserTeamsSchema, UserTypeEnum, UserTypeValues, UserUpdateDto, UserUpdateSchema, VerifyEmailResult, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
11126
+ export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, RejectSupportTicketDto, RejectSupportTicketSchema, ResendVerificationEmailResult, ResetMonthlyBalanceDto, ResetMonthlyBalanceSchema, ResetPasswordDto, ResetPasswordInputDto, RevertSupportTicketDto, RevertSupportTicketSchema, SUPPORT_TICKET_APPROVAL_FILTER_OPTIONS, SUPPORT_TICKET_DEV_LIFECYCLE_FILTER_OPTIONS, SUPPORT_TICKET_NUMBER_TO_PRIORITY, SUPPORT_TICKET_PRIORITY_FILTER_OPTIONS, SUPPORT_TICKET_PRIORITY_NUMBER_TO_LABEL, SUPPORT_TICKET_PRIORITY_TO_NUMBER, SUPPORT_TICKET_STATUS_FILTER_OPTIONS, SUPPORT_TICKET_TYPE_FILTER_OPTIONS, SavedFilterApi, SavedFilterCreateDto, SavedFilterCreateSchema, SavedFilterReadDto, SavedFilterReadSchema, SavedFilterUpdateDto, SavedFilterUpdateSchema, SelectOption, SetMonthlyAllocationDto, SetMonthlyAllocationSchema, SignupCompleteInputDto, SignupConsentConfigDto, SignupConsentConfigSchema, SignupConsentItemFormDto, SignupConsentItemFormSchema, SignupInitiateInputDto, SignupInitiateResponseDto, SignupInputDto, SignupRequirementsDto, SignupRequirementsFormDto, SignupRequirementsFormSchema, SignupRequirementsSchema, SortDirectionSchema, StaffSupportTicketCreateDto, StaffSupportTicketCreateSchema, StaffSupportTicketFiltersDto, StaffSupportTicketFiltersSchema, StaffSupportTicketInputDto, StaffSupportTicketInputSchema, StaffSupportTicketPageDto, StaffSupportTicketPageSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateDto, StaffSupportTicketUpdateSchema, StringFilter, StringFilterSchema, StringOperator, StringOperatorSchema, SupportStaffApi, SupportStaffMember, SupportTicketApi, SupportTicketApproval, SupportTicketApprovalEnum, SupportTicketApprovalFilterSchema, SupportTicketApprovalSchema, SupportTicketDevLifecycle, SupportTicketDevLifecycleEnum, SupportTicketDevLifecycleFilterSchema, SupportTicketDevLifecycleSchema, SupportTicketDevLifecycleUpdate, SupportTicketDevLifecycleUpdateEnum, SupportTicketDevLifecycleUpdateSchema, SupportTicketEnrichmentData, SupportTicketEventType, SupportTicketEventTypeEnum, SupportTicketEventTypeValues, SupportTicketPriority, SupportTicketPriorityEnum, SupportTicketPriorityFilterSchema, SupportTicketPriorityNumber, SupportTicketPriorityNumberEnum, SupportTicketPriorityNumberSchema, SupportTicketPriorityNumberType, SupportTicketPrioritySchema, SupportTicketRecordDataSchema, SupportTicketStatus, SupportTicketStatusEnum, SupportTicketStatusFilterSchema, SupportTicketStatusSchema, SupportTicketSubscriberCreateDto, SupportTicketSubscriberCreateSchema, SupportTicketType, SupportTicketTypeEnum, SupportTicketTypeFilterSchema, SupportTicketTypeSchema, TeamApi, TeamCreateDto, TeamCreateSchema, TeamFiltersDto, TeamFiltersSchema, TeamInputBaseSchema, TeamMemberApi, TeamMemberCreateDto, TeamMemberCreateSchema, TeamMemberFiltersDto, TeamMemberFiltersSchema, TeamMemberOptionDto, TeamMemberOptionSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberRole, TeamMemberRoleEnum, TeamMemberRoleFilterSchema, TeamMemberRoleSchema, TeamMemberUpdateDto, TeamMemberUpdateSchema, TeamOptionDto, TeamOptionSchema, TeamPageDto, TeamPageSchema, TeamReadDto, TeamReadSchema, TeamStatus, TeamStatusSchema, TeamUpdateDto, TeamUpdateSchema, USER_TYPES, UserApi, UserProfileApi, UserProfileBaseSchema, UserProfileReadDto, UserProfileReadSchema, UserProfileUpdateDto, UserProfileUpdateSchema, UserReadDto, UserReadSchema, UserSessionApi, UserSessionReadDto, UserTeamMembersDto, UserTeamMembersSchema, UserTeamsDto, UserTeamsSchema, UserTypeEnum, UserTypeValues, UserUpdateDto, UserUpdateSchema, VerifyEmailResult, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupCompleteSchema, signupInitiateConsentRequiredSchema, signupInitiateCreatedSchema, signupInitiateResponseSchema, signupInitiateSchema, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
10352
11127
  //# sourceMappingURL=index.d.mts.map