@dragonmastery/dragoncore-shared 0.0.30 → 0.0.31

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
@@ -162,12 +162,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
162
162
  metadata?: string | null | undefined;
163
163
  updated_at?: string | null | undefined;
164
164
  updated_by?: string | null | undefined;
165
+ parent_folder_id?: string | null | undefined;
166
+ file_count?: number | undefined;
165
167
  archived_at?: string | null | undefined;
166
168
  archived_by?: string | null | undefined;
167
169
  deleted_at?: string | null | undefined;
168
170
  deleted_by?: string | null | undefined;
169
- parent_folder_id?: string | null | undefined;
170
- file_count?: number | undefined;
171
171
  }, {
172
172
  created_at: string;
173
173
  created_by: string;
@@ -180,12 +180,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
180
180
  metadata?: string | null | undefined;
181
181
  updated_at?: string | null | undefined;
182
182
  updated_by?: string | null | undefined;
183
+ parent_folder_id?: string | null | undefined;
184
+ file_count?: number | undefined;
183
185
  archived_at?: string | null | undefined;
184
186
  archived_by?: string | null | undefined;
185
187
  deleted_at?: string | null | undefined;
186
188
  deleted_by?: string | null | undefined;
187
- parent_folder_id?: string | null | undefined;
188
- file_count?: number | undefined;
189
189
  }>;
190
190
  type AttachmentFolderReadDto = z.infer<typeof AttachmentFolderReadSchema>;
191
191
  //#endregion
@@ -240,22 +240,22 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
240
240
  record_id?: string | undefined;
241
241
  record_type?: string | undefined;
242
242
  metadata?: string | null | undefined;
243
+ folder_id?: string | null | undefined;
243
244
  sanitized_name?: string | undefined;
244
245
  original_name?: string | undefined;
245
246
  content_type?: string | undefined;
246
247
  file_size?: string | undefined;
247
- folder_id?: string | null | undefined;
248
248
  }, {
249
249
  id: string;
250
250
  description?: string | null | undefined;
251
251
  record_id?: string | undefined;
252
252
  record_type?: string | undefined;
253
253
  metadata?: string | null | undefined;
254
+ folder_id?: string | null | undefined;
254
255
  sanitized_name?: string | undefined;
255
256
  original_name?: string | undefined;
256
257
  content_type?: string | undefined;
257
258
  file_size?: string | undefined;
258
- folder_id?: string | null | undefined;
259
259
  }>;
260
260
  type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
261
261
  //#endregion
@@ -351,12 +351,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
351
351
  metadata?: string | null | undefined;
352
352
  updated_at?: string | null | undefined;
353
353
  updated_by?: string | null | undefined;
354
+ parent_folder_id?: string | null | undefined;
355
+ file_count?: number | undefined;
354
356
  archived_at?: string | null | undefined;
355
357
  archived_by?: string | null | undefined;
356
358
  deleted_at?: string | null | undefined;
357
359
  deleted_by?: string | null | undefined;
358
- parent_folder_id?: string | null | undefined;
359
- file_count?: number | undefined;
360
360
  }, {
361
361
  created_at: string;
362
362
  created_by: string;
@@ -369,12 +369,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
369
369
  metadata?: string | null | undefined;
370
370
  updated_at?: string | null | undefined;
371
371
  updated_by?: string | null | undefined;
372
+ parent_folder_id?: string | null | undefined;
373
+ file_count?: number | undefined;
372
374
  archived_at?: string | null | undefined;
373
375
  archived_by?: string | null | undefined;
374
376
  deleted_at?: string | null | undefined;
375
377
  deleted_by?: string | null | undefined;
376
- parent_folder_id?: string | null | undefined;
377
- file_count?: number | undefined;
378
378
  }>, "many">;
379
379
  pageInfo: z.ZodObject<{
380
380
  hasNextPage: z.ZodBoolean;
@@ -423,12 +423,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
423
423
  metadata?: string | null | undefined;
424
424
  updated_at?: string | null | undefined;
425
425
  updated_by?: string | null | undefined;
426
+ parent_folder_id?: string | null | undefined;
427
+ file_count?: number | undefined;
426
428
  archived_at?: string | null | undefined;
427
429
  archived_by?: string | null | undefined;
428
430
  deleted_at?: string | null | undefined;
429
431
  deleted_by?: string | null | undefined;
430
- parent_folder_id?: string | null | undefined;
431
- file_count?: number | undefined;
432
432
  }[];
433
433
  }, {
434
434
  pageInfo: {
@@ -467,12 +467,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
467
467
  metadata?: string | null | undefined;
468
468
  updated_at?: string | null | undefined;
469
469
  updated_by?: string | null | undefined;
470
+ parent_folder_id?: string | null | undefined;
471
+ file_count?: number | undefined;
470
472
  archived_at?: string | null | undefined;
471
473
  archived_by?: string | null | undefined;
472
474
  deleted_at?: string | null | undefined;
473
475
  deleted_by?: string | null | undefined;
474
- parent_folder_id?: string | null | undefined;
475
- file_count?: number | undefined;
476
476
  }[];
477
477
  }>;
478
478
  type AttachmentPageDto = z.infer<typeof AttachmentPageSchema>;
