@dragonmastery/dragoncore-vue 0.0.2 → 0.0.3
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.ts +1030 -1030
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as vue4 from "vue";
|
|
2
2
|
import { App, Ref, ShallowRef } from "vue";
|
|
3
3
|
import { RpcStub } from "capnweb";
|
|
4
4
|
import * as pinia0 from "pinia";
|
|
5
5
|
import { NavigationGuard, RouteLocationRaw, RouteMeta, RouteRecordRaw, Router } from "vue-router";
|
|
6
6
|
import { AddCreditsSchema, CreditTransactionReadSchema, CustomerSupportTicketCreateSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateSchema, DragoncoreApi, NoteReadSchema, RecordType, SetMonthlyAllocationSchema, StaffSupportTicketCreateSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateSchema, SupportTicketApproval, SupportTicketDevLifecycle, SupportTicketPriority, SupportTicketStatus, SupportTicketType, TeamCreateSchema, TeamMemberCreateSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberUpdateSchema, TeamReadDto, TeamReadSchema, TeamUpdateSchema, UpdateNotificationEmailsSchema, UserProfileBaseSchema, UserReadSchema, UserTypeValues, changePasswordSchema, createUserSchema, forgot_password_zod, loginSchema, recordVersionSchema, resetPasswordInputSchema, signupSchema } from "@dragonmastery/dragoncore-shared";
|
|
7
7
|
import { UseFormTyped } from "@dragonmastery/zinia-forms-core";
|
|
8
|
-
import * as
|
|
8
|
+
import * as zod0 from "zod";
|
|
9
9
|
import { z } from "zod";
|
|
10
10
|
|
|
11
11
|
//#region src/composables/useEnv.d.ts
|
|
@@ -233,7 +233,7 @@ interface UserAppSession {
|
|
|
233
233
|
* The refresh method uses createAppBatch which can be typed on a per-call basis.
|
|
234
234
|
*/
|
|
235
235
|
declare const useUserSessionStore: pinia0.StoreDefinition<"userSession", Pick<{
|
|
236
|
-
userSession:
|
|
236
|
+
userSession: vue4.Ref<{
|
|
237
237
|
created_at: string;
|
|
238
238
|
expires_at: string;
|
|
239
239
|
status: "active" | "revoked" | "expired";
|
|
@@ -290,7 +290,7 @@ declare const useUserSessionStore: pinia0.StoreDefinition<"userSession", Pick<{
|
|
|
290
290
|
}[] | undefined;
|
|
291
291
|
};
|
|
292
292
|
} | null>;
|
|
293
|
-
currentSession:
|
|
293
|
+
currentSession: vue4.ComputedRef<{
|
|
294
294
|
created_at: string;
|
|
295
295
|
expires_at: string;
|
|
296
296
|
status: "active" | "revoked" | "expired";
|
|
@@ -319,12 +319,12 @@ declare const useUserSessionStore: pinia0.StoreDefinition<"userSession", Pick<{
|
|
|
319
319
|
}[] | undefined;
|
|
320
320
|
};
|
|
321
321
|
} | null>;
|
|
322
|
-
accessToken:
|
|
323
|
-
clientHeaders:
|
|
322
|
+
accessToken: vue4.Ref<string | null, string | null>;
|
|
323
|
+
clientHeaders: vue4.ComputedRef<{
|
|
324
324
|
Authorization?: string | undefined;
|
|
325
325
|
'Content-Type': string;
|
|
326
326
|
}>;
|
|
327
|
-
debug:
|
|
327
|
+
debug: vue4.Ref<boolean, boolean>;
|
|
328
328
|
setSession: (token: string | null) => void;
|
|
329
329
|
setAccessToken: (token: string | null) => void;
|
|
330
330
|
clearSession: () => void;
|
|
@@ -341,7 +341,7 @@ declare const useUserSessionStore: pinia0.StoreDefinition<"userSession", Pick<{
|
|
|
341
341
|
refreshTokenExpired: boolean;
|
|
342
342
|
};
|
|
343
343
|
}, "accessToken" | "userSession" | "debug">, Pick<{
|
|
344
|
-
userSession:
|
|
344
|
+
userSession: vue4.Ref<{
|
|
345
345
|
created_at: string;
|
|
346
346
|
expires_at: string;
|
|
347
347
|
status: "active" | "revoked" | "expired";
|
|
@@ -398,7 +398,7 @@ declare const useUserSessionStore: pinia0.StoreDefinition<"userSession", Pick<{
|
|
|
398
398
|
}[] | undefined;
|
|
399
399
|
};
|
|
400
400
|
} | null>;
|
|
401
|
-
currentSession:
|
|
401
|
+
currentSession: vue4.ComputedRef<{
|
|
402
402
|
created_at: string;
|
|
403
403
|
expires_at: string;
|
|
404
404
|
status: "active" | "revoked" | "expired";
|
|
@@ -427,12 +427,12 @@ declare const useUserSessionStore: pinia0.StoreDefinition<"userSession", Pick<{
|
|
|
427
427
|
}[] | undefined;
|
|
428
428
|
};
|
|
429
429
|
} | null>;
|
|
430
|
-
accessToken:
|
|
431
|
-
clientHeaders:
|
|
430
|
+
accessToken: vue4.Ref<string | null, string | null>;
|
|
431
|
+
clientHeaders: vue4.ComputedRef<{
|
|
432
432
|
Authorization?: string | undefined;
|
|
433
433
|
'Content-Type': string;
|
|
434
434
|
}>;
|
|
435
|
-
debug:
|
|
435
|
+
debug: vue4.Ref<boolean, boolean>;
|
|
436
436
|
setSession: (token: string | null) => void;
|
|
437
437
|
setAccessToken: (token: string | null) => void;
|
|
438
438
|
clearSession: () => void;
|
|
@@ -449,7 +449,7 @@ declare const useUserSessionStore: pinia0.StoreDefinition<"userSession", Pick<{
|
|
|
449
449
|
refreshTokenExpired: boolean;
|
|
450
450
|
};
|
|
451
451
|
}, "currentSession" | "clientHeaders">, Pick<{
|
|
452
|
-
userSession:
|
|
452
|
+
userSession: vue4.Ref<{
|
|
453
453
|
created_at: string;
|
|
454
454
|
expires_at: string;
|
|
455
455
|
status: "active" | "revoked" | "expired";
|
|
@@ -506,7 +506,7 @@ declare const useUserSessionStore: pinia0.StoreDefinition<"userSession", Pick<{
|
|
|
506
506
|
}[] | undefined;
|
|
507
507
|
};
|
|
508
508
|
} | null>;
|
|
509
|
-
currentSession:
|
|
509
|
+
currentSession: vue4.ComputedRef<{
|
|
510
510
|
created_at: string;
|
|
511
511
|
expires_at: string;
|
|
512
512
|
status: "active" | "revoked" | "expired";
|
|
@@ -535,12 +535,12 @@ declare const useUserSessionStore: pinia0.StoreDefinition<"userSession", Pick<{
|
|
|
535
535
|
}[] | undefined;
|
|
536
536
|
};
|
|
537
537
|
} | null>;
|
|
538
|
-
accessToken:
|
|
539
|
-
clientHeaders:
|
|
538
|
+
accessToken: vue4.Ref<string | null, string | null>;
|
|
539
|
+
clientHeaders: vue4.ComputedRef<{
|
|
540
540
|
Authorization?: string | undefined;
|
|
541
541
|
'Content-Type': string;
|
|
542
542
|
}>;
|
|
543
|
-
debug:
|
|
543
|
+
debug: vue4.Ref<boolean, boolean>;
|
|
544
544
|
setSession: (token: string | null) => void;
|
|
545
545
|
setAccessToken: (token: string | null) => void;
|
|
546
546
|
clearSession: () => void;
|
|
@@ -615,13 +615,13 @@ type __VLS_Slots$10 = {} & { [K in NonNullable<typeof __VLS_11>]?: (props: typeo
|
|
|
615
615
|
} & {
|
|
616
616
|
status?: (props: typeof __VLS_17$1) => any;
|
|
617
617
|
};
|
|
618
|
-
declare const __VLS_base$10:
|
|
618
|
+
declare const __VLS_base$10: vue4.DefineComponent<Props$29, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {} & {
|
|
619
619
|
"tab-click": (tabId: string) => any;
|
|
620
|
-
}, string,
|
|
620
|
+
}, string, vue4.PublicProps, Readonly<Props$29> & Readonly<{
|
|
621
621
|
"onTab-click"?: ((tabId: string) => any) | undefined;
|
|
622
622
|
}>, {
|
|
623
623
|
activeTab: string;
|
|
624
|
-
}, {}, {}, {}, string,
|
|
624
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
625
625
|
declare const __VLS_export$101: __VLS_WithSlots$10<typeof __VLS_base$10, __VLS_Slots$10>;
|
|
626
626
|
declare const _default$2: typeof __VLS_export$101;
|
|
627
627
|
type __VLS_WithSlots$10<T, S> = T & {
|
|
@@ -637,7 +637,7 @@ type __VLS_Slots$9 = {} & {
|
|
|
637
637
|
} & {
|
|
638
638
|
default?: (props: typeof __VLS_10) => any;
|
|
639
639
|
};
|
|
640
|
-
declare const __VLS_base$9:
|
|
640
|
+
declare const __VLS_base$9: vue4.DefineComponent<vue4.ExtractPropTypes<{
|
|
641
641
|
to: {
|
|
642
642
|
type: StringConstructor;
|
|
643
643
|
required: true;
|
|
@@ -650,7 +650,7 @@ declare const __VLS_base$9: vue0.DefineComponent<vue0.ExtractPropTypes<{
|
|
|
650
650
|
type: StringConstructor;
|
|
651
651
|
default: string;
|
|
652
652
|
};
|
|
653
|
-
}>, {}, {}, {}, {},
|
|
653
|
+
}>, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<vue4.ExtractPropTypes<{
|
|
654
654
|
to: {
|
|
655
655
|
type: StringConstructor;
|
|
656
656
|
required: true;
|
|
@@ -666,7 +666,7 @@ declare const __VLS_base$9: vue0.DefineComponent<vue0.ExtractPropTypes<{
|
|
|
666
666
|
}>> & Readonly<{}>, {
|
|
667
667
|
activeClass: string;
|
|
668
668
|
exactActiveClass: string;
|
|
669
|
-
}, {}, {}, {}, string,
|
|
669
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
670
670
|
declare const __VLS_export$100: __VLS_WithSlots$9<typeof __VLS_base$9, __VLS_Slots$9>;
|
|
671
671
|
declare const _default$3: typeof __VLS_export$100;
|
|
672
672
|
type __VLS_WithSlots$9<T, S> = T & {
|
|
@@ -706,13 +706,13 @@ declare var __VLS_16: `icon-${string}`, __VLS_17: {}, __VLS_20: `icon-${string}`
|
|
|
706
706
|
type __VLS_Slots$8 = {} & { [K in NonNullable<typeof __VLS_16>]?: (props: typeof __VLS_17) => any } & { [K in NonNullable<typeof __VLS_20>]?: (props: typeof __VLS_21$1) => any } & {
|
|
707
707
|
actions?: (props: typeof __VLS_23) => any;
|
|
708
708
|
};
|
|
709
|
-
declare const __VLS_base$8:
|
|
709
|
+
declare const __VLS_base$8: vue4.DefineComponent<Props$28, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {} & {
|
|
710
710
|
"tab-click": (tabId: string) => any;
|
|
711
|
-
}, string,
|
|
711
|
+
}, string, vue4.PublicProps, Readonly<Props$28> & Readonly<{
|
|
712
712
|
"onTab-click"?: ((tabId: string) => any) | undefined;
|
|
713
713
|
}>, {
|
|
714
714
|
activeTab: string;
|
|
715
|
-
}, {}, {}, {}, string,
|
|
715
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
716
716
|
declare const __VLS_export$99: __VLS_WithSlots$8<typeof __VLS_base$8, __VLS_Slots$8>;
|
|
717
717
|
declare const _default$4: typeof __VLS_export$99;
|
|
718
718
|
type __VLS_WithSlots$8<T, S> = T & {
|
|
@@ -732,13 +732,13 @@ type __VLS_Slots$7 = {} & {
|
|
|
732
732
|
} & {
|
|
733
733
|
default?: (props: typeof __VLS_3$1) => any;
|
|
734
734
|
};
|
|
735
|
-
declare const __VLS_base$7:
|
|
735
|
+
declare const __VLS_base$7: vue4.DefineComponent<Props$27, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {
|
|
736
736
|
close: () => any;
|
|
737
|
-
}, string,
|
|
737
|
+
}, string, vue4.PublicProps, Readonly<Props$27> & Readonly<{
|
|
738
738
|
onClose?: (() => any) | undefined;
|
|
739
739
|
}>, {
|
|
740
740
|
title: string;
|
|
741
|
-
}, {}, {}, {}, string,
|
|
741
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
742
742
|
declare const __VLS_export$98: __VLS_WithSlots$7<typeof __VLS_base$7, __VLS_Slots$7>;
|
|
743
743
|
declare const _default$8: typeof __VLS_export$98;
|
|
744
744
|
type __VLS_WithSlots$7<T, S> = T & {
|
|
@@ -762,11 +762,11 @@ declare var __VLS_1$5: {};
|
|
|
762
762
|
type __VLS_Slots$6 = {} & {
|
|
763
763
|
message?: (props: typeof __VLS_1$5) => any;
|
|
764
764
|
};
|
|
765
|
-
declare const __VLS_base$6:
|
|
765
|
+
declare const __VLS_base$6: vue4.DefineComponent<Props$26, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {
|
|
766
766
|
"update:modelValue": (value: boolean) => any;
|
|
767
767
|
confirm: () => any;
|
|
768
768
|
cancel: () => any;
|
|
769
|
-
}, string,
|
|
769
|
+
}, string, vue4.PublicProps, Readonly<Props$26> & Readonly<{
|
|
770
770
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
771
771
|
onConfirm?: (() => any) | undefined;
|
|
772
772
|
onCancel?: (() => any) | undefined;
|
|
@@ -778,7 +778,7 @@ declare const __VLS_base$6: vue0.DefineComponent<Props$26, {}, {}, {}, {}, vue0.
|
|
|
778
778
|
processingText: string;
|
|
779
779
|
confirmButtonClass: string;
|
|
780
780
|
isProcessing: boolean;
|
|
781
|
-
}, {}, {}, {}, string,
|
|
781
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
782
782
|
declare const __VLS_export$97: __VLS_WithSlots$6<typeof __VLS_base$6, __VLS_Slots$6>;
|
|
783
783
|
declare const _default$12: typeof __VLS_export$97;
|
|
784
784
|
type __VLS_WithSlots$6<T, S> = T & {
|
|
@@ -798,9 +798,9 @@ interface Props$25 {
|
|
|
798
798
|
onPrevious?: () => void;
|
|
799
799
|
onNext?: () => void;
|
|
800
800
|
}
|
|
801
|
-
declare const __VLS_export$96:
|
|
801
|
+
declare const __VLS_export$96: vue4.DefineComponent<Props$25, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {
|
|
802
802
|
close: () => any;
|
|
803
|
-
}, string,
|
|
803
|
+
}, string, vue4.PublicProps, Readonly<Props$25> & Readonly<{
|
|
804
804
|
onClose?: (() => any) | undefined;
|
|
805
805
|
}>, {
|
|
806
806
|
imageSrc: string;
|
|
@@ -810,7 +810,7 @@ declare const __VLS_export$96: vue0.DefineComponent<Props$25, {}, {}, {}, {}, vu
|
|
|
810
810
|
onDownload: () => void;
|
|
811
811
|
onPrevious: () => void;
|
|
812
812
|
onNext: () => void;
|
|
813
|
-
}, {}, {}, {}, string,
|
|
813
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
814
814
|
declare const _default$44: typeof __VLS_export$96;
|
|
815
815
|
//#endregion
|
|
816
816
|
//#region src/components/InputModal.vue.d.ts
|
|
@@ -827,11 +827,11 @@ interface Props$24 {
|
|
|
827
827
|
error?: string;
|
|
828
828
|
initialValue?: string;
|
|
829
829
|
}
|
|
830
|
-
declare const __VLS_export$95:
|
|
830
|
+
declare const __VLS_export$95: vue4.DefineComponent<Props$24, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {
|
|
831
831
|
"update:modelValue": (value: boolean) => any;
|
|
832
832
|
confirm: (value: string) => any;
|
|
833
833
|
cancel: () => any;
|
|
834
|
-
}, string,
|
|
834
|
+
}, string, vue4.PublicProps, Readonly<Props$24> & Readonly<{
|
|
835
835
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
836
836
|
onConfirm?: ((value: string) => any) | undefined;
|
|
837
837
|
onCancel?: (() => any) | undefined;
|
|
@@ -846,11 +846,11 @@ declare const __VLS_export$95: vue0.DefineComponent<Props$24, {}, {}, {}, {}, vu
|
|
|
846
846
|
placeholder: string;
|
|
847
847
|
error: string;
|
|
848
848
|
initialValue: string;
|
|
849
|
-
}, {}, {}, {}, string,
|
|
849
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
850
850
|
declare const _default$47: typeof __VLS_export$95;
|
|
851
851
|
//#endregion
|
|
852
852
|
//#region src/components/LoginButton.vue.d.ts
|
|
853
|
-
declare const __VLS_export$94:
|
|
853
|
+
declare const __VLS_export$94: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
854
854
|
declare const _default$50: typeof __VLS_export$94;
|
|
855
855
|
//#endregion
|
|
856
856
|
//#region src/composables/useBreadcrumbs.d.ts
|
|
@@ -888,7 +888,7 @@ type __VLS_Slots$5 = {} & {
|
|
|
888
888
|
} & {
|
|
889
889
|
'mobile-status'?: (props: typeof __VLS_21) => any;
|
|
890
890
|
};
|
|
891
|
-
declare const __VLS_base$5:
|
|
891
|
+
declare const __VLS_base$5: vue4.DefineComponent<Props$23, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$23> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
892
892
|
declare const __VLS_export$93: __VLS_WithSlots$5<typeof __VLS_base$5, __VLS_Slots$5>;
|
|
893
893
|
declare const _default$53: typeof __VLS_export$93;
|
|
894
894
|
type __VLS_WithSlots$5<T, S> = T & {
|
|
@@ -898,35 +898,35 @@ type __VLS_WithSlots$5<T, S> = T & {
|
|
|
898
898
|
};
|
|
899
899
|
//#endregion
|
|
900
900
|
//#region src/components/NotFound.vue.d.ts
|
|
901
|
-
declare const __VLS_export$92:
|
|
901
|
+
declare const __VLS_export$92: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
902
902
|
declare const _default$54: typeof __VLS_export$92;
|
|
903
903
|
//#endregion
|
|
904
904
|
//#region src/components/RightSidebar.vue.d.ts
|
|
905
|
-
declare const __VLS_export$91:
|
|
905
|
+
declare const __VLS_export$91: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
906
906
|
declare const _default$63: typeof __VLS_export$91;
|
|
907
907
|
//#endregion
|
|
908
908
|
//#region src/components/Sidebar.vue.d.ts
|
|
909
|
-
declare const __VLS_export$90:
|
|
909
|
+
declare const __VLS_export$90: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
910
910
|
declare const _default$65: typeof __VLS_export$90;
|
|
911
911
|
//#endregion
|
|
912
912
|
//#region src/components/ThemePref.vue.d.ts
|
|
913
|
-
declare const __VLS_export$89:
|
|
913
|
+
declare const __VLS_export$89: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
914
914
|
declare const _default$95: typeof __VLS_export$89;
|
|
915
915
|
//#endregion
|
|
916
916
|
//#region src/layouts/Admin.vue.d.ts
|
|
917
|
-
declare const __VLS_export$88:
|
|
917
|
+
declare const __VLS_export$88: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
918
918
|
declare const _default$1: typeof __VLS_export$88;
|
|
919
919
|
//#endregion
|
|
920
920
|
//#region src/layouts/Auth.vue.d.ts
|
|
921
|
-
declare const __VLS_export$87:
|
|
921
|
+
declare const __VLS_export$87: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
922
922
|
declare const _default$7: typeof __VLS_export$87;
|
|
923
923
|
//#endregion
|
|
924
924
|
//#region src/layouts/Default.vue.d.ts
|
|
925
|
-
declare const __VLS_export$86:
|
|
925
|
+
declare const __VLS_export$86: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
926
926
|
declare const _default$34: typeof __VLS_export$86;
|
|
927
927
|
//#endregion
|
|
928
928
|
//#region src/layouts/InApp.vue.d.ts
|
|
929
|
-
declare const __VLS_export$85:
|
|
929
|
+
declare const __VLS_export$85: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
930
930
|
declare const _default$45: typeof __VLS_export$85;
|
|
931
931
|
//#endregion
|
|
932
932
|
//#region src/components/ui/FieldDisplay.vue.d.ts
|
|
@@ -935,7 +935,7 @@ type __VLS_Props$11 = {
|
|
|
935
935
|
value?: string | number | null;
|
|
936
936
|
fullWidth?: boolean;
|
|
937
937
|
};
|
|
938
|
-
declare const __VLS_export$84:
|
|
938
|
+
declare const __VLS_export$84: vue4.DefineComponent<__VLS_Props$11, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<__VLS_Props$11> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
939
939
|
declare const _default$39: typeof __VLS_export$84;
|
|
940
940
|
//#endregion
|
|
941
941
|
//#region src/components/ui/FieldGroup.vue.d.ts
|
|
@@ -946,7 +946,7 @@ declare var __VLS_1$4: {};
|
|
|
946
946
|
type __VLS_Slots$4 = {} & {
|
|
947
947
|
default?: (props: typeof __VLS_1$4) => any;
|
|
948
948
|
};
|
|
949
|
-
declare const __VLS_base$4:
|
|
949
|
+
declare const __VLS_base$4: vue4.DefineComponent<__VLS_Props$10, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<__VLS_Props$10> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
950
950
|
declare const __VLS_export$83: __VLS_WithSlots$4<typeof __VLS_base$4, __VLS_Slots$4>;
|
|
951
951
|
declare const _default$40: typeof __VLS_export$83;
|
|
952
952
|
type __VLS_WithSlots$4<T, S> = T & {
|
|
@@ -960,17 +960,17 @@ declare var __VLS_1$3: {};
|
|
|
960
960
|
type __VLS_Slots$3 = {} & {
|
|
961
961
|
default?: (props: typeof __VLS_1$3) => any;
|
|
962
962
|
};
|
|
963
|
-
declare const __VLS_base$3:
|
|
963
|
+
declare const __VLS_base$3: vue4.DefineComponent<vue4.ExtractPropTypes<{
|
|
964
964
|
title: {
|
|
965
965
|
type: StringConstructor;
|
|
966
966
|
required: true;
|
|
967
967
|
};
|
|
968
|
-
}>, {}, {}, {}, {},
|
|
968
|
+
}>, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<vue4.ExtractPropTypes<{
|
|
969
969
|
title: {
|
|
970
970
|
type: StringConstructor;
|
|
971
971
|
required: true;
|
|
972
972
|
};
|
|
973
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string,
|
|
973
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
974
974
|
declare const __VLS_export$82: __VLS_WithSlots$3<typeof __VLS_base$3, __VLS_Slots$3>;
|
|
975
975
|
declare const _default$41: typeof __VLS_export$82;
|
|
976
976
|
type __VLS_WithSlots$3<T, S> = T & {
|
|
@@ -1008,14 +1008,14 @@ declare const __VLS_export$81: <TApi extends DragoncoreApi = DragoncoreApi>(__VL
|
|
|
1008
1008
|
recordId: string;
|
|
1009
1009
|
recordType: RecordType;
|
|
1010
1010
|
config?: FileManagerConfig;
|
|
1011
|
-
}> &
|
|
1011
|
+
}> & vue4.PublicProps & (typeof globalThis extends {
|
|
1012
1012
|
__VLS_PROPS_FALLBACK: infer P;
|
|
1013
1013
|
} ? P : {});
|
|
1014
1014
|
expose: (exposed: {}) => void;
|
|
1015
1015
|
attrs: any;
|
|
1016
1016
|
slots: {};
|
|
1017
1017
|
emit: {};
|
|
1018
|
-
}>) =>
|
|
1018
|
+
}>) => vue4.VNode & {
|
|
1019
1019
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1020
1020
|
};
|
|
1021
1021
|
declare const _default$42: typeof __VLS_export$81;
|
|
@@ -1030,9 +1030,9 @@ interface Props$22 {
|
|
|
1030
1030
|
valuePlaceholder?: string;
|
|
1031
1031
|
error?: string;
|
|
1032
1032
|
}
|
|
1033
|
-
declare const __VLS_export$80:
|
|
1033
|
+
declare const __VLS_export$80: vue4.DefineComponent<Props$22, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {
|
|
1034
1034
|
"update:modelValue": (value: string | null) => any;
|
|
1035
|
-
}, string,
|
|
1035
|
+
}, string, vue4.PublicProps, Readonly<Props$22> & Readonly<{
|
|
1036
1036
|
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
1037
1037
|
}>, {
|
|
1038
1038
|
modelValue: string | null;
|
|
@@ -1041,7 +1041,7 @@ declare const __VLS_export$80: vue0.DefineComponent<Props$22, {}, {}, {}, {}, vu
|
|
|
1041
1041
|
helpText: string;
|
|
1042
1042
|
keyPlaceholder: string;
|
|
1043
1043
|
valuePlaceholder: string;
|
|
1044
|
-
}, {}, {}, {}, string,
|
|
1044
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
1045
1045
|
declare const _default$48: typeof __VLS_export$80;
|
|
1046
1046
|
//#endregion
|
|
1047
1047
|
//#region src/components/ui/LoadingErrorStates.vue.d.ts
|
|
@@ -1067,11 +1067,11 @@ type __VLS_Slots$2 = {} & {
|
|
|
1067
1067
|
} & {
|
|
1068
1068
|
error?: (props: typeof __VLS_3) => any;
|
|
1069
1069
|
};
|
|
1070
|
-
declare const __VLS_base$2:
|
|
1070
|
+
declare const __VLS_base$2: vue4.DefineComponent<__VLS_Props$9, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {
|
|
1071
1071
|
retry: () => any;
|
|
1072
|
-
}, string,
|
|
1072
|
+
}, string, vue4.PublicProps, Readonly<__VLS_Props$9> & Readonly<{
|
|
1073
1073
|
onRetry?: (() => any) | undefined;
|
|
1074
|
-
}>, {}, {}, {}, {}, string,
|
|
1074
|
+
}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
1075
1075
|
declare const __VLS_export$79: __VLS_WithSlots$2<typeof __VLS_base$2, __VLS_Slots$2>;
|
|
1076
1076
|
declare const _default$49: typeof __VLS_export$79;
|
|
1077
1077
|
type __VLS_WithSlots$2<T, S> = T & {
|
|
@@ -1123,7 +1123,7 @@ type __VLS_Props$8 = {
|
|
|
1123
1123
|
changedFields: PropertyChange[];
|
|
1124
1124
|
config?: RecordChangesSummaryConfig;
|
|
1125
1125
|
};
|
|
1126
|
-
declare const __VLS_export$78:
|
|
1126
|
+
declare const __VLS_export$78: vue4.DefineComponent<__VLS_Props$8, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<__VLS_Props$8> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
1127
1127
|
declare const _default$58: typeof __VLS_export$78;
|
|
1128
1128
|
//#endregion
|
|
1129
1129
|
//#region src/components/ui/RecordVersionListConfig.d.ts
|
|
@@ -1158,7 +1158,7 @@ declare const __VLS_export$77: <T extends {
|
|
|
1158
1158
|
} & {
|
|
1159
1159
|
onRetry?: (() => any) | undefined;
|
|
1160
1160
|
"onLoad-more"?: (() => any) | undefined;
|
|
1161
|
-
}> &
|
|
1161
|
+
}> & vue4.PublicProps & (typeof globalThis extends {
|
|
1162
1162
|
__VLS_PROPS_FALLBACK: infer P;
|
|
1163
1163
|
} ? P : {});
|
|
1164
1164
|
expose: (exposed: {}) => void;
|
|
@@ -1173,7 +1173,7 @@ declare const __VLS_export$77: <T extends {
|
|
|
1173
1173
|
}) => any;
|
|
1174
1174
|
};
|
|
1175
1175
|
emit: ((evt: "retry") => void) & ((evt: "load-more") => void);
|
|
1176
|
-
}>) =>
|
|
1176
|
+
}>) => vue4.VNode & {
|
|
1177
1177
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1178
1178
|
};
|
|
1179
1179
|
declare const _default$59: typeof __VLS_export$77;
|
|
@@ -1194,7 +1194,7 @@ declare const __VLS_export$76: <TRecord extends Record<string, any>, TVersion ex
|
|
|
1194
1194
|
isRestoring?: boolean;
|
|
1195
1195
|
error?: Error | null;
|
|
1196
1196
|
config?: RecordVersionViewerConfig;
|
|
1197
|
-
}> &
|
|
1197
|
+
}> & vue4.PublicProps & (typeof globalThis extends {
|
|
1198
1198
|
__VLS_PROPS_FALLBACK: infer P;
|
|
1199
1199
|
} ? P : {});
|
|
1200
1200
|
expose: (exposed: {}) => void;
|
|
@@ -1227,7 +1227,7 @@ declare const __VLS_export$76: <TRecord extends Record<string, any>, TVersion ex
|
|
|
1227
1227
|
}) => any;
|
|
1228
1228
|
};
|
|
1229
1229
|
emit: {};
|
|
1230
|
-
}>) =>
|
|
1230
|
+
}>) => vue4.VNode & {
|
|
1231
1231
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1232
1232
|
};
|
|
1233
1233
|
declare const _default$60: typeof __VLS_export$76;
|
|
@@ -1241,7 +1241,7 @@ declare var __VLS_1$1: {};
|
|
|
1241
1241
|
type __VLS_Slots$1 = {} & {
|
|
1242
1242
|
default?: (props: typeof __VLS_1$1) => any;
|
|
1243
1243
|
};
|
|
1244
|
-
declare const __VLS_base$1:
|
|
1244
|
+
declare const __VLS_base$1: vue4.DefineComponent<__VLS_Props$7, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<__VLS_Props$7> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
1245
1245
|
declare const __VLS_export$75: __VLS_WithSlots$1<typeof __VLS_base$1, __VLS_Slots$1>;
|
|
1246
1246
|
declare const _default$78: typeof __VLS_export$75;
|
|
1247
1247
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
@@ -1255,7 +1255,7 @@ declare var __VLS_1: {};
|
|
|
1255
1255
|
type __VLS_Slots = {} & {
|
|
1256
1256
|
default?: (props: typeof __VLS_1) => any;
|
|
1257
1257
|
};
|
|
1258
|
-
declare const __VLS_base:
|
|
1258
|
+
declare const __VLS_base: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
1259
1259
|
declare const __VLS_export$74: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
1260
1260
|
declare const _default$101: typeof __VLS_export$74;
|
|
1261
1261
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -1295,9 +1295,9 @@ interface UserTeamMembersResponse {
|
|
|
1295
1295
|
declare function useUserLookup<TApi extends Record<string, any> = DragoncoreApi>(queryFn: QueryFunction<TApi, UserTeamMembersResponse>, options?: Omit<UseQueryOptions, 'cacheKey'> & {
|
|
1296
1296
|
cacheKey?: string;
|
|
1297
1297
|
}): {
|
|
1298
|
-
userTeamMembers:
|
|
1299
|
-
isUserTeamMembersLoading:
|
|
1300
|
-
userMap:
|
|
1298
|
+
userTeamMembers: vue4.ShallowRef<UserTeamMembersResponse | null>;
|
|
1299
|
+
isUserTeamMembersLoading: vue4.ShallowRef<boolean>;
|
|
1300
|
+
userMap: vue4.ComputedRef<Map<string, string>>;
|
|
1301
1301
|
getUserName: (userId: string | null | undefined) => string | null;
|
|
1302
1302
|
getUserNameWithFallback: (userId: string | null | undefined, fallback?: string) => string;
|
|
1303
1303
|
};
|
|
@@ -1578,7 +1578,7 @@ declare const leadOrStaffOnly: NavigationGuard;
|
|
|
1578
1578
|
declare const userRoutes: Array<ExtendedRouteRecordRaw>;
|
|
1579
1579
|
//#endregion
|
|
1580
1580
|
//#region src/slices/user/features/user_profile/UserProfilePage.vue.d.ts
|
|
1581
|
-
declare const __VLS_export$73:
|
|
1581
|
+
declare const __VLS_export$73: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
1582
1582
|
declare const _default$97: typeof __VLS_export$73;
|
|
1583
1583
|
//#endregion
|
|
1584
1584
|
//#region src/slices/user/features/user_profile/userProfileSchema.d.ts
|
|
@@ -1602,7 +1602,7 @@ declare const userProfileSchemaWithMetadata: z.ZodObject<{
|
|
|
1602
1602
|
}>;
|
|
1603
1603
|
//#endregion
|
|
1604
1604
|
//#region src/slices/user/features/change_password/ChangePasswordPage.vue.d.ts
|
|
1605
|
-
declare const __VLS_export$72:
|
|
1605
|
+
declare const __VLS_export$72: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
1606
1606
|
declare const _default$10: typeof __VLS_export$72;
|
|
1607
1607
|
//#endregion
|
|
1608
1608
|
//#region src/slices/user/features/change_password/changePasswordSchema.d.ts
|
|
@@ -1652,11 +1652,11 @@ declare const changePasswordSchemaWithMetadata: z.ZodObject<{
|
|
|
1652
1652
|
}>;
|
|
1653
1653
|
//#endregion
|
|
1654
1654
|
//#region src/slices/user/features/Appearance.vue.d.ts
|
|
1655
|
-
declare const __VLS_export$71:
|
|
1655
|
+
declare const __VLS_export$71: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
1656
1656
|
declare const _default$5: typeof __VLS_export$71;
|
|
1657
1657
|
//#endregion
|
|
1658
1658
|
//#region src/slices/team/CreateTeamForm.vue.d.ts
|
|
1659
|
-
declare const __VLS_export$70:
|
|
1659
|
+
declare const __VLS_export$70: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
1660
1660
|
declare const _default$15: typeof __VLS_export$70;
|
|
1661
1661
|
//#endregion
|
|
1662
1662
|
//#region src/slices/team/EditTeamForm.vue.d.ts
|
|
@@ -1665,7 +1665,7 @@ interface Props$21 {
|
|
|
1665
1665
|
isLoading?: boolean;
|
|
1666
1666
|
error?: Error | null;
|
|
1667
1667
|
}
|
|
1668
|
-
declare const __VLS_export$69:
|
|
1668
|
+
declare const __VLS_export$69: vue4.DefineComponent<Props$21, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$21> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
1669
1669
|
declare const _default$36: typeof __VLS_export$69;
|
|
1670
1670
|
//#endregion
|
|
1671
1671
|
//#region src/slices/team/recordVersionRowSchema.d.ts
|
|
@@ -1684,8 +1684,8 @@ declare const recordVersionRowSchemaWithMetadata: z.ZodObject<{
|
|
|
1684
1684
|
id: string;
|
|
1685
1685
|
operation: string;
|
|
1686
1686
|
record_id: string;
|
|
1687
|
-
record_type: string;
|
|
1688
1687
|
recorded_at: string;
|
|
1688
|
+
record_type: string;
|
|
1689
1689
|
record?: string | null | undefined;
|
|
1690
1690
|
old_record?: string | null | undefined;
|
|
1691
1691
|
auth_uid?: string | null | undefined;
|
|
@@ -1695,8 +1695,8 @@ declare const recordVersionRowSchemaWithMetadata: z.ZodObject<{
|
|
|
1695
1695
|
id: string;
|
|
1696
1696
|
operation: string;
|
|
1697
1697
|
record_id: string;
|
|
1698
|
-
record_type: string;
|
|
1699
1698
|
recorded_at: string;
|
|
1699
|
+
record_type: string;
|
|
1700
1700
|
record?: string | null | undefined;
|
|
1701
1701
|
old_record?: string | null | undefined;
|
|
1702
1702
|
auth_uid?: string | null | undefined;
|
|
@@ -1705,23 +1705,23 @@ declare const recordVersionRowSchemaWithMetadata: z.ZodObject<{
|
|
|
1705
1705
|
}>;
|
|
1706
1706
|
//#endregion
|
|
1707
1707
|
//#region src/slices/team/TeamAttachmentsTab.vue.d.ts
|
|
1708
|
-
declare const __VLS_export$68:
|
|
1708
|
+
declare const __VLS_export$68: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
1709
1709
|
declare const _default$87: typeof __VLS_export$68;
|
|
1710
1710
|
//#endregion
|
|
1711
1711
|
//#region src/slices/team/teamFiltersMetadata.d.ts
|
|
1712
|
-
declare const teamFiltersSchemaWithMetadata:
|
|
1713
|
-
first:
|
|
1714
|
-
after:
|
|
1715
|
-
sortBy:
|
|
1716
|
-
sortDirection:
|
|
1717
|
-
paginationToken:
|
|
1712
|
+
declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
1713
|
+
first: zod0.ZodOptional<zod0.ZodNumber>;
|
|
1714
|
+
after: zod0.ZodOptional<zod0.ZodString>;
|
|
1715
|
+
sortBy: zod0.ZodOptional<zod0.ZodString>;
|
|
1716
|
+
sortDirection: zod0.ZodOptional<zod0.ZodEnum<["asc", "desc"]>>;
|
|
1717
|
+
paginationToken: zod0.ZodOptional<zod0.ZodString>;
|
|
1718
1718
|
} & {
|
|
1719
|
-
unique_name:
|
|
1720
|
-
operator:
|
|
1721
|
-
value:
|
|
1722
|
-
values:
|
|
1723
|
-
caseSensitive:
|
|
1724
|
-
}, "strip",
|
|
1719
|
+
unique_name: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
1720
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1721
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
1722
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
1723
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
1724
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
1725
1725
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1726
1726
|
values?: string[] | undefined;
|
|
1727
1727
|
value?: string | undefined;
|
|
@@ -1742,12 +1742,12 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
1742
1742
|
value?: string | undefined;
|
|
1743
1743
|
caseSensitive?: boolean | undefined;
|
|
1744
1744
|
}>>;
|
|
1745
|
-
display_name:
|
|
1746
|
-
operator:
|
|
1747
|
-
value:
|
|
1748
|
-
values:
|
|
1749
|
-
caseSensitive:
|
|
1750
|
-
}, "strip",
|
|
1745
|
+
display_name: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
1746
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1747
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
1748
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
1749
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
1750
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
1751
1751
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1752
1752
|
values?: string[] | undefined;
|
|
1753
1753
|
value?: string | undefined;
|
|
@@ -1768,12 +1768,12 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
1768
1768
|
value?: string | undefined;
|
|
1769
1769
|
caseSensitive?: boolean | undefined;
|
|
1770
1770
|
}>>;
|
|
1771
|
-
legal_name:
|
|
1772
|
-
operator:
|
|
1773
|
-
value:
|
|
1774
|
-
values:
|
|
1775
|
-
caseSensitive:
|
|
1776
|
-
}, "strip",
|
|
1771
|
+
legal_name: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
1772
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1773
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
1774
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
1775
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
1776
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
1777
1777
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1778
1778
|
values?: string[] | undefined;
|
|
1779
1779
|
value?: string | undefined;
|
|
@@ -1794,12 +1794,12 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
1794
1794
|
value?: string | undefined;
|
|
1795
1795
|
caseSensitive?: boolean | undefined;
|
|
1796
1796
|
}>>;
|
|
1797
|
-
contact_email:
|
|
1798
|
-
operator:
|
|
1799
|
-
value:
|
|
1800
|
-
values:
|
|
1801
|
-
caseSensitive:
|
|
1802
|
-
}, "strip",
|
|
1797
|
+
contact_email: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
1798
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1799
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
1800
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
1801
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
1802
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
1803
1803
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1804
1804
|
values?: string[] | undefined;
|
|
1805
1805
|
value?: string | undefined;
|
|
@@ -1820,12 +1820,12 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
1820
1820
|
value?: string | undefined;
|
|
1821
1821
|
caseSensitive?: boolean | undefined;
|
|
1822
1822
|
}>>;
|
|
1823
|
-
address_city:
|
|
1824
|
-
operator:
|
|
1825
|
-
value:
|
|
1826
|
-
values:
|
|
1827
|
-
caseSensitive:
|
|
1828
|
-
}, "strip",
|
|
1823
|
+
address_city: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
1824
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1825
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
1826
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
1827
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
1828
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
1829
1829
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1830
1830
|
values?: string[] | undefined;
|
|
1831
1831
|
value?: string | undefined;
|
|
@@ -1846,12 +1846,12 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
1846
1846
|
value?: string | undefined;
|
|
1847
1847
|
caseSensitive?: boolean | undefined;
|
|
1848
1848
|
}>>;
|
|
1849
|
-
address_zip:
|
|
1850
|
-
operator:
|
|
1851
|
-
value:
|
|
1852
|
-
values:
|
|
1853
|
-
caseSensitive:
|
|
1854
|
-
}, "strip",
|
|
1849
|
+
address_zip: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
1850
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1851
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
1852
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
1853
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
1854
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
1855
1855
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1856
1856
|
values?: string[] | undefined;
|
|
1857
1857
|
value?: string | undefined;
|
|
@@ -1872,13 +1872,13 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
1872
1872
|
value?: string | undefined;
|
|
1873
1873
|
caseSensitive?: boolean | undefined;
|
|
1874
1874
|
}>>;
|
|
1875
|
-
includeArchived:
|
|
1876
|
-
values:
|
|
1877
|
-
caseSensitive:
|
|
1875
|
+
includeArchived: zod0.ZodOptional<zod0.ZodObject<{
|
|
1876
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
1877
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
1878
1878
|
} & {
|
|
1879
|
-
operator:
|
|
1880
|
-
value:
|
|
1881
|
-
}, "strip",
|
|
1879
|
+
operator: zod0.ZodEnum<["eq", "ne"]>;
|
|
1880
|
+
value: zod0.ZodBoolean;
|
|
1881
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
1882
1882
|
value: boolean;
|
|
1883
1883
|
operator: "eq" | "ne";
|
|
1884
1884
|
values?: any[] | undefined;
|
|
@@ -1889,13 +1889,13 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
1889
1889
|
values?: any[] | undefined;
|
|
1890
1890
|
caseSensitive?: boolean | undefined;
|
|
1891
1891
|
}>>;
|
|
1892
|
-
created_at:
|
|
1893
|
-
value:
|
|
1894
|
-
values:
|
|
1895
|
-
caseSensitive:
|
|
1892
|
+
created_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
1893
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
1894
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
1895
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
1896
1896
|
} & {
|
|
1897
|
-
operator:
|
|
1898
|
-
}, "strip",
|
|
1897
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
1898
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
1899
1899
|
operator: "isEmpty" | "isNotEmpty";
|
|
1900
1900
|
values?: any[] | undefined;
|
|
1901
1901
|
value?: any;
|
|
@@ -1915,13 +1915,13 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
1915
1915
|
values?: any[] | undefined;
|
|
1916
1916
|
value?: any;
|
|
1917
1917
|
caseSensitive?: boolean | undefined;
|
|
1918
|
-
}>,
|
|
1919
|
-
value:
|
|
1920
|
-
caseSensitive:
|
|
1918
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
1919
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
1920
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
1921
1921
|
} & {
|
|
1922
|
-
operator:
|
|
1923
|
-
values:
|
|
1924
|
-
}, "strip",
|
|
1922
|
+
operator: zod0.ZodLiteral<"between">;
|
|
1923
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
1924
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
1925
1925
|
values: string[];
|
|
1926
1926
|
operator: "between";
|
|
1927
1927
|
value?: any;
|
|
@@ -1951,13 +1951,13 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
1951
1951
|
operator: "between";
|
|
1952
1952
|
value?: any;
|
|
1953
1953
|
caseSensitive?: boolean | undefined;
|
|
1954
|
-
}>,
|
|
1955
|
-
values:
|
|
1956
|
-
caseSensitive:
|
|
1954
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
1955
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
1956
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
1957
1957
|
} & {
|
|
1958
|
-
operator:
|
|
1959
|
-
value:
|
|
1960
|
-
}, "strip",
|
|
1958
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
1959
|
+
value: zod0.ZodString;
|
|
1960
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
1961
1961
|
value: string;
|
|
1962
1962
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1963
1963
|
values?: any[] | undefined;
|
|
@@ -1978,13 +1978,13 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
1978
1978
|
values?: any[] | undefined;
|
|
1979
1979
|
caseSensitive?: boolean | undefined;
|
|
1980
1980
|
}>]>>;
|
|
1981
|
-
updated_at:
|
|
1982
|
-
value:
|
|
1983
|
-
values:
|
|
1984
|
-
caseSensitive:
|
|
1981
|
+
updated_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
1982
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
1983
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
1984
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
1985
1985
|
} & {
|
|
1986
|
-
operator:
|
|
1987
|
-
}, "strip",
|
|
1986
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
1987
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
1988
1988
|
operator: "isEmpty" | "isNotEmpty";
|
|
1989
1989
|
values?: any[] | undefined;
|
|
1990
1990
|
value?: any;
|
|
@@ -2004,13 +2004,13 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2004
2004
|
values?: any[] | undefined;
|
|
2005
2005
|
value?: any;
|
|
2006
2006
|
caseSensitive?: boolean | undefined;
|
|
2007
|
-
}>,
|
|
2008
|
-
value:
|
|
2009
|
-
caseSensitive:
|
|
2007
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
2008
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
2009
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2010
2010
|
} & {
|
|
2011
|
-
operator:
|
|
2012
|
-
values:
|
|
2013
|
-
}, "strip",
|
|
2011
|
+
operator: zod0.ZodLiteral<"between">;
|
|
2012
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
2013
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2014
2014
|
values: string[];
|
|
2015
2015
|
operator: "between";
|
|
2016
2016
|
value?: any;
|
|
@@ -2040,13 +2040,13 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2040
2040
|
operator: "between";
|
|
2041
2041
|
value?: any;
|
|
2042
2042
|
caseSensitive?: boolean | undefined;
|
|
2043
|
-
}>,
|
|
2044
|
-
values:
|
|
2045
|
-
caseSensitive:
|
|
2043
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
2044
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
2045
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2046
2046
|
} & {
|
|
2047
|
-
operator:
|
|
2048
|
-
value:
|
|
2049
|
-
}, "strip",
|
|
2047
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
2048
|
+
value: zod0.ZodString;
|
|
2049
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2050
2050
|
value: string;
|
|
2051
2051
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2052
2052
|
values?: any[] | undefined;
|
|
@@ -2067,13 +2067,13 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2067
2067
|
values?: any[] | undefined;
|
|
2068
2068
|
caseSensitive?: boolean | undefined;
|
|
2069
2069
|
}>]>>;
|
|
2070
|
-
archived_at:
|
|
2071
|
-
value:
|
|
2072
|
-
values:
|
|
2073
|
-
caseSensitive:
|
|
2070
|
+
archived_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
2071
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
2072
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
2073
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2074
2074
|
} & {
|
|
2075
|
-
operator:
|
|
2076
|
-
}, "strip",
|
|
2075
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
2076
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2077
2077
|
operator: "isEmpty" | "isNotEmpty";
|
|
2078
2078
|
values?: any[] | undefined;
|
|
2079
2079
|
value?: any;
|
|
@@ -2093,13 +2093,13 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2093
2093
|
values?: any[] | undefined;
|
|
2094
2094
|
value?: any;
|
|
2095
2095
|
caseSensitive?: boolean | undefined;
|
|
2096
|
-
}>,
|
|
2097
|
-
value:
|
|
2098
|
-
caseSensitive:
|
|
2096
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
2097
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
2098
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2099
2099
|
} & {
|
|
2100
|
-
operator:
|
|
2101
|
-
values:
|
|
2102
|
-
}, "strip",
|
|
2100
|
+
operator: zod0.ZodLiteral<"between">;
|
|
2101
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
2102
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2103
2103
|
values: string[];
|
|
2104
2104
|
operator: "between";
|
|
2105
2105
|
value?: any;
|
|
@@ -2129,13 +2129,13 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2129
2129
|
operator: "between";
|
|
2130
2130
|
value?: any;
|
|
2131
2131
|
caseSensitive?: boolean | undefined;
|
|
2132
|
-
}>,
|
|
2133
|
-
values:
|
|
2134
|
-
caseSensitive:
|
|
2132
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
2133
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
2134
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2135
2135
|
} & {
|
|
2136
|
-
operator:
|
|
2137
|
-
value:
|
|
2138
|
-
}, "strip",
|
|
2136
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
2137
|
+
value: zod0.ZodString;
|
|
2138
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2139
2139
|
value: string;
|
|
2140
2140
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2141
2141
|
values?: any[] | undefined;
|
|
@@ -2156,54 +2156,22 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2156
2156
|
values?: any[] | undefined;
|
|
2157
2157
|
caseSensitive?: boolean | undefined;
|
|
2158
2158
|
}>]>>;
|
|
2159
|
-
search:
|
|
2160
|
-
query:
|
|
2161
|
-
searchableFields:
|
|
2162
|
-
}, "strip",
|
|
2159
|
+
search: zod0.ZodOptional<zod0.ZodObject<{
|
|
2160
|
+
query: zod0.ZodString;
|
|
2161
|
+
searchableFields: zod0.ZodArray<zod0.ZodString, "many">;
|
|
2162
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2163
2163
|
query: string;
|
|
2164
2164
|
searchableFields: string[];
|
|
2165
2165
|
}, {
|
|
2166
2166
|
query: string;
|
|
2167
2167
|
searchableFields: string[];
|
|
2168
2168
|
}>>;
|
|
2169
|
-
}, "strip",
|
|
2170
|
-
created_at?: {
|
|
2171
|
-
operator: "isEmpty" | "isNotEmpty";
|
|
2172
|
-
values?: any[] | undefined;
|
|
2173
|
-
value?: any;
|
|
2174
|
-
caseSensitive?: boolean | undefined;
|
|
2175
|
-
} | {
|
|
2176
|
-
values: string[];
|
|
2177
|
-
operator: "between";
|
|
2178
|
-
value?: any;
|
|
2179
|
-
caseSensitive?: boolean | undefined;
|
|
2180
|
-
} | {
|
|
2181
|
-
value: string;
|
|
2182
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2183
|
-
values?: any[] | undefined;
|
|
2184
|
-
caseSensitive?: boolean | undefined;
|
|
2185
|
-
} | undefined;
|
|
2169
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2186
2170
|
search?: {
|
|
2187
2171
|
query: string;
|
|
2188
2172
|
searchableFields: string[];
|
|
2189
2173
|
} | undefined;
|
|
2190
|
-
|
|
2191
|
-
operator: "isEmpty" | "isNotEmpty";
|
|
2192
|
-
values?: any[] | undefined;
|
|
2193
|
-
value?: any;
|
|
2194
|
-
caseSensitive?: boolean | undefined;
|
|
2195
|
-
} | {
|
|
2196
|
-
values: string[];
|
|
2197
|
-
operator: "between";
|
|
2198
|
-
value?: any;
|
|
2199
|
-
caseSensitive?: boolean | undefined;
|
|
2200
|
-
} | {
|
|
2201
|
-
value: string;
|
|
2202
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2203
|
-
values?: any[] | undefined;
|
|
2204
|
-
caseSensitive?: boolean | undefined;
|
|
2205
|
-
} | undefined;
|
|
2206
|
-
archived_at?: {
|
|
2174
|
+
created_at?: {
|
|
2207
2175
|
operator: "isEmpty" | "isNotEmpty";
|
|
2208
2176
|
values?: any[] | undefined;
|
|
2209
2177
|
value?: any;
|
|
@@ -2266,8 +2234,7 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2266
2234
|
values?: any[] | undefined;
|
|
2267
2235
|
caseSensitive?: boolean | undefined;
|
|
2268
2236
|
} | undefined;
|
|
2269
|
-
|
|
2270
|
-
created_at?: {
|
|
2237
|
+
updated_at?: {
|
|
2271
2238
|
operator: "isEmpty" | "isNotEmpty";
|
|
2272
2239
|
values?: any[] | undefined;
|
|
2273
2240
|
value?: any;
|
|
@@ -2283,11 +2250,7 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2283
2250
|
values?: any[] | undefined;
|
|
2284
2251
|
caseSensitive?: boolean | undefined;
|
|
2285
2252
|
} | undefined;
|
|
2286
|
-
|
|
2287
|
-
query: string;
|
|
2288
|
-
searchableFields: string[];
|
|
2289
|
-
} | undefined;
|
|
2290
|
-
updated_at?: {
|
|
2253
|
+
archived_at?: {
|
|
2291
2254
|
operator: "isEmpty" | "isNotEmpty";
|
|
2292
2255
|
values?: any[] | undefined;
|
|
2293
2256
|
value?: any;
|
|
@@ -2303,7 +2266,12 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2303
2266
|
values?: any[] | undefined;
|
|
2304
2267
|
caseSensitive?: boolean | undefined;
|
|
2305
2268
|
} | undefined;
|
|
2306
|
-
|
|
2269
|
+
}, {
|
|
2270
|
+
search?: {
|
|
2271
|
+
query: string;
|
|
2272
|
+
searchableFields: string[];
|
|
2273
|
+
} | undefined;
|
|
2274
|
+
created_at?: {
|
|
2307
2275
|
operator: "isEmpty" | "isNotEmpty";
|
|
2308
2276
|
values?: any[] | undefined;
|
|
2309
2277
|
value?: any;
|
|
@@ -2366,47 +2334,79 @@ declare const teamFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2366
2334
|
values?: any[] | undefined;
|
|
2367
2335
|
caseSensitive?: boolean | undefined;
|
|
2368
2336
|
} | undefined;
|
|
2337
|
+
updated_at?: {
|
|
2338
|
+
operator: "isEmpty" | "isNotEmpty";
|
|
2339
|
+
values?: any[] | undefined;
|
|
2340
|
+
value?: any;
|
|
2341
|
+
caseSensitive?: boolean | undefined;
|
|
2342
|
+
} | {
|
|
2343
|
+
values: string[];
|
|
2344
|
+
operator: "between";
|
|
2345
|
+
value?: any;
|
|
2346
|
+
caseSensitive?: boolean | undefined;
|
|
2347
|
+
} | {
|
|
2348
|
+
value: string;
|
|
2349
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2350
|
+
values?: any[] | undefined;
|
|
2351
|
+
caseSensitive?: boolean | undefined;
|
|
2352
|
+
} | undefined;
|
|
2353
|
+
archived_at?: {
|
|
2354
|
+
operator: "isEmpty" | "isNotEmpty";
|
|
2355
|
+
values?: any[] | undefined;
|
|
2356
|
+
value?: any;
|
|
2357
|
+
caseSensitive?: boolean | undefined;
|
|
2358
|
+
} | {
|
|
2359
|
+
values: string[];
|
|
2360
|
+
operator: "between";
|
|
2361
|
+
value?: any;
|
|
2362
|
+
caseSensitive?: boolean | undefined;
|
|
2363
|
+
} | {
|
|
2364
|
+
value: string;
|
|
2365
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2366
|
+
values?: any[] | undefined;
|
|
2367
|
+
caseSensitive?: boolean | undefined;
|
|
2368
|
+
} | undefined;
|
|
2369
2369
|
}>;
|
|
2370
2370
|
//#endregion
|
|
2371
2371
|
//#region src/slices/team/TeamHistoryTab.vue.d.ts
|
|
2372
|
-
declare const __VLS_export$67:
|
|
2372
|
+
declare const __VLS_export$67: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
2373
2373
|
declare const _default$88: typeof __VLS_export$67;
|
|
2374
2374
|
//#endregion
|
|
2375
2375
|
//#region src/slices/team/TeamList.vue.d.ts
|
|
2376
|
-
declare const __VLS_export$66:
|
|
2376
|
+
declare const __VLS_export$66: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
2377
2377
|
declare const _default$89: typeof __VLS_export$66;
|
|
2378
2378
|
//#endregion
|
|
2379
2379
|
//#region src/slices/team/TeamMembersTab.vue.d.ts
|
|
2380
|
-
declare const __VLS_export$65:
|
|
2380
|
+
declare const __VLS_export$65: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
2381
2381
|
declare const _default$92: typeof __VLS_export$65;
|
|
2382
2382
|
//#endregion
|
|
2383
2383
|
//#region src/slices/team/teamMetadata.d.ts
|
|
2384
|
-
declare const teamCreateSchemaWithMetadata:
|
|
2385
|
-
unique_name:
|
|
2386
|
-
display_name:
|
|
2387
|
-
legal_name:
|
|
2388
|
-
description:
|
|
2389
|
-
contact_name:
|
|
2390
|
-
contact_email:
|
|
2391
|
-
contact_business_phone:
|
|
2392
|
-
contact_mobile_phone:
|
|
2393
|
-
contact_time_zone:
|
|
2394
|
-
address_full:
|
|
2395
|
-
address_city:
|
|
2396
|
-
address_zip:
|
|
2397
|
-
twitter_username:
|
|
2398
|
-
url:
|
|
2399
|
-
logo:
|
|
2400
|
-
email_sent_from:
|
|
2401
|
-
email_reply_to:
|
|
2402
|
-
}, "strip",
|
|
2384
|
+
declare const teamCreateSchemaWithMetadata: zod0.ZodObject<{
|
|
2385
|
+
unique_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2386
|
+
display_name: zod0.ZodString;
|
|
2387
|
+
legal_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2388
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2389
|
+
contact_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2390
|
+
contact_email: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2391
|
+
contact_business_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2392
|
+
contact_mobile_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2393
|
+
contact_time_zone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2394
|
+
address_full: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2395
|
+
address_city: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2396
|
+
address_zip: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2397
|
+
twitter_username: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2398
|
+
url: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2399
|
+
logo: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2400
|
+
email_sent_from: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2401
|
+
email_reply_to: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2402
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2403
2403
|
display_name: string;
|
|
2404
|
-
description?: string | null | undefined;
|
|
2405
2404
|
unique_name?: string | null | undefined;
|
|
2406
2405
|
legal_name?: string | null | undefined;
|
|
2407
2406
|
contact_email?: string | null | undefined;
|
|
2408
2407
|
address_city?: string | null | undefined;
|
|
2409
2408
|
address_zip?: string | null | undefined;
|
|
2409
|
+
description?: string | null | undefined;
|
|
2410
2410
|
contact_name?: string | null | undefined;
|
|
2411
2411
|
contact_business_phone?: string | null | undefined;
|
|
2412
2412
|
contact_mobile_phone?: string | null | undefined;
|
|
@@ -2419,12 +2419,12 @@ declare const teamCreateSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2419
2419
|
email_reply_to?: string | null | undefined;
|
|
2420
2420
|
}, {
|
|
2421
2421
|
display_name: string;
|
|
2422
|
-
description?: string | null | undefined;
|
|
2423
2422
|
unique_name?: string | null | undefined;
|
|
2424
2423
|
legal_name?: string | null | undefined;
|
|
2425
2424
|
contact_email?: string | null | undefined;
|
|
2426
2425
|
address_city?: string | null | undefined;
|
|
2427
2426
|
address_zip?: string | null | undefined;
|
|
2427
|
+
description?: string | null | undefined;
|
|
2428
2428
|
contact_name?: string | null | undefined;
|
|
2429
2429
|
contact_business_phone?: string | null | undefined;
|
|
2430
2430
|
contact_mobile_phone?: string | null | undefined;
|
|
@@ -2436,35 +2436,35 @@ declare const teamCreateSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2436
2436
|
email_sent_from?: string | null | undefined;
|
|
2437
2437
|
email_reply_to?: string | null | undefined;
|
|
2438
2438
|
}>;
|
|
2439
|
-
declare const teamUpdateSchemaWithMetadata:
|
|
2440
|
-
unique_name:
|
|
2441
|
-
display_name:
|
|
2442
|
-
legal_name:
|
|
2443
|
-
description:
|
|
2444
|
-
contact_name:
|
|
2445
|
-
contact_email:
|
|
2446
|
-
contact_business_phone:
|
|
2447
|
-
contact_mobile_phone:
|
|
2448
|
-
contact_time_zone:
|
|
2449
|
-
address_full:
|
|
2450
|
-
address_city:
|
|
2451
|
-
address_zip:
|
|
2452
|
-
twitter_username:
|
|
2453
|
-
url:
|
|
2454
|
-
logo:
|
|
2455
|
-
email_sent_from:
|
|
2456
|
-
email_reply_to:
|
|
2439
|
+
declare const teamUpdateSchemaWithMetadata: zod0.ZodObject<{
|
|
2440
|
+
unique_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2441
|
+
display_name: zod0.ZodString;
|
|
2442
|
+
legal_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2443
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2444
|
+
contact_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2445
|
+
contact_email: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2446
|
+
contact_business_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2447
|
+
contact_mobile_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2448
|
+
contact_time_zone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2449
|
+
address_full: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2450
|
+
address_city: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2451
|
+
address_zip: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2452
|
+
twitter_username: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2453
|
+
url: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2454
|
+
logo: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2455
|
+
email_sent_from: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2456
|
+
email_reply_to: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2457
2457
|
} & {
|
|
2458
|
-
id:
|
|
2459
|
-
}, "strip",
|
|
2458
|
+
id: zod0.ZodString;
|
|
2459
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2460
2460
|
id: string;
|
|
2461
2461
|
display_name: string;
|
|
2462
|
-
description?: string | null | undefined;
|
|
2463
2462
|
unique_name?: string | null | undefined;
|
|
2464
2463
|
legal_name?: string | null | undefined;
|
|
2465
2464
|
contact_email?: string | null | undefined;
|
|
2466
2465
|
address_city?: string | null | undefined;
|
|
2467
2466
|
address_zip?: string | null | undefined;
|
|
2467
|
+
description?: string | null | undefined;
|
|
2468
2468
|
contact_name?: string | null | undefined;
|
|
2469
2469
|
contact_business_phone?: string | null | undefined;
|
|
2470
2470
|
contact_mobile_phone?: string | null | undefined;
|
|
@@ -2478,12 +2478,12 @@ declare const teamUpdateSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2478
2478
|
}, {
|
|
2479
2479
|
id: string;
|
|
2480
2480
|
display_name: string;
|
|
2481
|
-
description?: string | null | undefined;
|
|
2482
2481
|
unique_name?: string | null | undefined;
|
|
2483
2482
|
legal_name?: string | null | undefined;
|
|
2484
2483
|
contact_email?: string | null | undefined;
|
|
2485
2484
|
address_city?: string | null | undefined;
|
|
2486
2485
|
address_zip?: string | null | undefined;
|
|
2486
|
+
description?: string | null | undefined;
|
|
2487
2487
|
contact_name?: string | null | undefined;
|
|
2488
2488
|
contact_business_phone?: string | null | undefined;
|
|
2489
2489
|
contact_mobile_phone?: string | null | undefined;
|
|
@@ -2497,11 +2497,11 @@ declare const teamUpdateSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2497
2497
|
}>;
|
|
2498
2498
|
//#endregion
|
|
2499
2499
|
//#region src/slices/team/TeamNotesTab.vue.d.ts
|
|
2500
|
-
declare const __VLS_export$64:
|
|
2500
|
+
declare const __VLS_export$64: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
2501
2501
|
declare const _default$93: typeof __VLS_export$64;
|
|
2502
2502
|
//#endregion
|
|
2503
2503
|
//#region src/slices/team/TeamParent.vue.d.ts
|
|
2504
|
-
declare const __VLS_export$63:
|
|
2504
|
+
declare const __VLS_export$63: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
2505
2505
|
declare const _default$94: typeof __VLS_export$63;
|
|
2506
2506
|
//#endregion
|
|
2507
2507
|
//#region src/slices/team/teamRoutes.d.ts
|
|
@@ -2554,51 +2554,48 @@ declare const teamRoutes: Array<ExtendedRouteRecordRaw>;
|
|
|
2554
2554
|
* Reuse the existing TeamReadSchema from the validation library
|
|
2555
2555
|
* for the data table rows - don't recreate it!
|
|
2556
2556
|
*/
|
|
2557
|
-
declare const teamRowSchemaWithMetadata:
|
|
2558
|
-
unique_name:
|
|
2559
|
-
display_name:
|
|
2560
|
-
legal_name:
|
|
2561
|
-
description:
|
|
2562
|
-
contact_name:
|
|
2563
|
-
contact_email:
|
|
2564
|
-
contact_business_phone:
|
|
2565
|
-
contact_mobile_phone:
|
|
2566
|
-
contact_time_zone:
|
|
2567
|
-
address_full:
|
|
2568
|
-
address_city:
|
|
2569
|
-
address_zip:
|
|
2570
|
-
twitter_username:
|
|
2571
|
-
url:
|
|
2572
|
-
logo:
|
|
2573
|
-
email_sent_from:
|
|
2574
|
-
email_reply_to:
|
|
2557
|
+
declare const teamRowSchemaWithMetadata: zod0.ZodObject<{
|
|
2558
|
+
unique_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2559
|
+
display_name: zod0.ZodString;
|
|
2560
|
+
legal_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2561
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2562
|
+
contact_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2563
|
+
contact_email: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2564
|
+
contact_business_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2565
|
+
contact_mobile_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2566
|
+
contact_time_zone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2567
|
+
address_full: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2568
|
+
address_city: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2569
|
+
address_zip: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2570
|
+
twitter_username: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2571
|
+
url: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2572
|
+
logo: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2573
|
+
email_sent_from: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2574
|
+
email_reply_to: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2575
2575
|
} & {
|
|
2576
|
-
id:
|
|
2577
|
-
original_id:
|
|
2578
|
-
path:
|
|
2579
|
-
created_at:
|
|
2580
|
-
updated_at:
|
|
2581
|
-
created_by:
|
|
2582
|
-
updated_by:
|
|
2583
|
-
archived_at:
|
|
2584
|
-
archived_by:
|
|
2585
|
-
}, "strip",
|
|
2576
|
+
id: zod0.ZodString;
|
|
2577
|
+
original_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2578
|
+
path: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2579
|
+
created_at: zod0.ZodString;
|
|
2580
|
+
updated_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2581
|
+
created_by: zod0.ZodString;
|
|
2582
|
+
updated_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2583
|
+
archived_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2584
|
+
archived_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2585
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2586
2586
|
id: string;
|
|
2587
2587
|
created_at: string;
|
|
2588
|
-
created_by: string;
|
|
2589
2588
|
display_name: string;
|
|
2589
|
+
created_by: string;
|
|
2590
2590
|
path?: string | null | undefined;
|
|
2591
|
-
description?: string | null | undefined;
|
|
2592
|
-
original_id?: string | null | undefined;
|
|
2593
|
-
updated_by?: string | null | undefined;
|
|
2594
|
-
updated_at?: string | null | undefined;
|
|
2595
|
-
archived_by?: string | null | undefined;
|
|
2596
|
-
archived_at?: string | null | undefined;
|
|
2597
2591
|
unique_name?: string | null | undefined;
|
|
2598
2592
|
legal_name?: string | null | undefined;
|
|
2599
2593
|
contact_email?: string | null | undefined;
|
|
2600
2594
|
address_city?: string | null | undefined;
|
|
2601
2595
|
address_zip?: string | null | undefined;
|
|
2596
|
+
updated_at?: string | null | undefined;
|
|
2597
|
+
archived_at?: string | null | undefined;
|
|
2598
|
+
description?: string | null | undefined;
|
|
2602
2599
|
contact_name?: string | null | undefined;
|
|
2603
2600
|
contact_business_phone?: string | null | undefined;
|
|
2604
2601
|
contact_mobile_phone?: string | null | undefined;
|
|
@@ -2609,23 +2606,23 @@ declare const teamRowSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2609
2606
|
logo?: string | null | undefined;
|
|
2610
2607
|
email_sent_from?: string | null | undefined;
|
|
2611
2608
|
email_reply_to?: string | null | undefined;
|
|
2609
|
+
original_id?: string | null | undefined;
|
|
2610
|
+
updated_by?: string | null | undefined;
|
|
2611
|
+
archived_by?: string | null | undefined;
|
|
2612
2612
|
}, {
|
|
2613
2613
|
id: string;
|
|
2614
2614
|
created_at: string;
|
|
2615
|
-
created_by: string;
|
|
2616
2615
|
display_name: string;
|
|
2616
|
+
created_by: string;
|
|
2617
2617
|
path?: string | null | undefined;
|
|
2618
|
-
description?: string | null | undefined;
|
|
2619
|
-
original_id?: string | null | undefined;
|
|
2620
|
-
updated_by?: string | null | undefined;
|
|
2621
|
-
updated_at?: string | null | undefined;
|
|
2622
|
-
archived_by?: string | null | undefined;
|
|
2623
|
-
archived_at?: string | null | undefined;
|
|
2624
2618
|
unique_name?: string | null | undefined;
|
|
2625
2619
|
legal_name?: string | null | undefined;
|
|
2626
2620
|
contact_email?: string | null | undefined;
|
|
2627
2621
|
address_city?: string | null | undefined;
|
|
2628
2622
|
address_zip?: string | null | undefined;
|
|
2623
|
+
updated_at?: string | null | undefined;
|
|
2624
|
+
archived_at?: string | null | undefined;
|
|
2625
|
+
description?: string | null | undefined;
|
|
2629
2626
|
contact_name?: string | null | undefined;
|
|
2630
2627
|
contact_business_phone?: string | null | undefined;
|
|
2631
2628
|
contact_mobile_phone?: string | null | undefined;
|
|
@@ -2636,6 +2633,9 @@ declare const teamRowSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2636
2633
|
logo?: string | null | undefined;
|
|
2637
2634
|
email_sent_from?: string | null | undefined;
|
|
2638
2635
|
email_reply_to?: string | null | undefined;
|
|
2636
|
+
original_id?: string | null | undefined;
|
|
2637
|
+
updated_by?: string | null | undefined;
|
|
2638
|
+
archived_by?: string | null | undefined;
|
|
2639
2639
|
}>;
|
|
2640
2640
|
//#endregion
|
|
2641
2641
|
//#region src/slices/team/ViewTeam.vue.d.ts
|
|
@@ -2644,11 +2644,11 @@ interface Props$20 {
|
|
|
2644
2644
|
isLoading?: boolean;
|
|
2645
2645
|
error?: Error | null;
|
|
2646
2646
|
}
|
|
2647
|
-
declare const __VLS_export$62:
|
|
2647
|
+
declare const __VLS_export$62: vue4.DefineComponent<Props$20, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$20> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
2648
2648
|
declare const _default$99: typeof __VLS_export$62;
|
|
2649
2649
|
//#endregion
|
|
2650
2650
|
//#region src/slices/team/team_member/CreateTeamMemberForm.vue.d.ts
|
|
2651
|
-
declare const __VLS_export$61:
|
|
2651
|
+
declare const __VLS_export$61: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
2652
2652
|
declare const _default$16: typeof __VLS_export$61;
|
|
2653
2653
|
//#endregion
|
|
2654
2654
|
//#region src/slices/team/team_member/EditTeamMemberForm.vue.d.ts
|
|
@@ -2657,7 +2657,7 @@ interface Props$19 {
|
|
|
2657
2657
|
isLoading?: boolean;
|
|
2658
2658
|
error?: Error | null;
|
|
2659
2659
|
}
|
|
2660
|
-
declare const __VLS_export$60:
|
|
2660
|
+
declare const __VLS_export$60: vue4.DefineComponent<Props$19, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$19> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
2661
2661
|
declare const _default$37: typeof __VLS_export$60;
|
|
2662
2662
|
//#endregion
|
|
2663
2663
|
//#region src/slices/team/team_member/team_memberRoutes.d.ts
|
|
@@ -2686,20 +2686,20 @@ declare const teamMemberPaths: {
|
|
|
2686
2686
|
declare const teamMemberRoutes: Array<ExtendedRouteRecordRaw>;
|
|
2687
2687
|
//#endregion
|
|
2688
2688
|
//#region src/slices/team/team_member/teamMemberFiltersMetadata.d.ts
|
|
2689
|
-
declare const teamMemberFiltersSchemaWithMetadata:
|
|
2690
|
-
first:
|
|
2691
|
-
after:
|
|
2692
|
-
sortBy:
|
|
2693
|
-
sortDirection:
|
|
2694
|
-
paginationToken:
|
|
2689
|
+
declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
2690
|
+
first: zod0.ZodOptional<zod0.ZodNumber>;
|
|
2691
|
+
after: zod0.ZodOptional<zod0.ZodString>;
|
|
2692
|
+
sortBy: zod0.ZodOptional<zod0.ZodString>;
|
|
2693
|
+
sortDirection: zod0.ZodOptional<zod0.ZodEnum<["asc", "desc"]>>;
|
|
2694
|
+
paginationToken: zod0.ZodOptional<zod0.ZodString>;
|
|
2695
2695
|
} & {
|
|
2696
|
-
original_id:
|
|
2697
|
-
caseSensitive:
|
|
2696
|
+
original_id: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
2697
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2698
2698
|
} & {
|
|
2699
|
-
operator:
|
|
2700
|
-
value:
|
|
2701
|
-
values:
|
|
2702
|
-
}, "strip",
|
|
2699
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte", "between", "in", "notIn"]>;
|
|
2700
|
+
value: zod0.ZodOptional<zod0.ZodNumber>;
|
|
2701
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodNumber, "many">>;
|
|
2702
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2703
2703
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
2704
2704
|
values?: number[] | undefined;
|
|
2705
2705
|
value?: number | undefined;
|
|
@@ -2730,12 +2730,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2730
2730
|
value?: number | undefined;
|
|
2731
2731
|
caseSensitive?: boolean | undefined;
|
|
2732
2732
|
}>>;
|
|
2733
|
-
team_id:
|
|
2734
|
-
operator:
|
|
2735
|
-
value:
|
|
2736
|
-
values:
|
|
2737
|
-
caseSensitive:
|
|
2738
|
-
}, "strip",
|
|
2733
|
+
team_id: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2734
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2735
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2736
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2737
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2738
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2739
2739
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2740
2740
|
values?: string[] | undefined;
|
|
2741
2741
|
value?: string | undefined;
|
|
@@ -2756,12 +2756,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2756
2756
|
value?: string | undefined;
|
|
2757
2757
|
caseSensitive?: boolean | undefined;
|
|
2758
2758
|
}>>;
|
|
2759
|
-
original_team_id:
|
|
2760
|
-
operator:
|
|
2761
|
-
value:
|
|
2762
|
-
values:
|
|
2763
|
-
caseSensitive:
|
|
2764
|
-
}, "strip",
|
|
2759
|
+
original_team_id: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2760
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2761
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2762
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2763
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2764
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2765
2765
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2766
2766
|
values?: string[] | undefined;
|
|
2767
2767
|
value?: string | undefined;
|
|
@@ -2782,12 +2782,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2782
2782
|
value?: string | undefined;
|
|
2783
2783
|
caseSensitive?: boolean | undefined;
|
|
2784
2784
|
}>>;
|
|
2785
|
-
user_id:
|
|
2786
|
-
operator:
|
|
2787
|
-
value:
|
|
2788
|
-
values:
|
|
2789
|
-
caseSensitive:
|
|
2790
|
-
}, "strip",
|
|
2785
|
+
user_id: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2786
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2787
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2788
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2789
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2790
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2791
2791
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2792
2792
|
values?: string[] | undefined;
|
|
2793
2793
|
value?: string | undefined;
|
|
@@ -2808,12 +2808,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2808
2808
|
value?: string | undefined;
|
|
2809
2809
|
caseSensitive?: boolean | undefined;
|
|
2810
2810
|
}>>;
|
|
2811
|
-
original_user_id:
|
|
2812
|
-
operator:
|
|
2813
|
-
value:
|
|
2814
|
-
values:
|
|
2815
|
-
caseSensitive:
|
|
2816
|
-
}, "strip",
|
|
2811
|
+
original_user_id: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2812
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2813
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2814
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2815
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2816
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2817
2817
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2818
2818
|
values?: string[] | undefined;
|
|
2819
2819
|
value?: string | undefined;
|
|
@@ -2834,13 +2834,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2834
2834
|
value?: string | undefined;
|
|
2835
2835
|
caseSensitive?: boolean | undefined;
|
|
2836
2836
|
}>>;
|
|
2837
|
-
role:
|
|
2838
|
-
caseSensitive:
|
|
2837
|
+
role: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{
|
|
2838
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2839
2839
|
} & {
|
|
2840
|
-
operator:
|
|
2841
|
-
value:
|
|
2842
|
-
values:
|
|
2843
|
-
}, "strip",
|
|
2840
|
+
operator: zod0.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
2841
|
+
value: zod0.ZodOptional<zod0.ZodEnum<["owner", "manager", "member", "client"]>>;
|
|
2842
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodEnum<["owner", "manager", "member", "client"]>, "many">>;
|
|
2843
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2844
2844
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2845
2845
|
values?: ("owner" | "manager" | "member" | "client")[] | undefined;
|
|
2846
2846
|
value?: "owner" | "manager" | "member" | "client" | undefined;
|
|
@@ -2861,12 +2861,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2861
2861
|
value?: "owner" | "manager" | "member" | "client" | undefined;
|
|
2862
2862
|
caseSensitive?: boolean | undefined;
|
|
2863
2863
|
}>>;
|
|
2864
|
-
display_name:
|
|
2865
|
-
operator:
|
|
2866
|
-
value:
|
|
2867
|
-
values:
|
|
2868
|
-
caseSensitive:
|
|
2869
|
-
}, "strip",
|
|
2864
|
+
display_name: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2865
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2866
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2867
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2868
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2869
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2870
2870
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2871
2871
|
values?: string[] | undefined;
|
|
2872
2872
|
value?: string | undefined;
|
|
@@ -2887,12 +2887,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2887
2887
|
value?: string | undefined;
|
|
2888
2888
|
caseSensitive?: boolean | undefined;
|
|
2889
2889
|
}>>;
|
|
2890
|
-
business_phone:
|
|
2891
|
-
operator:
|
|
2892
|
-
value:
|
|
2893
|
-
values:
|
|
2894
|
-
caseSensitive:
|
|
2895
|
-
}, "strip",
|
|
2890
|
+
business_phone: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2891
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2892
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2893
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2894
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2895
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2896
2896
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2897
2897
|
values?: string[] | undefined;
|
|
2898
2898
|
value?: string | undefined;
|
|
@@ -2913,12 +2913,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2913
2913
|
value?: string | undefined;
|
|
2914
2914
|
caseSensitive?: boolean | undefined;
|
|
2915
2915
|
}>>;
|
|
2916
|
-
mobile_phone:
|
|
2917
|
-
operator:
|
|
2918
|
-
value:
|
|
2919
|
-
values:
|
|
2920
|
-
caseSensitive:
|
|
2921
|
-
}, "strip",
|
|
2916
|
+
mobile_phone: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2917
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2918
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2919
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2920
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2921
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2922
2922
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2923
2923
|
values?: string[] | undefined;
|
|
2924
2924
|
value?: string | undefined;
|
|
@@ -2939,12 +2939,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2939
2939
|
value?: string | undefined;
|
|
2940
2940
|
caseSensitive?: boolean | undefined;
|
|
2941
2941
|
}>>;
|
|
2942
|
-
email_address:
|
|
2943
|
-
operator:
|
|
2944
|
-
value:
|
|
2945
|
-
values:
|
|
2946
|
-
caseSensitive:
|
|
2947
|
-
}, "strip",
|
|
2942
|
+
email_address: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2943
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2944
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2945
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2946
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2947
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2948
2948
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2949
2949
|
values?: string[] | undefined;
|
|
2950
2950
|
value?: string | undefined;
|
|
@@ -2965,12 +2965,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2965
2965
|
value?: string | undefined;
|
|
2966
2966
|
caseSensitive?: boolean | undefined;
|
|
2967
2967
|
}>>;
|
|
2968
|
-
website_address:
|
|
2969
|
-
operator:
|
|
2970
|
-
value:
|
|
2971
|
-
values:
|
|
2972
|
-
caseSensitive:
|
|
2973
|
-
}, "strip",
|
|
2968
|
+
website_address: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2969
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2970
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2971
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2972
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2973
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2974
2974
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2975
2975
|
values?: string[] | undefined;
|
|
2976
2976
|
value?: string | undefined;
|
|
@@ -2991,12 +2991,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
2991
2991
|
value?: string | undefined;
|
|
2992
2992
|
caseSensitive?: boolean | undefined;
|
|
2993
2993
|
}>>;
|
|
2994
|
-
time_zone:
|
|
2995
|
-
operator:
|
|
2996
|
-
value:
|
|
2997
|
-
values:
|
|
2998
|
-
caseSensitive:
|
|
2999
|
-
}, "strip",
|
|
2994
|
+
time_zone: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2995
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2996
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2997
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2998
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2999
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3000
3000
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3001
3001
|
values?: string[] | undefined;
|
|
3002
3002
|
value?: string | undefined;
|
|
@@ -3017,13 +3017,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3017
3017
|
value?: string | undefined;
|
|
3018
3018
|
caseSensitive?: boolean | undefined;
|
|
3019
3019
|
}>>;
|
|
3020
|
-
created_at:
|
|
3021
|
-
value:
|
|
3022
|
-
values:
|
|
3023
|
-
caseSensitive:
|
|
3020
|
+
created_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
3021
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
3022
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
3023
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3024
3024
|
} & {
|
|
3025
|
-
operator:
|
|
3026
|
-
}, "strip",
|
|
3025
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
3026
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3027
3027
|
operator: "isEmpty" | "isNotEmpty";
|
|
3028
3028
|
values?: any[] | undefined;
|
|
3029
3029
|
value?: any;
|
|
@@ -3043,13 +3043,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3043
3043
|
values?: any[] | undefined;
|
|
3044
3044
|
value?: any;
|
|
3045
3045
|
caseSensitive?: boolean | undefined;
|
|
3046
|
-
}>,
|
|
3047
|
-
value:
|
|
3048
|
-
caseSensitive:
|
|
3046
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
3047
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
3048
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3049
3049
|
} & {
|
|
3050
|
-
operator:
|
|
3051
|
-
values:
|
|
3052
|
-
}, "strip",
|
|
3050
|
+
operator: zod0.ZodLiteral<"between">;
|
|
3051
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
3052
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3053
3053
|
values: string[];
|
|
3054
3054
|
operator: "between";
|
|
3055
3055
|
value?: any;
|
|
@@ -3079,13 +3079,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3079
3079
|
operator: "between";
|
|
3080
3080
|
value?: any;
|
|
3081
3081
|
caseSensitive?: boolean | undefined;
|
|
3082
|
-
}>,
|
|
3083
|
-
values:
|
|
3084
|
-
caseSensitive:
|
|
3082
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
3083
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
3084
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3085
3085
|
} & {
|
|
3086
|
-
operator:
|
|
3087
|
-
value:
|
|
3088
|
-
}, "strip",
|
|
3086
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
3087
|
+
value: zod0.ZodString;
|
|
3088
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3089
3089
|
value: string;
|
|
3090
3090
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
3091
3091
|
values?: any[] | undefined;
|
|
@@ -3106,13 +3106,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3106
3106
|
values?: any[] | undefined;
|
|
3107
3107
|
caseSensitive?: boolean | undefined;
|
|
3108
3108
|
}>]>>;
|
|
3109
|
-
updated_at:
|
|
3110
|
-
value:
|
|
3111
|
-
values:
|
|
3112
|
-
caseSensitive:
|
|
3109
|
+
updated_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
3110
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
3111
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
3112
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3113
3113
|
} & {
|
|
3114
|
-
operator:
|
|
3115
|
-
}, "strip",
|
|
3114
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
3115
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3116
3116
|
operator: "isEmpty" | "isNotEmpty";
|
|
3117
3117
|
values?: any[] | undefined;
|
|
3118
3118
|
value?: any;
|
|
@@ -3132,13 +3132,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3132
3132
|
values?: any[] | undefined;
|
|
3133
3133
|
value?: any;
|
|
3134
3134
|
caseSensitive?: boolean | undefined;
|
|
3135
|
-
}>,
|
|
3136
|
-
value:
|
|
3137
|
-
caseSensitive:
|
|
3135
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
3136
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
3137
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3138
3138
|
} & {
|
|
3139
|
-
operator:
|
|
3140
|
-
values:
|
|
3141
|
-
}, "strip",
|
|
3139
|
+
operator: zod0.ZodLiteral<"between">;
|
|
3140
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
3141
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3142
3142
|
values: string[];
|
|
3143
3143
|
operator: "between";
|
|
3144
3144
|
value?: any;
|
|
@@ -3168,13 +3168,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3168
3168
|
operator: "between";
|
|
3169
3169
|
value?: any;
|
|
3170
3170
|
caseSensitive?: boolean | undefined;
|
|
3171
|
-
}>,
|
|
3172
|
-
values:
|
|
3173
|
-
caseSensitive:
|
|
3171
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
3172
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
3173
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3174
3174
|
} & {
|
|
3175
|
-
operator:
|
|
3176
|
-
value:
|
|
3177
|
-
}, "strip",
|
|
3175
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
3176
|
+
value: zod0.ZodString;
|
|
3177
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3178
3178
|
value: string;
|
|
3179
3179
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
3180
3180
|
values?: any[] | undefined;
|
|
@@ -3195,13 +3195,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3195
3195
|
values?: any[] | undefined;
|
|
3196
3196
|
caseSensitive?: boolean | undefined;
|
|
3197
3197
|
}>]>>;
|
|
3198
|
-
deleted_at:
|
|
3199
|
-
value:
|
|
3200
|
-
values:
|
|
3201
|
-
caseSensitive:
|
|
3198
|
+
deleted_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
3199
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
3200
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
3201
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3202
3202
|
} & {
|
|
3203
|
-
operator:
|
|
3204
|
-
}, "strip",
|
|
3203
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
3204
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3205
3205
|
operator: "isEmpty" | "isNotEmpty";
|
|
3206
3206
|
values?: any[] | undefined;
|
|
3207
3207
|
value?: any;
|
|
@@ -3221,13 +3221,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3221
3221
|
values?: any[] | undefined;
|
|
3222
3222
|
value?: any;
|
|
3223
3223
|
caseSensitive?: boolean | undefined;
|
|
3224
|
-
}>,
|
|
3225
|
-
value:
|
|
3226
|
-
caseSensitive:
|
|
3224
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
3225
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
3226
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3227
3227
|
} & {
|
|
3228
|
-
operator:
|
|
3229
|
-
values:
|
|
3230
|
-
}, "strip",
|
|
3228
|
+
operator: zod0.ZodLiteral<"between">;
|
|
3229
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
3230
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3231
3231
|
values: string[];
|
|
3232
3232
|
operator: "between";
|
|
3233
3233
|
value?: any;
|
|
@@ -3257,13 +3257,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3257
3257
|
operator: "between";
|
|
3258
3258
|
value?: any;
|
|
3259
3259
|
caseSensitive?: boolean | undefined;
|
|
3260
|
-
}>,
|
|
3261
|
-
values:
|
|
3262
|
-
caseSensitive:
|
|
3260
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
3261
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
3262
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3263
3263
|
} & {
|
|
3264
|
-
operator:
|
|
3265
|
-
value:
|
|
3266
|
-
}, "strip",
|
|
3264
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
3265
|
+
value: zod0.ZodString;
|
|
3266
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3267
3267
|
value: string;
|
|
3268
3268
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
3269
3269
|
values?: any[] | undefined;
|
|
@@ -3284,17 +3284,21 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3284
3284
|
values?: any[] | undefined;
|
|
3285
3285
|
caseSensitive?: boolean | undefined;
|
|
3286
3286
|
}>]>>;
|
|
3287
|
-
search:
|
|
3288
|
-
query:
|
|
3289
|
-
searchableFields:
|
|
3290
|
-
}, "strip",
|
|
3287
|
+
search: zod0.ZodOptional<zod0.ZodObject<{
|
|
3288
|
+
query: zod0.ZodString;
|
|
3289
|
+
searchableFields: zod0.ZodArray<zod0.ZodString, "many">;
|
|
3290
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3291
3291
|
query: string;
|
|
3292
3292
|
searchableFields: string[];
|
|
3293
3293
|
}, {
|
|
3294
3294
|
query: string;
|
|
3295
3295
|
searchableFields: string[];
|
|
3296
3296
|
}>>;
|
|
3297
|
-
}, "strip",
|
|
3297
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3298
|
+
search?: {
|
|
3299
|
+
query: string;
|
|
3300
|
+
searchableFields: string[];
|
|
3301
|
+
} | undefined;
|
|
3298
3302
|
created_at?: {
|
|
3299
3303
|
operator: "isEmpty" | "isNotEmpty";
|
|
3300
3304
|
values?: any[] | undefined;
|
|
@@ -3311,22 +3315,17 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3311
3315
|
values?: any[] | undefined;
|
|
3312
3316
|
caseSensitive?: boolean | undefined;
|
|
3313
3317
|
} | undefined;
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3318
|
+
first?: number | undefined;
|
|
3319
|
+
after?: string | undefined;
|
|
3320
|
+
sortBy?: string | undefined;
|
|
3321
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
3322
|
+
paginationToken?: string | undefined;
|
|
3323
|
+
display_name?: {
|
|
3319
3324
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3320
3325
|
values?: string[] | undefined;
|
|
3321
3326
|
value?: string | undefined;
|
|
3322
3327
|
caseSensitive?: boolean | undefined;
|
|
3323
3328
|
} | undefined;
|
|
3324
|
-
original_id?: {
|
|
3325
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
3326
|
-
values?: number[] | undefined;
|
|
3327
|
-
value?: number | undefined;
|
|
3328
|
-
caseSensitive?: boolean | undefined;
|
|
3329
|
-
} | undefined;
|
|
3330
3329
|
updated_at?: {
|
|
3331
3330
|
operator: "isEmpty" | "isNotEmpty";
|
|
3332
3331
|
values?: any[] | undefined;
|
|
@@ -3343,40 +3342,25 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3343
3342
|
values?: any[] | undefined;
|
|
3344
3343
|
caseSensitive?: boolean | undefined;
|
|
3345
3344
|
} | undefined;
|
|
3346
|
-
|
|
3347
|
-
operator: "
|
|
3348
|
-
values?:
|
|
3349
|
-
value?:
|
|
3350
|
-
caseSensitive?: boolean | undefined;
|
|
3351
|
-
} | {
|
|
3352
|
-
values: string[];
|
|
3353
|
-
operator: "between";
|
|
3354
|
-
value?: any;
|
|
3355
|
-
caseSensitive?: boolean | undefined;
|
|
3356
|
-
} | {
|
|
3357
|
-
value: string;
|
|
3358
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
3359
|
-
values?: any[] | undefined;
|
|
3345
|
+
original_id?: {
|
|
3346
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
3347
|
+
values?: number[] | undefined;
|
|
3348
|
+
value?: number | undefined;
|
|
3360
3349
|
caseSensitive?: boolean | undefined;
|
|
3361
3350
|
} | undefined;
|
|
3362
|
-
|
|
3363
|
-
after?: string | undefined;
|
|
3364
|
-
sortBy?: string | undefined;
|
|
3365
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
3366
|
-
paginationToken?: string | undefined;
|
|
3367
|
-
display_name?: {
|
|
3351
|
+
team_id?: {
|
|
3368
3352
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3369
3353
|
values?: string[] | undefined;
|
|
3370
3354
|
value?: string | undefined;
|
|
3371
3355
|
caseSensitive?: boolean | undefined;
|
|
3372
3356
|
} | undefined;
|
|
3373
|
-
|
|
3357
|
+
original_team_id?: {
|
|
3374
3358
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3375
3359
|
values?: string[] | undefined;
|
|
3376
3360
|
value?: string | undefined;
|
|
3377
3361
|
caseSensitive?: boolean | undefined;
|
|
3378
3362
|
} | undefined;
|
|
3379
|
-
|
|
3363
|
+
user_id?: {
|
|
3380
3364
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3381
3365
|
values?: string[] | undefined;
|
|
3382
3366
|
value?: string | undefined;
|
|
@@ -3424,8 +3408,7 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3424
3408
|
value?: string | undefined;
|
|
3425
3409
|
caseSensitive?: boolean | undefined;
|
|
3426
3410
|
} | undefined;
|
|
3427
|
-
|
|
3428
|
-
created_at?: {
|
|
3411
|
+
deleted_at?: {
|
|
3429
3412
|
operator: "isEmpty" | "isNotEmpty";
|
|
3430
3413
|
values?: any[] | undefined;
|
|
3431
3414
|
value?: any;
|
|
@@ -3441,23 +3424,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3441
3424
|
values?: any[] | undefined;
|
|
3442
3425
|
caseSensitive?: boolean | undefined;
|
|
3443
3426
|
} | undefined;
|
|
3427
|
+
}, {
|
|
3444
3428
|
search?: {
|
|
3445
3429
|
query: string;
|
|
3446
3430
|
searchableFields: string[];
|
|
3447
3431
|
} | undefined;
|
|
3448
|
-
|
|
3449
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3450
|
-
values?: string[] | undefined;
|
|
3451
|
-
value?: string | undefined;
|
|
3452
|
-
caseSensitive?: boolean | undefined;
|
|
3453
|
-
} | undefined;
|
|
3454
|
-
original_id?: {
|
|
3455
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
3456
|
-
values?: number[] | undefined;
|
|
3457
|
-
value?: number | undefined;
|
|
3458
|
-
caseSensitive?: boolean | undefined;
|
|
3459
|
-
} | undefined;
|
|
3460
|
-
updated_at?: {
|
|
3432
|
+
created_at?: {
|
|
3461
3433
|
operator: "isEmpty" | "isNotEmpty";
|
|
3462
3434
|
values?: any[] | undefined;
|
|
3463
3435
|
value?: any;
|
|
@@ -3473,7 +3445,18 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3473
3445
|
values?: any[] | undefined;
|
|
3474
3446
|
caseSensitive?: boolean | undefined;
|
|
3475
3447
|
} | undefined;
|
|
3476
|
-
|
|
3448
|
+
first?: number | undefined;
|
|
3449
|
+
after?: string | undefined;
|
|
3450
|
+
sortBy?: string | undefined;
|
|
3451
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
3452
|
+
paginationToken?: string | undefined;
|
|
3453
|
+
display_name?: {
|
|
3454
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3455
|
+
values?: string[] | undefined;
|
|
3456
|
+
value?: string | undefined;
|
|
3457
|
+
caseSensitive?: boolean | undefined;
|
|
3458
|
+
} | undefined;
|
|
3459
|
+
updated_at?: {
|
|
3477
3460
|
operator: "isEmpty" | "isNotEmpty";
|
|
3478
3461
|
values?: any[] | undefined;
|
|
3479
3462
|
value?: any;
|
|
@@ -3489,24 +3472,25 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3489
3472
|
values?: any[] | undefined;
|
|
3490
3473
|
caseSensitive?: boolean | undefined;
|
|
3491
3474
|
} | undefined;
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3475
|
+
original_id?: {
|
|
3476
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
3477
|
+
values?: number[] | undefined;
|
|
3478
|
+
value?: number | undefined;
|
|
3479
|
+
caseSensitive?: boolean | undefined;
|
|
3480
|
+
} | undefined;
|
|
3481
|
+
team_id?: {
|
|
3498
3482
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3499
3483
|
values?: string[] | undefined;
|
|
3500
3484
|
value?: string | undefined;
|
|
3501
3485
|
caseSensitive?: boolean | undefined;
|
|
3502
3486
|
} | undefined;
|
|
3503
|
-
|
|
3487
|
+
original_team_id?: {
|
|
3504
3488
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3505
3489
|
values?: string[] | undefined;
|
|
3506
3490
|
value?: string | undefined;
|
|
3507
3491
|
caseSensitive?: boolean | undefined;
|
|
3508
3492
|
} | undefined;
|
|
3509
|
-
|
|
3493
|
+
user_id?: {
|
|
3510
3494
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3511
3495
|
values?: string[] | undefined;
|
|
3512
3496
|
value?: string | undefined;
|
|
@@ -3554,26 +3538,42 @@ declare const teamMemberFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3554
3538
|
value?: string | undefined;
|
|
3555
3539
|
caseSensitive?: boolean | undefined;
|
|
3556
3540
|
} | undefined;
|
|
3541
|
+
deleted_at?: {
|
|
3542
|
+
operator: "isEmpty" | "isNotEmpty";
|
|
3543
|
+
values?: any[] | undefined;
|
|
3544
|
+
value?: any;
|
|
3545
|
+
caseSensitive?: boolean | undefined;
|
|
3546
|
+
} | {
|
|
3547
|
+
values: string[];
|
|
3548
|
+
operator: "between";
|
|
3549
|
+
value?: any;
|
|
3550
|
+
caseSensitive?: boolean | undefined;
|
|
3551
|
+
} | {
|
|
3552
|
+
value: string;
|
|
3553
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
3554
|
+
values?: any[] | undefined;
|
|
3555
|
+
caseSensitive?: boolean | undefined;
|
|
3556
|
+
} | undefined;
|
|
3557
3557
|
}>;
|
|
3558
3558
|
//#endregion
|
|
3559
3559
|
//#region src/slices/team/team_member/TeamMemberList.vue.d.ts
|
|
3560
|
-
declare const __VLS_export$59:
|
|
3560
|
+
declare const __VLS_export$59: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
3561
3561
|
declare const _default$90: typeof __VLS_export$59;
|
|
3562
3562
|
//#endregion
|
|
3563
3563
|
//#region src/slices/team/team_member/teamMemberMetadata.d.ts
|
|
3564
|
-
declare const teamMemberCreateSchemaWithMetadata:
|
|
3565
|
-
team_id:
|
|
3566
|
-
user_id:
|
|
3567
|
-
role:
|
|
3568
|
-
display_name:
|
|
3569
|
-
business_phone:
|
|
3570
|
-
mobile_phone:
|
|
3571
|
-
email_address:
|
|
3572
|
-
website_address:
|
|
3573
|
-
time_zone:
|
|
3574
|
-
}, "team_id">, "strip",
|
|
3575
|
-
user_id: string;
|
|
3564
|
+
declare const teamMemberCreateSchemaWithMetadata: zod0.ZodObject<Omit<{
|
|
3565
|
+
team_id: zod0.ZodString;
|
|
3566
|
+
user_id: zod0.ZodString;
|
|
3567
|
+
role: zod0.ZodEnum<["owner", "manager", "member", "client"]>;
|
|
3568
|
+
display_name: zod0.ZodString;
|
|
3569
|
+
business_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3570
|
+
mobile_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3571
|
+
email_address: zod0.ZodString;
|
|
3572
|
+
website_address: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3573
|
+
time_zone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3574
|
+
}, "team_id">, "strip", zod0.ZodTypeAny, {
|
|
3576
3575
|
display_name: string;
|
|
3576
|
+
user_id: string;
|
|
3577
3577
|
role: "owner" | "manager" | "member" | "client";
|
|
3578
3578
|
email_address: string;
|
|
3579
3579
|
business_phone?: string | null | undefined;
|
|
@@ -3581,8 +3581,8 @@ declare const teamMemberCreateSchemaWithMetadata: zod47.ZodObject<Omit<{
|
|
|
3581
3581
|
website_address?: string | null | undefined;
|
|
3582
3582
|
time_zone?: string | null | undefined;
|
|
3583
3583
|
}, {
|
|
3584
|
-
user_id: string;
|
|
3585
3584
|
display_name: string;
|
|
3585
|
+
user_id: string;
|
|
3586
3586
|
role: "owner" | "manager" | "member" | "client";
|
|
3587
3587
|
email_address: string;
|
|
3588
3588
|
business_phone?: string | null | undefined;
|
|
@@ -3590,23 +3590,23 @@ declare const teamMemberCreateSchemaWithMetadata: zod47.ZodObject<Omit<{
|
|
|
3590
3590
|
website_address?: string | null | undefined;
|
|
3591
3591
|
time_zone?: string | null | undefined;
|
|
3592
3592
|
}>;
|
|
3593
|
-
declare const teamMemberUpdateSchemaWithMetadata:
|
|
3594
|
-
team_id:
|
|
3595
|
-
user_id:
|
|
3596
|
-
role:
|
|
3597
|
-
display_name:
|
|
3598
|
-
business_phone:
|
|
3599
|
-
mobile_phone:
|
|
3600
|
-
email_address:
|
|
3601
|
-
website_address:
|
|
3602
|
-
time_zone:
|
|
3593
|
+
declare const teamMemberUpdateSchemaWithMetadata: zod0.ZodObject<{
|
|
3594
|
+
team_id: zod0.ZodString;
|
|
3595
|
+
user_id: zod0.ZodString;
|
|
3596
|
+
role: zod0.ZodEnum<["owner", "manager", "member", "client"]>;
|
|
3597
|
+
display_name: zod0.ZodString;
|
|
3598
|
+
business_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3599
|
+
mobile_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3600
|
+
email_address: zod0.ZodString;
|
|
3601
|
+
website_address: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3602
|
+
time_zone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3603
3603
|
} & {
|
|
3604
|
-
id:
|
|
3605
|
-
}, "strip",
|
|
3604
|
+
id: zod0.ZodString;
|
|
3605
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3606
3606
|
id: string;
|
|
3607
|
-
user_id: string;
|
|
3608
3607
|
display_name: string;
|
|
3609
3608
|
team_id: string;
|
|
3609
|
+
user_id: string;
|
|
3610
3610
|
role: "owner" | "manager" | "member" | "client";
|
|
3611
3611
|
email_address: string;
|
|
3612
3612
|
business_phone?: string | null | undefined;
|
|
@@ -3615,9 +3615,9 @@ declare const teamMemberUpdateSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3615
3615
|
time_zone?: string | null | undefined;
|
|
3616
3616
|
}, {
|
|
3617
3617
|
id: string;
|
|
3618
|
-
user_id: string;
|
|
3619
3618
|
display_name: string;
|
|
3620
3619
|
team_id: string;
|
|
3620
|
+
user_id: string;
|
|
3621
3621
|
role: "owner" | "manager" | "member" | "client";
|
|
3622
3622
|
email_address: string;
|
|
3623
3623
|
business_phone?: string | null | undefined;
|
|
@@ -3627,7 +3627,7 @@ declare const teamMemberUpdateSchemaWithMetadata: zod47.ZodObject<{
|
|
|
3627
3627
|
}>;
|
|
3628
3628
|
//#endregion
|
|
3629
3629
|
//#region src/slices/team/team_member/TeamMemberParent.vue.d.ts
|
|
3630
|
-
declare const __VLS_export$58:
|
|
3630
|
+
declare const __VLS_export$58: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
3631
3631
|
declare const _default$91: typeof __VLS_export$58;
|
|
3632
3632
|
//#endregion
|
|
3633
3633
|
//#region src/slices/team/team_member/teamMemberRowSchema.d.ts
|
|
@@ -3635,66 +3635,66 @@ declare const _default$91: typeof __VLS_export$58;
|
|
|
3635
3635
|
* Reuse the existing TeamMemberReadSchema from the validation library
|
|
3636
3636
|
* for the data table rows - don't recreate it!
|
|
3637
3637
|
*/
|
|
3638
|
-
declare const teamMemberRowSchemaWithMetadata:
|
|
3639
|
-
id:
|
|
3640
|
-
original_id:
|
|
3641
|
-
team_id:
|
|
3642
|
-
original_team_id:
|
|
3643
|
-
user_id:
|
|
3644
|
-
original_user_id:
|
|
3645
|
-
role:
|
|
3646
|
-
display_name:
|
|
3647
|
-
business_phone:
|
|
3648
|
-
mobile_phone:
|
|
3649
|
-
email_address:
|
|
3650
|
-
website_address:
|
|
3651
|
-
time_zone:
|
|
3652
|
-
created_at:
|
|
3653
|
-
created_by:
|
|
3654
|
-
updated_at:
|
|
3655
|
-
updated_by:
|
|
3656
|
-
deleted_at:
|
|
3657
|
-
deleted_by:
|
|
3658
|
-
}, "strip",
|
|
3638
|
+
declare const teamMemberRowSchemaWithMetadata: zod0.ZodObject<{
|
|
3639
|
+
id: zod0.ZodString;
|
|
3640
|
+
original_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodNumber>>;
|
|
3641
|
+
team_id: zod0.ZodString;
|
|
3642
|
+
original_team_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3643
|
+
user_id: zod0.ZodString;
|
|
3644
|
+
original_user_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3645
|
+
role: zod0.ZodEnum<["owner", "manager", "member", "client"]>;
|
|
3646
|
+
display_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3647
|
+
business_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3648
|
+
mobile_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3649
|
+
email_address: zod0.ZodString;
|
|
3650
|
+
website_address: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3651
|
+
time_zone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3652
|
+
created_at: zod0.ZodString;
|
|
3653
|
+
created_by: zod0.ZodString;
|
|
3654
|
+
updated_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3655
|
+
updated_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3656
|
+
deleted_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3657
|
+
deleted_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3658
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3659
3659
|
id: string;
|
|
3660
3660
|
created_at: string;
|
|
3661
3661
|
created_by: string;
|
|
3662
|
-
user_id: string;
|
|
3663
3662
|
team_id: string;
|
|
3663
|
+
user_id: string;
|
|
3664
3664
|
role: "owner" | "manager" | "member" | "client";
|
|
3665
3665
|
email_address: string;
|
|
3666
|
+
display_name?: string | null | undefined;
|
|
3667
|
+
updated_at?: string | null | undefined;
|
|
3666
3668
|
original_id?: number | null | undefined;
|
|
3667
3669
|
updated_by?: string | null | undefined;
|
|
3668
|
-
updated_at?: string | null | undefined;
|
|
3669
|
-
deleted_by?: string | null | undefined;
|
|
3670
|
-
deleted_at?: string | null | undefined;
|
|
3671
|
-
display_name?: string | null | undefined;
|
|
3672
3670
|
original_team_id?: string | null | undefined;
|
|
3673
3671
|
original_user_id?: string | null | undefined;
|
|
3674
3672
|
business_phone?: string | null | undefined;
|
|
3675
3673
|
mobile_phone?: string | null | undefined;
|
|
3676
3674
|
website_address?: string | null | undefined;
|
|
3677
3675
|
time_zone?: string | null | undefined;
|
|
3676
|
+
deleted_at?: string | null | undefined;
|
|
3677
|
+
deleted_by?: string | null | undefined;
|
|
3678
3678
|
}, {
|
|
3679
3679
|
id: string;
|
|
3680
3680
|
created_at: string;
|
|
3681
3681
|
created_by: string;
|
|
3682
|
-
user_id: string;
|
|
3683
3682
|
team_id: string;
|
|
3683
|
+
user_id: string;
|
|
3684
3684
|
role: "owner" | "manager" | "member" | "client";
|
|
3685
3685
|
email_address: string;
|
|
3686
|
+
display_name?: string | null | undefined;
|
|
3687
|
+
updated_at?: string | null | undefined;
|
|
3686
3688
|
original_id?: number | null | undefined;
|
|
3687
3689
|
updated_by?: string | null | undefined;
|
|
3688
|
-
updated_at?: string | null | undefined;
|
|
3689
|
-
deleted_by?: string | null | undefined;
|
|
3690
|
-
deleted_at?: string | null | undefined;
|
|
3691
|
-
display_name?: string | null | undefined;
|
|
3692
3690
|
original_team_id?: string | null | undefined;
|
|
3693
3691
|
original_user_id?: string | null | undefined;
|
|
3694
3692
|
business_phone?: string | null | undefined;
|
|
3695
3693
|
mobile_phone?: string | null | undefined;
|
|
3696
3694
|
website_address?: string | null | undefined;
|
|
3697
3695
|
time_zone?: string | null | undefined;
|
|
3696
|
+
deleted_at?: string | null | undefined;
|
|
3697
|
+
deleted_by?: string | null | undefined;
|
|
3698
3698
|
}>;
|
|
3699
3699
|
//#endregion
|
|
3700
3700
|
//#region src/slices/team/team_member/ViewTeamMember.vue.d.ts
|
|
@@ -3703,7 +3703,7 @@ interface Props$18 {
|
|
|
3703
3703
|
isLoading?: boolean;
|
|
3704
3704
|
error?: Error | null;
|
|
3705
3705
|
}
|
|
3706
|
-
declare const __VLS_export$57:
|
|
3706
|
+
declare const __VLS_export$57: vue4.DefineComponent<Props$18, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$18> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
3707
3707
|
declare const _default$100: typeof __VLS_export$57;
|
|
3708
3708
|
//#endregion
|
|
3709
3709
|
//#region src/slices/note/components/NoteList.vue.d.ts
|
|
@@ -3712,9 +3712,9 @@ interface Props$17 {
|
|
|
3712
3712
|
recordType: string;
|
|
3713
3713
|
mode?: 'customer' | 'internal';
|
|
3714
3714
|
}
|
|
3715
|
-
declare const __VLS_export$56:
|
|
3715
|
+
declare const __VLS_export$56: vue4.DefineComponent<Props$17, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$17> & Readonly<{}>, {
|
|
3716
3716
|
mode: "customer" | "internal";
|
|
3717
|
-
}, {}, {}, {}, string,
|
|
3717
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
3718
3718
|
declare const _default$55: typeof __VLS_export$56;
|
|
3719
3719
|
//#endregion
|
|
3720
3720
|
//#region src/slices/note/noteRowSchema.d.ts
|
|
@@ -3738,37 +3738,37 @@ declare const noteRowSchemaWithMetadata: z.ZodObject<{
|
|
|
3738
3738
|
}, "strip", z.ZodTypeAny, {
|
|
3739
3739
|
id: string;
|
|
3740
3740
|
created_at: string;
|
|
3741
|
-
created_by: string;
|
|
3742
3741
|
record_id: string;
|
|
3743
3742
|
record_type: "user" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup";
|
|
3743
|
+
created_by: string;
|
|
3744
3744
|
is_internal: boolean;
|
|
3745
3745
|
title?: string | null | undefined;
|
|
3746
|
-
|
|
3747
|
-
|
|
3746
|
+
updated_at?: string | null | undefined;
|
|
3747
|
+
archived_at?: string | null | undefined;
|
|
3748
3748
|
original_id?: number | null | undefined;
|
|
3749
3749
|
updated_by?: string | null | undefined;
|
|
3750
|
-
updated_at?: string | null | undefined;
|
|
3751
3750
|
archived_by?: string | null | undefined;
|
|
3752
|
-
archived_at?: string | null | undefined;
|
|
3753
|
-
deleted_by?: string | null | undefined;
|
|
3754
3751
|
deleted_at?: string | null | undefined;
|
|
3752
|
+
deleted_by?: string | null | undefined;
|
|
3753
|
+
tag?: string | null | undefined;
|
|
3754
|
+
body?: string | null | undefined;
|
|
3755
3755
|
}, {
|
|
3756
3756
|
id: string;
|
|
3757
3757
|
created_at: string;
|
|
3758
|
-
created_by: string;
|
|
3759
3758
|
record_id: string;
|
|
3760
3759
|
record_type: "user" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup";
|
|
3760
|
+
created_by: string;
|
|
3761
3761
|
is_internal: boolean;
|
|
3762
3762
|
title?: string | null | undefined;
|
|
3763
|
-
|
|
3764
|
-
|
|
3763
|
+
updated_at?: string | null | undefined;
|
|
3764
|
+
archived_at?: string | null | undefined;
|
|
3765
3765
|
original_id?: number | null | undefined;
|
|
3766
3766
|
updated_by?: string | null | undefined;
|
|
3767
|
-
updated_at?: string | null | undefined;
|
|
3768
3767
|
archived_by?: string | null | undefined;
|
|
3769
|
-
archived_at?: string | null | undefined;
|
|
3770
|
-
deleted_by?: string | null | undefined;
|
|
3771
3768
|
deleted_at?: string | null | undefined;
|
|
3769
|
+
deleted_by?: string | null | undefined;
|
|
3770
|
+
tag?: string | null | undefined;
|
|
3771
|
+
body?: string | null | undefined;
|
|
3772
3772
|
}>;
|
|
3773
3773
|
type NoteRow = z.infer<typeof NoteReadSchema>;
|
|
3774
3774
|
//#endregion
|
|
@@ -3777,25 +3777,25 @@ interface Props$16 {
|
|
|
3777
3777
|
note: NoteRow | null;
|
|
3778
3778
|
isOpen: boolean;
|
|
3779
3779
|
}
|
|
3780
|
-
declare const __VLS_export$55:
|
|
3780
|
+
declare const __VLS_export$55: vue4.DefineComponent<Props$16, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {} & {
|
|
3781
3781
|
close: () => any;
|
|
3782
3782
|
success: () => any;
|
|
3783
|
-
}, string,
|
|
3783
|
+
}, string, vue4.PublicProps, Readonly<Props$16> & Readonly<{
|
|
3784
3784
|
onClose?: (() => any) | undefined;
|
|
3785
3785
|
onSuccess?: (() => any) | undefined;
|
|
3786
|
-
}>, {}, {}, {}, {}, string,
|
|
3786
|
+
}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
3787
3787
|
declare const _default$35: typeof __VLS_export$55;
|
|
3788
3788
|
//#endregion
|
|
3789
3789
|
//#region src/slices/note/noteFormMetadata.d.ts
|
|
3790
|
-
declare const noteCreateMetadata:
|
|
3791
|
-
record_id:
|
|
3792
|
-
record_type:
|
|
3793
|
-
tag:
|
|
3794
|
-
title:
|
|
3795
|
-
body:
|
|
3796
|
-
original_id:
|
|
3797
|
-
is_internal:
|
|
3798
|
-
}, "tag" | "body" | "is_internal">, "strip",
|
|
3790
|
+
declare const noteCreateMetadata: zod0.ZodObject<Pick<{
|
|
3791
|
+
record_id: zod0.ZodString;
|
|
3792
|
+
record_type: zod0.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "team", "quote", "note", "followup"]>;
|
|
3793
|
+
tag: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3794
|
+
title: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3795
|
+
body: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3796
|
+
original_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodNumber>>;
|
|
3797
|
+
is_internal: zod0.ZodDefault<zod0.ZodOptional<zod0.ZodBoolean>>;
|
|
3798
|
+
}, "tag" | "body" | "is_internal">, "strip", zod0.ZodTypeAny, {
|
|
3799
3799
|
is_internal: boolean;
|
|
3800
3800
|
tag?: string | null | undefined;
|
|
3801
3801
|
body?: string | null | undefined;
|
|
@@ -3806,16 +3806,16 @@ declare const noteCreateMetadata: zod47.ZodObject<Pick<{
|
|
|
3806
3806
|
}>;
|
|
3807
3807
|
//#endregion
|
|
3808
3808
|
//#region src/slices/note/noteUpdateMetadata.d.ts
|
|
3809
|
-
declare const noteUpdateMetadata:
|
|
3810
|
-
id:
|
|
3811
|
-
record_id:
|
|
3812
|
-
record_type:
|
|
3813
|
-
tag:
|
|
3814
|
-
title:
|
|
3815
|
-
body:
|
|
3816
|
-
original_id:
|
|
3817
|
-
is_internal:
|
|
3818
|
-
}, "tag" | "body">, "strip",
|
|
3809
|
+
declare const noteUpdateMetadata: zod0.ZodObject<Pick<{
|
|
3810
|
+
id: zod0.ZodString;
|
|
3811
|
+
record_id: zod0.ZodOptional<zod0.ZodString>;
|
|
3812
|
+
record_type: zod0.ZodOptional<zod0.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "team", "quote", "note", "followup"]>>;
|
|
3813
|
+
tag: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3814
|
+
title: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3815
|
+
body: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3816
|
+
original_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodNumber>>;
|
|
3817
|
+
is_internal: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3818
|
+
}, "tag" | "body">, "strip", zod0.ZodTypeAny, {
|
|
3819
3819
|
tag?: string | null | undefined;
|
|
3820
3820
|
body?: string | null | undefined;
|
|
3821
3821
|
}, {
|
|
@@ -3919,11 +3919,11 @@ declare const staffSupportPaths: {
|
|
|
3919
3919
|
declare const staffSupportTicketRoutes: Array<ExtendedRouteRecordRaw>;
|
|
3920
3920
|
//#endregion
|
|
3921
3921
|
//#region src/slices/support_ticket/customer/CustomerSupportTicketList.vue.d.ts
|
|
3922
|
-
declare const __VLS_export$54:
|
|
3922
|
+
declare const __VLS_export$54: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
3923
3923
|
declare const _default$30: typeof __VLS_export$54;
|
|
3924
3924
|
//#endregion
|
|
3925
3925
|
//#region src/slices/support_ticket/customer/CustomerCreateSupportTicketForm.vue.d.ts
|
|
3926
|
-
declare const __VLS_export$53:
|
|
3926
|
+
declare const __VLS_export$53: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
3927
3927
|
declare const _default$24: typeof __VLS_export$53;
|
|
3928
3928
|
//#endregion
|
|
3929
3929
|
//#region src/slices/support_ticket/customer/CustomerEditSupportTicketForm.vue.d.ts
|
|
@@ -3932,7 +3932,7 @@ interface Props$15 {
|
|
|
3932
3932
|
isLoading?: boolean;
|
|
3933
3933
|
error?: Error | null;
|
|
3934
3934
|
}
|
|
3935
|
-
declare const __VLS_export$52:
|
|
3935
|
+
declare const __VLS_export$52: vue4.DefineComponent<Props$15, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$15> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
3936
3936
|
declare const _default$26: typeof __VLS_export$52;
|
|
3937
3937
|
//#endregion
|
|
3938
3938
|
//#region src/slices/support_ticket/customer/CustomerViewSupportTicket.vue.d.ts
|
|
@@ -3941,27 +3941,27 @@ interface Props$14 {
|
|
|
3941
3941
|
isLoading?: boolean;
|
|
3942
3942
|
error?: Error | null;
|
|
3943
3943
|
}
|
|
3944
|
-
declare const __VLS_export$51:
|
|
3944
|
+
declare const __VLS_export$51: vue4.DefineComponent<Props$14, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$14> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
3945
3945
|
declare const _default$33: typeof __VLS_export$51;
|
|
3946
3946
|
//#endregion
|
|
3947
3947
|
//#region src/slices/support_ticket/customer/CustomerSupportTicketParent.vue.d.ts
|
|
3948
|
-
declare const __VLS_export$50:
|
|
3948
|
+
declare const __VLS_export$50: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
3949
3949
|
declare const _default$31: typeof __VLS_export$50;
|
|
3950
3950
|
//#endregion
|
|
3951
3951
|
//#region src/slices/support_ticket/customer/CustomerSupportTicketSuccess.vue.d.ts
|
|
3952
|
-
declare const __VLS_export$49:
|
|
3952
|
+
declare const __VLS_export$49: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
3953
3953
|
declare const _default$32: typeof __VLS_export$49;
|
|
3954
3954
|
//#endregion
|
|
3955
3955
|
//#region src/slices/support_ticket/customer/CustomerSupportTicketAttachmentsTab.vue.d.ts
|
|
3956
|
-
declare const __VLS_export$48:
|
|
3956
|
+
declare const __VLS_export$48: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
3957
3957
|
declare const _default$27: typeof __VLS_export$48;
|
|
3958
3958
|
//#endregion
|
|
3959
3959
|
//#region src/slices/support_ticket/customer/CustomerSupportTicketCustomerNotesTab.vue.d.ts
|
|
3960
|
-
declare const __VLS_export$47:
|
|
3960
|
+
declare const __VLS_export$47: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
3961
3961
|
declare const _default$28: typeof __VLS_export$47;
|
|
3962
3962
|
//#endregion
|
|
3963
3963
|
//#region src/slices/support_ticket/customer/CustomerSupportTicketHistoryTab.vue.d.ts
|
|
3964
|
-
declare const __VLS_export$46:
|
|
3964
|
+
declare const __VLS_export$46: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
3965
3965
|
declare const _default$29: typeof __VLS_export$46;
|
|
3966
3966
|
//#endregion
|
|
3967
3967
|
//#region src/slices/support_ticket/customer/components/SupportTicketTimeline.vue.d.ts
|
|
@@ -3969,15 +3969,15 @@ type SupportTicket$5 = CustomerSupportTicketReadDto;
|
|
|
3969
3969
|
type __VLS_Props$6 = {
|
|
3970
3970
|
support_ticket: SupportTicket$5;
|
|
3971
3971
|
};
|
|
3972
|
-
declare const __VLS_export$45:
|
|
3972
|
+
declare const __VLS_export$45: vue4.DefineComponent<__VLS_Props$6, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<__VLS_Props$6> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
3973
3973
|
declare const _default$85: typeof __VLS_export$45;
|
|
3974
3974
|
//#endregion
|
|
3975
3975
|
//#region src/slices/support_ticket/staff/StaffSupportTicketList.vue.d.ts
|
|
3976
|
-
declare const __VLS_export$44:
|
|
3976
|
+
declare const __VLS_export$44: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
3977
3977
|
declare const _default$74: typeof __VLS_export$44;
|
|
3978
3978
|
//#endregion
|
|
3979
3979
|
//#region src/slices/support_ticket/staff/StaffCreateSupportTicketForm.vue.d.ts
|
|
3980
|
-
declare const __VLS_export$43:
|
|
3980
|
+
declare const __VLS_export$43: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
3981
3981
|
declare const _default$68: typeof __VLS_export$43;
|
|
3982
3982
|
//#endregion
|
|
3983
3983
|
//#region src/slices/support_ticket/staff/StaffEditSupportTicketForm.vue.d.ts
|
|
@@ -3986,31 +3986,31 @@ interface Props$13 {
|
|
|
3986
3986
|
isLoading?: boolean;
|
|
3987
3987
|
error?: Error | null;
|
|
3988
3988
|
}
|
|
3989
|
-
declare const __VLS_export$42:
|
|
3989
|
+
declare const __VLS_export$42: vue4.DefineComponent<Props$13, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$13> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
3990
3990
|
declare const _default$69: typeof __VLS_export$42;
|
|
3991
3991
|
//#endregion
|
|
3992
3992
|
//#region src/slices/support_ticket/staff/StaffSupportTicketParent.vue.d.ts
|
|
3993
|
-
declare const __VLS_export$41:
|
|
3993
|
+
declare const __VLS_export$41: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
3994
3994
|
declare const _default$75: typeof __VLS_export$41;
|
|
3995
3995
|
//#endregion
|
|
3996
3996
|
//#region src/slices/support_ticket/staff/StaffSupportTicketSuccess.vue.d.ts
|
|
3997
|
-
declare const __VLS_export$40:
|
|
3997
|
+
declare const __VLS_export$40: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
3998
3998
|
declare const _default$76: typeof __VLS_export$40;
|
|
3999
3999
|
//#endregion
|
|
4000
4000
|
//#region src/slices/support_ticket/staff/StaffSupportTicketAttachmentsTab.vue.d.ts
|
|
4001
|
-
declare const __VLS_export$39:
|
|
4001
|
+
declare const __VLS_export$39: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
4002
4002
|
declare const _default$70: typeof __VLS_export$39;
|
|
4003
4003
|
//#endregion
|
|
4004
4004
|
//#region src/slices/support_ticket/staff/StaffSupportTicketCustomerNotesTab.vue.d.ts
|
|
4005
|
-
declare const __VLS_export$38:
|
|
4005
|
+
declare const __VLS_export$38: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
4006
4006
|
declare const _default$71: typeof __VLS_export$38;
|
|
4007
4007
|
//#endregion
|
|
4008
4008
|
//#region src/slices/support_ticket/staff/StaffSupportTicketInternalNotesTab.vue.d.ts
|
|
4009
|
-
declare const __VLS_export$37:
|
|
4009
|
+
declare const __VLS_export$37: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
4010
4010
|
declare const _default$73: typeof __VLS_export$37;
|
|
4011
4011
|
//#endregion
|
|
4012
4012
|
//#region src/slices/support_ticket/staff/StaffSupportTicketHistoryTab.vue.d.ts
|
|
4013
|
-
declare const __VLS_export$36:
|
|
4013
|
+
declare const __VLS_export$36: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
4014
4014
|
declare const _default$72: typeof __VLS_export$36;
|
|
4015
4015
|
//#endregion
|
|
4016
4016
|
//#region src/slices/support_ticket/staff/StaffSupportTicketWorkflowTab.vue.d.ts
|
|
@@ -4019,7 +4019,7 @@ interface Props$12 {
|
|
|
4019
4019
|
isLoading?: boolean;
|
|
4020
4020
|
error?: Error | null;
|
|
4021
4021
|
}
|
|
4022
|
-
declare const __VLS_export$35:
|
|
4022
|
+
declare const __VLS_export$35: vue4.DefineComponent<Props$12, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$12> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4023
4023
|
declare const _default$77: typeof __VLS_export$35;
|
|
4024
4024
|
//#endregion
|
|
4025
4025
|
//#region src/slices/support_ticket/staff/components/ApproveRejectActions.vue.d.ts
|
|
@@ -4027,11 +4027,11 @@ type SupportTicket$4 = StaffSupportTicketReadDto;
|
|
|
4027
4027
|
type __VLS_Props$5 = {
|
|
4028
4028
|
support_ticket: SupportTicket$4;
|
|
4029
4029
|
};
|
|
4030
|
-
declare const __VLS_export$34:
|
|
4030
|
+
declare const __VLS_export$34: vue4.DefineComponent<__VLS_Props$5, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {
|
|
4031
4031
|
update: (...args: any[]) => void;
|
|
4032
|
-
}, string,
|
|
4032
|
+
}, string, vue4.PublicProps, Readonly<__VLS_Props$5> & Readonly<{
|
|
4033
4033
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
4034
|
-
}>, {}, {}, {}, {}, string,
|
|
4034
|
+
}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4035
4035
|
declare const _default$6: typeof __VLS_export$34;
|
|
4036
4036
|
//#endregion
|
|
4037
4037
|
//#region src/slices/support_ticket/staff/components/CompleteSupportTicketForm.vue.d.ts
|
|
@@ -4039,22 +4039,22 @@ type SupportTicket$3 = StaffSupportTicketReadDto;
|
|
|
4039
4039
|
type __VLS_Props$4 = {
|
|
4040
4040
|
support_ticket: SupportTicket$3;
|
|
4041
4041
|
};
|
|
4042
|
-
declare const __VLS_export$33:
|
|
4042
|
+
declare const __VLS_export$33: vue4.DefineComponent<__VLS_Props$4, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {
|
|
4043
4043
|
update: (...args: any[]) => void;
|
|
4044
|
-
}, string,
|
|
4044
|
+
}, string, vue4.PublicProps, Readonly<__VLS_Props$4> & Readonly<{
|
|
4045
4045
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
4046
|
-
}>, {}, {}, {}, {}, string,
|
|
4046
|
+
}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4047
4047
|
declare const _default$11: typeof __VLS_export$33;
|
|
4048
4048
|
//#endregion
|
|
4049
4049
|
//#region src/slices/support_ticket/staff/components/ConvertToCustomerWorkflow.vue.d.ts
|
|
4050
4050
|
type __VLS_Props$3 = {
|
|
4051
4051
|
support_ticket: StaffSupportTicketReadDto;
|
|
4052
4052
|
};
|
|
4053
|
-
declare const __VLS_export$32:
|
|
4053
|
+
declare const __VLS_export$32: vue4.DefineComponent<__VLS_Props$3, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {
|
|
4054
4054
|
update: (...args: any[]) => void;
|
|
4055
|
-
}, string,
|
|
4055
|
+
}, string, vue4.PublicProps, Readonly<__VLS_Props$3> & Readonly<{
|
|
4056
4056
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
4057
|
-
}>, {}, {}, {}, {}, string,
|
|
4057
|
+
}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4058
4058
|
declare const _default$13: typeof __VLS_export$32;
|
|
4059
4059
|
//#endregion
|
|
4060
4060
|
//#region src/slices/support_ticket/staff/components/ConvertToInternalWorkflow.vue.d.ts
|
|
@@ -4062,11 +4062,11 @@ type SupportTicket$2 = StaffSupportTicketReadDto;
|
|
|
4062
4062
|
type __VLS_Props$2 = {
|
|
4063
4063
|
support_ticket: SupportTicket$2;
|
|
4064
4064
|
};
|
|
4065
|
-
declare const __VLS_export$31:
|
|
4065
|
+
declare const __VLS_export$31: vue4.DefineComponent<__VLS_Props$2, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {
|
|
4066
4066
|
update: (...args: any[]) => void;
|
|
4067
|
-
}, string,
|
|
4067
|
+
}, string, vue4.PublicProps, Readonly<__VLS_Props$2> & Readonly<{
|
|
4068
4068
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
4069
|
-
}>, {}, {}, {}, {}, string,
|
|
4069
|
+
}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4070
4070
|
declare const _default$14: typeof __VLS_export$31;
|
|
4071
4071
|
//#endregion
|
|
4072
4072
|
//#region src/slices/support_ticket/staff/components/CancelInternalTaskWorkflow.vue.d.ts
|
|
@@ -4074,11 +4074,11 @@ type SupportTicket$1 = StaffSupportTicketReadDto;
|
|
|
4074
4074
|
type __VLS_Props$1 = {
|
|
4075
4075
|
support_ticket: SupportTicket$1;
|
|
4076
4076
|
};
|
|
4077
|
-
declare const __VLS_export$30:
|
|
4077
|
+
declare const __VLS_export$30: vue4.DefineComponent<__VLS_Props$1, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {
|
|
4078
4078
|
update: (...args: any[]) => void;
|
|
4079
|
-
}, string,
|
|
4079
|
+
}, string, vue4.PublicProps, Readonly<__VLS_Props$1> & Readonly<{
|
|
4080
4080
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
4081
|
-
}>, {}, {}, {}, {}, string,
|
|
4081
|
+
}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4082
4082
|
declare const _default$9: typeof __VLS_export$30;
|
|
4083
4083
|
//#endregion
|
|
4084
4084
|
//#region src/slices/support_ticket/staff/components/ReactivateInternalTaskWorkflow.vue.d.ts
|
|
@@ -4086,19 +4086,19 @@ type SupportTicket = StaffSupportTicketReadDto;
|
|
|
4086
4086
|
type __VLS_Props = {
|
|
4087
4087
|
support_ticket: SupportTicket;
|
|
4088
4088
|
};
|
|
4089
|
-
declare const __VLS_export$29:
|
|
4089
|
+
declare const __VLS_export$29: vue4.DefineComponent<__VLS_Props, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {
|
|
4090
4090
|
update: (...args: any[]) => void;
|
|
4091
|
-
}, string,
|
|
4091
|
+
}, string, vue4.PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
4092
4092
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
4093
|
-
}>, {}, {}, {}, {}, string,
|
|
4093
|
+
}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4094
4094
|
declare const _default$57: typeof __VLS_export$29;
|
|
4095
4095
|
//#endregion
|
|
4096
4096
|
//#region src/slices/support_ticket/staff/components/CustomerCreditBalance.vue.d.ts
|
|
4097
|
-
declare const __VLS_export$28:
|
|
4097
|
+
declare const __VLS_export$28: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
4098
4098
|
declare const _default$25: typeof __VLS_export$28;
|
|
4099
4099
|
//#endregion
|
|
4100
4100
|
//#region src/slices/support_ticket/shared/SupportTicketAttachments.vue.d.ts
|
|
4101
|
-
declare const __VLS_export$27:
|
|
4101
|
+
declare const __VLS_export$27: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
4102
4102
|
declare const _default$80: typeof __VLS_export$27;
|
|
4103
4103
|
//#endregion
|
|
4104
4104
|
//#region src/slices/support_ticket/shared/InlineAttachments.vue.d.ts
|
|
@@ -4107,7 +4107,7 @@ interface Props$11 {
|
|
|
4107
4107
|
canUpload?: boolean;
|
|
4108
4108
|
canDelete?: boolean;
|
|
4109
4109
|
}
|
|
4110
|
-
declare const __VLS_export$26:
|
|
4110
|
+
declare const __VLS_export$26: vue4.DefineComponent<Props$11, {
|
|
4111
4111
|
getQueuedFiles: () => {
|
|
4112
4112
|
readonly lastModified: number;
|
|
4113
4113
|
readonly name: string;
|
|
@@ -4121,18 +4121,18 @@ declare const __VLS_export$26: vue0.DefineComponent<Props$11, {
|
|
|
4121
4121
|
text: () => Promise<string>;
|
|
4122
4122
|
}[];
|
|
4123
4123
|
uploadQueuedFiles: (ticketId: string) => Promise<void>;
|
|
4124
|
-
}, {}, {}, {},
|
|
4124
|
+
}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {
|
|
4125
4125
|
uploaded: () => any;
|
|
4126
4126
|
deleted: () => any;
|
|
4127
4127
|
filesQueued: (files: File[]) => any;
|
|
4128
|
-
}, string,
|
|
4128
|
+
}, string, vue4.PublicProps, Readonly<Props$11> & Readonly<{
|
|
4129
4129
|
onUploaded?: (() => any) | undefined;
|
|
4130
4130
|
onDeleted?: (() => any) | undefined;
|
|
4131
4131
|
onFilesQueued?: ((files: File[]) => any) | undefined;
|
|
4132
4132
|
}>, {
|
|
4133
4133
|
canUpload: boolean;
|
|
4134
4134
|
canDelete: boolean;
|
|
4135
|
-
}, {}, {}, {}, string,
|
|
4135
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4136
4136
|
declare const _default$46: typeof __VLS_export$26;
|
|
4137
4137
|
//#endregion
|
|
4138
4138
|
//#region src/slices/support_ticket/shared/CreditBalanceWidget.vue.d.ts
|
|
@@ -4142,16 +4142,16 @@ interface Props$10 {
|
|
|
4142
4142
|
showTitle?: boolean;
|
|
4143
4143
|
showHistoryLink?: boolean;
|
|
4144
4144
|
}
|
|
4145
|
-
declare const __VLS_export$25:
|
|
4145
|
+
declare const __VLS_export$25: vue4.DefineComponent<Props$10, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$10> & Readonly<{}>, {
|
|
4146
4146
|
variant: "compact" | "full";
|
|
4147
4147
|
expandable: boolean;
|
|
4148
4148
|
showTitle: boolean;
|
|
4149
4149
|
showHistoryLink: boolean;
|
|
4150
|
-
}, {}, {}, {}, string,
|
|
4150
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4151
4151
|
declare const _default$20: typeof __VLS_export$25;
|
|
4152
4152
|
//#endregion
|
|
4153
4153
|
//#region src/slices/support_ticket/components/SupportTicketHistoryTab.vue.d.ts
|
|
4154
|
-
declare const __VLS_export$24:
|
|
4154
|
+
declare const __VLS_export$24: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
4155
4155
|
declare const _default$82: typeof __VLS_export$24;
|
|
4156
4156
|
//#endregion
|
|
4157
4157
|
//#region src/slices/support_ticket/components/SupportTicketApprovalBadge.vue.d.ts
|
|
@@ -4166,10 +4166,10 @@ interface Props$9 {
|
|
|
4166
4166
|
/** Visual variant of the badge - defaults to 'default' */
|
|
4167
4167
|
variant?: 'default' | 'outline';
|
|
4168
4168
|
}
|
|
4169
|
-
declare const __VLS_export$23:
|
|
4169
|
+
declare const __VLS_export$23: vue4.DefineComponent<Props$9, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$9> & Readonly<{}>, {
|
|
4170
4170
|
size: "sm" | "md" | "lg";
|
|
4171
4171
|
variant: "default" | "outline";
|
|
4172
|
-
}, {}, {}, {}, string,
|
|
4172
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4173
4173
|
declare const _default$79: typeof __VLS_export$23;
|
|
4174
4174
|
//#endregion
|
|
4175
4175
|
//#region src/slices/support_ticket/components/SupportTicketDevLifecycleBadge.vue.d.ts
|
|
@@ -4184,10 +4184,10 @@ interface Props$8 {
|
|
|
4184
4184
|
/** Visual variant of the badge - defaults to 'default' */
|
|
4185
4185
|
variant?: 'default' | 'outline';
|
|
4186
4186
|
}
|
|
4187
|
-
declare const __VLS_export$22:
|
|
4187
|
+
declare const __VLS_export$22: vue4.DefineComponent<Props$8, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$8> & Readonly<{}>, {
|
|
4188
4188
|
size: "sm" | "md" | "lg";
|
|
4189
4189
|
variant: "default" | "outline";
|
|
4190
|
-
}, {}, {}, {}, string,
|
|
4190
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4191
4191
|
declare const _default$81: typeof __VLS_export$22;
|
|
4192
4192
|
//#endregion
|
|
4193
4193
|
//#region src/slices/support_ticket/components/SupportTicketPriorityBadge.vue.d.ts
|
|
@@ -4202,10 +4202,10 @@ interface Props$7 {
|
|
|
4202
4202
|
/** Visual variant of the badge - defaults to 'default' */
|
|
4203
4203
|
variant?: 'default' | 'outline';
|
|
4204
4204
|
}
|
|
4205
|
-
declare const __VLS_export$21:
|
|
4205
|
+
declare const __VLS_export$21: vue4.DefineComponent<Props$7, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$7> & Readonly<{}>, {
|
|
4206
4206
|
size: "sm" | "md" | "lg";
|
|
4207
4207
|
variant: "default" | "outline";
|
|
4208
|
-
}, {}, {}, {}, string,
|
|
4208
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4209
4209
|
declare const _default$83: typeof __VLS_export$21;
|
|
4210
4210
|
//#endregion
|
|
4211
4211
|
//#region src/slices/support_ticket/components/SupportTicketStatusBadge.vue.d.ts
|
|
@@ -4220,10 +4220,10 @@ interface Props$6 {
|
|
|
4220
4220
|
/** Visual variant of the badge - defaults to 'default' */
|
|
4221
4221
|
variant?: 'default' | 'outline';
|
|
4222
4222
|
}
|
|
4223
|
-
declare const __VLS_export$20:
|
|
4223
|
+
declare const __VLS_export$20: vue4.DefineComponent<Props$6, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$6> & Readonly<{}>, {
|
|
4224
4224
|
size: "sm" | "md" | "lg";
|
|
4225
4225
|
variant: "default" | "outline";
|
|
4226
|
-
}, {}, {}, {}, string,
|
|
4226
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4227
4227
|
declare const _default$84: typeof __VLS_export$20;
|
|
4228
4228
|
//#endregion
|
|
4229
4229
|
//#region src/slices/support_ticket/components/SupportTicketTypeBadge.vue.d.ts
|
|
@@ -4238,19 +4238,19 @@ interface Props$5 {
|
|
|
4238
4238
|
/** Visual variant of the badge - defaults to 'default' */
|
|
4239
4239
|
variant?: 'default' | 'outline';
|
|
4240
4240
|
}
|
|
4241
|
-
declare const __VLS_export$19:
|
|
4241
|
+
declare const __VLS_export$19: vue4.DefineComponent<Props$5, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$5> & Readonly<{}>, {
|
|
4242
4242
|
size: "sm" | "md" | "lg";
|
|
4243
4243
|
variant: "default" | "outline";
|
|
4244
|
-
}, {}, {}, {}, string,
|
|
4244
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
4245
4245
|
declare const _default$86: typeof __VLS_export$19;
|
|
4246
4246
|
//#endregion
|
|
4247
4247
|
//#region src/slices/support_ticket/customer/customerSupportTicketMetadata.d.ts
|
|
4248
|
-
declare const customerSupportTicketCreateSchemaWithMetadata:
|
|
4249
|
-
title:
|
|
4250
|
-
description:
|
|
4251
|
-
type:
|
|
4252
|
-
priority:
|
|
4253
|
-
}, "strip",
|
|
4248
|
+
declare const customerSupportTicketCreateSchemaWithMetadata: zod0.ZodObject<{
|
|
4249
|
+
title: zod0.ZodString;
|
|
4250
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4251
|
+
type: zod0.ZodDefault<zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>>;
|
|
4252
|
+
priority: zod0.ZodDefault<zod0.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>>;
|
|
4253
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4254
4254
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4255
4255
|
title: string;
|
|
4256
4256
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
@@ -4261,16 +4261,16 @@ declare const customerSupportTicketCreateSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4261
4261
|
description?: string | null | undefined;
|
|
4262
4262
|
priority?: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL" | undefined;
|
|
4263
4263
|
}>;
|
|
4264
|
-
declare const customerSupportTicketUpdateSchemaWithMetadata:
|
|
4265
|
-
title:
|
|
4266
|
-
description:
|
|
4267
|
-
type:
|
|
4268
|
-
priority:
|
|
4264
|
+
declare const customerSupportTicketUpdateSchemaWithMetadata: zod0.ZodObject<{
|
|
4265
|
+
title: zod0.ZodString;
|
|
4266
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4267
|
+
type: zod0.ZodDefault<zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>>;
|
|
4268
|
+
priority: zod0.ZodDefault<zod0.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>>;
|
|
4269
4269
|
} & {
|
|
4270
|
-
id:
|
|
4271
|
-
}, "strip",
|
|
4272
|
-
id: string;
|
|
4270
|
+
id: zod0.ZodString;
|
|
4271
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4273
4272
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4273
|
+
id: string;
|
|
4274
4274
|
title: string;
|
|
4275
4275
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
4276
4276
|
description?: string | null | undefined;
|
|
@@ -4287,39 +4287,39 @@ declare const customerSupportTicketUpdateSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4287
4287
|
* Reuse the existing CustomerSupportTicketReadSchema from the validation library
|
|
4288
4288
|
* for the data table rows - don't recreate it!
|
|
4289
4289
|
*/
|
|
4290
|
-
declare const customerSupportTicketRowSchemaWithMetadata:
|
|
4291
|
-
id:
|
|
4292
|
-
display_id:
|
|
4293
|
-
display_id_prefix:
|
|
4294
|
-
title:
|
|
4295
|
-
description:
|
|
4296
|
-
type:
|
|
4297
|
-
priority:
|
|
4298
|
-
status:
|
|
4299
|
-
is_locked:
|
|
4300
|
-
requester_name:
|
|
4301
|
-
requester_email:
|
|
4302
|
-
credit_value:
|
|
4303
|
-
start_at:
|
|
4304
|
-
target_at:
|
|
4305
|
-
completed_at:
|
|
4306
|
-
locked_approval_at:
|
|
4307
|
-
created_by:
|
|
4308
|
-
created_at:
|
|
4309
|
-
updated_by:
|
|
4310
|
-
updated_at:
|
|
4311
|
-
}, "strip",
|
|
4290
|
+
declare const customerSupportTicketRowSchemaWithMetadata: zod0.ZodObject<{
|
|
4291
|
+
id: zod0.ZodString;
|
|
4292
|
+
display_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4293
|
+
display_id_prefix: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4294
|
+
title: zod0.ZodString;
|
|
4295
|
+
description: zod0.ZodString;
|
|
4296
|
+
type: zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
4297
|
+
priority: zod0.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
4298
|
+
status: zod0.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>;
|
|
4299
|
+
is_locked: zod0.ZodBoolean;
|
|
4300
|
+
requester_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4301
|
+
requester_email: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4302
|
+
credit_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4303
|
+
start_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4304
|
+
target_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4305
|
+
completed_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4306
|
+
locked_approval_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4307
|
+
created_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4308
|
+
created_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4309
|
+
updated_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4310
|
+
updated_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4311
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4312
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4312
4313
|
id: string;
|
|
4313
4314
|
status: "PENDING" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED";
|
|
4314
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4315
4315
|
title: string;
|
|
4316
4316
|
description: string;
|
|
4317
4317
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
4318
4318
|
is_locked: boolean;
|
|
4319
4319
|
created_at?: string | null | undefined;
|
|
4320
|
+
updated_at?: string | null | undefined;
|
|
4320
4321
|
created_by?: string | null | undefined;
|
|
4321
4322
|
updated_by?: string | null | undefined;
|
|
4322
|
-
updated_at?: string | null | undefined;
|
|
4323
4323
|
display_id?: string | null | undefined;
|
|
4324
4324
|
display_id_prefix?: string | null | undefined;
|
|
4325
4325
|
requester_name?: string | null | undefined;
|
|
@@ -4330,17 +4330,17 @@ declare const customerSupportTicketRowSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4330
4330
|
completed_at?: string | null | undefined;
|
|
4331
4331
|
locked_approval_at?: string | null | undefined;
|
|
4332
4332
|
}, {
|
|
4333
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4333
4334
|
id: string;
|
|
4334
4335
|
status: "PENDING" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED";
|
|
4335
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4336
4336
|
title: string;
|
|
4337
4337
|
description: string;
|
|
4338
4338
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
4339
4339
|
is_locked: boolean;
|
|
4340
4340
|
created_at?: string | null | undefined;
|
|
4341
|
+
updated_at?: string | null | undefined;
|
|
4341
4342
|
created_by?: string | null | undefined;
|
|
4342
4343
|
updated_by?: string | null | undefined;
|
|
4343
|
-
updated_at?: string | null | undefined;
|
|
4344
4344
|
display_id?: string | null | undefined;
|
|
4345
4345
|
display_id_prefix?: string | null | undefined;
|
|
4346
4346
|
requester_name?: string | null | undefined;
|
|
@@ -4353,20 +4353,20 @@ declare const customerSupportTicketRowSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4353
4353
|
}>;
|
|
4354
4354
|
//#endregion
|
|
4355
4355
|
//#region src/slices/support_ticket/staff/StaffSupportTicketMetadata.d.ts
|
|
4356
|
-
declare const adminSupportTicketCreateSchemaWithMetadata:
|
|
4357
|
-
title:
|
|
4358
|
-
description:
|
|
4359
|
-
type:
|
|
4360
|
-
priority:
|
|
4361
|
-
dev_lifecycle:
|
|
4362
|
-
credit_value:
|
|
4363
|
-
delivered_value:
|
|
4364
|
-
start_at:
|
|
4365
|
-
target_at:
|
|
4366
|
-
completed_at:
|
|
4356
|
+
declare const adminSupportTicketCreateSchemaWithMetadata: zod0.ZodObject<{
|
|
4357
|
+
title: zod0.ZodString;
|
|
4358
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4359
|
+
type: zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
4360
|
+
priority: zod0.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
4361
|
+
dev_lifecycle: zod0.ZodOptional<zod0.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL"]>>;
|
|
4362
|
+
credit_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4363
|
+
delivered_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4364
|
+
start_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4365
|
+
target_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4366
|
+
completed_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4367
4367
|
} & {
|
|
4368
|
-
is_internal:
|
|
4369
|
-
}, "strip",
|
|
4368
|
+
is_internal: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4369
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4370
4370
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4371
4371
|
title: string;
|
|
4372
4372
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
@@ -4391,22 +4391,22 @@ declare const adminSupportTicketCreateSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4391
4391
|
dev_lifecycle?: "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
4392
4392
|
delivered_value?: string | null | undefined;
|
|
4393
4393
|
}>;
|
|
4394
|
-
declare const adminSupportTicketUpdateSchemaWithMetadata:
|
|
4395
|
-
title:
|
|
4396
|
-
description:
|
|
4397
|
-
type:
|
|
4398
|
-
priority:
|
|
4399
|
-
dev_lifecycle:
|
|
4400
|
-
credit_value:
|
|
4401
|
-
delivered_value:
|
|
4402
|
-
start_at:
|
|
4403
|
-
target_at:
|
|
4404
|
-
completed_at:
|
|
4394
|
+
declare const adminSupportTicketUpdateSchemaWithMetadata: zod0.ZodObject<{
|
|
4395
|
+
title: zod0.ZodString;
|
|
4396
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4397
|
+
type: zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
4398
|
+
priority: zod0.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
4399
|
+
dev_lifecycle: zod0.ZodOptional<zod0.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL"]>>;
|
|
4400
|
+
credit_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4401
|
+
delivered_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4402
|
+
start_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4403
|
+
target_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4404
|
+
completed_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4405
4405
|
} & {
|
|
4406
|
-
id:
|
|
4407
|
-
}, "strip",
|
|
4408
|
-
id: string;
|
|
4406
|
+
id: zod0.ZodString;
|
|
4407
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4409
4408
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4409
|
+
id: string;
|
|
4410
4410
|
title: string;
|
|
4411
4411
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
4412
4412
|
description?: string | null | undefined;
|
|
@@ -4417,8 +4417,8 @@ declare const adminSupportTicketUpdateSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4417
4417
|
dev_lifecycle?: "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
4418
4418
|
delivered_value?: string | null | undefined;
|
|
4419
4419
|
}, {
|
|
4420
|
-
id: string;
|
|
4421
4420
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4421
|
+
id: string;
|
|
4422
4422
|
title: string;
|
|
4423
4423
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
4424
4424
|
description?: string | null | undefined;
|
|
@@ -4435,35 +4435,35 @@ declare const adminSupportTicketUpdateSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4435
4435
|
* Reuse the existing StaffSupportTicketReadSchema from the validation library
|
|
4436
4436
|
* for the data table rows - don't recreate it!
|
|
4437
4437
|
*/
|
|
4438
|
-
declare const adminSupportTicketRowSchemaWithMetadata:
|
|
4439
|
-
id:
|
|
4440
|
-
display_id:
|
|
4441
|
-
display_id_prefix:
|
|
4442
|
-
title:
|
|
4443
|
-
description:
|
|
4444
|
-
type:
|
|
4445
|
-
priority:
|
|
4446
|
-
status:
|
|
4447
|
-
approval_status:
|
|
4448
|
-
is_locked:
|
|
4449
|
-
can_delete:
|
|
4450
|
-
requester_name:
|
|
4451
|
-
requester_email:
|
|
4452
|
-
dev_lifecycle:
|
|
4453
|
-
credit_value:
|
|
4454
|
-
delivered_value:
|
|
4455
|
-
start_at:
|
|
4456
|
-
target_at:
|
|
4457
|
-
completed_at:
|
|
4458
|
-
locked_approval_at:
|
|
4459
|
-
created_by:
|
|
4460
|
-
created_at:
|
|
4461
|
-
updated_by:
|
|
4462
|
-
updated_at:
|
|
4463
|
-
}, "strip",
|
|
4438
|
+
declare const adminSupportTicketRowSchemaWithMetadata: zod0.ZodObject<{
|
|
4439
|
+
id: zod0.ZodString;
|
|
4440
|
+
display_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4441
|
+
display_id_prefix: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4442
|
+
title: zod0.ZodString;
|
|
4443
|
+
description: zod0.ZodString;
|
|
4444
|
+
type: zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
4445
|
+
priority: zod0.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
4446
|
+
status: zod0.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>;
|
|
4447
|
+
approval_status: zod0.ZodEnum<["PENDING", "APPROVED", "REJECTED", "INTERNAL"]>;
|
|
4448
|
+
is_locked: zod0.ZodBoolean;
|
|
4449
|
+
can_delete: zod0.ZodBoolean;
|
|
4450
|
+
requester_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4451
|
+
requester_email: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4452
|
+
dev_lifecycle: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "DEPLOYED", "CANCELLED"]>>>;
|
|
4453
|
+
credit_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4454
|
+
delivered_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4455
|
+
start_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4456
|
+
target_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4457
|
+
completed_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4458
|
+
locked_approval_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4459
|
+
created_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4460
|
+
created_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4461
|
+
updated_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4462
|
+
updated_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4463
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4464
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4464
4465
|
id: string;
|
|
4465
4466
|
status: "PENDING" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED";
|
|
4466
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4467
4467
|
title: string;
|
|
4468
4468
|
description: string;
|
|
4469
4469
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
@@ -4471,9 +4471,9 @@ declare const adminSupportTicketRowSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4471
4471
|
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
4472
4472
|
can_delete: boolean;
|
|
4473
4473
|
created_at?: string | null | undefined;
|
|
4474
|
+
updated_at?: string | null | undefined;
|
|
4474
4475
|
created_by?: string | null | undefined;
|
|
4475
4476
|
updated_by?: string | null | undefined;
|
|
4476
|
-
updated_at?: string | null | undefined;
|
|
4477
4477
|
display_id?: string | null | undefined;
|
|
4478
4478
|
display_id_prefix?: string | null | undefined;
|
|
4479
4479
|
requester_name?: string | null | undefined;
|
|
@@ -4486,9 +4486,9 @@ declare const adminSupportTicketRowSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4486
4486
|
dev_lifecycle?: "PENDING" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | "CANCELLED" | null | undefined;
|
|
4487
4487
|
delivered_value?: string | null | undefined;
|
|
4488
4488
|
}, {
|
|
4489
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4489
4490
|
id: string;
|
|
4490
4491
|
status: "PENDING" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED";
|
|
4491
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4492
4492
|
title: string;
|
|
4493
4493
|
description: string;
|
|
4494
4494
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
@@ -4496,9 +4496,9 @@ declare const adminSupportTicketRowSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4496
4496
|
approval_status: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL";
|
|
4497
4497
|
can_delete: boolean;
|
|
4498
4498
|
created_at?: string | null | undefined;
|
|
4499
|
+
updated_at?: string | null | undefined;
|
|
4499
4500
|
created_by?: string | null | undefined;
|
|
4500
4501
|
updated_by?: string | null | undefined;
|
|
4501
|
-
updated_at?: string | null | undefined;
|
|
4502
4502
|
display_id?: string | null | undefined;
|
|
4503
4503
|
display_id_prefix?: string | null | undefined;
|
|
4504
4504
|
requester_name?: string | null | undefined;
|
|
@@ -4513,20 +4513,20 @@ declare const adminSupportTicketRowSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4513
4513
|
}>;
|
|
4514
4514
|
//#endregion
|
|
4515
4515
|
//#region src/slices/support_ticket/staff/staffSupportTicketFiltersMetadata.d.ts
|
|
4516
|
-
declare const adminSupportTicketFiltersSchemaWithMetadata:
|
|
4517
|
-
first:
|
|
4518
|
-
after:
|
|
4519
|
-
sortBy:
|
|
4520
|
-
sortDirection:
|
|
4521
|
-
paginationToken:
|
|
4516
|
+
declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
4517
|
+
first: zod0.ZodOptional<zod0.ZodNumber>;
|
|
4518
|
+
after: zod0.ZodOptional<zod0.ZodString>;
|
|
4519
|
+
sortBy: zod0.ZodOptional<zod0.ZodString>;
|
|
4520
|
+
sortDirection: zod0.ZodOptional<zod0.ZodEnum<["asc", "desc"]>>;
|
|
4521
|
+
paginationToken: zod0.ZodOptional<zod0.ZodString>;
|
|
4522
4522
|
} & {
|
|
4523
|
-
type:
|
|
4524
|
-
caseSensitive:
|
|
4523
|
+
type: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{
|
|
4524
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4525
4525
|
} & {
|
|
4526
|
-
operator:
|
|
4527
|
-
value:
|
|
4528
|
-
values:
|
|
4529
|
-
}, "strip",
|
|
4526
|
+
operator: zod0.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4527
|
+
value: zod0.ZodOptional<zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>>;
|
|
4528
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>, "many">>;
|
|
4529
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4530
4530
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4531
4531
|
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4532
4532
|
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
@@ -4547,13 +4547,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4547
4547
|
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4548
4548
|
caseSensitive?: boolean | undefined;
|
|
4549
4549
|
}>>;
|
|
4550
|
-
status:
|
|
4551
|
-
caseSensitive:
|
|
4550
|
+
status: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{
|
|
4551
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4552
4552
|
} & {
|
|
4553
|
-
operator:
|
|
4554
|
-
value:
|
|
4555
|
-
values:
|
|
4556
|
-
}, "strip",
|
|
4553
|
+
operator: zod0.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4554
|
+
value: zod0.ZodOptional<zod0.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>>;
|
|
4555
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>, "many">>;
|
|
4556
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4557
4557
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4558
4558
|
values?: ("PENDING" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED")[] | undefined;
|
|
4559
4559
|
value?: "PENDING" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | undefined;
|
|
@@ -4574,13 +4574,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4574
4574
|
value?: "PENDING" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | undefined;
|
|
4575
4575
|
caseSensitive?: boolean | undefined;
|
|
4576
4576
|
}>>;
|
|
4577
|
-
approval_status:
|
|
4578
|
-
caseSensitive:
|
|
4577
|
+
approval_status: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{
|
|
4578
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4579
4579
|
} & {
|
|
4580
|
-
operator:
|
|
4581
|
-
value:
|
|
4582
|
-
values:
|
|
4583
|
-
}, "strip",
|
|
4580
|
+
operator: zod0.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4581
|
+
value: zod0.ZodOptional<zod0.ZodEnum<["PENDING", "APPROVED", "REJECTED", "INTERNAL"]>>;
|
|
4582
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodEnum<["PENDING", "APPROVED", "REJECTED", "INTERNAL"]>, "many">>;
|
|
4583
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4584
4584
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4585
4585
|
values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
|
|
4586
4586
|
value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
|
|
@@ -4601,13 +4601,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4601
4601
|
value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
|
|
4602
4602
|
caseSensitive?: boolean | undefined;
|
|
4603
4603
|
}>>;
|
|
4604
|
-
priority:
|
|
4605
|
-
caseSensitive:
|
|
4604
|
+
priority: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{
|
|
4605
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4606
4606
|
} & {
|
|
4607
|
-
operator:
|
|
4608
|
-
value:
|
|
4609
|
-
values:
|
|
4610
|
-
}, "strip",
|
|
4607
|
+
operator: zod0.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4608
|
+
value: zod0.ZodOptional<zod0.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>>;
|
|
4609
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>, "many">>;
|
|
4610
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4611
4611
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4612
4612
|
values?: ("LOW" | "MEDIUM" | "HIGH" | "CRITICAL")[] | undefined;
|
|
4613
4613
|
value?: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL" | undefined;
|
|
@@ -4628,13 +4628,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4628
4628
|
value?: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL" | undefined;
|
|
4629
4629
|
caseSensitive?: boolean | undefined;
|
|
4630
4630
|
}>>;
|
|
4631
|
-
dev_lifecycle:
|
|
4632
|
-
caseSensitive:
|
|
4631
|
+
dev_lifecycle: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{
|
|
4632
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4633
4633
|
} & {
|
|
4634
|
-
operator:
|
|
4635
|
-
value:
|
|
4636
|
-
values:
|
|
4637
|
-
}, "strip",
|
|
4634
|
+
operator: zod0.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4635
|
+
value: zod0.ZodOptional<zod0.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "DEPLOYED", "CANCELLED"]>>;
|
|
4636
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "DEPLOYED", "CANCELLED"]>, "many">>;
|
|
4637
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4638
4638
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4639
4639
|
values?: ("PENDING" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | "CANCELLED")[] | undefined;
|
|
4640
4640
|
value?: "PENDING" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | "CANCELLED" | undefined;
|
|
@@ -4655,12 +4655,12 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4655
4655
|
value?: "PENDING" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | "CANCELLED" | undefined;
|
|
4656
4656
|
caseSensitive?: boolean | undefined;
|
|
4657
4657
|
}>>;
|
|
4658
|
-
title:
|
|
4659
|
-
operator:
|
|
4660
|
-
value:
|
|
4661
|
-
values:
|
|
4662
|
-
caseSensitive:
|
|
4663
|
-
}, "strip",
|
|
4658
|
+
title: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
4659
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
4660
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
4661
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
4662
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4663
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4664
4664
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4665
4665
|
values?: string[] | undefined;
|
|
4666
4666
|
value?: string | undefined;
|
|
@@ -4681,12 +4681,12 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4681
4681
|
value?: string | undefined;
|
|
4682
4682
|
caseSensitive?: boolean | undefined;
|
|
4683
4683
|
}>>;
|
|
4684
|
-
description:
|
|
4685
|
-
operator:
|
|
4686
|
-
value:
|
|
4687
|
-
values:
|
|
4688
|
-
caseSensitive:
|
|
4689
|
-
}, "strip",
|
|
4684
|
+
description: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
4685
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
4686
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
4687
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
4688
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4689
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4690
4690
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4691
4691
|
values?: string[] | undefined;
|
|
4692
4692
|
value?: string | undefined;
|
|
@@ -4707,12 +4707,12 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4707
4707
|
value?: string | undefined;
|
|
4708
4708
|
caseSensitive?: boolean | undefined;
|
|
4709
4709
|
}>>;
|
|
4710
|
-
requester_name:
|
|
4711
|
-
operator:
|
|
4712
|
-
value:
|
|
4713
|
-
values:
|
|
4714
|
-
caseSensitive:
|
|
4715
|
-
}, "strip",
|
|
4710
|
+
requester_name: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
4711
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
4712
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
4713
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
4714
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4715
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4716
4716
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4717
4717
|
values?: string[] | undefined;
|
|
4718
4718
|
value?: string | undefined;
|
|
@@ -4733,12 +4733,12 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4733
4733
|
value?: string | undefined;
|
|
4734
4734
|
caseSensitive?: boolean | undefined;
|
|
4735
4735
|
}>>;
|
|
4736
|
-
requester_email:
|
|
4737
|
-
operator:
|
|
4738
|
-
value:
|
|
4739
|
-
values:
|
|
4740
|
-
caseSensitive:
|
|
4741
|
-
}, "strip",
|
|
4736
|
+
requester_email: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
4737
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
4738
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
4739
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
4740
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4741
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4742
4742
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4743
4743
|
values?: string[] | undefined;
|
|
4744
4744
|
value?: string | undefined;
|
|
@@ -4759,13 +4759,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4759
4759
|
value?: string | undefined;
|
|
4760
4760
|
caseSensitive?: boolean | undefined;
|
|
4761
4761
|
}>>;
|
|
4762
|
-
is_locked:
|
|
4763
|
-
values:
|
|
4764
|
-
caseSensitive:
|
|
4762
|
+
is_locked: zod0.ZodOptional<zod0.ZodObject<{
|
|
4763
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
4764
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4765
4765
|
} & {
|
|
4766
|
-
operator:
|
|
4767
|
-
value:
|
|
4768
|
-
}, "strip",
|
|
4766
|
+
operator: zod0.ZodEnum<["eq", "ne"]>;
|
|
4767
|
+
value: zod0.ZodBoolean;
|
|
4768
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4769
4769
|
value: boolean;
|
|
4770
4770
|
operator: "eq" | "ne";
|
|
4771
4771
|
values?: any[] | undefined;
|
|
@@ -4776,13 +4776,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4776
4776
|
values?: any[] | undefined;
|
|
4777
4777
|
caseSensitive?: boolean | undefined;
|
|
4778
4778
|
}>>;
|
|
4779
|
-
credit_value:
|
|
4780
|
-
caseSensitive:
|
|
4779
|
+
credit_value: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
4780
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4781
4781
|
} & {
|
|
4782
|
-
operator:
|
|
4783
|
-
value:
|
|
4784
|
-
values:
|
|
4785
|
-
}, "strip",
|
|
4782
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte", "between", "in", "notIn"]>;
|
|
4783
|
+
value: zod0.ZodOptional<zod0.ZodNumber>;
|
|
4784
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodNumber, "many">>;
|
|
4785
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4786
4786
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4787
4787
|
values?: number[] | undefined;
|
|
4788
4788
|
value?: number | undefined;
|
|
@@ -4813,13 +4813,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4813
4813
|
value?: number | undefined;
|
|
4814
4814
|
caseSensitive?: boolean | undefined;
|
|
4815
4815
|
}>>;
|
|
4816
|
-
delivered_value:
|
|
4817
|
-
caseSensitive:
|
|
4816
|
+
delivered_value: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
4817
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4818
4818
|
} & {
|
|
4819
|
-
operator:
|
|
4820
|
-
value:
|
|
4821
|
-
values:
|
|
4822
|
-
}, "strip",
|
|
4819
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte", "between", "in", "notIn"]>;
|
|
4820
|
+
value: zod0.ZodOptional<zod0.ZodNumber>;
|
|
4821
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodNumber, "many">>;
|
|
4822
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4823
4823
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4824
4824
|
values?: number[] | undefined;
|
|
4825
4825
|
value?: number | undefined;
|
|
@@ -4850,13 +4850,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4850
4850
|
value?: number | undefined;
|
|
4851
4851
|
caseSensitive?: boolean | undefined;
|
|
4852
4852
|
}>>;
|
|
4853
|
-
created_at:
|
|
4854
|
-
value:
|
|
4855
|
-
values:
|
|
4856
|
-
caseSensitive:
|
|
4853
|
+
created_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
4854
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
4855
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
4856
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4857
4857
|
} & {
|
|
4858
|
-
operator:
|
|
4859
|
-
}, "strip",
|
|
4858
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
4859
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4860
4860
|
operator: "isEmpty" | "isNotEmpty";
|
|
4861
4861
|
values?: any[] | undefined;
|
|
4862
4862
|
value?: any;
|
|
@@ -4876,13 +4876,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4876
4876
|
values?: any[] | undefined;
|
|
4877
4877
|
value?: any;
|
|
4878
4878
|
caseSensitive?: boolean | undefined;
|
|
4879
|
-
}>,
|
|
4880
|
-
value:
|
|
4881
|
-
caseSensitive:
|
|
4879
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
4880
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
4881
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4882
4882
|
} & {
|
|
4883
|
-
operator:
|
|
4884
|
-
values:
|
|
4885
|
-
}, "strip",
|
|
4883
|
+
operator: zod0.ZodLiteral<"between">;
|
|
4884
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
4885
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4886
4886
|
values: string[];
|
|
4887
4887
|
operator: "between";
|
|
4888
4888
|
value?: any;
|
|
@@ -4912,13 +4912,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4912
4912
|
operator: "between";
|
|
4913
4913
|
value?: any;
|
|
4914
4914
|
caseSensitive?: boolean | undefined;
|
|
4915
|
-
}>,
|
|
4916
|
-
values:
|
|
4917
|
-
caseSensitive:
|
|
4915
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
4916
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
4917
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4918
4918
|
} & {
|
|
4919
|
-
operator:
|
|
4920
|
-
value:
|
|
4921
|
-
}, "strip",
|
|
4919
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
4920
|
+
value: zod0.ZodString;
|
|
4921
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4922
4922
|
value: string;
|
|
4923
4923
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
4924
4924
|
values?: any[] | undefined;
|
|
@@ -4939,13 +4939,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4939
4939
|
values?: any[] | undefined;
|
|
4940
4940
|
caseSensitive?: boolean | undefined;
|
|
4941
4941
|
}>]>>;
|
|
4942
|
-
updated_at:
|
|
4943
|
-
value:
|
|
4944
|
-
values:
|
|
4945
|
-
caseSensitive:
|
|
4942
|
+
updated_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
4943
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
4944
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
4945
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4946
4946
|
} & {
|
|
4947
|
-
operator:
|
|
4948
|
-
}, "strip",
|
|
4947
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
4948
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4949
4949
|
operator: "isEmpty" | "isNotEmpty";
|
|
4950
4950
|
values?: any[] | undefined;
|
|
4951
4951
|
value?: any;
|
|
@@ -4965,13 +4965,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
4965
4965
|
values?: any[] | undefined;
|
|
4966
4966
|
value?: any;
|
|
4967
4967
|
caseSensitive?: boolean | undefined;
|
|
4968
|
-
}>,
|
|
4969
|
-
value:
|
|
4970
|
-
caseSensitive:
|
|
4968
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
4969
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
4970
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4971
4971
|
} & {
|
|
4972
|
-
operator:
|
|
4973
|
-
values:
|
|
4974
|
-
}, "strip",
|
|
4972
|
+
operator: zod0.ZodLiteral<"between">;
|
|
4973
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
4974
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4975
4975
|
values: string[];
|
|
4976
4976
|
operator: "between";
|
|
4977
4977
|
value?: any;
|
|
@@ -5001,13 +5001,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5001
5001
|
operator: "between";
|
|
5002
5002
|
value?: any;
|
|
5003
5003
|
caseSensitive?: boolean | undefined;
|
|
5004
|
-
}>,
|
|
5005
|
-
values:
|
|
5006
|
-
caseSensitive:
|
|
5004
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
5005
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5006
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5007
5007
|
} & {
|
|
5008
|
-
operator:
|
|
5009
|
-
value:
|
|
5010
|
-
}, "strip",
|
|
5008
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
5009
|
+
value: zod0.ZodString;
|
|
5010
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5011
5011
|
value: string;
|
|
5012
5012
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
5013
5013
|
values?: any[] | undefined;
|
|
@@ -5028,13 +5028,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5028
5028
|
values?: any[] | undefined;
|
|
5029
5029
|
caseSensitive?: boolean | undefined;
|
|
5030
5030
|
}>]>>;
|
|
5031
|
-
start_at:
|
|
5032
|
-
value:
|
|
5033
|
-
values:
|
|
5034
|
-
caseSensitive:
|
|
5031
|
+
start_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
5032
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5033
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5034
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5035
5035
|
} & {
|
|
5036
|
-
operator:
|
|
5037
|
-
}, "strip",
|
|
5036
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
5037
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5038
5038
|
operator: "isEmpty" | "isNotEmpty";
|
|
5039
5039
|
values?: any[] | undefined;
|
|
5040
5040
|
value?: any;
|
|
@@ -5054,13 +5054,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5054
5054
|
values?: any[] | undefined;
|
|
5055
5055
|
value?: any;
|
|
5056
5056
|
caseSensitive?: boolean | undefined;
|
|
5057
|
-
}>,
|
|
5058
|
-
value:
|
|
5059
|
-
caseSensitive:
|
|
5057
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
5058
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5059
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5060
5060
|
} & {
|
|
5061
|
-
operator:
|
|
5062
|
-
values:
|
|
5063
|
-
}, "strip",
|
|
5061
|
+
operator: zod0.ZodLiteral<"between">;
|
|
5062
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
5063
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5064
5064
|
values: string[];
|
|
5065
5065
|
operator: "between";
|
|
5066
5066
|
value?: any;
|
|
@@ -5090,13 +5090,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5090
5090
|
operator: "between";
|
|
5091
5091
|
value?: any;
|
|
5092
5092
|
caseSensitive?: boolean | undefined;
|
|
5093
|
-
}>,
|
|
5094
|
-
values:
|
|
5095
|
-
caseSensitive:
|
|
5093
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
5094
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5095
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5096
5096
|
} & {
|
|
5097
|
-
operator:
|
|
5098
|
-
value:
|
|
5099
|
-
}, "strip",
|
|
5097
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
5098
|
+
value: zod0.ZodString;
|
|
5099
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5100
5100
|
value: string;
|
|
5101
5101
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
5102
5102
|
values?: any[] | undefined;
|
|
@@ -5117,13 +5117,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5117
5117
|
values?: any[] | undefined;
|
|
5118
5118
|
caseSensitive?: boolean | undefined;
|
|
5119
5119
|
}>]>>;
|
|
5120
|
-
target_at:
|
|
5121
|
-
value:
|
|
5122
|
-
values:
|
|
5123
|
-
caseSensitive:
|
|
5120
|
+
target_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
5121
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5122
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5123
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5124
5124
|
} & {
|
|
5125
|
-
operator:
|
|
5126
|
-
}, "strip",
|
|
5125
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
5126
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5127
5127
|
operator: "isEmpty" | "isNotEmpty";
|
|
5128
5128
|
values?: any[] | undefined;
|
|
5129
5129
|
value?: any;
|
|
@@ -5143,13 +5143,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5143
5143
|
values?: any[] | undefined;
|
|
5144
5144
|
value?: any;
|
|
5145
5145
|
caseSensitive?: boolean | undefined;
|
|
5146
|
-
}>,
|
|
5147
|
-
value:
|
|
5148
|
-
caseSensitive:
|
|
5146
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
5147
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5148
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5149
5149
|
} & {
|
|
5150
|
-
operator:
|
|
5151
|
-
values:
|
|
5152
|
-
}, "strip",
|
|
5150
|
+
operator: zod0.ZodLiteral<"between">;
|
|
5151
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
5152
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5153
5153
|
values: string[];
|
|
5154
5154
|
operator: "between";
|
|
5155
5155
|
value?: any;
|
|
@@ -5179,13 +5179,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5179
5179
|
operator: "between";
|
|
5180
5180
|
value?: any;
|
|
5181
5181
|
caseSensitive?: boolean | undefined;
|
|
5182
|
-
}>,
|
|
5183
|
-
values:
|
|
5184
|
-
caseSensitive:
|
|
5182
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
5183
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5184
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5185
5185
|
} & {
|
|
5186
|
-
operator:
|
|
5187
|
-
value:
|
|
5188
|
-
}, "strip",
|
|
5186
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
5187
|
+
value: zod0.ZodString;
|
|
5188
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5189
5189
|
value: string;
|
|
5190
5190
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
5191
5191
|
values?: any[] | undefined;
|
|
@@ -5206,13 +5206,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5206
5206
|
values?: any[] | undefined;
|
|
5207
5207
|
caseSensitive?: boolean | undefined;
|
|
5208
5208
|
}>]>>;
|
|
5209
|
-
completed_at:
|
|
5210
|
-
value:
|
|
5211
|
-
values:
|
|
5212
|
-
caseSensitive:
|
|
5209
|
+
completed_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
5210
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5211
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5212
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5213
5213
|
} & {
|
|
5214
|
-
operator:
|
|
5215
|
-
}, "strip",
|
|
5214
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
5215
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5216
5216
|
operator: "isEmpty" | "isNotEmpty";
|
|
5217
5217
|
values?: any[] | undefined;
|
|
5218
5218
|
value?: any;
|
|
@@ -5232,13 +5232,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5232
5232
|
values?: any[] | undefined;
|
|
5233
5233
|
value?: any;
|
|
5234
5234
|
caseSensitive?: boolean | undefined;
|
|
5235
|
-
}>,
|
|
5236
|
-
value:
|
|
5237
|
-
caseSensitive:
|
|
5235
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
5236
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5237
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5238
5238
|
} & {
|
|
5239
|
-
operator:
|
|
5240
|
-
values:
|
|
5241
|
-
}, "strip",
|
|
5239
|
+
operator: zod0.ZodLiteral<"between">;
|
|
5240
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
5241
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5242
5242
|
values: string[];
|
|
5243
5243
|
operator: "between";
|
|
5244
5244
|
value?: any;
|
|
@@ -5268,13 +5268,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5268
5268
|
operator: "between";
|
|
5269
5269
|
value?: any;
|
|
5270
5270
|
caseSensitive?: boolean | undefined;
|
|
5271
|
-
}>,
|
|
5272
|
-
values:
|
|
5273
|
-
caseSensitive:
|
|
5271
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
5272
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5273
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5274
5274
|
} & {
|
|
5275
|
-
operator:
|
|
5276
|
-
value:
|
|
5277
|
-
}, "strip",
|
|
5275
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
5276
|
+
value: zod0.ZodString;
|
|
5277
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5278
5278
|
value: string;
|
|
5279
5279
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
5280
5280
|
values?: any[] | undefined;
|
|
@@ -5295,17 +5295,27 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5295
5295
|
values?: any[] | undefined;
|
|
5296
5296
|
caseSensitive?: boolean | undefined;
|
|
5297
5297
|
}>]>>;
|
|
5298
|
-
search:
|
|
5299
|
-
query:
|
|
5300
|
-
searchableFields:
|
|
5301
|
-
}, "strip",
|
|
5298
|
+
search: zod0.ZodOptional<zod0.ZodObject<{
|
|
5299
|
+
query: zod0.ZodString;
|
|
5300
|
+
searchableFields: zod0.ZodArray<zod0.ZodString, "many">;
|
|
5301
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5302
5302
|
query: string;
|
|
5303
5303
|
searchableFields: string[];
|
|
5304
5304
|
}, {
|
|
5305
5305
|
query: string;
|
|
5306
5306
|
searchableFields: string[];
|
|
5307
5307
|
}>>;
|
|
5308
|
-
}, "strip",
|
|
5308
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5309
|
+
type?: {
|
|
5310
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5311
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5312
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5313
|
+
caseSensitive?: boolean | undefined;
|
|
5314
|
+
} | undefined;
|
|
5315
|
+
search?: {
|
|
5316
|
+
query: string;
|
|
5317
|
+
searchableFields: string[];
|
|
5318
|
+
} | undefined;
|
|
5309
5319
|
created_at?: {
|
|
5310
5320
|
operator: "isEmpty" | "isNotEmpty";
|
|
5311
5321
|
values?: any[] | undefined;
|
|
@@ -5328,28 +5338,17 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5328
5338
|
value?: "PENDING" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | undefined;
|
|
5329
5339
|
caseSensitive?: boolean | undefined;
|
|
5330
5340
|
} | undefined;
|
|
5331
|
-
type?: {
|
|
5332
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5333
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5334
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5335
|
-
caseSensitive?: boolean | undefined;
|
|
5336
|
-
} | undefined;
|
|
5337
|
-
search?: {
|
|
5338
|
-
query: string;
|
|
5339
|
-
searchableFields: string[];
|
|
5340
|
-
} | undefined;
|
|
5341
5341
|
title?: {
|
|
5342
5342
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5343
5343
|
values?: string[] | undefined;
|
|
5344
5344
|
value?: string | undefined;
|
|
5345
5345
|
caseSensitive?: boolean | undefined;
|
|
5346
5346
|
} | undefined;
|
|
5347
|
-
|
|
5348
|
-
|
|
5349
|
-
|
|
5350
|
-
|
|
5351
|
-
|
|
5352
|
-
} | undefined;
|
|
5347
|
+
first?: number | undefined;
|
|
5348
|
+
after?: string | undefined;
|
|
5349
|
+
sortBy?: string | undefined;
|
|
5350
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5351
|
+
paginationToken?: string | undefined;
|
|
5353
5352
|
updated_at?: {
|
|
5354
5353
|
operator: "isEmpty" | "isNotEmpty";
|
|
5355
5354
|
values?: any[] | undefined;
|
|
@@ -5366,11 +5365,12 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5366
5365
|
values?: any[] | undefined;
|
|
5367
5366
|
caseSensitive?: boolean | undefined;
|
|
5368
5367
|
} | undefined;
|
|
5369
|
-
|
|
5370
|
-
|
|
5371
|
-
|
|
5372
|
-
|
|
5373
|
-
|
|
5368
|
+
description?: {
|
|
5369
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5370
|
+
values?: string[] | undefined;
|
|
5371
|
+
value?: string | undefined;
|
|
5372
|
+
caseSensitive?: boolean | undefined;
|
|
5373
|
+
} | undefined;
|
|
5374
5374
|
priority?: {
|
|
5375
5375
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
5376
5376
|
values?: ("LOW" | "MEDIUM" | "HIGH" | "CRITICAL")[] | undefined;
|
|
@@ -5468,6 +5468,16 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5468
5468
|
caseSensitive?: boolean | undefined;
|
|
5469
5469
|
} | undefined;
|
|
5470
5470
|
}, {
|
|
5471
|
+
type?: {
|
|
5472
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5473
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5474
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5475
|
+
caseSensitive?: boolean | undefined;
|
|
5476
|
+
} | undefined;
|
|
5477
|
+
search?: {
|
|
5478
|
+
query: string;
|
|
5479
|
+
searchableFields: string[];
|
|
5480
|
+
} | undefined;
|
|
5471
5481
|
created_at?: {
|
|
5472
5482
|
operator: "isEmpty" | "isNotEmpty";
|
|
5473
5483
|
values?: any[] | undefined;
|
|
@@ -5490,28 +5500,17 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5490
5500
|
value?: "PENDING" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | undefined;
|
|
5491
5501
|
caseSensitive?: boolean | undefined;
|
|
5492
5502
|
} | undefined;
|
|
5493
|
-
type?: {
|
|
5494
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5495
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5496
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5497
|
-
caseSensitive?: boolean | undefined;
|
|
5498
|
-
} | undefined;
|
|
5499
|
-
search?: {
|
|
5500
|
-
query: string;
|
|
5501
|
-
searchableFields: string[];
|
|
5502
|
-
} | undefined;
|
|
5503
5503
|
title?: {
|
|
5504
5504
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5505
5505
|
values?: string[] | undefined;
|
|
5506
5506
|
value?: string | undefined;
|
|
5507
5507
|
caseSensitive?: boolean | undefined;
|
|
5508
5508
|
} | undefined;
|
|
5509
|
-
|
|
5510
|
-
|
|
5511
|
-
|
|
5512
|
-
|
|
5513
|
-
|
|
5514
|
-
} | undefined;
|
|
5509
|
+
first?: number | undefined;
|
|
5510
|
+
after?: string | undefined;
|
|
5511
|
+
sortBy?: string | undefined;
|
|
5512
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5513
|
+
paginationToken?: string | undefined;
|
|
5515
5514
|
updated_at?: {
|
|
5516
5515
|
operator: "isEmpty" | "isNotEmpty";
|
|
5517
5516
|
values?: any[] | undefined;
|
|
@@ -5528,11 +5527,12 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5528
5527
|
values?: any[] | undefined;
|
|
5529
5528
|
caseSensitive?: boolean | undefined;
|
|
5530
5529
|
} | undefined;
|
|
5531
|
-
|
|
5532
|
-
|
|
5533
|
-
|
|
5534
|
-
|
|
5535
|
-
|
|
5530
|
+
description?: {
|
|
5531
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5532
|
+
values?: string[] | undefined;
|
|
5533
|
+
value?: string | undefined;
|
|
5534
|
+
caseSensitive?: boolean | undefined;
|
|
5535
|
+
} | undefined;
|
|
5536
5536
|
priority?: {
|
|
5537
5537
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
5538
5538
|
values?: ("LOW" | "MEDIUM" | "HIGH" | "CRITICAL")[] | undefined;
|
|
@@ -5730,31 +5730,31 @@ declare const authPaths: {
|
|
|
5730
5730
|
declare const authRoutes: ExtendedRouteRecordRaw[];
|
|
5731
5731
|
//#endregion
|
|
5732
5732
|
//#region src/slices/auth/features/login/LoginForm.vue.d.ts
|
|
5733
|
-
declare const __VLS_export$18:
|
|
5733
|
+
declare const __VLS_export$18: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5734
5734
|
declare const _default$51: typeof __VLS_export$18;
|
|
5735
5735
|
//#endregion
|
|
5736
5736
|
//#region src/slices/auth/features/signup/Signup.vue.d.ts
|
|
5737
|
-
declare const __VLS_export$17:
|
|
5737
|
+
declare const __VLS_export$17: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5738
5738
|
declare const _default$66: typeof __VLS_export$17;
|
|
5739
5739
|
//#endregion
|
|
5740
5740
|
//#region src/slices/auth/features/forgot_password/ForgotPassword.vue.d.ts
|
|
5741
|
-
declare const __VLS_export$16:
|
|
5741
|
+
declare const __VLS_export$16: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5742
5742
|
declare const _default$43: typeof __VLS_export$16;
|
|
5743
5743
|
//#endregion
|
|
5744
5744
|
//#region src/slices/auth/features/reset_password/ResetPassword.vue.d.ts
|
|
5745
|
-
declare const __VLS_export$15:
|
|
5745
|
+
declare const __VLS_export$15: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5746
5746
|
declare const _default$62: typeof __VLS_export$15;
|
|
5747
5747
|
//#endregion
|
|
5748
5748
|
//#region src/slices/auth/features/Logout.vue.d.ts
|
|
5749
|
-
declare const __VLS_export$14:
|
|
5749
|
+
declare const __VLS_export$14: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5750
5750
|
declare const _default$52: typeof __VLS_export$14;
|
|
5751
5751
|
//#endregion
|
|
5752
5752
|
//#region src/slices/auth/features/login/SocialLoginButtons.vue.d.ts
|
|
5753
|
-
declare const __VLS_export$13:
|
|
5753
|
+
declare const __VLS_export$13: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {} & {
|
|
5754
5754
|
login: (provider: string) => any;
|
|
5755
|
-
}, string,
|
|
5755
|
+
}, string, vue4.PublicProps, Readonly<{}> & Readonly<{
|
|
5756
5756
|
onLogin?: ((provider: string) => any) | undefined;
|
|
5757
|
-
}>, {}, {}, {}, {}, string,
|
|
5757
|
+
}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5758
5758
|
declare const _default$67: typeof __VLS_export$13;
|
|
5759
5759
|
//#endregion
|
|
5760
5760
|
//#region src/slices/auth/features/login/loginSchema.d.ts
|
|
@@ -5849,25 +5849,25 @@ interface Props$4 {
|
|
|
5849
5849
|
userType: 'consumer' | 'lead' | 'staff' | 'super_admin';
|
|
5850
5850
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
5851
5851
|
}
|
|
5852
|
-
declare const __VLS_export$12:
|
|
5852
|
+
declare const __VLS_export$12: vue4.DefineComponent<Props$4, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$4> & Readonly<{}>, {
|
|
5853
5853
|
size: "xs" | "sm" | "md" | "lg";
|
|
5854
|
-
}, {}, {}, {}, string,
|
|
5854
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
5855
5855
|
declare const _default$98: typeof __VLS_export$12;
|
|
5856
5856
|
//#endregion
|
|
5857
5857
|
//#region src/slices/admin/features/create_user/CreateUserPage.vue.d.ts
|
|
5858
|
-
declare const __VLS_export$11:
|
|
5858
|
+
declare const __VLS_export$11: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5859
5859
|
declare const _default$17: typeof __VLS_export$11;
|
|
5860
5860
|
//#endregion
|
|
5861
5861
|
//#region src/slices/admin/features/notification-emails/NotificationEmailsPage.vue.d.ts
|
|
5862
|
-
declare const __VLS_export$10:
|
|
5862
|
+
declare const __VLS_export$10: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5863
5863
|
declare const _default$56: typeof __VLS_export$10;
|
|
5864
5864
|
//#endregion
|
|
5865
5865
|
//#region src/slices/admin/features/user_management/EditUserPage.vue.d.ts
|
|
5866
|
-
declare const __VLS_export$9:
|
|
5866
|
+
declare const __VLS_export$9: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5867
5867
|
declare const _default$38: typeof __VLS_export$9;
|
|
5868
5868
|
//#endregion
|
|
5869
5869
|
//#region src/slices/admin/features/user_management/UserListPage.vue.d.ts
|
|
5870
|
-
declare const __VLS_export$8:
|
|
5870
|
+
declare const __VLS_export$8: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5871
5871
|
declare const _default$96: typeof __VLS_export$8;
|
|
5872
5872
|
//#endregion
|
|
5873
5873
|
//#region src/slices/admin/features/create_user/create_user_schema.d.ts
|
|
@@ -5886,18 +5886,18 @@ declare const createUserSchemaWithMetadata: z.ZodObject<{
|
|
|
5886
5886
|
}>;
|
|
5887
5887
|
//#endregion
|
|
5888
5888
|
//#region src/slices/admin/features/notification-emails/notificationEmailsMetadata.d.ts
|
|
5889
|
-
declare const notificationEmailsSchemaWithMetadata:
|
|
5890
|
-
emails:
|
|
5891
|
-
id:
|
|
5892
|
-
email:
|
|
5893
|
-
}, "strip",
|
|
5889
|
+
declare const notificationEmailsSchemaWithMetadata: zod0.ZodObject<{
|
|
5890
|
+
emails: zod0.ZodArray<zod0.ZodObject<{
|
|
5891
|
+
id: zod0.ZodOptional<zod0.ZodDefault<zod0.ZodString>>;
|
|
5892
|
+
email: zod0.ZodString;
|
|
5893
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5894
5894
|
email: string;
|
|
5895
5895
|
id?: string | undefined;
|
|
5896
5896
|
}, {
|
|
5897
5897
|
email: string;
|
|
5898
5898
|
id?: string | undefined;
|
|
5899
5899
|
}>, "many">;
|
|
5900
|
-
}, "strip",
|
|
5900
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5901
5901
|
emails: {
|
|
5902
5902
|
email: string;
|
|
5903
5903
|
id?: string | undefined;
|
|
@@ -5910,10 +5910,10 @@ declare const notificationEmailsSchemaWithMetadata: zod47.ZodObject<{
|
|
|
5910
5910
|
}>;
|
|
5911
5911
|
//#endregion
|
|
5912
5912
|
//#region src/slices/admin/features/user_management/updateUserMetadata.d.ts
|
|
5913
|
-
declare const updateUserSchemaWithMetadata:
|
|
5914
|
-
id:
|
|
5915
|
-
user_type:
|
|
5916
|
-
}, "strip",
|
|
5913
|
+
declare const updateUserSchemaWithMetadata: zod0.ZodObject<{
|
|
5914
|
+
id: zod0.ZodString;
|
|
5915
|
+
user_type: zod0.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
5916
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5917
5917
|
id: string;
|
|
5918
5918
|
user_type: "super_admin" | "staff" | "lead" | "consumer";
|
|
5919
5919
|
}, {
|
|
@@ -5959,15 +5959,15 @@ declare const creditPaths: {
|
|
|
5959
5959
|
declare const creditRoutes: Array<ExtendedRouteRecordRaw>;
|
|
5960
5960
|
//#endregion
|
|
5961
5961
|
//#region src/slices/customer/CreditBalanceDashboard.vue.d.ts
|
|
5962
|
-
declare const __VLS_export$7:
|
|
5962
|
+
declare const __VLS_export$7: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5963
5963
|
declare const _default$18: typeof __VLS_export$7;
|
|
5964
5964
|
//#endregion
|
|
5965
5965
|
//#region src/slices/customer/components/CreditBalanceOverview.vue.d.ts
|
|
5966
|
-
declare const __VLS_export$6:
|
|
5966
|
+
declare const __VLS_export$6: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5967
5967
|
declare const _default$19: typeof __VLS_export$6;
|
|
5968
5968
|
//#endregion
|
|
5969
5969
|
//#region src/slices/customer/components/CreditTransactionHistory.vue.d.ts
|
|
5970
|
-
declare const __VLS_export$5:
|
|
5970
|
+
declare const __VLS_export$5: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5971
5971
|
declare const _default$22: typeof __VLS_export$5;
|
|
5972
5972
|
//#endregion
|
|
5973
5973
|
//#region src/slices/customer/components/CreditTransactionTypeBadge.vue.d.ts
|
|
@@ -5975,31 +5975,31 @@ interface Props$3 {
|
|
|
5975
5975
|
type: string;
|
|
5976
5976
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
5977
5977
|
}
|
|
5978
|
-
declare const __VLS_export$4:
|
|
5978
|
+
declare const __VLS_export$4: vue4.DefineComponent<Props$3, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$3> & Readonly<{}>, {
|
|
5979
5979
|
size: "xs" | "sm" | "md" | "lg";
|
|
5980
|
-
}, {}, {}, {}, string,
|
|
5980
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
5981
5981
|
declare const _default$23: typeof __VLS_export$4;
|
|
5982
5982
|
//#endregion
|
|
5983
5983
|
//#region src/slices/customer/features/credit-management/CreditManagement.vue.d.ts
|
|
5984
|
-
declare const __VLS_export$3:
|
|
5984
|
+
declare const __VLS_export$3: vue4.DefineComponent<{}, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue4.ComponentProvideOptions, true, {}, any>;
|
|
5985
5985
|
declare const _default$21: typeof __VLS_export$3;
|
|
5986
5986
|
//#endregion
|
|
5987
5987
|
//#region src/slices/customer/features/credit-management/AddCredits.vue.d.ts
|
|
5988
5988
|
interface Props$2 {
|
|
5989
5989
|
onSuccess?: () => void;
|
|
5990
5990
|
}
|
|
5991
|
-
declare const __VLS_export$2:
|
|
5991
|
+
declare const __VLS_export$2: vue4.DefineComponent<Props$2, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$2> & Readonly<{}>, {
|
|
5992
5992
|
onSuccess: () => void;
|
|
5993
|
-
}, {}, {}, {}, string,
|
|
5993
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
5994
5994
|
declare const _default: typeof __VLS_export$2;
|
|
5995
5995
|
//#endregion
|
|
5996
5996
|
//#region src/slices/customer/features/credit-management/SetMonthlyAllocation.vue.d.ts
|
|
5997
5997
|
interface Props$1 {
|
|
5998
5998
|
onSuccess?: () => void;
|
|
5999
5999
|
}
|
|
6000
|
-
declare const __VLS_export$1:
|
|
6000
|
+
declare const __VLS_export$1: vue4.DefineComponent<Props$1, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props$1> & Readonly<{}>, {
|
|
6001
6001
|
onSuccess: () => void;
|
|
6002
|
-
}, {}, {}, {}, string,
|
|
6002
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
6003
6003
|
declare const _default$64: typeof __VLS_export$1;
|
|
6004
6004
|
//#endregion
|
|
6005
6005
|
//#region src/slices/customer/features/credit-management/ResetMonthlyBalance.vue.d.ts
|
|
@@ -6007,10 +6007,10 @@ interface Props {
|
|
|
6007
6007
|
currentMonthlyBalance?: string;
|
|
6008
6008
|
onSuccess?: () => void;
|
|
6009
6009
|
}
|
|
6010
|
-
declare const __VLS_export:
|
|
6010
|
+
declare const __VLS_export: vue4.DefineComponent<Props, {}, {}, {}, {}, vue4.ComponentOptionsMixin, vue4.ComponentOptionsMixin, {}, string, vue4.PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
6011
6011
|
onSuccess: () => void;
|
|
6012
6012
|
currentMonthlyBalance: string;
|
|
6013
|
-
}, {}, {}, {}, string,
|
|
6013
|
+
}, {}, {}, {}, string, vue4.ComponentProvideOptions, false, {}, any>;
|
|
6014
6014
|
declare const _default$61: typeof __VLS_export;
|
|
6015
6015
|
//#endregion
|
|
6016
6016
|
//#region src/slices/customer/creditTransactionRowSchema.d.ts
|
|
@@ -6024,39 +6024,39 @@ declare const creditTransactionRowSchemaWithMetadata: z.ZodObject<{
|
|
|
6024
6024
|
created_at: z.ZodString;
|
|
6025
6025
|
created_by: z.ZodString;
|
|
6026
6026
|
}, "strip", z.ZodTypeAny, {
|
|
6027
|
+
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
6027
6028
|
id: string;
|
|
6028
6029
|
created_at: string;
|
|
6029
|
-
|
|
6030
|
+
created_by: string;
|
|
6030
6031
|
amount: string;
|
|
6031
6032
|
balance_after: string;
|
|
6032
|
-
created_by: string;
|
|
6033
|
-
support_ticket_id?: string | null | undefined;
|
|
6034
6033
|
description?: string | null | undefined;
|
|
6034
|
+
support_ticket_id?: string | null | undefined;
|
|
6035
6035
|
}, {
|
|
6036
|
+
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
6036
6037
|
id: string;
|
|
6037
6038
|
created_at: string;
|
|
6038
|
-
|
|
6039
|
+
created_by: string;
|
|
6039
6040
|
amount: string;
|
|
6040
6041
|
balance_after: string;
|
|
6041
|
-
created_by: string;
|
|
6042
|
-
support_ticket_id?: string | null | undefined;
|
|
6043
6042
|
description?: string | null | undefined;
|
|
6043
|
+
support_ticket_id?: string | null | undefined;
|
|
6044
6044
|
}>;
|
|
6045
6045
|
//#endregion
|
|
6046
6046
|
//#region src/slices/customer/features/credit-management/creditFormMetadata.d.ts
|
|
6047
|
-
declare const addCreditsSchemaWithMetadata:
|
|
6048
|
-
amount:
|
|
6049
|
-
reason:
|
|
6050
|
-
}, "strip",
|
|
6047
|
+
declare const addCreditsSchemaWithMetadata: zod0.ZodObject<{
|
|
6048
|
+
amount: zod0.ZodString;
|
|
6049
|
+
reason: zod0.ZodOptional<zod0.ZodString>;
|
|
6050
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
6051
6051
|
amount: string;
|
|
6052
6052
|
reason?: string | undefined;
|
|
6053
6053
|
}, {
|
|
6054
6054
|
amount: string;
|
|
6055
6055
|
reason?: string | undefined;
|
|
6056
6056
|
}>;
|
|
6057
|
-
declare const setMonthlyAllocationSchemaWithMetadata:
|
|
6058
|
-
amount:
|
|
6059
|
-
}, "strip",
|
|
6057
|
+
declare const setMonthlyAllocationSchemaWithMetadata: zod0.ZodObject<{
|
|
6058
|
+
amount: zod0.ZodString;
|
|
6059
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
6060
6060
|
amount: string;
|
|
6061
6061
|
}, {
|
|
6062
6062
|
amount: string;
|