@dragonmastery/dragoncore-shared 0.0.22 → 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"]>;
@@ -3887,10 +4649,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
3887
4649
  created_by_display_name?: string | null | undefined;
3888
4650
  display_id?: string | null | undefined;
3889
4651
  credit_value?: string | null | undefined;
3890
- display_id_prefix?: string | null | undefined;
3891
4652
  start_at?: string | null | undefined;
3892
4653
  target_at?: string | null | undefined;
3893
4654
  completed_at?: string | null | undefined;
4655
+ display_id_prefix?: string | null | undefined;
3894
4656
  locked_approval_at?: string | null | undefined;
3895
4657
  my_subscription?: {
3896
4658
  created_at: string;
@@ -3919,10 +4681,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
3919
4681
  created_by_display_name?: string | null | undefined;
3920
4682
  display_id?: string | null | undefined;
3921
4683
  credit_value?: string | null | undefined;
3922
- display_id_prefix?: string | null | undefined;
3923
4684
  start_at?: string | null | undefined;
3924
4685
  target_at?: string | null | undefined;
3925
4686
  completed_at?: string | null | undefined;
4687
+ display_id_prefix?: string | null | undefined;
3926
4688
  locked_approval_at?: string | null | undefined;
3927
4689
  my_subscription?: {
3928
4690
  created_at: string;
@@ -4009,10 +4771,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4009
4771
  created_by_display_name?: string | null | undefined;
4010
4772
  display_id?: string | null | undefined;
4011
4773
  credit_value?: string | null | undefined;
4012
- display_id_prefix?: string | null | undefined;
4013
4774
  start_at?: string | null | undefined;
4014
4775
  target_at?: string | null | undefined;
4015
4776
  completed_at?: string | null | undefined;
4777
+ display_id_prefix?: string | null | undefined;
4016
4778
  locked_approval_at?: string | null | undefined;
4017
4779
  my_subscription?: {
4018
4780
  created_at: string;
@@ -4041,10 +4803,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4041
4803
  created_by_display_name?: string | null | undefined;
4042
4804
  display_id?: string | null | undefined;
4043
4805
  credit_value?: string | null | undefined;
4044
- display_id_prefix?: string | null | undefined;
4045
4806
  start_at?: string | null | undefined;
4046
4807
  target_at?: string | null | undefined;
4047
4808
  completed_at?: string | null | undefined;
4809
+ display_id_prefix?: string | null | undefined;
4048
4810
  locked_approval_at?: string | null | undefined;
4049
4811
  my_subscription?: {
4050
4812
  created_at: string;
@@ -4097,10 +4859,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4097
4859
  created_by_display_name?: string | null | undefined;
4098
4860
  display_id?: string | null | undefined;
4099
4861
  credit_value?: string | null | undefined;
4100
- display_id_prefix?: string | null | undefined;
4101
4862
  start_at?: string | null | undefined;
4102
4863
  target_at?: string | null | undefined;
4103
4864
  completed_at?: string | null | undefined;
4865
+ display_id_prefix?: string | null | undefined;
4104
4866
  locked_approval_at?: string | null | undefined;
4105
4867
  my_subscription?: {
4106
4868
  created_at: string;
@@ -4139,10 +4901,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4139
4901
  created_by_display_name?: string | null | undefined;
4140
4902
  display_id?: string | null | undefined;
4141
4903
  credit_value?: string | null | undefined;
4142
- display_id_prefix?: string | null | undefined;
4143
4904
  start_at?: string | null | undefined;
4144
4905
  target_at?: string | null | undefined;
4145
4906
  completed_at?: string | null | undefined;
4907
+ display_id_prefix?: string | null | undefined;
4146
4908
  locked_approval_at?: string | null | undefined;
4147
4909
  my_subscription?: {
4148
4910
  created_at: string;
@@ -5194,10 +5956,10 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5194
5956
  display_id?: string | null | undefined;
5195
5957
  credit_value?: string | null | undefined;
5196
5958
  delivered_value?: string | null | undefined;
5197
- display_id_prefix?: string | null | undefined;
5198
5959
  start_at?: string | null | undefined;
5199
5960
  target_at?: string | null | undefined;
5200
5961
  completed_at?: string | null | undefined;
5962
+ display_id_prefix?: string | null | undefined;
5201
5963
  locked_approval_at?: string | null | undefined;
5202
5964
  assigned_to?: string | null | undefined;
5203
5965
  assigned_to_display_name?: string | null | undefined;
@@ -5223,10 +5985,10 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5223
5985
  display_id?: string | null | undefined;
5224
5986
  credit_value?: string | null | undefined;
5225
5987
  delivered_value?: string | null | undefined;
5226
- display_id_prefix?: string | null | undefined;
5227
5988
  start_at?: string | null | undefined;
5228
5989
  target_at?: string | null | undefined;
5229
5990
  completed_at?: string | null | undefined;
5991
+ display_id_prefix?: string | null | undefined;
5230
5992
  locked_approval_at?: string | null | undefined;
5231
5993
  assigned_to?: string | null | undefined;
5232
5994
  assigned_to_display_name?: string | null | undefined;
@@ -5287,10 +6049,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5287
6049
  display_id?: string | null | undefined;
5288
6050
  credit_value?: string | null | undefined;
5289
6051
  delivered_value?: string | null | undefined;
5290
- display_id_prefix?: string | null | undefined;
5291
6052
  start_at?: string | null | undefined;
5292
6053
  target_at?: string | null | undefined;
5293
6054
  completed_at?: string | null | undefined;
6055
+ display_id_prefix?: string | null | undefined;
5294
6056
  locked_approval_at?: string | null | undefined;
5295
6057
  assigned_to?: string | null | undefined;
5296
6058
  assigned_to_display_name?: string | null | undefined;
@@ -5316,10 +6078,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5316
6078
  display_id?: string | null | undefined;
5317
6079
  credit_value?: string | null | undefined;
5318
6080
  delivered_value?: string | null | undefined;
5319
- display_id_prefix?: string | null | undefined;
5320
6081
  start_at?: string | null | undefined;
5321
6082
  target_at?: string | null | undefined;
5322
6083
  completed_at?: string | null | undefined;
6084
+ display_id_prefix?: string | null | undefined;
5323
6085
  locked_approval_at?: string | null | undefined;
5324
6086
  assigned_to?: string | null | undefined;
5325
6087
  assigned_to_display_name?: string | null | undefined;
@@ -5369,10 +6131,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5369
6131
  display_id?: string | null | undefined;
5370
6132
  credit_value?: string | null | undefined;
5371
6133
  delivered_value?: string | null | undefined;
5372
- display_id_prefix?: string | null | undefined;
5373
6134
  start_at?: string | null | undefined;
5374
6135
  target_at?: string | null | undefined;
5375
6136
  completed_at?: string | null | undefined;
6137
+ display_id_prefix?: string | null | undefined;
5376
6138
  locked_approval_at?: string | null | undefined;
5377
6139
  assigned_to?: string | null | undefined;
5378
6140
  assigned_to_display_name?: string | null | undefined;
@@ -5408,10 +6170,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5408
6170
  display_id?: string | null | undefined;
5409
6171
  credit_value?: string | null | undefined;
5410
6172
  delivered_value?: string | null | undefined;
5411
- display_id_prefix?: string | null | undefined;
5412
6173
  start_at?: string | null | undefined;
5413
6174
  target_at?: string | null | undefined;
5414
6175
  completed_at?: string | null | undefined;
6176
+ display_id_prefix?: string | null | undefined;
5415
6177
  locked_approval_at?: string | null | undefined;
5416
6178
  assigned_to?: string | null | undefined;
5417
6179
  assigned_to_display_name?: 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