@@ -3603,463 +3603,53 @@ declare const signupSchema: z.ZodObject<{
3603
3603
  }, {
3604
3604
  email: string;
3605
3605
  passwords: {
3606
- password: string;
3607
- password_confirm: string;
3608
- };
3609
- acceptances?: Record<string, boolean> | undefined;
3610
- }>;
3611
- /** Parsed/validated signup input - acceptances is always present after parse (defaults to {}). */
3612
- type SignupInputDto = z.output<typeof signupSchema>;
3613
- //#endregion
3614
- //#region src/validation/signup_initiate_zod.d.ts
3615
- /** Input for signupInitiate - email and password only (no acceptances). */
3616
- declare const signupInitiateSchema: z.ZodObject<{
3617
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3618
- email: z.ZodString;
3619
- passwords: z.ZodEffects<z.ZodObject<{
3620
- password: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
3621
- password_confirm: z.ZodString;
3622
- }, "strip", z.ZodTypeAny, {
3623
- password: string;
3624
- password_confirm: string;
3625
- }, {
3626
- password: string;
3627
- password_confirm: string;
3628
- }>, {
3629
- password: string;
3630
- password_confirm: string;
3631
- }, {
3632
- password: string;
3633
- password_confirm: string;
3634
- }>;
3635
- }, "strip", z.ZodTypeAny, {
3636
- email: string;
3637
- passwords: {
3638
- password: string;
3639
- password_confirm: string;
3640
- };
3641
- metadata?: Record<string, unknown> | undefined;
3642
- }, {
3643
- email: string;
3644
- passwords: {
3645
- password: string;
3646
- password_confirm: string;
3647
- };
3648
- metadata?: Record<string, unknown> | undefined;
3649
- }>;
3650
- type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
3651
- /** Response when consents are required - token + consents to display. */
3652
- declare const signupInitiateConsentRequiredSchema: z.ZodObject<{
3653
- created: z.ZodLiteral<false>;
3654
- signup_consent_token: z.ZodString;
3655
- consents: z.ZodArray<z.ZodObject<{
3656
- type: z.ZodString;
3657
- required: z.ZodBoolean;
3658
- url: z.ZodString;
3659
- label: z.ZodString;
3660
- version: z.ZodString;
3661
- effective_at: z.ZodString;
3662
- content: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3663
- }, "strip", z.ZodTypeAny, {
3664
- type: string;
3665
- required: boolean;
3666
- url: string;
3667
- label: string;
3668
- version: string;
3669
- effective_at: string;
3670
- content?: string | null | undefined;
3671
- }, {
3672
- type: string;
3673
- required: boolean;
3674
- url: string;
3675
- label: string;
3676
- version: string;
3677
- effective_at: string;
3678
- content?: string | null | undefined;
3679
- }>, "many">;
3680
- }, "strip", z.ZodTypeAny, {
3681
- created: false;
3682
- signup_consent_token: string;
3683
- consents: {
3684
- type: string;
3685
- required: boolean;
3686
- url: string;
3687
- label: string;
3688
- version: string;
3689
- effective_at: string;
3690
- content?: string | null | undefined;
3691
- }[];
3692
- }, {
3693
- created: false;
3694
- signup_consent_token: string;
3695
- consents: {
3696
- type: string;
3697
- required: boolean;
3698
- url: string;
3699
- label: string;
3700
- version: string;
3701
- effective_at: string;
3702
- content?: string | null | undefined;
3703
- }[];
3704
- }>;
3705
- /** Response when account is created immediately (no consents). */
3706
- declare const signupInitiateCreatedSchema: z.ZodObject<{
3707
- created: z.ZodLiteral<true>;
3708
- session: z.ZodObject<{
3709
- frontend_session: z.ZodObject<{
3710
- created_at: z.ZodString;
3711
- expires_at: z.ZodString;
3712
- status: z.ZodString;
3713
- user_agent: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3714
- ip_address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3715
- user: z.ZodObject<{
3716
- userId: z.ZodString;
3717
- email: z.ZodString;
3718
- username: z.ZodString;
3719
- email_verified: z.ZodBoolean;
3720
- user_type: z.ZodString;
3721
- first_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3722
- last_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3723
- avatar_url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3724
- consents_complete: z.ZodOptional<z.ZodBoolean>;
3725
- subscriptions: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
3726
- subscription_id: z.ZodString;
3727
- subscription_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3728
- subscription_created: z.ZodString;
3729
- subscription_current_period_start: z.ZodString;
3730
- subscription_current_period_end: z.ZodString;
3731
- subscription_cancel_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3732
- subscription_canceled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3733
- product_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3734
- price_amount: z.ZodNullable<z.ZodNumber>;
3735
- price_currency: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3736
- }, "strip", z.ZodTypeAny, {
3737
- subscription_id: string;
3738
- subscription_created: string;
3739
- subscription_current_period_start: string;
3740
- subscription_current_period_end: string;
3741
- price_amount: number | null;
3742
- subscription_status?: string | null | undefined;
3743
- subscription_cancel_at?: string | null | undefined;
3744
- subscription_canceled_at?: string | null | undefined;
3745
- product_name?: string | null | undefined;
3746
- price_currency?: string | null | undefined;
3747
- }, {
3748
- subscription_id: string;
3749
- subscription_created: string;
3750
- subscription_current_period_start: string;
3751
- subscription_current_period_end: string;
3752
- price_amount: number | null;
3753
- subscription_status?: string | null | undefined;
3754
- subscription_cancel_at?: string | null | undefined;
3755
- subscription_canceled_at?: string | null | undefined;
3756
- product_name?: string | null | undefined;
3757
- price_currency?: string | null | undefined;
3758
- }>, "many">>>;
3759
- }, "strip", z.ZodTypeAny, {
3760
- userId: string;
3761
- email: string;
3762
- username: string;
3763
- email_verified: boolean;
3764
- user_type: string;
3765
- first_name?: string | null | undefined;
3766
- last_name?: string | null | undefined;
3767
- avatar_url?: string | null | undefined;
3768
- consents_complete?: boolean | undefined;
3769
- subscriptions?: {
3770
- subscription_id: string;
3771
- subscription_created: string;
3772
- subscription_current_period_start: string;
3773
- subscription_current_period_end: string;
3774
- price_amount: number | null;
3775
- subscription_status?: string | null | undefined;
3776
- subscription_cancel_at?: string | null | undefined;
3777
- subscription_canceled_at?: string | null | undefined;
3778
- product_name?: string | null | undefined;
3779
- price_currency?: string | null | undefined;
3780
- }[] | null | undefined;
3781
- }, {
3782
- userId: string;
3783
- email: string;
3784
- username: string;
3785
- email_verified: boolean;
3786
- user_type: string;
3787
- first_name?: string | null | undefined;
3788
- last_name?: string | null | undefined;
3789
- avatar_url?: string | null | undefined;
3790
- consents_complete?: boolean | undefined;
3791
- subscriptions?: {
3792
- subscription_id: string;
3793
- subscription_created: string;
3794
- subscription_current_period_start: string;
3795
- subscription_current_period_end: string;
3796
- price_amount: number | null;
3797
- subscription_status?: string | null | undefined;
3798
- subscription_cancel_at?: string | null | undefined;
3799
- subscription_canceled_at?: string | null | undefined;
3800
- product_name?: string | null | undefined;
3801
- price_currency?: string | null | undefined;
3802
- }[] | null | undefined;
3803
- }>;
3804
- }, "strip", z.ZodTypeAny, {
3805
- user: {
3806
- userId: string;
3807
- email: string;
3808
- username: string;
3809
- email_verified: boolean;
3810
- user_type: string;
3811
- first_name?: string | null | undefined;
3812
- last_name?: string | null | undefined;
3813
- avatar_url?: string | null | undefined;
3814
- consents_complete?: boolean | undefined;
3815
- subscriptions?: {
3816
- subscription_id: string;
3817
- subscription_created: string;
3818
- subscription_current_period_start: string;
3819
- subscription_current_period_end: string;
3820
- price_amount: number | null;
3821
- subscription_status?: string | null | undefined;
3822
- subscription_cancel_at?: string | null | undefined;
3823
- subscription_canceled_at?: string | null | undefined;
3824
- product_name?: string | null | undefined;
3825
- price_currency?: string | null | undefined;
3826
- }[] | null | undefined;
3827
- };
3828
- created_at: string;
3829
- expires_at: string;
3830
- status: string;
3831
- user_agent?: string | null | undefined;
3832
- ip_address?: string | null | undefined;
3833
- }, {
3834
- user: {
3835
- userId: string;
3836
- email: string;
3837
- username: string;
3838
- email_verified: boolean;
3839
- user_type: string;
3840
- first_name?: string | null | undefined;
3841
- last_name?: string | null | undefined;
3842
- avatar_url?: string | null | undefined;
3843
- consents_complete?: boolean | undefined;
3844
- subscriptions?: {
3845
- subscription_id: string;
3846
- subscription_created: string;
3847
- subscription_current_period_start: string;
3848
- subscription_current_period_end: string;
3849
- price_amount: number | null;
3850
- subscription_status?: string | null | undefined;
3851
- subscription_cancel_at?: string | null | undefined;
3852
- subscription_canceled_at?: string | null | undefined;
3853
- product_name?: string | null | undefined;
3854
- price_currency?: string | null | undefined;
3855
- }[] | null | undefined;
3856
- };
3857
- created_at: string;
3858
- expires_at: string;
3859
- status: string;
3860
- user_agent?: string | null | undefined;
3861
- ip_address?: string | null | undefined;
3862
- }>;
3863
- access_token: z.ZodString;
3864
- refresh_token: z.ZodString;
3865
- user_details_token: z.ZodString;
3866
- }, "strip", z.ZodTypeAny, {
3867
- refresh_token: string;
3868
- frontend_session: {
3869
- user: {
3870
- userId: string;
3871
- email: string;
3872
- username: string;
3873
- email_verified: boolean;
3874
- user_type: string;
3875
- first_name?: string | null | undefined;
3876
- last_name?: string | null | undefined;
3877
- avatar_url?: string | null | undefined;
3878
- consents_complete?: boolean | undefined;
3879
- subscriptions?: {
3880
- subscription_id: string;
3881
- subscription_created: string;
3882
- subscription_current_period_start: string;
3883
- subscription_current_period_end: string;
3884
- price_amount: number | null;
3885
- subscription_status?: string | null | undefined;
3886
- subscription_cancel_at?: string | null | undefined;
3887
- subscription_canceled_at?: string | null | undefined;
3888
- product_name?: string | null | undefined;
3889
- price_currency?: string | null | undefined;
3890
- }[] | null | undefined;
3891
- };
3892
- created_at: string;
3893
- expires_at: string;
3894
- status: string;
3895
- user_agent?: string | null | undefined;
3896
- ip_address?: string | null | undefined;
3897
- };
3898
- access_token: string;
3899
- user_details_token: string;
3900
- }, {
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
- }, "strip", z.ZodTypeAny, {
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
- created: true;
3974
- session: {
3975
- refresh_token: string;
3976
- frontend_session: {
3977
- user: {
3978
- userId: string;
3979
- email: string;
3980
- username: string;
3981
- email_verified: boolean;
3982
- user_type: string;
3983
- first_name?: string | null | undefined;
3984
- last_name?: string | null | undefined;
3985
- avatar_url?: string | null | undefined;
3986
- consents_complete?: boolean | undefined;
3987
- subscriptions?: {
3988
- subscription_id: string;
3989
- subscription_created: string;
3990
- subscription_current_period_start: string;
3991
- subscription_current_period_end: string;
3992
- price_amount: number | null;
3993
- subscription_status?: string | null | undefined;
3994
- subscription_cancel_at?: string | null | undefined;
3995
- subscription_canceled_at?: string | null | undefined;
3996
- product_name?: string | null | undefined;
3997
- price_currency?: string | null | undefined;
3998
- }[] | null | undefined;
3999
- };
4000
- created_at: string;
4001
- expires_at: string;
4002
- status: string;
4003
- user_agent?: string | null | undefined;
4004
- ip_address?: string | null | undefined;
4005
- };
4006
- access_token: string;
4007
- user_details_token: string;
4008
- };
4009
- }>;
4010
- declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [z.ZodObject<{
4011
- created: z.ZodLiteral<false>;
4012
- signup_consent_token: z.ZodString;
4013
- consents: z.ZodArray<z.ZodObject<{
4014
- type: z.ZodString;
4015
- required: z.ZodBoolean;
4016
- url: z.ZodString;
4017
- label: z.ZodString;
4018
- version: z.ZodString;
4019
- effective_at: z.ZodString;
4020
- content: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3606
+ password: string;
3607
+ password_confirm: string;
3608
+ };
3609
+ acceptances?: Record<string, boolean> | undefined;
3610
+ }>;
3611
+ /** Parsed/validated signup input - acceptances is always present after parse (defaults to {}). */
3612
+ type SignupInputDto = z.output<typeof signupSchema>;
3613
+ //#endregion
3614
+ //#region src/validation/signup_initiate_zod.d.ts
3615
+ /** Input for signupInitiate - email and password only (no acceptances). */
3616
+ declare const signupInitiateSchema: z.ZodObject<{
3617
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3618
+ email: z.ZodString;
3619
+ passwords: z.ZodEffects<z.ZodObject<{
3620
+ password: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
3621
+ password_confirm: z.ZodString;
4021
3622
  }, "strip", z.ZodTypeAny, {
4022
- type: string;
4023
- required: boolean;
4024
- url: string;
4025
- label: string;
4026
- version: string;
4027
- effective_at: string;
4028
- content?: string | null | undefined;
3623
+ password: string;
3624
+ password_confirm: string;
4029
3625
  }, {
4030
- type: string;
4031
- required: boolean;
4032
- url: string;
4033
- label: string;
4034
- version: string;
4035
- effective_at: string;
4036
- content?: string | null | undefined;
4037
- }>, "many">;
3626
+ password: string;
3627
+ password_confirm: string;
3628
+ }>, {
3629
+ password: string;
3630
+ password_confirm: string;
3631
+ }, {
3632
+ password: string;
3633
+ password_confirm: string;
3634
+ }>;
4038
3635
  }, "strip", z.ZodTypeAny, {
4039
- created: false;
4040
- signup_consent_token: string;
4041
- consents: {
4042
- type: string;
4043
- required: boolean;
4044
- url: string;
4045
- label: string;
4046
- version: string;
4047
- effective_at: string;
4048
- content?: string | null | undefined;
4049
- }[];
3636
+ email: string;
3637
+ passwords: {
3638
+ password: string;
3639
+ password_confirm: string;
3640
+ };
3641
+ metadata?: Record<string, unknown> | undefined;
4050
3642
  }, {
4051
- created: false;
4052
- signup_consent_token: string;
4053
- consents: {
4054
- type: string;
4055
- required: boolean;
4056
- url: string;
4057
- label: string;
4058
- version: string;
4059
- effective_at: string;
4060
- content?: string | null | undefined;
4061
- }[];
4062
- }>, z.ZodObject<{
3643
+ email: string;
3644
+ passwords: {
3645
+ password: string;
3646
+ password_confirm: string;
3647
+ };
3648
+ metadata?: Record<string, unknown> | undefined;
3649
+ }>;
3650
+ type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
3651
+ /** Response when account is created. Session has consents_complete: false when consents are pending. */
3652
+ declare const signupInitiateResponseSchema: z.ZodObject<{
4063
3653
  created: z.ZodLiteral<true>;
4064
3654
  session: z.ZodObject<{
4065
3655
  frontend_session: z.ZodObject<{
@@ -4362,22 +3952,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
4362
3952
  access_token: string;
4363
3953
  user_details_token: string;
4364
3954
  };
4365
- }>]>;
4366
- type SignupInitiateResponseDto = z.infer<typeof signupInitiateResponseSchema>;
4367
- //#endregion
4368
- //#region src/validation/signup_complete_zod.d.ts
4369
- /** Input for signupComplete - acceptances only. Token is in Authorization: Bearer header. */
4370
- declare const signupCompleteSchema: z.ZodObject<{
4371
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
4372
- acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
4373
- }, "strip", z.ZodTypeAny, {
4374
- acceptances: Record<string, boolean>;
4375
- metadata?: Record<string, unknown> | undefined;
4376
- }, {
4377
- acceptances?: Record<string, boolean> | undefined;
4378
- metadata?: Record<string, unknown> | undefined;
4379
3955
  }>;
4380
- type SignupCompleteInputDto = z.infer<typeof signupCompleteSchema>;
3956
+ type SignupInitiateResponseDto = z.infer<typeof signupInitiateResponseSchema>;
4381
3957
  //#endregion
4382
3958
  //#region src/validation/record_subscriber/record_subscriber_create_zod.d.ts
4383
3959
  declare const RecordSubscriberCreateSchema: z.ZodObject<{
@@ -4687,12 +4263,12 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
4687
4263
  updated_by?: string | null | undefined;
4688
4264
  archived_at?: string | null | undefined;
4689
4265
  created_by_display_name?: string | null | undefined;
4690
- credit_value?: string | null | undefined;
4691
4266
  display_id?: string | null | undefined;
4267
+ credit_value?: string | null | undefined;
4268
+ display_id_prefix?: string | null | undefined;
4692
4269
  start_at?: string | null | undefined;
4693
4270
  target_at?: string | null | undefined;
4694
4271
  completed_at?: string | null | undefined;
4695
- display_id_prefix?: string | null | undefined;
4696
4272
  locked_approval_at?: string | null | undefined;
4697
4273
  my_subscription?: {
4698
4274
  created_at: string;
@@ -4719,12 +4295,12 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
4719
4295
  updated_by?: string | null | undefined;
4720
4296
  archived_at?: string | null | undefined;
4721
4297
  created_by_display_name?: string | null | undefined;
4722
- credit_value?: string | null | undefined;
4723
4298
  display_id?: string | null | undefined;
4299
+ credit_value?: string | null | undefined;
4300
+ display_id_prefix?: string | null | undefined;
4724
4301
  start_at?: string | null | undefined;
4725
4302
  target_at?: string | null | undefined;
4726
4303
  completed_at?: string | null | undefined;
4727
- display_id_prefix?: string | null | undefined;
4728
4304
  locked_approval_at?: string | null | undefined;
4729
4305
  my_subscription?: {
4730
4306
  created_at: string;
@@ -4809,12 +4385,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4809
4385
  updated_by?: string | null | undefined;
4810
4386
  archived_at?: string | null | undefined;
4811
4387
  created_by_display_name?: string | null | undefined;
4812
- credit_value?: string | null | undefined;
4813
4388
  display_id?: string | null | undefined;
4389
+ credit_value?: string | null | undefined;
4390
+ display_id_prefix?: string | null | undefined;
4814
4391
  start_at?: string | null | undefined;
4815
4392
  target_at?: string | null | undefined;
4816
4393
  completed_at?: string | null | undefined;
4817
- display_id_prefix?: string | null | undefined;
4818
4394
  locked_approval_at?: string | null | undefined;
4819
4395
  my_subscription?: {
4820
4396
  created_at: string;
@@ -4841,12 +4417,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4841
4417
  updated_by?: string | null | undefined;
4842
4418
  archived_at?: string | null | undefined;
4843
4419
  created_by_display_name?: string | null | undefined;
4844
- credit_value?: string | null | undefined;
4845
4420
  display_id?: string | null | undefined;
4421
+ credit_value?: string | null | undefined;
4422
+ display_id_prefix?: string | null | undefined;
4846
4423
  start_at?: string | null | undefined;
4847
4424
  target_at?: string | null | undefined;
4848
4425
  completed_at?: string | null | undefined;
4849
- display_id_prefix?: string | null | undefined;
4850
4426
  locked_approval_at?: string | null | undefined;
4851
4427
  my_subscription?: {
4852
4428
  created_at: string;
@@ -4897,12 +4473,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4897
4473
  updated_by?: string | null | undefined;
4898
4474
  archived_at?: string | null | undefined;
4899
4475
  created_by_display_name?: string | null | undefined;
4900
- credit_value?: string | null | undefined;
4901
4476
  display_id?: string | null | undefined;
4477
+ credit_value?: string | null | undefined;
4478
+ display_id_prefix?: string | null | undefined;
4902
4479
  start_at?: string | null | undefined;
4903
4480
  target_at?: string | null | undefined;
4904
4481
  completed_at?: string | null | undefined;
4905
- display_id_prefix?: string | null | undefined;
4906
4482
  locked_approval_at?: string | null | undefined;
4907
4483
  my_subscription?: {
4908
4484
  created_at: string;
@@ -4939,12 +4515,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4939
4515
  updated_by?: string | null | undefined;
4940
4516
  archived_at?: string | null | undefined;
4941
4517
  created_by_display_name?: string | null | undefined;
4942
- credit_value?: string | null | undefined;
4943
4518
  display_id?: string | null | undefined;
4519
+ credit_value?: string | null | undefined;
4520
+ display_id_prefix?: string | null | undefined;
4944
4521
  start_at?: string | null | undefined;
4945
4522
  target_at?: string | null | undefined;
4946
4523
  completed_at?: string | null | undefined;
4947
- display_id_prefix?: string | null | undefined;
4948
4524
  locked_approval_at?: string | null | undefined;
4949
4525
  my_subscription?: {
4950
4526
  created_at: string;
@@ -5982,8 +5558,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5982
5558
  description: string;
5983
5559
  title: string;
5984
5560
  priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
5985
- is_locked: boolean;
5986
5561
  approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
5562
+ is_locked: boolean;
5987
5563
  can_delete: boolean;
5988
5564
  created_at?: string | null | undefined;
5989
5565
  created_by?: string | null | undefined;
@@ -5993,17 +5569,17 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5993
5569
  archived_by?: string | null | undefined;
5994
5570
  created_by_display_name?: string | null | undefined;
5995
5571
  updated_by_display_name?: string | null | undefined;
5572
+ display_id?: string | null | undefined;
5996
5573
  credit_value?: string | null | undefined;
5997
5574
  delivered_value?: string | null | undefined;
5998
- display_id?: string | null | undefined;
5999
- start_at?: string | null | undefined;
6000
- target_at?: string | null | undefined;
6001
- completed_at?: string | null | undefined;
6002
5575
  display_id_prefix?: string | null | undefined;
6003
- locked_approval_at?: string | null | undefined;
6004
5576
  assigned_to?: string | null | undefined;
6005
5577
  assigned_to_display_name?: string | null | undefined;
6006
5578
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5579
+ start_at?: string | null | undefined;
5580
+ target_at?: string | null | undefined;
5581
+ completed_at?: string | null | undefined;
5582
+ locked_approval_at?: string | null | undefined;
6007
5583
  }, {
6008
5584
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
6009
5585
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
@@ -6011,8 +5587,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
6011
5587
  description: string;
6012
5588
  title: string;
6013
5589
  priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
6014
- is_locked: boolean;
6015
5590
  approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
5591
+ is_locked: boolean;
6016
5592
  can_delete: boolean;
6017
5593
  created_at?: string | null | undefined;
6018
5594
  created_by?: string | null | undefined;
@@ -6022,17 +5598,17 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
6022
5598
  archived_by?: string | null | undefined;
6023
5599
  created_by_display_name?: string | null | undefined;
6024
5600
  updated_by_display_name?: string | null | undefined;
5601
+ display_id?: string | null | undefined;
6025
5602
  credit_value?: string | null | undefined;
6026
5603
  delivered_value?: string | null | undefined;
6027
- display_id?: string | null | undefined;
6028
- start_at?: string | null | undefined;
6029
- target_at?: string | null | undefined;
6030
- completed_at?: string | null | undefined;
6031
5604
  display_id_prefix?: string | null | undefined;
6032
- locked_approval_at?: string | null | undefined;
6033
5605
  assigned_to?: string | null | undefined;
6034
5606
  assigned_to_display_name?: string | null | undefined;
6035
5607
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5608
+ start_at?: string | null | undefined;
5609
+ target_at?: string | null | undefined;
5610
+ completed_at?: string | null | undefined;
5611
+ locked_approval_at?: string | null | undefined;
6036
5612
  }>;
6037
5613
  type StaffSupportTicketReadDto = z.infer<typeof StaffSupportTicketReadSchema>;
6038
5614
  /**
@@ -6075,8 +5651,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
6075
5651
  description: string;
6076
5652
  title: string;
6077
5653
  priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
6078
- is_locked: boolean;
6079
5654
  approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
5655
+ is_locked: boolean;
6080
5656
  can_delete: boolean;
6081
5657
  created_at?: string | null | undefined;
6082
5658
  created_by?: string | null | undefined;
@@ -6086,17 +5662,17 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
6086
5662
  archived_by?: string | null | undefined;
6087
5663
  created_by_display_name?: string | null | undefined;
6088
5664
  updated_by_display_name?: string | null | undefined;
5665
+ display_id?: string | null | undefined;
6089
5666
  credit_value?: string | null | undefined;
6090
5667
  delivered_value?: string | null | undefined;
6091
- display_id?: string | null | undefined;
6092
- start_at?: string | null | undefined;
6093
- target_at?: string | null | undefined;
6094
- completed_at?: string | null | undefined;
6095
5668
  display_id_prefix?: string | null | undefined;
6096
- locked_approval_at?: string | null | undefined;
6097
5669
  assigned_to?: string | null | undefined;
6098
5670
  assigned_to_display_name?: string | null | undefined;
6099
5671
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5672
+ start_at?: string | null | undefined;
5673
+ target_at?: string | null | undefined;
5674
+ completed_at?: string | null | undefined;
5675
+ locked_approval_at?: string | null | undefined;
6100
5676
  }, {
6101
5677
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
6102
5678
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
@@ -6104,8 +5680,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
6104
5680
  description: string;
6105
5681
  title: string;
6106
5682
  priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
6107
- is_locked: boolean;
6108
5683
  approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
5684
+ is_locked: boolean;
6109
5685
  can_delete: boolean;
6110
5686
  created_at?: string | null | undefined;
6111
5687
  created_by?: string | null | undefined;
@@ -6115,17 +5691,17 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
6115
5691
  archived_by?: string | null | undefined;
6116
5692
  created_by_display_name?: string | null | undefined;
6117
5693
  updated_by_display_name?: string | null | undefined;
5694
+ display_id?: string | null | undefined;
6118
5695
  credit_value?: string | null | undefined;
6119
5696
  delivered_value?: string | null | undefined;
6120
- display_id?: string | null | undefined;
6121
- start_at?: string | null | undefined;
6122
- target_at?: string | null | undefined;
6123
- completed_at?: string | null | undefined;
6124
5697
  display_id_prefix?: string | null | undefined;
6125
- locked_approval_at?: string | null | undefined;
6126
5698
  assigned_to?: string | null | undefined;
6127
5699
  assigned_to_display_name?: string | null | undefined;
6128
5700
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5701
+ start_at?: string | null | undefined;
5702
+ target_at?: string | null | undefined;
5703
+ completed_at?: string | null | undefined;
5704
+ locked_approval_at?: string | null | undefined;
6129
5705
  }>, "many">;
6130
5706
  pageInfo: z.ZodObject<{
6131
5707
  hasNextPage: z.ZodBoolean;
@@ -6157,8 +5733,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
6157
5733
  description: string;
6158
5734
  title: string;
6159
5735
  priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
6160
- is_locked: boolean;
6161
5736
  approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
5737
+ is_locked: boolean;
6162
5738
  can_delete: boolean;
6163
5739
  created_at?: string | null | undefined;
6164
5740
  created_by?: string | null | undefined;
@@ -6168,17 +5744,17 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
6168
5744
  archived_by?: string | null | undefined;
6169
5745
  created_by_display_name?: string | null | undefined;
6170
5746
  updated_by_display_name?: string | null | undefined;
5747
+ display_id?: string | null | undefined;
6171
5748
  credit_value?: string | null | undefined;
6172
5749
  delivered_value?: string | null | undefined;
6173
- display_id?: string | null | undefined;
6174
- start_at?: string | null | undefined;
6175
- target_at?: string | null | undefined;
6176
- completed_at?: string | null | undefined;
6177
5750
  display_id_prefix?: string | null | undefined;
6178
- locked_approval_at?: string | null | undefined;
6179
5751
  assigned_to?: string | null | undefined;
6180
5752
  assigned_to_display_name?: string | null | undefined;
6181
5753
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5754
+ start_at?: string | null | undefined;
5755
+ target_at?: string | null | undefined;
5756
+ completed_at?: string | null | undefined;
5757
+ locked_approval_at?: string | null | undefined;
6182
5758
  }[];
6183
5759
  pageInfo: {
6184
5760
  hasNextPage: boolean;
@@ -6196,8 +5772,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
6196
5772
  description: string;
6197
5773
  title: string;
6198
5774
  priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
6199
- is_locked: boolean;
6200
5775
  approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
5776
+ is_locked: boolean;
6201
5777
  can_delete: boolean;
6202
5778
  created_at?: string | null | undefined;
6203
5779
  created_by?: string | null | undefined;
@@ -6207,17 +5783,17 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
6207
5783
  archived_by?: string | null | undefined;
6208
5784
  created_by_display_name?: string | null | undefined;
6209
5785
  updated_by_display_name?: string | null | undefined;
5786
+ display_id?: string | null | undefined;
6210
5787
  credit_value?: string | null | undefined;
6211
5788
  delivered_value?: string | null | undefined;
6212
- display_id?: string | null | undefined;
6213
- start_at?: string | null | undefined;
6214
- target_at?: string | null | undefined;
6215
- completed_at?: string | null | undefined;
6216
5789
  display_id_prefix?: string | null | undefined;
6217
- locked_approval_at?: string | null | undefined;
6218
5790
  assigned_to?: string | null | undefined;
6219
5791
  assigned_to_display_name?: string | null | undefined;
6220
5792
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5793
+ start_at?: string | null | undefined;
5794
+ target_at?: string | null | undefined;
5795
+ completed_at?: string | null | undefined;
5796
+ locked_approval_at?: string | null | undefined;
6221
5797
  }[];
6222
5798
  pageInfo: {
6223
5799
  hasNextPage: boolean;
@@ -7115,12 +6691,24 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
7115
6691
  values?: number[] | undefined;
7116
6692
  caseSensitive?: boolean | undefined;
7117
6693
  } | undefined;
6694
+ approval_status?: {
6695
+ operator: "eq" | "ne" | "in" | "notIn";
6696
+ value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
6697
+ values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
6698
+ caseSensitive?: boolean | undefined;
6699
+ } | undefined;
7118
6700
  is_locked?: {
7119
6701
  value: boolean;
7120
6702
  operator: "eq" | "ne";
7121
6703
  values?: any[] | undefined;
7122
6704
  caseSensitive?: boolean | undefined;
7123
6705
  } | undefined;
6706
+ dev_lifecycle?: {
6707
+ operator: "eq" | "ne" | "in" | "notIn";
6708
+ value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
6709
+ values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
6710
+ caseSensitive?: boolean | undefined;
6711
+ } | undefined;
7124
6712
  start_at?: {
7125
6713
  operator: "isEmpty" | "isNotEmpty";
7126
6714
  value?: any;
@@ -7169,18 +6757,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
7169
6757
  values?: any[] | undefined;
7170
6758
  caseSensitive?: boolean | undefined;
7171
6759
  } | undefined;
7172
- approval_status?: {
7173
- operator: "eq" | "ne" | "in" | "notIn";
7174
- value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
7175
- values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
7176
- caseSensitive?: boolean | undefined;
7177
- } | undefined;
7178
- dev_lifecycle?: {
7179
- operator: "eq" | "ne" | "in" | "notIn";
7180
- value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
7181
- values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
7182
- caseSensitive?: boolean | undefined;
7183
- } | undefined;
7184
6760
  }, {
7185
6761
  created_at?: {
7186
6762
  operator: "isEmpty" | "isNotEmpty";
@@ -7271,12 +6847,24 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
7271
6847
  values?: number[] | undefined;
7272
6848
  caseSensitive?: boolean | undefined;
7273
6849
  } | undefined;
6850
+ approval_status?: {
6851
+ operator: "eq" | "ne" | "in" | "notIn";
6852
+ value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
6853
+ values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
6854
+ caseSensitive?: boolean | undefined;
6855
+ } | undefined;
7274
6856
  is_locked?: {
7275
6857
  value: boolean;
7276
6858
  operator: "eq" | "ne";
7277
6859
  values?: any[] | undefined;
7278
6860
  caseSensitive?: boolean | undefined;
7279
6861
  } | undefined;
6862
+ dev_lifecycle?: {
6863
+ operator: "eq" | "ne" | "in" | "notIn";
6864
+ value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
6865
+ values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
6866
+ caseSensitive?: boolean | undefined;
6867
+ } | undefined;
7280
6868
  start_at?: {
7281
6869
  operator: "isEmpty" | "isNotEmpty";
7282
6870
  value?: any;
@@ -7325,18 +6913,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
7325
6913
  values?: any[] | undefined;
7326
6914
  caseSensitive?: boolean | undefined;
7327
6915
  } | undefined;
7328
- approval_status?: {
7329
- operator: "eq" | "ne" | "in" | "notIn";
7330
- value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
7331
- values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
7332
- caseSensitive?: boolean | undefined;
7333
- } | undefined;
7334
- dev_lifecycle?: {
7335
- operator: "eq" | "ne" | "in" | "notIn";
7336
- value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
7337
- values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
7338
- caseSensitive?: boolean | undefined;
7339
- } | undefined;
7340
6916
  }>;
7341
6917
  type StaffSupportTicketFiltersDto = z.infer<typeof StaffSupportTicketFiltersSchema>;
7342
6918
  //#endregion
@@ -7363,11 +6939,11 @@ declare const StaffSupportTicketCreateSchema: z.ZodObject<{
7363
6939
  is_internal?: boolean | undefined;
7364
6940
  credit_value?: string | null | undefined;
7365
6941
  delivered_value?: string | null | undefined;
6942
+ assigned_to?: string | null | undefined;
6943
+ dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7366
6944
  start_at?: string | null | undefined;
7367
6945
  target_at?: string | null | undefined;
7368
6946
  completed_at?: string | null | undefined;
7369
- assigned_to?: string | null | undefined;
7370
- dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7371
6947
  }, {
7372
6948
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
7373
6949
  title: string;
@@ -7376,11 +6952,11 @@ declare const StaffSupportTicketCreateSchema: z.ZodObject<{
7376
6952
  is_internal?: boolean | undefined;
7377
6953
  credit_value?: string | null | undefined;
7378
6954
  delivered_value?: string | null | undefined;
6955
+ assigned_to?: string | null | undefined;
6956
+ dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7379
6957
  start_at?: string | null | undefined;
7380
6958
  target_at?: string | null | undefined;
7381
6959
  completed_at?: string | null | undefined;
7382
- assigned_to?: string | null | undefined;
7383
- dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7384
6960
  }>;
7385
6961
  type StaffSupportTicketCreateDto = z.infer<typeof StaffSupportTicketCreateSchema>;
7386
6962
  declare const StaffSupportTicketUpdateSchema: z.ZodObject<{
@@ -7405,11 +6981,11 @@ declare const StaffSupportTicketUpdateSchema: z.ZodObject<{
7405
6981
  description?: string | null | undefined;
7406
6982
  credit_value?: string | null | undefined;
7407
6983
  delivered_value?: string | null | undefined;
6984
+ assigned_to?: string | null | undefined;
6985
+ dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7408
6986
  start_at?: string | null | undefined;
7409
6987
  target_at?: string | null | undefined;
7410
6988
  completed_at?: string | null | undefined;
7411
- assigned_to?: string | null | undefined;
7412
- dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7413
6989
  }, {
7414
6990
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
7415
6991
  id: string;
@@ -7418,11 +6994,11 @@ declare const StaffSupportTicketUpdateSchema: z.ZodObject<{
7418
6994
  description?: string | null | undefined;
7419
6995
  credit_value?: string | null | undefined;
7420
6996
  delivered_value?: string | null | undefined;
6997
+ assigned_to?: string | null | undefined;
6998
+ dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7421
6999
  start_at?: string | null | undefined;
7422
7000
  target_at?: string | null | undefined;
7423
7001
  completed_at?: string | null | undefined;
7424
- assigned_to?: string | null | undefined;
7425
- dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7426
7002
  }>;
7427
7003
  type StaffSupportTicketUpdateDto = z.infer<typeof StaffSupportTicketUpdateSchema>;
7428
7004
  declare const StaffSupportTicketInputSchema: z.ZodObject<{
@@ -7447,11 +7023,11 @@ declare const StaffSupportTicketInputSchema: z.ZodObject<{
7447
7023
  description?: string | null | undefined;
7448
7024
  credit_value?: string | null | undefined;
7449
7025
  delivered_value?: string | null | undefined;
7026
+ assigned_to?: string | null | undefined;
7027
+ dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7450
7028
  start_at?: string | null | undefined;
7451
7029
  target_at?: string | null | undefined;
7452
7030
  completed_at?: string | null | undefined;
7453
- assigned_to?: string | null | undefined;
7454
- dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7455
7031
  }, {
7456
7032
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
7457
7033
  id: string;
@@ -7460,11 +7036,11 @@ declare const StaffSupportTicketInputSchema: z.ZodObject<{
7460
7036
  description?: string | null | undefined;
7461
7037
  credit_value?: string | null | undefined;
7462
7038
  delivered_value?: string | null | undefined;
7039
+ assigned_to?: string | null | undefined;
7040
+ dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7463
7041
  start_at?: string | null | undefined;
7464
7042
  target_at?: string | null | undefined;
7465
7043
  completed_at?: string | null | undefined;
7466
- assigned_to?: string | null | undefined;
7467
- dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7468
7044
  }>;
7469
7045
  type StaffSupportTicketInputDto = StaffSupportTicketUpdateDto;
7470
7046
  //#endregion
@@ -10957,18 +10533,9 @@ interface UserApi {
10957
10533
  */
10958
10534
  signupUser(input: SignupInputDto): Promise<CreateUserDtoOutput>;
10959
10535
  /**
10960
- * Get signup consents for the current signup_consent token. Requires token in Authorization header.
10961
- * Used when SignupConsentFlow opens in new tab (no sessionStorage). Returns empty when consent feature disabled.
10962
- */
10963
- getSignupConsentsForToken(): Promise<SignupRequirementsDto>;
10964
- /**
10965
- * Initiate signup - returns session if no consents, or token+consents if consents required
10536
+ * Initiate signup - always returns session. When consents are required, session has consents_complete: false.
10966
10537
  */
10967
10538
  signupInitiate(input: SignupInitiateInputDto): Promise<SignupInitiateResponseDto>;
10968
- /**
10969
- * Complete signup after accepting consents. Requires signup_consent token in Authorization: Bearer header.
10970
- */
10971
- signupComplete(input: SignupCompleteInputDto): Promise<LoginResponse>;
10972
10539
  /**
10973
10540
  * Create a new user
10974
10541
  */
@@ -11213,5 +10780,5 @@ declare const formatCurrency: (value: number) => string;
11213
10780
  */
11214
10781
  declare const formatDollar: (amount: string | null | undefined) => string;
11215
10782
  //#endregion
11216
- 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, DefaultReferralTeamFormDto, DefaultReferralTeamFormSchema, 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, REFERRAL_TAG_ERROR_MESSAGE, REFERRAL_TAG_MAX, REFERRAL_TAG_MIN, REFERRAL_TAG_REGEX, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, ReferralTagValueSchema, 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, SetReferralTagDto, SetReferralTagSchema, 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, normalizeToReferralTag, 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 };
10783
+ 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, DefaultReferralTeamFormDto, DefaultReferralTeamFormSchema, 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, REFERRAL_TAG_ERROR_MESSAGE, REFERRAL_TAG_MAX, REFERRAL_TAG_MIN, REFERRAL_TAG_REGEX, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, ReferralTagValueSchema, 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, SetReferralTagDto, SetReferralTagSchema, 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, normalizeToReferralTag, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupInitiateResponseSchema, signupInitiateSchema, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
11217
10784
  //# sourceMappingURL=index.d.mts.map