@dragonmastery/dragoncore-vue 0.0.5 → 0.0.6
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 +957 -957
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as vue0 from "vue";
|
|
2
2
|
import { App, InjectionKey, 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, SavedFilterReadDto, SetMonthlyAllocationSchema, StaffSupportTicketCreateSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateSchema, SupportTicketApproval, SupportTicketDevLifecycle, SupportTicketPriority, SupportTicketStatus, SupportTicketType, TeamCreateSchema, TeamMemberCreateSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberUpdateSchema, TeamReadDto, TeamReadSchema, TeamUpdateSchema, 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 zod77 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: vue0.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: vue0.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: vue0.Ref<string | null, string | null>;
|
|
323
|
+
clientHeaders: vue0.ComputedRef<{
|
|
324
324
|
Authorization?: string | undefined;
|
|
325
325
|
'Content-Type': string;
|
|
326
326
|
}>;
|
|
327
|
-
debug:
|
|
327
|
+
debug: vue0.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: vue0.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: vue0.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: vue0.Ref<string | null, string | null>;
|
|
431
|
+
clientHeaders: vue0.ComputedRef<{
|
|
432
432
|
Authorization?: string | undefined;
|
|
433
433
|
'Content-Type': string;
|
|
434
434
|
}>;
|
|
435
|
-
debug:
|
|
435
|
+
debug: vue0.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: vue0.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: vue0.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: vue0.Ref<string | null, string | null>;
|
|
539
|
+
clientHeaders: vue0.ComputedRef<{
|
|
540
540
|
Authorization?: string | undefined;
|
|
541
541
|
'Content-Type': string;
|
|
542
542
|
}>;
|
|
543
|
-
debug:
|
|
543
|
+
debug: vue0.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$11 = {} & { [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$11:
|
|
618
|
+
declare const __VLS_base$11: vue0.DefineComponent<Props$27, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {} & {
|
|
619
619
|
"tab-click": (tabId: string) => any;
|
|
620
|
-
}, string,
|
|
620
|
+
}, string, vue0.PublicProps, Readonly<Props$27> & Readonly<{
|
|
621
621
|
"onTab-click"?: ((tabId: string) => any) | undefined;
|
|
622
622
|
}>, {
|
|
623
623
|
activeTab: string;
|
|
624
|
-
}, {}, {}, {}, string,
|
|
624
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
625
625
|
declare const __VLS_export$93: __VLS_WithSlots$11<typeof __VLS_base$11, __VLS_Slots$11>;
|
|
626
626
|
declare const _default$2: typeof __VLS_export$93;
|
|
627
627
|
type __VLS_WithSlots$11<T, S> = T & {
|
|
@@ -637,7 +637,7 @@ type __VLS_Slots$10 = {} & {
|
|
|
637
637
|
} & {
|
|
638
638
|
default?: (props: typeof __VLS_10) => any;
|
|
639
639
|
};
|
|
640
|
-
declare const __VLS_base$10:
|
|
640
|
+
declare const __VLS_base$10: vue0.DefineComponent<vue0.ExtractPropTypes<{
|
|
641
641
|
to: {
|
|
642
642
|
type: StringConstructor;
|
|
643
643
|
required: true;
|
|
@@ -650,7 +650,7 @@ declare const __VLS_base$10: vue6.DefineComponent<vue6.ExtractPropTypes<{
|
|
|
650
650
|
type: StringConstructor;
|
|
651
651
|
default: string;
|
|
652
652
|
};
|
|
653
|
-
}>, {}, {}, {}, {},
|
|
653
|
+
}>, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<vue0.ExtractPropTypes<{
|
|
654
654
|
to: {
|
|
655
655
|
type: StringConstructor;
|
|
656
656
|
required: true;
|
|
@@ -666,7 +666,7 @@ declare const __VLS_base$10: vue6.DefineComponent<vue6.ExtractPropTypes<{
|
|
|
666
666
|
}>> & Readonly<{}>, {
|
|
667
667
|
activeClass: string;
|
|
668
668
|
exactActiveClass: string;
|
|
669
|
-
}, {}, {}, {}, string,
|
|
669
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
670
670
|
declare const __VLS_export$92: __VLS_WithSlots$10<typeof __VLS_base$10, __VLS_Slots$10>;
|
|
671
671
|
declare const _default$3: typeof __VLS_export$92;
|
|
672
672
|
type __VLS_WithSlots$10<T, S> = T & {
|
|
@@ -706,13 +706,13 @@ declare var __VLS_16: `icon-${string}`, __VLS_17: {}, __VLS_20: `icon-${string}`
|
|
|
706
706
|
type __VLS_Slots$9 = {} & { [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$9:
|
|
709
|
+
declare const __VLS_base$9: vue0.DefineComponent<Props$26, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {} & {
|
|
710
710
|
"tab-click": (tabId: string) => any;
|
|
711
|
-
}, string,
|
|
711
|
+
}, string, vue0.PublicProps, Readonly<Props$26> & Readonly<{
|
|
712
712
|
"onTab-click"?: ((tabId: string) => any) | undefined;
|
|
713
713
|
}>, {
|
|
714
714
|
activeTab: string;
|
|
715
|
-
}, {}, {}, {}, string,
|
|
715
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
716
716
|
declare const __VLS_export$91: __VLS_WithSlots$9<typeof __VLS_base$9, __VLS_Slots$9>;
|
|
717
717
|
declare const _default$4: typeof __VLS_export$91;
|
|
718
718
|
type __VLS_WithSlots$9<T, S> = T & {
|
|
@@ -732,13 +732,13 @@ type __VLS_Slots$8 = {} & {
|
|
|
732
732
|
} & {
|
|
733
733
|
default?: (props: typeof __VLS_3$1) => any;
|
|
734
734
|
};
|
|
735
|
-
declare const __VLS_base$8:
|
|
735
|
+
declare const __VLS_base$8: vue0.DefineComponent<Props$25, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
736
736
|
close: () => any;
|
|
737
|
-
}, string,
|
|
737
|
+
}, string, vue0.PublicProps, Readonly<Props$25> & Readonly<{
|
|
738
738
|
onClose?: (() => any) | undefined;
|
|
739
739
|
}>, {
|
|
740
740
|
title: string;
|
|
741
|
-
}, {}, {}, {}, string,
|
|
741
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
742
742
|
declare const __VLS_export$90: __VLS_WithSlots$8<typeof __VLS_base$8, __VLS_Slots$8>;
|
|
743
743
|
declare const _default$8: typeof __VLS_export$90;
|
|
744
744
|
type __VLS_WithSlots$8<T, S> = T & {
|
|
@@ -762,11 +762,11 @@ declare var __VLS_1$6: {};
|
|
|
762
762
|
type __VLS_Slots$7 = {} & {
|
|
763
763
|
message?: (props: typeof __VLS_1$6) => any;
|
|
764
764
|
};
|
|
765
|
-
declare const __VLS_base$7:
|
|
765
|
+
declare const __VLS_base$7: vue0.DefineComponent<Props$24, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
766
766
|
"update:modelValue": (value: boolean) => any;
|
|
767
767
|
confirm: () => any;
|
|
768
768
|
cancel: () => any;
|
|
769
|
-
}, string,
|
|
769
|
+
}, string, vue0.PublicProps, Readonly<Props$24> & 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$7: vue6.DefineComponent<Props$24, {}, {}, {}, {}, vue6.
|
|
|
778
778
|
processingText: string;
|
|
779
779
|
confirmButtonClass: string;
|
|
780
780
|
isProcessing: boolean;
|
|
781
|
-
}, {}, {}, {}, string,
|
|
781
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
782
782
|
declare const __VLS_export$89: __VLS_WithSlots$7<typeof __VLS_base$7, __VLS_Slots$7>;
|
|
783
783
|
declare const _default$12: typeof __VLS_export$89;
|
|
784
784
|
type __VLS_WithSlots$7<T, S> = T & {
|
|
@@ -798,9 +798,9 @@ interface Props$23 {
|
|
|
798
798
|
onPrevious?: () => void;
|
|
799
799
|
onNext?: () => void;
|
|
800
800
|
}
|
|
801
|
-
declare const __VLS_export$88:
|
|
801
|
+
declare const __VLS_export$88: vue0.DefineComponent<Props$23, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
802
802
|
close: () => any;
|
|
803
|
-
}, string,
|
|
803
|
+
}, string, vue0.PublicProps, Readonly<Props$23> & Readonly<{
|
|
804
804
|
onClose?: (() => any) | undefined;
|
|
805
805
|
}>, {
|
|
806
806
|
imageSrc: string;
|
|
@@ -810,7 +810,7 @@ declare const __VLS_export$88: vue6.DefineComponent<Props$23, {}, {}, {}, {}, vu
|
|
|
810
810
|
onDownload: () => void;
|
|
811
811
|
onPrevious: () => void;
|
|
812
812
|
onNext: () => void;
|
|
813
|
-
}, {}, {}, {}, string,
|
|
813
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
814
814
|
declare const _default$39: typeof __VLS_export$88;
|
|
815
815
|
//#endregion
|
|
816
816
|
//#region src/components/InputModal.vue.d.ts
|
|
@@ -827,11 +827,11 @@ interface Props$22 {
|
|
|
827
827
|
error?: string;
|
|
828
828
|
initialValue?: string;
|
|
829
829
|
}
|
|
830
|
-
declare const __VLS_export$87:
|
|
830
|
+
declare const __VLS_export$87: vue0.DefineComponent<Props$22, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
831
831
|
"update:modelValue": (value: boolean) => any;
|
|
832
832
|
confirm: (value: string) => any;
|
|
833
833
|
cancel: () => any;
|
|
834
|
-
}, string,
|
|
834
|
+
}, string, vue0.PublicProps, Readonly<Props$22> & 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$87: vue6.DefineComponent<Props$22, {}, {}, {}, {}, vu
|
|
|
846
846
|
placeholder: string;
|
|
847
847
|
error: string;
|
|
848
848
|
initialValue: string;
|
|
849
|
-
}, {}, {}, {}, string,
|
|
849
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
850
850
|
declare const _default$42: typeof __VLS_export$87;
|
|
851
851
|
//#endregion
|
|
852
852
|
//#region src/components/LoginButton.vue.d.ts
|
|
853
|
-
declare const __VLS_export$86:
|
|
853
|
+
declare const __VLS_export$86: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
854
854
|
declare const _default$45: typeof __VLS_export$86;
|
|
855
855
|
//#endregion
|
|
856
856
|
//#region src/composables/useBreadcrumbs.d.ts
|
|
@@ -888,7 +888,7 @@ type __VLS_Slots$6 = {} & {
|
|
|
888
888
|
} & {
|
|
889
889
|
'mobile-status'?: (props: typeof __VLS_21) => any;
|
|
890
890
|
};
|
|
891
|
-
declare const __VLS_base$6:
|
|
891
|
+
declare const __VLS_base$6: vue0.DefineComponent<Props$21, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$21> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
892
892
|
declare const __VLS_export$85: __VLS_WithSlots$6<typeof __VLS_base$6, __VLS_Slots$6>;
|
|
893
893
|
declare const _default$49: typeof __VLS_export$85;
|
|
894
894
|
type __VLS_WithSlots$6<T, S> = T & {
|
|
@@ -898,35 +898,35 @@ type __VLS_WithSlots$6<T, S> = T & {
|
|
|
898
898
|
};
|
|
899
899
|
//#endregion
|
|
900
900
|
//#region src/components/NotFound.vue.d.ts
|
|
901
|
-
declare const __VLS_export$84:
|
|
901
|
+
declare const __VLS_export$84: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
902
902
|
declare const _default$50: typeof __VLS_export$84;
|
|
903
903
|
//#endregion
|
|
904
904
|
//#region src/components/RightSidebar.vue.d.ts
|
|
905
|
-
declare const __VLS_export$83:
|
|
905
|
+
declare const __VLS_export$83: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
906
906
|
declare const _default$58: typeof __VLS_export$83;
|
|
907
907
|
//#endregion
|
|
908
908
|
//#region src/components/Sidebar.vue.d.ts
|
|
909
|
-
declare const __VLS_export$82:
|
|
909
|
+
declare const __VLS_export$82: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
910
910
|
declare const _default$62: typeof __VLS_export$82;
|
|
911
911
|
//#endregion
|
|
912
912
|
//#region src/components/ThemePref.vue.d.ts
|
|
913
|
-
declare const __VLS_export$81:
|
|
913
|
+
declare const __VLS_export$81: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
914
914
|
declare const _default$85: typeof __VLS_export$81;
|
|
915
915
|
//#endregion
|
|
916
916
|
//#region src/layouts/Admin.vue.d.ts
|
|
917
|
-
declare const __VLS_export$80:
|
|
917
|
+
declare const __VLS_export$80: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
918
918
|
declare const _default$1: typeof __VLS_export$80;
|
|
919
919
|
//#endregion
|
|
920
920
|
//#region src/layouts/Auth.vue.d.ts
|
|
921
|
-
declare const __VLS_export$79:
|
|
921
|
+
declare const __VLS_export$79: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
922
922
|
declare const _default$7: typeof __VLS_export$79;
|
|
923
923
|
//#endregion
|
|
924
924
|
//#region src/layouts/Default.vue.d.ts
|
|
925
|
-
declare const __VLS_export$78:
|
|
925
|
+
declare const __VLS_export$78: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
926
926
|
declare const _default$29: typeof __VLS_export$78;
|
|
927
927
|
//#endregion
|
|
928
928
|
//#region src/layouts/InApp.vue.d.ts
|
|
929
|
-
declare const __VLS_export$77:
|
|
929
|
+
declare const __VLS_export$77: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
930
930
|
declare const _default$40: typeof __VLS_export$77;
|
|
931
931
|
//#endregion
|
|
932
932
|
//#region src/components/ui/FieldDisplay.vue.d.ts
|
|
@@ -935,7 +935,7 @@ type __VLS_Props$14 = {
|
|
|
935
935
|
value?: string | number | null;
|
|
936
936
|
fullWidth?: boolean;
|
|
937
937
|
};
|
|
938
|
-
declare const __VLS_export$76:
|
|
938
|
+
declare const __VLS_export$76: vue0.DefineComponent<__VLS_Props$14, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<__VLS_Props$14> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
939
939
|
declare const _default$34: typeof __VLS_export$76;
|
|
940
940
|
//#endregion
|
|
941
941
|
//#region src/components/ui/FieldGroup.vue.d.ts
|
|
@@ -946,7 +946,7 @@ declare var __VLS_1$5: {};
|
|
|
946
946
|
type __VLS_Slots$5 = {} & {
|
|
947
947
|
default?: (props: typeof __VLS_1$5) => any;
|
|
948
948
|
};
|
|
949
|
-
declare const __VLS_base$5:
|
|
949
|
+
declare const __VLS_base$5: vue0.DefineComponent<__VLS_Props$13, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<__VLS_Props$13> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
950
950
|
declare const __VLS_export$75: __VLS_WithSlots$5<typeof __VLS_base$5, __VLS_Slots$5>;
|
|
951
951
|
declare const _default$35: typeof __VLS_export$75;
|
|
952
952
|
type __VLS_WithSlots$5<T, S> = T & {
|
|
@@ -960,17 +960,17 @@ declare var __VLS_1$4: {};
|
|
|
960
960
|
type __VLS_Slots$4 = {} & {
|
|
961
961
|
default?: (props: typeof __VLS_1$4) => any;
|
|
962
962
|
};
|
|
963
|
-
declare const __VLS_base$4:
|
|
963
|
+
declare const __VLS_base$4: vue0.DefineComponent<vue0.ExtractPropTypes<{
|
|
964
964
|
title: {
|
|
965
965
|
type: StringConstructor;
|
|
966
966
|
required: true;
|
|
967
967
|
};
|
|
968
|
-
}>, {}, {}, {}, {},
|
|
968
|
+
}>, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<vue0.ExtractPropTypes<{
|
|
969
969
|
title: {
|
|
970
970
|
type: StringConstructor;
|
|
971
971
|
required: true;
|
|
972
972
|
};
|
|
973
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string,
|
|
973
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
974
974
|
declare const __VLS_export$74: __VLS_WithSlots$4<typeof __VLS_base$4, __VLS_Slots$4>;
|
|
975
975
|
declare const _default$36: typeof __VLS_export$74;
|
|
976
976
|
type __VLS_WithSlots$4<T, S> = T & {
|
|
@@ -1008,14 +1008,14 @@ declare const __VLS_export$73: <TApi extends DragoncoreApi = DragoncoreApi>(__VL
|
|
|
1008
1008
|
recordId: string;
|
|
1009
1009
|
recordType: RecordType;
|
|
1010
1010
|
config?: FileManagerConfig;
|
|
1011
|
-
}> &
|
|
1011
|
+
}> & vue0.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
|
+
}>) => vue0.VNode & {
|
|
1019
1019
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1020
1020
|
};
|
|
1021
1021
|
declare const _default$37: typeof __VLS_export$73;
|
|
@@ -1030,9 +1030,9 @@ interface Props$20 {
|
|
|
1030
1030
|
valuePlaceholder?: string;
|
|
1031
1031
|
error?: string;
|
|
1032
1032
|
}
|
|
1033
|
-
declare const __VLS_export$72:
|
|
1033
|
+
declare const __VLS_export$72: vue0.DefineComponent<Props$20, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
1034
1034
|
"update:modelValue": (value: string | null) => any;
|
|
1035
|
-
}, string,
|
|
1035
|
+
}, string, vue0.PublicProps, Readonly<Props$20> & 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$72: vue6.DefineComponent<Props$20, {}, {}, {}, {}, vu
|
|
|
1041
1041
|
helpText: string;
|
|
1042
1042
|
keyPlaceholder: string;
|
|
1043
1043
|
valuePlaceholder: string;
|
|
1044
|
-
}, {}, {}, {}, string,
|
|
1044
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
1045
1045
|
declare const _default$43: typeof __VLS_export$72;
|
|
1046
1046
|
//#endregion
|
|
1047
1047
|
//#region src/components/ui/LoadingErrorStates.vue.d.ts
|
|
@@ -1067,11 +1067,11 @@ type __VLS_Slots$3 = {} & {
|
|
|
1067
1067
|
} & {
|
|
1068
1068
|
error?: (props: typeof __VLS_3) => any;
|
|
1069
1069
|
};
|
|
1070
|
-
declare const __VLS_base$3:
|
|
1070
|
+
declare const __VLS_base$3: vue0.DefineComponent<__VLS_Props$12, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
1071
1071
|
retry: () => any;
|
|
1072
|
-
}, string,
|
|
1072
|
+
}, string, vue0.PublicProps, Readonly<__VLS_Props$12> & Readonly<{
|
|
1073
1073
|
onRetry?: (() => any) | undefined;
|
|
1074
|
-
}>, {}, {}, {}, {}, string,
|
|
1074
|
+
}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
1075
1075
|
declare const __VLS_export$71: __VLS_WithSlots$3<typeof __VLS_base$3, __VLS_Slots$3>;
|
|
1076
1076
|
declare const _default$44: typeof __VLS_export$71;
|
|
1077
1077
|
type __VLS_WithSlots$3<T, S> = T & {
|
|
@@ -1123,7 +1123,7 @@ type __VLS_Props$11 = {
|
|
|
1123
1123
|
changedFields: PropertyChange[];
|
|
1124
1124
|
config?: RecordChangesSummaryConfig;
|
|
1125
1125
|
};
|
|
1126
|
-
declare const __VLS_export$70:
|
|
1126
|
+
declare const __VLS_export$70: vue0.DefineComponent<__VLS_Props$11, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<__VLS_Props$11> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
1127
1127
|
declare const _default$53: typeof __VLS_export$70;
|
|
1128
1128
|
//#endregion
|
|
1129
1129
|
//#region src/components/ui/RecordVersionListConfig.d.ts
|
|
@@ -1158,7 +1158,7 @@ declare const __VLS_export$69: <T extends {
|
|
|
1158
1158
|
} & {
|
|
1159
1159
|
onRetry?: (() => any) | undefined;
|
|
1160
1160
|
"onLoad-more"?: (() => any) | undefined;
|
|
1161
|
-
}> &
|
|
1161
|
+
}> & vue0.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$69: <T extends {
|
|
|
1173
1173
|
}) => any;
|
|
1174
1174
|
};
|
|
1175
1175
|
emit: ((evt: "retry") => void) & ((evt: "load-more") => void);
|
|
1176
|
-
}>) =>
|
|
1176
|
+
}>) => vue0.VNode & {
|
|
1177
1177
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1178
1178
|
};
|
|
1179
1179
|
declare const _default$54: typeof __VLS_export$69;
|
|
@@ -1194,7 +1194,7 @@ declare const __VLS_export$68: <TRecord extends Record<string, any>, TVersion ex
|
|
|
1194
1194
|
isRestoring?: boolean;
|
|
1195
1195
|
error?: Error | null;
|
|
1196
1196
|
config?: RecordVersionViewerConfig;
|
|
1197
|
-
}> &
|
|
1197
|
+
}> & vue0.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$68: <TRecord extends Record<string, any>, TVersion ex
|
|
|
1227
1227
|
}) => any;
|
|
1228
1228
|
};
|
|
1229
1229
|
emit: {};
|
|
1230
|
-
}>) =>
|
|
1230
|
+
}>) => vue0.VNode & {
|
|
1231
1231
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1232
1232
|
};
|
|
1233
1233
|
declare const _default$55: typeof __VLS_export$68;
|
|
@@ -1241,7 +1241,7 @@ declare var __VLS_1$2: {};
|
|
|
1241
1241
|
type __VLS_Slots$2 = {} & {
|
|
1242
1242
|
default?: (props: typeof __VLS_1$2) => any;
|
|
1243
1243
|
};
|
|
1244
|
-
declare const __VLS_base$2:
|
|
1244
|
+
declare const __VLS_base$2: vue0.DefineComponent<__VLS_Props$10, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<__VLS_Props$10> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
1245
1245
|
declare const __VLS_export$67: __VLS_WithSlots$2<typeof __VLS_base$2, __VLS_Slots$2>;
|
|
1246
1246
|
declare const _default$69: typeof __VLS_export$67;
|
|
1247
1247
|
type __VLS_WithSlots$2<T, S> = T & {
|
|
@@ -1255,7 +1255,7 @@ declare var __VLS_1$1: {};
|
|
|
1255
1255
|
type __VLS_Slots$1 = {} & {
|
|
1256
1256
|
default?: (props: typeof __VLS_1$1) => any;
|
|
1257
1257
|
};
|
|
1258
|
-
declare const __VLS_base$1:
|
|
1258
|
+
declare const __VLS_base$1: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
1259
1259
|
declare const __VLS_export$66: __VLS_WithSlots$1<typeof __VLS_base$1, __VLS_Slots$1>;
|
|
1260
1260
|
declare const _default$93: typeof __VLS_export$66;
|
|
1261
1261
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
@@ -1296,9 +1296,9 @@ interface UserTeamMembersResponse {
|
|
|
1296
1296
|
declare function useUserLookup<TApi extends Record<string, any> = DragoncoreApi>(queryFn: QueryFunction<TApi, UserTeamMembersResponse>, options?: Omit<UseQueryOptions, 'cacheKey'> & {
|
|
1297
1297
|
cacheKey?: string;
|
|
1298
1298
|
}): {
|
|
1299
|
-
userTeamMembers:
|
|
1300
|
-
isUserTeamMembersLoading:
|
|
1301
|
-
userMap:
|
|
1299
|
+
userTeamMembers: vue0.ShallowRef<UserTeamMembersResponse | null>;
|
|
1300
|
+
isUserTeamMembersLoading: vue0.ShallowRef<boolean>;
|
|
1301
|
+
userMap: vue0.ComputedRef<Map<string, string>>;
|
|
1302
1302
|
getUserName: (userId: string | null | undefined) => string | null;
|
|
1303
1303
|
getUserNameWithFallback: (userId: string | null | undefined, fallback?: string) => string;
|
|
1304
1304
|
};
|
|
@@ -1620,7 +1620,7 @@ declare const leadOrStaffOnly: NavigationGuard;
|
|
|
1620
1620
|
declare const userRoutes: Array<ExtendedRouteRecordRaw>;
|
|
1621
1621
|
//#endregion
|
|
1622
1622
|
//#region src/slices/user/features/user_profile/UserProfilePage.vue.d.ts
|
|
1623
|
-
declare const __VLS_export$65:
|
|
1623
|
+
declare const __VLS_export$65: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
1624
1624
|
declare const _default$89: typeof __VLS_export$65;
|
|
1625
1625
|
//#endregion
|
|
1626
1626
|
//#region src/slices/user/features/user_profile/userProfileSchema.d.ts
|
|
@@ -1647,7 +1647,7 @@ declare const userProfileSchemaWithMetadata: z.ZodObject<{
|
|
|
1647
1647
|
}>;
|
|
1648
1648
|
//#endregion
|
|
1649
1649
|
//#region src/slices/user/features/change_password/ChangePasswordPage.vue.d.ts
|
|
1650
|
-
declare const __VLS_export$64:
|
|
1650
|
+
declare const __VLS_export$64: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
1651
1651
|
declare const _default$10: typeof __VLS_export$64;
|
|
1652
1652
|
//#endregion
|
|
1653
1653
|
//#region src/slices/user/features/change_password/changePasswordSchema.d.ts
|
|
@@ -1697,11 +1697,11 @@ declare const changePasswordSchemaWithMetadata: z.ZodObject<{
|
|
|
1697
1697
|
}>;
|
|
1698
1698
|
//#endregion
|
|
1699
1699
|
//#region src/slices/user/features/Appearance.vue.d.ts
|
|
1700
|
-
declare const __VLS_export$63:
|
|
1700
|
+
declare const __VLS_export$63: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
1701
1701
|
declare const _default$5: typeof __VLS_export$63;
|
|
1702
1702
|
//#endregion
|
|
1703
1703
|
//#region src/slices/team/CreateTeamForm.vue.d.ts
|
|
1704
|
-
declare const __VLS_export$62:
|
|
1704
|
+
declare const __VLS_export$62: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
1705
1705
|
declare const _default$15: typeof __VLS_export$62;
|
|
1706
1706
|
//#endregion
|
|
1707
1707
|
//#region src/slices/team/EditTeamForm.vue.d.ts
|
|
@@ -1710,7 +1710,7 @@ interface Props$19 {
|
|
|
1710
1710
|
isLoading?: boolean;
|
|
1711
1711
|
error?: Error | null;
|
|
1712
1712
|
}
|
|
1713
|
-
declare const __VLS_export$61:
|
|
1713
|
+
declare const __VLS_export$61: vue0.DefineComponent<Props$19, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$19> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
1714
1714
|
declare const _default$31: typeof __VLS_export$61;
|
|
1715
1715
|
//#endregion
|
|
1716
1716
|
//#region src/slices/team/recordVersionRowSchema.d.ts
|
|
@@ -1750,23 +1750,23 @@ declare const recordVersionRowSchemaWithMetadata: z.ZodObject<{
|
|
|
1750
1750
|
}>;
|
|
1751
1751
|
//#endregion
|
|
1752
1752
|
//#region src/slices/team/TeamAttachmentsTab.vue.d.ts
|
|
1753
|
-
declare const __VLS_export$60:
|
|
1753
|
+
declare const __VLS_export$60: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
1754
1754
|
declare const _default$77: typeof __VLS_export$60;
|
|
1755
1755
|
//#endregion
|
|
1756
1756
|
//#region src/slices/team/teamFiltersMetadata.d.ts
|
|
1757
|
-
declare const teamFiltersSchemaWithMetadata:
|
|
1758
|
-
first:
|
|
1759
|
-
after:
|
|
1760
|
-
sortBy:
|
|
1761
|
-
sortDirection:
|
|
1762
|
-
paginationToken:
|
|
1757
|
+
declare const teamFiltersSchemaWithMetadata: zod77.ZodObject<{
|
|
1758
|
+
first: zod77.ZodOptional<zod77.ZodNumber>;
|
|
1759
|
+
after: zod77.ZodOptional<zod77.ZodString>;
|
|
1760
|
+
sortBy: zod77.ZodOptional<zod77.ZodString>;
|
|
1761
|
+
sortDirection: zod77.ZodOptional<zod77.ZodEnum<["asc", "desc"]>>;
|
|
1762
|
+
paginationToken: zod77.ZodOptional<zod77.ZodString>;
|
|
1763
1763
|
} & {
|
|
1764
|
-
unique_name:
|
|
1765
|
-
operator:
|
|
1766
|
-
value:
|
|
1767
|
-
values:
|
|
1768
|
-
caseSensitive:
|
|
1769
|
-
}, "strip",
|
|
1764
|
+
unique_name: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
1765
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1766
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
1767
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
1768
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
1769
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
1770
1770
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1771
1771
|
values?: string[] | undefined;
|
|
1772
1772
|
value?: string | undefined;
|
|
@@ -1787,12 +1787,12 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
1787
1787
|
value?: string | undefined;
|
|
1788
1788
|
caseSensitive?: boolean | undefined;
|
|
1789
1789
|
}>>;
|
|
1790
|
-
display_name:
|
|
1791
|
-
operator:
|
|
1792
|
-
value:
|
|
1793
|
-
values:
|
|
1794
|
-
caseSensitive:
|
|
1795
|
-
}, "strip",
|
|
1790
|
+
display_name: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
1791
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1792
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
1793
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
1794
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
1795
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
1796
1796
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1797
1797
|
values?: string[] | undefined;
|
|
1798
1798
|
value?: string | undefined;
|
|
@@ -1813,12 +1813,12 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
1813
1813
|
value?: string | undefined;
|
|
1814
1814
|
caseSensitive?: boolean | undefined;
|
|
1815
1815
|
}>>;
|
|
1816
|
-
legal_name:
|
|
1817
|
-
operator:
|
|
1818
|
-
value:
|
|
1819
|
-
values:
|
|
1820
|
-
caseSensitive:
|
|
1821
|
-
}, "strip",
|
|
1816
|
+
legal_name: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
1817
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1818
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
1819
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
1820
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
1821
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
1822
1822
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1823
1823
|
values?: string[] | undefined;
|
|
1824
1824
|
value?: string | undefined;
|
|
@@ -1839,12 +1839,12 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
1839
1839
|
value?: string | undefined;
|
|
1840
1840
|
caseSensitive?: boolean | undefined;
|
|
1841
1841
|
}>>;
|
|
1842
|
-
contact_email:
|
|
1843
|
-
operator:
|
|
1844
|
-
value:
|
|
1845
|
-
values:
|
|
1846
|
-
caseSensitive:
|
|
1847
|
-
}, "strip",
|
|
1842
|
+
contact_email: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
1843
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1844
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
1845
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
1846
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
1847
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
1848
1848
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1849
1849
|
values?: string[] | undefined;
|
|
1850
1850
|
value?: string | undefined;
|
|
@@ -1865,12 +1865,12 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
1865
1865
|
value?: string | undefined;
|
|
1866
1866
|
caseSensitive?: boolean | undefined;
|
|
1867
1867
|
}>>;
|
|
1868
|
-
address_city:
|
|
1869
|
-
operator:
|
|
1870
|
-
value:
|
|
1871
|
-
values:
|
|
1872
|
-
caseSensitive:
|
|
1873
|
-
}, "strip",
|
|
1868
|
+
address_city: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
1869
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1870
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
1871
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
1872
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
1873
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
1874
1874
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1875
1875
|
values?: string[] | undefined;
|
|
1876
1876
|
value?: string | undefined;
|
|
@@ -1891,12 +1891,12 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
1891
1891
|
value?: string | undefined;
|
|
1892
1892
|
caseSensitive?: boolean | undefined;
|
|
1893
1893
|
}>>;
|
|
1894
|
-
address_zip:
|
|
1895
|
-
operator:
|
|
1896
|
-
value:
|
|
1897
|
-
values:
|
|
1898
|
-
caseSensitive:
|
|
1899
|
-
}, "strip",
|
|
1894
|
+
address_zip: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
1895
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1896
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
1897
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
1898
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
1899
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
1900
1900
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1901
1901
|
values?: string[] | undefined;
|
|
1902
1902
|
value?: string | undefined;
|
|
@@ -1917,13 +1917,13 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
1917
1917
|
value?: string | undefined;
|
|
1918
1918
|
caseSensitive?: boolean | undefined;
|
|
1919
1919
|
}>>;
|
|
1920
|
-
includeArchived:
|
|
1921
|
-
values:
|
|
1922
|
-
caseSensitive:
|
|
1920
|
+
includeArchived: zod77.ZodOptional<zod77.ZodObject<{
|
|
1921
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
1922
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
1923
1923
|
} & {
|
|
1924
|
-
operator:
|
|
1925
|
-
value:
|
|
1926
|
-
}, "strip",
|
|
1924
|
+
operator: zod77.ZodEnum<["eq", "ne"]>;
|
|
1925
|
+
value: zod77.ZodBoolean;
|
|
1926
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
1927
1927
|
value: boolean;
|
|
1928
1928
|
operator: "eq" | "ne";
|
|
1929
1929
|
values?: any[] | undefined;
|
|
@@ -1934,13 +1934,13 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
1934
1934
|
values?: any[] | undefined;
|
|
1935
1935
|
caseSensitive?: boolean | undefined;
|
|
1936
1936
|
}>>;
|
|
1937
|
-
created_at:
|
|
1938
|
-
value:
|
|
1939
|
-
values:
|
|
1940
|
-
caseSensitive:
|
|
1937
|
+
created_at: zod77.ZodOptional<zod77.ZodUnion<[zod77.ZodEffects<zod77.ZodObject<{
|
|
1938
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
1939
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
1940
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
1941
1941
|
} & {
|
|
1942
|
-
operator:
|
|
1943
|
-
}, "strip",
|
|
1942
|
+
operator: zod77.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
1943
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
1944
1944
|
operator: "isEmpty" | "isNotEmpty";
|
|
1945
1945
|
values?: any[] | undefined;
|
|
1946
1946
|
value?: any;
|
|
@@ -1960,13 +1960,13 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
1960
1960
|
values?: any[] | undefined;
|
|
1961
1961
|
value?: any;
|
|
1962
1962
|
caseSensitive?: boolean | undefined;
|
|
1963
|
-
}>,
|
|
1964
|
-
value:
|
|
1965
|
-
caseSensitive:
|
|
1963
|
+
}>, zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
1964
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
1965
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
1966
1966
|
} & {
|
|
1967
|
-
operator:
|
|
1968
|
-
values:
|
|
1969
|
-
}, "strip",
|
|
1967
|
+
operator: zod77.ZodLiteral<"between">;
|
|
1968
|
+
values: zod77.ZodArray<zod77.ZodString, "many">;
|
|
1969
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
1970
1970
|
values: string[];
|
|
1971
1971
|
operator: "between";
|
|
1972
1972
|
value?: any;
|
|
@@ -1996,13 +1996,13 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
1996
1996
|
operator: "between";
|
|
1997
1997
|
value?: any;
|
|
1998
1998
|
caseSensitive?: boolean | undefined;
|
|
1999
|
-
}>,
|
|
2000
|
-
values:
|
|
2001
|
-
caseSensitive:
|
|
1999
|
+
}>, zod77.ZodEffects<zod77.ZodObject<{
|
|
2000
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
2001
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2002
2002
|
} & {
|
|
2003
|
-
operator:
|
|
2004
|
-
value:
|
|
2005
|
-
}, "strip",
|
|
2003
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
2004
|
+
value: zod77.ZodString;
|
|
2005
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2006
2006
|
value: string;
|
|
2007
2007
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2008
2008
|
values?: any[] | undefined;
|
|
@@ -2023,13 +2023,13 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2023
2023
|
values?: any[] | undefined;
|
|
2024
2024
|
caseSensitive?: boolean | undefined;
|
|
2025
2025
|
}>]>>;
|
|
2026
|
-
updated_at:
|
|
2027
|
-
value:
|
|
2028
|
-
values:
|
|
2029
|
-
caseSensitive:
|
|
2026
|
+
updated_at: zod77.ZodOptional<zod77.ZodUnion<[zod77.ZodEffects<zod77.ZodObject<{
|
|
2027
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
2028
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
2029
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2030
2030
|
} & {
|
|
2031
|
-
operator:
|
|
2032
|
-
}, "strip",
|
|
2031
|
+
operator: zod77.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
2032
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2033
2033
|
operator: "isEmpty" | "isNotEmpty";
|
|
2034
2034
|
values?: any[] | undefined;
|
|
2035
2035
|
value?: any;
|
|
@@ -2049,13 +2049,13 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2049
2049
|
values?: any[] | undefined;
|
|
2050
2050
|
value?: any;
|
|
2051
2051
|
caseSensitive?: boolean | undefined;
|
|
2052
|
-
}>,
|
|
2053
|
-
value:
|
|
2054
|
-
caseSensitive:
|
|
2052
|
+
}>, zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
2053
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
2054
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2055
2055
|
} & {
|
|
2056
|
-
operator:
|
|
2057
|
-
values:
|
|
2058
|
-
}, "strip",
|
|
2056
|
+
operator: zod77.ZodLiteral<"between">;
|
|
2057
|
+
values: zod77.ZodArray<zod77.ZodString, "many">;
|
|
2058
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2059
2059
|
values: string[];
|
|
2060
2060
|
operator: "between";
|
|
2061
2061
|
value?: any;
|
|
@@ -2085,13 +2085,13 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2085
2085
|
operator: "between";
|
|
2086
2086
|
value?: any;
|
|
2087
2087
|
caseSensitive?: boolean | undefined;
|
|
2088
|
-
}>,
|
|
2089
|
-
values:
|
|
2090
|
-
caseSensitive:
|
|
2088
|
+
}>, zod77.ZodEffects<zod77.ZodObject<{
|
|
2089
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
2090
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2091
2091
|
} & {
|
|
2092
|
-
operator:
|
|
2093
|
-
value:
|
|
2094
|
-
}, "strip",
|
|
2092
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
2093
|
+
value: zod77.ZodString;
|
|
2094
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2095
2095
|
value: string;
|
|
2096
2096
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2097
2097
|
values?: any[] | undefined;
|
|
@@ -2112,13 +2112,13 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2112
2112
|
values?: any[] | undefined;
|
|
2113
2113
|
caseSensitive?: boolean | undefined;
|
|
2114
2114
|
}>]>>;
|
|
2115
|
-
archived_at:
|
|
2116
|
-
value:
|
|
2117
|
-
values:
|
|
2118
|
-
caseSensitive:
|
|
2115
|
+
archived_at: zod77.ZodOptional<zod77.ZodUnion<[zod77.ZodEffects<zod77.ZodObject<{
|
|
2116
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
2117
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
2118
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2119
2119
|
} & {
|
|
2120
|
-
operator:
|
|
2121
|
-
}, "strip",
|
|
2120
|
+
operator: zod77.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
2121
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2122
2122
|
operator: "isEmpty" | "isNotEmpty";
|
|
2123
2123
|
values?: any[] | undefined;
|
|
2124
2124
|
value?: any;
|
|
@@ -2138,13 +2138,13 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2138
2138
|
values?: any[] | undefined;
|
|
2139
2139
|
value?: any;
|
|
2140
2140
|
caseSensitive?: boolean | undefined;
|
|
2141
|
-
}>,
|
|
2142
|
-
value:
|
|
2143
|
-
caseSensitive:
|
|
2141
|
+
}>, zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
2142
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
2143
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2144
2144
|
} & {
|
|
2145
|
-
operator:
|
|
2146
|
-
values:
|
|
2147
|
-
}, "strip",
|
|
2145
|
+
operator: zod77.ZodLiteral<"between">;
|
|
2146
|
+
values: zod77.ZodArray<zod77.ZodString, "many">;
|
|
2147
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2148
2148
|
values: string[];
|
|
2149
2149
|
operator: "between";
|
|
2150
2150
|
value?: any;
|
|
@@ -2174,13 +2174,13 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2174
2174
|
operator: "between";
|
|
2175
2175
|
value?: any;
|
|
2176
2176
|
caseSensitive?: boolean | undefined;
|
|
2177
|
-
}>,
|
|
2178
|
-
values:
|
|
2179
|
-
caseSensitive:
|
|
2177
|
+
}>, zod77.ZodEffects<zod77.ZodObject<{
|
|
2178
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
2179
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2180
2180
|
} & {
|
|
2181
|
-
operator:
|
|
2182
|
-
value:
|
|
2183
|
-
}, "strip",
|
|
2181
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
2182
|
+
value: zod77.ZodString;
|
|
2183
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2184
2184
|
value: string;
|
|
2185
2185
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2186
2186
|
values?: any[] | undefined;
|
|
@@ -2201,17 +2201,17 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2201
2201
|
values?: any[] | undefined;
|
|
2202
2202
|
caseSensitive?: boolean | undefined;
|
|
2203
2203
|
}>]>>;
|
|
2204
|
-
search:
|
|
2205
|
-
query:
|
|
2206
|
-
searchableFields:
|
|
2207
|
-
}, "strip",
|
|
2204
|
+
search: zod77.ZodOptional<zod77.ZodObject<{
|
|
2205
|
+
query: zod77.ZodString;
|
|
2206
|
+
searchableFields: zod77.ZodArray<zod77.ZodString, "many">;
|
|
2207
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2208
2208
|
query: string;
|
|
2209
2209
|
searchableFields: string[];
|
|
2210
2210
|
}, {
|
|
2211
2211
|
query: string;
|
|
2212
2212
|
searchableFields: string[];
|
|
2213
2213
|
}>>;
|
|
2214
|
-
}, "strip",
|
|
2214
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2215
2215
|
created_at?: {
|
|
2216
2216
|
operator: "isEmpty" | "isNotEmpty";
|
|
2217
2217
|
values?: any[] | undefined;
|
|
@@ -2248,11 +2248,6 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2248
2248
|
values?: any[] | undefined;
|
|
2249
2249
|
caseSensitive?: boolean | undefined;
|
|
2250
2250
|
} | undefined;
|
|
2251
|
-
first?: number | undefined;
|
|
2252
|
-
after?: string | undefined;
|
|
2253
|
-
sortBy?: string | undefined;
|
|
2254
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2255
|
-
paginationToken?: string | undefined;
|
|
2256
2251
|
unique_name?: {
|
|
2257
2252
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2258
2253
|
values?: string[] | undefined;
|
|
@@ -2289,12 +2284,6 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2289
2284
|
value?: string | undefined;
|
|
2290
2285
|
caseSensitive?: boolean | undefined;
|
|
2291
2286
|
} | undefined;
|
|
2292
|
-
includeArchived?: {
|
|
2293
|
-
value: boolean;
|
|
2294
|
-
operator: "eq" | "ne";
|
|
2295
|
-
values?: any[] | undefined;
|
|
2296
|
-
caseSensitive?: boolean | undefined;
|
|
2297
|
-
} | undefined;
|
|
2298
2287
|
archived_at?: {
|
|
2299
2288
|
operator: "isEmpty" | "isNotEmpty";
|
|
2300
2289
|
values?: any[] | undefined;
|
|
@@ -2311,6 +2300,17 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2311
2300
|
values?: any[] | undefined;
|
|
2312
2301
|
caseSensitive?: boolean | undefined;
|
|
2313
2302
|
} | undefined;
|
|
2303
|
+
first?: number | undefined;
|
|
2304
|
+
after?: string | undefined;
|
|
2305
|
+
sortBy?: string | undefined;
|
|
2306
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2307
|
+
paginationToken?: string | undefined;
|
|
2308
|
+
includeArchived?: {
|
|
2309
|
+
value: boolean;
|
|
2310
|
+
operator: "eq" | "ne";
|
|
2311
|
+
values?: any[] | undefined;
|
|
2312
|
+
caseSensitive?: boolean | undefined;
|
|
2313
|
+
} | undefined;
|
|
2314
2314
|
}, {
|
|
2315
2315
|
created_at?: {
|
|
2316
2316
|
operator: "isEmpty" | "isNotEmpty";
|
|
@@ -2348,11 +2348,6 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2348
2348
|
values?: any[] | undefined;
|
|
2349
2349
|
caseSensitive?: boolean | undefined;
|
|
2350
2350
|
} | undefined;
|
|
2351
|
-
first?: number | undefined;
|
|
2352
|
-
after?: string | undefined;
|
|
2353
|
-
sortBy?: string | undefined;
|
|
2354
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2355
|
-
paginationToken?: string | undefined;
|
|
2356
2351
|
unique_name?: {
|
|
2357
2352
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2358
2353
|
values?: string[] | undefined;
|
|
@@ -2389,12 +2384,6 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2389
2384
|
value?: string | undefined;
|
|
2390
2385
|
caseSensitive?: boolean | undefined;
|
|
2391
2386
|
} | undefined;
|
|
2392
|
-
includeArchived?: {
|
|
2393
|
-
value: boolean;
|
|
2394
|
-
operator: "eq" | "ne";
|
|
2395
|
-
values?: any[] | undefined;
|
|
2396
|
-
caseSensitive?: boolean | undefined;
|
|
2397
|
-
} | undefined;
|
|
2398
2387
|
archived_at?: {
|
|
2399
2388
|
operator: "isEmpty" | "isNotEmpty";
|
|
2400
2389
|
values?: any[] | undefined;
|
|
@@ -2411,52 +2400,63 @@ declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2411
2400
|
values?: any[] | undefined;
|
|
2412
2401
|
caseSensitive?: boolean | undefined;
|
|
2413
2402
|
} | undefined;
|
|
2403
|
+
first?: number | undefined;
|
|
2404
|
+
after?: string | undefined;
|
|
2405
|
+
sortBy?: string | undefined;
|
|
2406
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2407
|
+
paginationToken?: string | undefined;
|
|
2408
|
+
includeArchived?: {
|
|
2409
|
+
value: boolean;
|
|
2410
|
+
operator: "eq" | "ne";
|
|
2411
|
+
values?: any[] | undefined;
|
|
2412
|
+
caseSensitive?: boolean | undefined;
|
|
2413
|
+
} | undefined;
|
|
2414
2414
|
}>;
|
|
2415
2415
|
//#endregion
|
|
2416
2416
|
//#region src/slices/team/TeamHistoryTab.vue.d.ts
|
|
2417
|
-
declare const __VLS_export$59:
|
|
2417
|
+
declare const __VLS_export$59: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
2418
2418
|
declare const _default$78: typeof __VLS_export$59;
|
|
2419
2419
|
//#endregion
|
|
2420
2420
|
//#region src/slices/team/TeamList.vue.d.ts
|
|
2421
|
-
declare const __VLS_export$58:
|
|
2421
|
+
declare const __VLS_export$58: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
2422
2422
|
declare const _default$79: typeof __VLS_export$58;
|
|
2423
2423
|
//#endregion
|
|
2424
2424
|
//#region src/slices/team/TeamMembersTab.vue.d.ts
|
|
2425
|
-
declare const __VLS_export$57:
|
|
2425
|
+
declare const __VLS_export$57: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
2426
2426
|
declare const _default$82: typeof __VLS_export$57;
|
|
2427
2427
|
//#endregion
|
|
2428
2428
|
//#region src/slices/team/teamMetadata.d.ts
|
|
2429
|
-
declare const teamCreateSchemaWithMetadata:
|
|
2430
|
-
unique_name:
|
|
2431
|
-
display_name:
|
|
2432
|
-
legal_name:
|
|
2433
|
-
description:
|
|
2434
|
-
contact_name:
|
|
2435
|
-
contact_email:
|
|
2436
|
-
contact_business_phone:
|
|
2437
|
-
contact_mobile_phone:
|
|
2438
|
-
contact_time_zone:
|
|
2439
|
-
address_full:
|
|
2440
|
-
address_city:
|
|
2441
|
-
address_zip:
|
|
2442
|
-
twitter_username:
|
|
2443
|
-
url:
|
|
2444
|
-
logo:
|
|
2445
|
-
email_sent_from:
|
|
2446
|
-
email_reply_to:
|
|
2447
|
-
}, "strip",
|
|
2429
|
+
declare const teamCreateSchemaWithMetadata: zod77.ZodObject<{
|
|
2430
|
+
unique_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2431
|
+
display_name: zod77.ZodString;
|
|
2432
|
+
legal_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2433
|
+
description: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2434
|
+
contact_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2435
|
+
contact_email: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2436
|
+
contact_business_phone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2437
|
+
contact_mobile_phone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2438
|
+
contact_time_zone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2439
|
+
address_full: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2440
|
+
address_city: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2441
|
+
address_zip: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2442
|
+
twitter_username: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2443
|
+
url: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2444
|
+
logo: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2445
|
+
email_sent_from: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2446
|
+
email_reply_to: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2447
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2448
2448
|
display_name: string;
|
|
2449
2449
|
unique_name?: string | null | undefined;
|
|
2450
2450
|
legal_name?: string | null | undefined;
|
|
2451
|
-
contact_email?: string | null | undefined;
|
|
2452
|
-
address_city?: string | null | undefined;
|
|
2453
|
-
address_zip?: string | null | undefined;
|
|
2454
2451
|
description?: string | null | undefined;
|
|
2455
2452
|
contact_name?: string | null | undefined;
|
|
2453
|
+
contact_email?: string | null | undefined;
|
|
2456
2454
|
contact_business_phone?: string | null | undefined;
|
|
2457
2455
|
contact_mobile_phone?: string | null | undefined;
|
|
2458
2456
|
contact_time_zone?: string | null | undefined;
|
|
2459
2457
|
address_full?: string | null | undefined;
|
|
2458
|
+
address_city?: string | null | undefined;
|
|
2459
|
+
address_zip?: string | null | undefined;
|
|
2460
2460
|
twitter_username?: string | null | undefined;
|
|
2461
2461
|
url?: string | null | undefined;
|
|
2462
2462
|
logo?: string | null | undefined;
|
|
@@ -2466,55 +2466,55 @@ declare const teamCreateSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2466
2466
|
display_name: string;
|
|
2467
2467
|
unique_name?: string | null | undefined;
|
|
2468
2468
|
legal_name?: string | null | undefined;
|
|
2469
|
-
contact_email?: string | null | undefined;
|
|
2470
|
-
address_city?: string | null | undefined;
|
|
2471
|
-
address_zip?: string | null | undefined;
|
|
2472
2469
|
description?: string | null | undefined;
|
|
2473
2470
|
contact_name?: string | null | undefined;
|
|
2471
|
+
contact_email?: string | null | undefined;
|
|
2474
2472
|
contact_business_phone?: string | null | undefined;
|
|
2475
2473
|
contact_mobile_phone?: string | null | undefined;
|
|
2476
2474
|
contact_time_zone?: string | null | undefined;
|
|
2477
2475
|
address_full?: string | null | undefined;
|
|
2476
|
+
address_city?: string | null | undefined;
|
|
2477
|
+
address_zip?: string | null | undefined;
|
|
2478
2478
|
twitter_username?: string | null | undefined;
|
|
2479
2479
|
url?: string | null | undefined;
|
|
2480
2480
|
logo?: string | null | undefined;
|
|
2481
2481
|
email_sent_from?: string | null | undefined;
|
|
2482
2482
|
email_reply_to?: string | null | undefined;
|
|
2483
2483
|
}>;
|
|
2484
|
-
declare const teamUpdateSchemaWithMetadata:
|
|
2485
|
-
unique_name:
|
|
2486
|
-
display_name:
|
|
2487
|
-
legal_name:
|
|
2488
|
-
description:
|
|
2489
|
-
contact_name:
|
|
2490
|
-
contact_email:
|
|
2491
|
-
contact_business_phone:
|
|
2492
|
-
contact_mobile_phone:
|
|
2493
|
-
contact_time_zone:
|
|
2494
|
-
address_full:
|
|
2495
|
-
address_city:
|
|
2496
|
-
address_zip:
|
|
2497
|
-
twitter_username:
|
|
2498
|
-
url:
|
|
2499
|
-
logo:
|
|
2500
|
-
email_sent_from:
|
|
2501
|
-
email_reply_to:
|
|
2484
|
+
declare const teamUpdateSchemaWithMetadata: zod77.ZodObject<{
|
|
2485
|
+
unique_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2486
|
+
display_name: zod77.ZodString;
|
|
2487
|
+
legal_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2488
|
+
description: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2489
|
+
contact_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2490
|
+
contact_email: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2491
|
+
contact_business_phone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2492
|
+
contact_mobile_phone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2493
|
+
contact_time_zone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2494
|
+
address_full: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2495
|
+
address_city: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2496
|
+
address_zip: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2497
|
+
twitter_username: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2498
|
+
url: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2499
|
+
logo: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2500
|
+
email_sent_from: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2501
|
+
email_reply_to: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2502
2502
|
} & {
|
|
2503
|
-
id:
|
|
2504
|
-
}, "strip",
|
|
2503
|
+
id: zod77.ZodString;
|
|
2504
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2505
2505
|
id: string;
|
|
2506
2506
|
display_name: string;
|
|
2507
2507
|
unique_name?: string | null | undefined;
|
|
2508
2508
|
legal_name?: string | null | undefined;
|
|
2509
|
-
contact_email?: string | null | undefined;
|
|
2510
|
-
address_city?: string | null | undefined;
|
|
2511
|
-
address_zip?: string | null | undefined;
|
|
2512
2509
|
description?: string | null | undefined;
|
|
2513
2510
|
contact_name?: string | null | undefined;
|
|
2511
|
+
contact_email?: string | null | undefined;
|
|
2514
2512
|
contact_business_phone?: string | null | undefined;
|
|
2515
2513
|
contact_mobile_phone?: string | null | undefined;
|
|
2516
2514
|
contact_time_zone?: string | null | undefined;
|
|
2517
2515
|
address_full?: string | null | undefined;
|
|
2516
|
+
address_city?: string | null | undefined;
|
|
2517
|
+
address_zip?: string | null | undefined;
|
|
2518
2518
|
twitter_username?: string | null | undefined;
|
|
2519
2519
|
url?: string | null | undefined;
|
|
2520
2520
|
logo?: string | null | undefined;
|
|
@@ -2525,15 +2525,15 @@ declare const teamUpdateSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2525
2525
|
display_name: string;
|
|
2526
2526
|
unique_name?: string | null | undefined;
|
|
2527
2527
|
legal_name?: string | null | undefined;
|
|
2528
|
-
contact_email?: string | null | undefined;
|
|
2529
|
-
address_city?: string | null | undefined;
|
|
2530
|
-
address_zip?: string | null | undefined;
|
|
2531
2528
|
description?: string | null | undefined;
|
|
2532
2529
|
contact_name?: string | null | undefined;
|
|
2530
|
+
contact_email?: string | null | undefined;
|
|
2533
2531
|
contact_business_phone?: string | null | undefined;
|
|
2534
2532
|
contact_mobile_phone?: string | null | undefined;
|
|
2535
2533
|
contact_time_zone?: string | null | undefined;
|
|
2536
2534
|
address_full?: string | null | undefined;
|
|
2535
|
+
address_city?: string | null | undefined;
|
|
2536
|
+
address_zip?: string | null | undefined;
|
|
2537
2537
|
twitter_username?: string | null | undefined;
|
|
2538
2538
|
url?: string | null | undefined;
|
|
2539
2539
|
logo?: string | null | undefined;
|
|
@@ -2542,11 +2542,11 @@ declare const teamUpdateSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2542
2542
|
}>;
|
|
2543
2543
|
//#endregion
|
|
2544
2544
|
//#region src/slices/team/TeamNotesTab.vue.d.ts
|
|
2545
|
-
declare const __VLS_export$56:
|
|
2545
|
+
declare const __VLS_export$56: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
2546
2546
|
declare const _default$83: typeof __VLS_export$56;
|
|
2547
2547
|
//#endregion
|
|
2548
2548
|
//#region src/slices/team/TeamParent.vue.d.ts
|
|
2549
|
-
declare const __VLS_export$55:
|
|
2549
|
+
declare const __VLS_export$55: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
2550
2550
|
declare const _default$84: typeof __VLS_export$55;
|
|
2551
2551
|
//#endregion
|
|
2552
2552
|
//#region src/slices/team/teamRoutes.d.ts
|
|
@@ -2599,37 +2599,37 @@ declare const teamRoutes: Array<ExtendedRouteRecordRaw>;
|
|
|
2599
2599
|
* Reuse the existing TeamReadSchema from the validation library
|
|
2600
2600
|
* for the data table rows - don't recreate it!
|
|
2601
2601
|
*/
|
|
2602
|
-
declare const teamRowSchemaWithMetadata:
|
|
2603
|
-
unique_name:
|
|
2604
|
-
display_name:
|
|
2605
|
-
legal_name:
|
|
2606
|
-
description:
|
|
2607
|
-
contact_name:
|
|
2608
|
-
contact_email:
|
|
2609
|
-
contact_business_phone:
|
|
2610
|
-
contact_mobile_phone:
|
|
2611
|
-
contact_time_zone:
|
|
2612
|
-
address_full:
|
|
2613
|
-
address_city:
|
|
2614
|
-
address_zip:
|
|
2615
|
-
twitter_username:
|
|
2616
|
-
url:
|
|
2617
|
-
logo:
|
|
2618
|
-
email_sent_from:
|
|
2619
|
-
email_reply_to:
|
|
2602
|
+
declare const teamRowSchemaWithMetadata: zod77.ZodObject<{
|
|
2603
|
+
unique_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2604
|
+
display_name: zod77.ZodString;
|
|
2605
|
+
legal_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2606
|
+
description: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2607
|
+
contact_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2608
|
+
contact_email: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2609
|
+
contact_business_phone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2610
|
+
contact_mobile_phone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2611
|
+
contact_time_zone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2612
|
+
address_full: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2613
|
+
address_city: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2614
|
+
address_zip: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2615
|
+
twitter_username: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2616
|
+
url: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2617
|
+
logo: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2618
|
+
email_sent_from: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2619
|
+
email_reply_to: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2620
2620
|
} & {
|
|
2621
|
-
id:
|
|
2622
|
-
original_id:
|
|
2623
|
-
path:
|
|
2624
|
-
created_at:
|
|
2625
|
-
updated_at:
|
|
2626
|
-
created_by:
|
|
2627
|
-
created_by_display_name:
|
|
2628
|
-
updated_by:
|
|
2629
|
-
updated_by_display_name:
|
|
2630
|
-
archived_at:
|
|
2631
|
-
archived_by:
|
|
2632
|
-
}, "strip",
|
|
2621
|
+
id: zod77.ZodString;
|
|
2622
|
+
original_id: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2623
|
+
path: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2624
|
+
created_at: zod77.ZodString;
|
|
2625
|
+
updated_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2626
|
+
created_by: zod77.ZodString;
|
|
2627
|
+
created_by_display_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2628
|
+
updated_by: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2629
|
+
updated_by_display_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2630
|
+
archived_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2631
|
+
archived_by: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
2632
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2633
2633
|
id: string;
|
|
2634
2634
|
created_at: string;
|
|
2635
2635
|
display_name: string;
|
|
@@ -2638,16 +2638,15 @@ declare const teamRowSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2638
2638
|
updated_at?: string | null | undefined;
|
|
2639
2639
|
unique_name?: string | null | undefined;
|
|
2640
2640
|
legal_name?: string | null | undefined;
|
|
2641
|
-
contact_email?: string | null | undefined;
|
|
2642
|
-
address_city?: string | null | undefined;
|
|
2643
|
-
address_zip?: string | null | undefined;
|
|
2644
|
-
archived_at?: string | null | undefined;
|
|
2645
2641
|
description?: string | null | undefined;
|
|
2646
2642
|
contact_name?: string | null | undefined;
|
|
2643
|
+
contact_email?: string | null | undefined;
|
|
2647
2644
|
contact_business_phone?: string | null | undefined;
|
|
2648
2645
|
contact_mobile_phone?: string | null | undefined;
|
|
2649
2646
|
contact_time_zone?: string | null | undefined;
|
|
2650
2647
|
address_full?: string | null | undefined;
|
|
2648
|
+
address_city?: string | null | undefined;
|
|
2649
|
+
address_zip?: string | null | undefined;
|
|
2651
2650
|
twitter_username?: string | null | undefined;
|
|
2652
2651
|
url?: string | null | undefined;
|
|
2653
2652
|
logo?: string | null | undefined;
|
|
@@ -2657,6 +2656,7 @@ declare const teamRowSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2657
2656
|
created_by_display_name?: string | null | undefined;
|
|
2658
2657
|
updated_by?: string | null | undefined;
|
|
2659
2658
|
updated_by_display_name?: string | null | undefined;
|
|
2659
|
+
archived_at?: string | null | undefined;
|
|
2660
2660
|
archived_by?: string | null | undefined;
|
|
2661
2661
|
}, {
|
|
2662
2662
|
id: string;
|
|
@@ -2667,16 +2667,15 @@ declare const teamRowSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2667
2667
|
updated_at?: string | null | undefined;
|
|
2668
2668
|
unique_name?: string | null | undefined;
|
|
2669
2669
|
legal_name?: string | null | undefined;
|
|
2670
|
-
contact_email?: string | null | undefined;
|
|
2671
|
-
address_city?: string | null | undefined;
|
|
2672
|
-
address_zip?: string | null | undefined;
|
|
2673
|
-
archived_at?: string | null | undefined;
|
|
2674
2670
|
description?: string | null | undefined;
|
|
2675
2671
|
contact_name?: string | null | undefined;
|
|
2672
|
+
contact_email?: string | null | undefined;
|
|
2676
2673
|
contact_business_phone?: string | null | undefined;
|
|
2677
2674
|
contact_mobile_phone?: string | null | undefined;
|
|
2678
2675
|
contact_time_zone?: string | null | undefined;
|
|
2679
2676
|
address_full?: string | null | undefined;
|
|
2677
|
+
address_city?: string | null | undefined;
|
|
2678
|
+
address_zip?: string | null | undefined;
|
|
2680
2679
|
twitter_username?: string | null | undefined;
|
|
2681
2680
|
url?: string | null | undefined;
|
|
2682
2681
|
logo?: string | null | undefined;
|
|
@@ -2686,6 +2685,7 @@ declare const teamRowSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2686
2685
|
created_by_display_name?: string | null | undefined;
|
|
2687
2686
|
updated_by?: string | null | undefined;
|
|
2688
2687
|
updated_by_display_name?: string | null | undefined;
|
|
2688
|
+
archived_at?: string | null | undefined;
|
|
2689
2689
|
archived_by?: string | null | undefined;
|
|
2690
2690
|
}>;
|
|
2691
2691
|
//#endregion
|
|
@@ -2695,11 +2695,11 @@ interface Props$18 {
|
|
|
2695
2695
|
isLoading?: boolean;
|
|
2696
2696
|
error?: Error | null;
|
|
2697
2697
|
}
|
|
2698
|
-
declare const __VLS_export$54:
|
|
2698
|
+
declare const __VLS_export$54: vue0.DefineComponent<Props$18, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$18> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
2699
2699
|
declare const _default$91: typeof __VLS_export$54;
|
|
2700
2700
|
//#endregion
|
|
2701
2701
|
//#region src/slices/team/team_member/CreateTeamMemberForm.vue.d.ts
|
|
2702
|
-
declare const __VLS_export$53:
|
|
2702
|
+
declare const __VLS_export$53: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
2703
2703
|
declare const _default$16: typeof __VLS_export$53;
|
|
2704
2704
|
//#endregion
|
|
2705
2705
|
//#region src/slices/team/team_member/EditTeamMemberForm.vue.d.ts
|
|
@@ -2708,7 +2708,7 @@ interface Props$17 {
|
|
|
2708
2708
|
isLoading?: boolean;
|
|
2709
2709
|
error?: Error | null;
|
|
2710
2710
|
}
|
|
2711
|
-
declare const __VLS_export$52:
|
|
2711
|
+
declare const __VLS_export$52: vue0.DefineComponent<Props$17, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$17> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
2712
2712
|
declare const _default$32: typeof __VLS_export$52;
|
|
2713
2713
|
//#endregion
|
|
2714
2714
|
//#region src/slices/team/team_member/team_memberRoutes.d.ts
|
|
@@ -2737,20 +2737,20 @@ declare const teamMemberPaths: {
|
|
|
2737
2737
|
declare const teamMemberRoutes: Array<ExtendedRouteRecordRaw>;
|
|
2738
2738
|
//#endregion
|
|
2739
2739
|
//#region src/slices/team/team_member/teamMemberFiltersMetadata.d.ts
|
|
2740
|
-
declare const teamMemberFiltersSchemaWithMetadata:
|
|
2741
|
-
first:
|
|
2742
|
-
after:
|
|
2743
|
-
sortBy:
|
|
2744
|
-
sortDirection:
|
|
2745
|
-
paginationToken:
|
|
2740
|
+
declare const teamMemberFiltersSchemaWithMetadata: zod77.ZodObject<{
|
|
2741
|
+
first: zod77.ZodOptional<zod77.ZodNumber>;
|
|
2742
|
+
after: zod77.ZodOptional<zod77.ZodString>;
|
|
2743
|
+
sortBy: zod77.ZodOptional<zod77.ZodString>;
|
|
2744
|
+
sortDirection: zod77.ZodOptional<zod77.ZodEnum<["asc", "desc"]>>;
|
|
2745
|
+
paginationToken: zod77.ZodOptional<zod77.ZodString>;
|
|
2746
2746
|
} & {
|
|
2747
|
-
original_id:
|
|
2748
|
-
caseSensitive:
|
|
2747
|
+
original_id: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
2748
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2749
2749
|
} & {
|
|
2750
|
-
operator:
|
|
2751
|
-
value:
|
|
2752
|
-
values:
|
|
2753
|
-
}, "strip",
|
|
2750
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte", "between", "in", "notIn"]>;
|
|
2751
|
+
value: zod77.ZodOptional<zod77.ZodNumber>;
|
|
2752
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodNumber, "many">>;
|
|
2753
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2754
2754
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
2755
2755
|
values?: number[] | undefined;
|
|
2756
2756
|
value?: number | undefined;
|
|
@@ -2781,12 +2781,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2781
2781
|
value?: number | undefined;
|
|
2782
2782
|
caseSensitive?: boolean | undefined;
|
|
2783
2783
|
}>>;
|
|
2784
|
-
team_id:
|
|
2785
|
-
operator:
|
|
2786
|
-
value:
|
|
2787
|
-
values:
|
|
2788
|
-
caseSensitive:
|
|
2789
|
-
}, "strip",
|
|
2784
|
+
team_id: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
2785
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2786
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
2787
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
2788
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2789
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2790
2790
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2791
2791
|
values?: string[] | undefined;
|
|
2792
2792
|
value?: string | undefined;
|
|
@@ -2807,12 +2807,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2807
2807
|
value?: string | undefined;
|
|
2808
2808
|
caseSensitive?: boolean | undefined;
|
|
2809
2809
|
}>>;
|
|
2810
|
-
original_team_id:
|
|
2811
|
-
operator:
|
|
2812
|
-
value:
|
|
2813
|
-
values:
|
|
2814
|
-
caseSensitive:
|
|
2815
|
-
}, "strip",
|
|
2810
|
+
original_team_id: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
2811
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2812
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
2813
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
2814
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2815
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2816
2816
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2817
2817
|
values?: string[] | undefined;
|
|
2818
2818
|
value?: string | undefined;
|
|
@@ -2833,12 +2833,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2833
2833
|
value?: string | undefined;
|
|
2834
2834
|
caseSensitive?: boolean | undefined;
|
|
2835
2835
|
}>>;
|
|
2836
|
-
user_id:
|
|
2837
|
-
operator:
|
|
2838
|
-
value:
|
|
2839
|
-
values:
|
|
2840
|
-
caseSensitive:
|
|
2841
|
-
}, "strip",
|
|
2836
|
+
user_id: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
2837
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2838
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
2839
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
2840
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2841
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2842
2842
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2843
2843
|
values?: string[] | undefined;
|
|
2844
2844
|
value?: string | undefined;
|
|
@@ -2859,12 +2859,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2859
2859
|
value?: string | undefined;
|
|
2860
2860
|
caseSensitive?: boolean | undefined;
|
|
2861
2861
|
}>>;
|
|
2862
|
-
original_user_id:
|
|
2863
|
-
operator:
|
|
2864
|
-
value:
|
|
2865
|
-
values:
|
|
2866
|
-
caseSensitive:
|
|
2867
|
-
}, "strip",
|
|
2862
|
+
original_user_id: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
2863
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2864
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
2865
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
2866
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2867
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2868
2868
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2869
2869
|
values?: string[] | undefined;
|
|
2870
2870
|
value?: string | undefined;
|
|
@@ -2885,13 +2885,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2885
2885
|
value?: string | undefined;
|
|
2886
2886
|
caseSensitive?: boolean | undefined;
|
|
2887
2887
|
}>>;
|
|
2888
|
-
role:
|
|
2889
|
-
caseSensitive:
|
|
2888
|
+
role: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{
|
|
2889
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2890
2890
|
} & {
|
|
2891
|
-
operator:
|
|
2892
|
-
value:
|
|
2893
|
-
values:
|
|
2894
|
-
}, "strip",
|
|
2891
|
+
operator: zod77.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
2892
|
+
value: zod77.ZodOptional<zod77.ZodEnum<["owner", "manager", "member", "client"]>>;
|
|
2893
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodEnum<["owner", "manager", "member", "client"]>, "many">>;
|
|
2894
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2895
2895
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2896
2896
|
values?: ("owner" | "manager" | "member" | "client")[] | undefined;
|
|
2897
2897
|
value?: "owner" | "manager" | "member" | "client" | undefined;
|
|
@@ -2912,12 +2912,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2912
2912
|
value?: "owner" | "manager" | "member" | "client" | undefined;
|
|
2913
2913
|
caseSensitive?: boolean | undefined;
|
|
2914
2914
|
}>>;
|
|
2915
|
-
display_name:
|
|
2916
|
-
operator:
|
|
2917
|
-
value:
|
|
2918
|
-
values:
|
|
2919
|
-
caseSensitive:
|
|
2920
|
-
}, "strip",
|
|
2915
|
+
display_name: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
2916
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2917
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
2918
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
2919
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2920
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2921
2921
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2922
2922
|
values?: string[] | undefined;
|
|
2923
2923
|
value?: string | undefined;
|
|
@@ -2938,12 +2938,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2938
2938
|
value?: string | undefined;
|
|
2939
2939
|
caseSensitive?: boolean | undefined;
|
|
2940
2940
|
}>>;
|
|
2941
|
-
business_phone:
|
|
2942
|
-
operator:
|
|
2943
|
-
value:
|
|
2944
|
-
values:
|
|
2945
|
-
caseSensitive:
|
|
2946
|
-
}, "strip",
|
|
2941
|
+
business_phone: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
2942
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2943
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
2944
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
2945
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2946
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2947
2947
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2948
2948
|
values?: string[] | undefined;
|
|
2949
2949
|
value?: string | undefined;
|
|
@@ -2964,12 +2964,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2964
2964
|
value?: string | undefined;
|
|
2965
2965
|
caseSensitive?: boolean | undefined;
|
|
2966
2966
|
}>>;
|
|
2967
|
-
mobile_phone:
|
|
2968
|
-
operator:
|
|
2969
|
-
value:
|
|
2970
|
-
values:
|
|
2971
|
-
caseSensitive:
|
|
2972
|
-
}, "strip",
|
|
2967
|
+
mobile_phone: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
2968
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2969
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
2970
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
2971
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2972
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2973
2973
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2974
2974
|
values?: string[] | undefined;
|
|
2975
2975
|
value?: string | undefined;
|
|
@@ -2990,12 +2990,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
2990
2990
|
value?: string | undefined;
|
|
2991
2991
|
caseSensitive?: boolean | undefined;
|
|
2992
2992
|
}>>;
|
|
2993
|
-
email_address:
|
|
2994
|
-
operator:
|
|
2995
|
-
value:
|
|
2996
|
-
values:
|
|
2997
|
-
caseSensitive:
|
|
2998
|
-
}, "strip",
|
|
2993
|
+
email_address: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
2994
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2995
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
2996
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
2997
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
2998
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
2999
2999
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3000
3000
|
values?: string[] | undefined;
|
|
3001
3001
|
value?: string | undefined;
|
|
@@ -3016,12 +3016,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3016
3016
|
value?: string | undefined;
|
|
3017
3017
|
caseSensitive?: boolean | undefined;
|
|
3018
3018
|
}>>;
|
|
3019
|
-
website_address:
|
|
3020
|
-
operator:
|
|
3021
|
-
value:
|
|
3022
|
-
values:
|
|
3023
|
-
caseSensitive:
|
|
3024
|
-
}, "strip",
|
|
3019
|
+
website_address: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
3020
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3021
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
3022
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
3023
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
3024
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3025
3025
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3026
3026
|
values?: string[] | undefined;
|
|
3027
3027
|
value?: string | undefined;
|
|
@@ -3042,12 +3042,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3042
3042
|
value?: string | undefined;
|
|
3043
3043
|
caseSensitive?: boolean | undefined;
|
|
3044
3044
|
}>>;
|
|
3045
|
-
time_zone:
|
|
3046
|
-
operator:
|
|
3047
|
-
value:
|
|
3048
|
-
values:
|
|
3049
|
-
caseSensitive:
|
|
3050
|
-
}, "strip",
|
|
3045
|
+
time_zone: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
3046
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3047
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
3048
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
3049
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
3050
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3051
3051
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3052
3052
|
values?: string[] | undefined;
|
|
3053
3053
|
value?: string | undefined;
|
|
@@ -3068,13 +3068,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3068
3068
|
value?: string | undefined;
|
|
3069
3069
|
caseSensitive?: boolean | undefined;
|
|
3070
3070
|
}>>;
|
|
3071
|
-
created_at:
|
|
3072
|
-
value:
|
|
3073
|
-
values:
|
|
3074
|
-
caseSensitive:
|
|
3071
|
+
created_at: zod77.ZodOptional<zod77.ZodUnion<[zod77.ZodEffects<zod77.ZodObject<{
|
|
3072
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
3073
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
3074
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
3075
3075
|
} & {
|
|
3076
|
-
operator:
|
|
3077
|
-
}, "strip",
|
|
3076
|
+
operator: zod77.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
3077
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3078
3078
|
operator: "isEmpty" | "isNotEmpty";
|
|
3079
3079
|
values?: any[] | undefined;
|
|
3080
3080
|
value?: any;
|
|
@@ -3094,13 +3094,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3094
3094
|
values?: any[] | undefined;
|
|
3095
3095
|
value?: any;
|
|
3096
3096
|
caseSensitive?: boolean | undefined;
|
|
3097
|
-
}>,
|
|
3098
|
-
value:
|
|
3099
|
-
caseSensitive:
|
|
3097
|
+
}>, zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
3098
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
3099
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
3100
3100
|
} & {
|
|
3101
|
-
operator:
|
|
3102
|
-
values:
|
|
3103
|
-
}, "strip",
|
|
3101
|
+
operator: zod77.ZodLiteral<"between">;
|
|
3102
|
+
values: zod77.ZodArray<zod77.ZodString, "many">;
|
|
3103
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3104
3104
|
values: string[];
|
|
3105
3105
|
operator: "between";
|
|
3106
3106
|
value?: any;
|
|
@@ -3130,13 +3130,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3130
3130
|
operator: "between";
|
|
3131
3131
|
value?: any;
|
|
3132
3132
|
caseSensitive?: boolean | undefined;
|
|
3133
|
-
}>,
|
|
3134
|
-
values:
|
|
3135
|
-
caseSensitive:
|
|
3133
|
+
}>, zod77.ZodEffects<zod77.ZodObject<{
|
|
3134
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
3135
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
3136
3136
|
} & {
|
|
3137
|
-
operator:
|
|
3138
|
-
value:
|
|
3139
|
-
}, "strip",
|
|
3137
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
3138
|
+
value: zod77.ZodString;
|
|
3139
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3140
3140
|
value: string;
|
|
3141
3141
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
3142
3142
|
values?: any[] | undefined;
|
|
@@ -3157,13 +3157,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3157
3157
|
values?: any[] | undefined;
|
|
3158
3158
|
caseSensitive?: boolean | undefined;
|
|
3159
3159
|
}>]>>;
|
|
3160
|
-
updated_at:
|
|
3161
|
-
value:
|
|
3162
|
-
values:
|
|
3163
|
-
caseSensitive:
|
|
3160
|
+
updated_at: zod77.ZodOptional<zod77.ZodUnion<[zod77.ZodEffects<zod77.ZodObject<{
|
|
3161
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
3162
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
3163
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
3164
3164
|
} & {
|
|
3165
|
-
operator:
|
|
3166
|
-
}, "strip",
|
|
3165
|
+
operator: zod77.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
3166
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3167
3167
|
operator: "isEmpty" | "isNotEmpty";
|
|
3168
3168
|
values?: any[] | undefined;
|
|
3169
3169
|
value?: any;
|
|
@@ -3183,13 +3183,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3183
3183
|
values?: any[] | undefined;
|
|
3184
3184
|
value?: any;
|
|
3185
3185
|
caseSensitive?: boolean | undefined;
|
|
3186
|
-
}>,
|
|
3187
|
-
value:
|
|
3188
|
-
caseSensitive:
|
|
3186
|
+
}>, zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
3187
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
3188
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
3189
3189
|
} & {
|
|
3190
|
-
operator:
|
|
3191
|
-
values:
|
|
3192
|
-
}, "strip",
|
|
3190
|
+
operator: zod77.ZodLiteral<"between">;
|
|
3191
|
+
values: zod77.ZodArray<zod77.ZodString, "many">;
|
|
3192
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3193
3193
|
values: string[];
|
|
3194
3194
|
operator: "between";
|
|
3195
3195
|
value?: any;
|
|
@@ -3219,13 +3219,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3219
3219
|
operator: "between";
|
|
3220
3220
|
value?: any;
|
|
3221
3221
|
caseSensitive?: boolean | undefined;
|
|
3222
|
-
}>,
|
|
3223
|
-
values:
|
|
3224
|
-
caseSensitive:
|
|
3222
|
+
}>, zod77.ZodEffects<zod77.ZodObject<{
|
|
3223
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
3224
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
3225
3225
|
} & {
|
|
3226
|
-
operator:
|
|
3227
|
-
value:
|
|
3228
|
-
}, "strip",
|
|
3226
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
3227
|
+
value: zod77.ZodString;
|
|
3228
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3229
3229
|
value: string;
|
|
3230
3230
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
3231
3231
|
values?: any[] | undefined;
|
|
@@ -3246,13 +3246,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3246
3246
|
values?: any[] | undefined;
|
|
3247
3247
|
caseSensitive?: boolean | undefined;
|
|
3248
3248
|
}>]>>;
|
|
3249
|
-
deleted_at:
|
|
3250
|
-
value:
|
|
3251
|
-
values:
|
|
3252
|
-
caseSensitive:
|
|
3249
|
+
deleted_at: zod77.ZodOptional<zod77.ZodUnion<[zod77.ZodEffects<zod77.ZodObject<{
|
|
3250
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
3251
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
3252
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
3253
3253
|
} & {
|
|
3254
|
-
operator:
|
|
3255
|
-
}, "strip",
|
|
3254
|
+
operator: zod77.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
3255
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3256
3256
|
operator: "isEmpty" | "isNotEmpty";
|
|
3257
3257
|
values?: any[] | undefined;
|
|
3258
3258
|
value?: any;
|
|
@@ -3272,13 +3272,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3272
3272
|
values?: any[] | undefined;
|
|
3273
3273
|
value?: any;
|
|
3274
3274
|
caseSensitive?: boolean | undefined;
|
|
3275
|
-
}>,
|
|
3276
|
-
value:
|
|
3277
|
-
caseSensitive:
|
|
3275
|
+
}>, zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
3276
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
3277
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
3278
3278
|
} & {
|
|
3279
|
-
operator:
|
|
3280
|
-
values:
|
|
3281
|
-
}, "strip",
|
|
3279
|
+
operator: zod77.ZodLiteral<"between">;
|
|
3280
|
+
values: zod77.ZodArray<zod77.ZodString, "many">;
|
|
3281
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3282
3282
|
values: string[];
|
|
3283
3283
|
operator: "between";
|
|
3284
3284
|
value?: any;
|
|
@@ -3308,13 +3308,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3308
3308
|
operator: "between";
|
|
3309
3309
|
value?: any;
|
|
3310
3310
|
caseSensitive?: boolean | undefined;
|
|
3311
|
-
}>,
|
|
3312
|
-
values:
|
|
3313
|
-
caseSensitive:
|
|
3311
|
+
}>, zod77.ZodEffects<zod77.ZodObject<{
|
|
3312
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
3313
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
3314
3314
|
} & {
|
|
3315
|
-
operator:
|
|
3316
|
-
value:
|
|
3317
|
-
}, "strip",
|
|
3315
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
3316
|
+
value: zod77.ZodString;
|
|
3317
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3318
3318
|
value: string;
|
|
3319
3319
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
3320
3320
|
values?: any[] | undefined;
|
|
@@ -3335,17 +3335,17 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3335
3335
|
values?: any[] | undefined;
|
|
3336
3336
|
caseSensitive?: boolean | undefined;
|
|
3337
3337
|
}>]>>;
|
|
3338
|
-
search:
|
|
3339
|
-
query:
|
|
3340
|
-
searchableFields:
|
|
3341
|
-
}, "strip",
|
|
3338
|
+
search: zod77.ZodOptional<zod77.ZodObject<{
|
|
3339
|
+
query: zod77.ZodString;
|
|
3340
|
+
searchableFields: zod77.ZodArray<zod77.ZodString, "many">;
|
|
3341
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3342
3342
|
query: string;
|
|
3343
3343
|
searchableFields: string[];
|
|
3344
3344
|
}, {
|
|
3345
3345
|
query: string;
|
|
3346
3346
|
searchableFields: string[];
|
|
3347
3347
|
}>>;
|
|
3348
|
-
}, "strip",
|
|
3348
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3349
3349
|
created_at?: {
|
|
3350
3350
|
operator: "isEmpty" | "isNotEmpty";
|
|
3351
3351
|
values?: any[] | undefined;
|
|
@@ -3388,11 +3388,6 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3388
3388
|
values?: any[] | undefined;
|
|
3389
3389
|
caseSensitive?: boolean | undefined;
|
|
3390
3390
|
} | undefined;
|
|
3391
|
-
first?: number | undefined;
|
|
3392
|
-
after?: string | undefined;
|
|
3393
|
-
sortBy?: string | undefined;
|
|
3394
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
3395
|
-
paginationToken?: string | undefined;
|
|
3396
3391
|
display_name?: {
|
|
3397
3392
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3398
3393
|
values?: string[] | undefined;
|
|
@@ -3405,6 +3400,11 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3405
3400
|
value?: number | undefined;
|
|
3406
3401
|
caseSensitive?: boolean | undefined;
|
|
3407
3402
|
} | undefined;
|
|
3403
|
+
first?: number | undefined;
|
|
3404
|
+
after?: string | undefined;
|
|
3405
|
+
sortBy?: string | undefined;
|
|
3406
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
3407
|
+
paginationToken?: string | undefined;
|
|
3408
3408
|
team_id?: {
|
|
3409
3409
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3410
3410
|
values?: string[] | undefined;
|
|
@@ -3518,11 +3518,6 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3518
3518
|
values?: any[] | undefined;
|
|
3519
3519
|
caseSensitive?: boolean | undefined;
|
|
3520
3520
|
} | undefined;
|
|
3521
|
-
first?: number | undefined;
|
|
3522
|
-
after?: string | undefined;
|
|
3523
|
-
sortBy?: string | undefined;
|
|
3524
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
3525
|
-
paginationToken?: string | undefined;
|
|
3526
3521
|
display_name?: {
|
|
3527
3522
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3528
3523
|
values?: string[] | undefined;
|
|
@@ -3535,6 +3530,11 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3535
3530
|
value?: number | undefined;
|
|
3536
3531
|
caseSensitive?: boolean | undefined;
|
|
3537
3532
|
} | undefined;
|
|
3533
|
+
first?: number | undefined;
|
|
3534
|
+
after?: string | undefined;
|
|
3535
|
+
sortBy?: string | undefined;
|
|
3536
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
3537
|
+
paginationToken?: string | undefined;
|
|
3538
3538
|
team_id?: {
|
|
3539
3539
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3540
3540
|
values?: string[] | undefined;
|
|
@@ -3608,21 +3608,21 @@ declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3608
3608
|
}>;
|
|
3609
3609
|
//#endregion
|
|
3610
3610
|
//#region src/slices/team/team_member/TeamMemberList.vue.d.ts
|
|
3611
|
-
declare const __VLS_export$51:
|
|
3611
|
+
declare const __VLS_export$51: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
3612
3612
|
declare const _default$80: typeof __VLS_export$51;
|
|
3613
3613
|
//#endregion
|
|
3614
3614
|
//#region src/slices/team/team_member/teamMemberMetadata.d.ts
|
|
3615
|
-
declare const teamMemberCreateSchemaWithMetadata:
|
|
3616
|
-
team_id:
|
|
3617
|
-
user_id:
|
|
3618
|
-
role:
|
|
3619
|
-
display_name:
|
|
3620
|
-
business_phone:
|
|
3621
|
-
mobile_phone:
|
|
3622
|
-
email_address:
|
|
3623
|
-
website_address:
|
|
3624
|
-
time_zone:
|
|
3625
|
-
}, "team_id">, "strip",
|
|
3615
|
+
declare const teamMemberCreateSchemaWithMetadata: zod77.ZodObject<Omit<{
|
|
3616
|
+
team_id: zod77.ZodString;
|
|
3617
|
+
user_id: zod77.ZodString;
|
|
3618
|
+
role: zod77.ZodEnum<["owner", "manager", "member", "client"]>;
|
|
3619
|
+
display_name: zod77.ZodString;
|
|
3620
|
+
business_phone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3621
|
+
mobile_phone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3622
|
+
email_address: zod77.ZodString;
|
|
3623
|
+
website_address: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3624
|
+
time_zone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3625
|
+
}, "team_id">, "strip", zod77.ZodTypeAny, {
|
|
3626
3626
|
user_id: string;
|
|
3627
3627
|
display_name: string;
|
|
3628
3628
|
role: "owner" | "manager" | "member" | "client";
|
|
@@ -3641,19 +3641,19 @@ declare const teamMemberCreateSchemaWithMetadata: zod0.ZodObject<Omit<{
|
|
|
3641
3641
|
website_address?: string | null | undefined;
|
|
3642
3642
|
time_zone?: string | null | undefined;
|
|
3643
3643
|
}>;
|
|
3644
|
-
declare const teamMemberUpdateSchemaWithMetadata:
|
|
3645
|
-
team_id:
|
|
3646
|
-
user_id:
|
|
3647
|
-
role:
|
|
3648
|
-
display_name:
|
|
3649
|
-
business_phone:
|
|
3650
|
-
mobile_phone:
|
|
3651
|
-
email_address:
|
|
3652
|
-
website_address:
|
|
3653
|
-
time_zone:
|
|
3644
|
+
declare const teamMemberUpdateSchemaWithMetadata: zod77.ZodObject<{
|
|
3645
|
+
team_id: zod77.ZodString;
|
|
3646
|
+
user_id: zod77.ZodString;
|
|
3647
|
+
role: zod77.ZodEnum<["owner", "manager", "member", "client"]>;
|
|
3648
|
+
display_name: zod77.ZodString;
|
|
3649
|
+
business_phone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3650
|
+
mobile_phone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3651
|
+
email_address: zod77.ZodString;
|
|
3652
|
+
website_address: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3653
|
+
time_zone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3654
3654
|
} & {
|
|
3655
|
-
id:
|
|
3656
|
-
}, "strip",
|
|
3655
|
+
id: zod77.ZodString;
|
|
3656
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3657
3657
|
id: string;
|
|
3658
3658
|
user_id: string;
|
|
3659
3659
|
display_name: string;
|
|
@@ -3678,7 +3678,7 @@ declare const teamMemberUpdateSchemaWithMetadata: zod0.ZodObject<{
|
|
|
3678
3678
|
}>;
|
|
3679
3679
|
//#endregion
|
|
3680
3680
|
//#region src/slices/team/team_member/TeamMemberParent.vue.d.ts
|
|
3681
|
-
declare const __VLS_export$50:
|
|
3681
|
+
declare const __VLS_export$50: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
3682
3682
|
declare const _default$81: typeof __VLS_export$50;
|
|
3683
3683
|
//#endregion
|
|
3684
3684
|
//#region src/slices/team/team_member/teamMemberRowSchema.d.ts
|
|
@@ -3686,29 +3686,29 @@ declare const _default$81: typeof __VLS_export$50;
|
|
|
3686
3686
|
* Reuse the existing TeamMemberReadSchema from the validation library
|
|
3687
3687
|
* for the data table rows - don't recreate it!
|
|
3688
3688
|
*/
|
|
3689
|
-
declare const teamMemberRowSchemaWithMetadata:
|
|
3690
|
-
id:
|
|
3691
|
-
original_id:
|
|
3692
|
-
team_id:
|
|
3693
|
-
original_team_id:
|
|
3694
|
-
user_id:
|
|
3695
|
-
original_user_id:
|
|
3696
|
-
role:
|
|
3697
|
-
display_name:
|
|
3698
|
-
business_phone:
|
|
3699
|
-
mobile_phone:
|
|
3700
|
-
email_address:
|
|
3701
|
-
website_address:
|
|
3702
|
-
time_zone:
|
|
3703
|
-
created_at:
|
|
3704
|
-
created_by:
|
|
3705
|
-
created_by_display_name:
|
|
3706
|
-
updated_at:
|
|
3707
|
-
updated_by:
|
|
3708
|
-
updated_by_display_name:
|
|
3709
|
-
deleted_at:
|
|
3710
|
-
deleted_by:
|
|
3711
|
-
}, "strip",
|
|
3689
|
+
declare const teamMemberRowSchemaWithMetadata: zod77.ZodObject<{
|
|
3690
|
+
id: zod77.ZodString;
|
|
3691
|
+
original_id: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodNumber>>;
|
|
3692
|
+
team_id: zod77.ZodString;
|
|
3693
|
+
original_team_id: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3694
|
+
user_id: zod77.ZodString;
|
|
3695
|
+
original_user_id: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3696
|
+
role: zod77.ZodEnum<["owner", "manager", "member", "client"]>;
|
|
3697
|
+
display_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3698
|
+
business_phone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3699
|
+
mobile_phone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3700
|
+
email_address: zod77.ZodString;
|
|
3701
|
+
website_address: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3702
|
+
time_zone: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3703
|
+
created_at: zod77.ZodString;
|
|
3704
|
+
created_by: zod77.ZodString;
|
|
3705
|
+
created_by_display_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3706
|
+
updated_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3707
|
+
updated_by: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3708
|
+
updated_by_display_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3709
|
+
deleted_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3710
|
+
deleted_by: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3711
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
3712
3712
|
id: string;
|
|
3713
3713
|
created_at: string;
|
|
3714
3714
|
user_id: string;
|
|
@@ -3760,7 +3760,7 @@ interface Props$16 {
|
|
|
3760
3760
|
isLoading?: boolean;
|
|
3761
3761
|
error?: Error | null;
|
|
3762
3762
|
}
|
|
3763
|
-
declare const __VLS_export$49:
|
|
3763
|
+
declare const __VLS_export$49: vue0.DefineComponent<Props$16, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$16> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
3764
3764
|
declare const _default$92: typeof __VLS_export$49;
|
|
3765
3765
|
//#endregion
|
|
3766
3766
|
//#region src/slices/note/components/NoteList.vue.d.ts
|
|
@@ -3769,9 +3769,9 @@ interface Props$15 {
|
|
|
3769
3769
|
recordType: string;
|
|
3770
3770
|
mode?: 'customer' | 'internal';
|
|
3771
3771
|
}
|
|
3772
|
-
declare const __VLS_export$48:
|
|
3772
|
+
declare const __VLS_export$48: vue0.DefineComponent<Props$15, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$15> & Readonly<{}>, {
|
|
3773
3773
|
mode: "customer" | "internal";
|
|
3774
|
-
}, {}, {}, {}, string,
|
|
3774
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
3775
3775
|
declare const _default$51: typeof __VLS_export$48;
|
|
3776
3776
|
//#endregion
|
|
3777
3777
|
//#region src/slices/note/noteRowSchema.d.ts
|
|
@@ -3803,11 +3803,11 @@ declare const noteRowSchemaWithMetadata: z.ZodObject<{
|
|
|
3803
3803
|
is_internal: boolean;
|
|
3804
3804
|
title?: string | null | undefined;
|
|
3805
3805
|
updated_at?: string | null | undefined;
|
|
3806
|
-
archived_at?: string | null | undefined;
|
|
3807
3806
|
original_id?: number | null | undefined;
|
|
3808
3807
|
created_by_display_name?: string | null | undefined;
|
|
3809
3808
|
updated_by?: string | null | undefined;
|
|
3810
3809
|
updated_by_display_name?: string | null | undefined;
|
|
3810
|
+
archived_at?: string | null | undefined;
|
|
3811
3811
|
archived_by?: string | null | undefined;
|
|
3812
3812
|
deleted_at?: string | null | undefined;
|
|
3813
3813
|
deleted_by?: string | null | undefined;
|
|
@@ -3822,11 +3822,11 @@ declare const noteRowSchemaWithMetadata: z.ZodObject<{
|
|
|
3822
3822
|
is_internal: boolean;
|
|
3823
3823
|
title?: string | null | undefined;
|
|
3824
3824
|
updated_at?: string | null | undefined;
|
|
3825
|
-
archived_at?: string | null | undefined;
|
|
3826
3825
|
original_id?: number | null | undefined;
|
|
3827
3826
|
created_by_display_name?: string | null | undefined;
|
|
3828
3827
|
updated_by?: string | null | undefined;
|
|
3829
3828
|
updated_by_display_name?: string | null | undefined;
|
|
3829
|
+
archived_at?: string | null | undefined;
|
|
3830
3830
|
archived_by?: string | null | undefined;
|
|
3831
3831
|
deleted_at?: string | null | undefined;
|
|
3832
3832
|
deleted_by?: string | null | undefined;
|
|
@@ -3840,25 +3840,25 @@ interface Props$14 {
|
|
|
3840
3840
|
note: NoteRow | null;
|
|
3841
3841
|
isOpen: boolean;
|
|
3842
3842
|
}
|
|
3843
|
-
declare const __VLS_export$47:
|
|
3843
|
+
declare const __VLS_export$47: vue0.DefineComponent<Props$14, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {} & {
|
|
3844
3844
|
close: () => any;
|
|
3845
3845
|
success: () => any;
|
|
3846
|
-
}, string,
|
|
3846
|
+
}, string, vue0.PublicProps, Readonly<Props$14> & Readonly<{
|
|
3847
3847
|
onClose?: (() => any) | undefined;
|
|
3848
3848
|
onSuccess?: (() => any) | undefined;
|
|
3849
|
-
}>, {}, {}, {}, {}, string,
|
|
3849
|
+
}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
3850
3850
|
declare const _default$30: typeof __VLS_export$47;
|
|
3851
3851
|
//#endregion
|
|
3852
3852
|
//#region src/slices/note/noteFormMetadata.d.ts
|
|
3853
|
-
declare const noteCreateMetadata:
|
|
3854
|
-
record_id:
|
|
3855
|
-
record_type:
|
|
3856
|
-
tag:
|
|
3857
|
-
title:
|
|
3858
|
-
body:
|
|
3859
|
-
original_id:
|
|
3860
|
-
is_internal:
|
|
3861
|
-
}, "tag" | "body" | "is_internal">, "strip",
|
|
3853
|
+
declare const noteCreateMetadata: zod77.ZodObject<Pick<{
|
|
3854
|
+
record_id: zod77.ZodString;
|
|
3855
|
+
record_type: zod77.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
3856
|
+
tag: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3857
|
+
title: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3858
|
+
body: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3859
|
+
original_id: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodNumber>>;
|
|
3860
|
+
is_internal: zod77.ZodDefault<zod77.ZodOptional<zod77.ZodBoolean>>;
|
|
3861
|
+
}, "tag" | "body" | "is_internal">, "strip", zod77.ZodTypeAny, {
|
|
3862
3862
|
is_internal: boolean;
|
|
3863
3863
|
tag?: string | null | undefined;
|
|
3864
3864
|
body?: string | null | undefined;
|
|
@@ -3869,16 +3869,16 @@ declare const noteCreateMetadata: zod0.ZodObject<Pick<{
|
|
|
3869
3869
|
}>;
|
|
3870
3870
|
//#endregion
|
|
3871
3871
|
//#region src/slices/note/noteUpdateMetadata.d.ts
|
|
3872
|
-
declare const noteUpdateMetadata:
|
|
3873
|
-
id:
|
|
3874
|
-
record_id:
|
|
3875
|
-
record_type:
|
|
3876
|
-
tag:
|
|
3877
|
-
title:
|
|
3878
|
-
body:
|
|
3879
|
-
original_id:
|
|
3880
|
-
is_internal:
|
|
3881
|
-
}, "tag" | "body">, "strip",
|
|
3872
|
+
declare const noteUpdateMetadata: zod77.ZodObject<Pick<{
|
|
3873
|
+
id: zod77.ZodString;
|
|
3874
|
+
record_id: zod77.ZodOptional<zod77.ZodString>;
|
|
3875
|
+
record_type: zod77.ZodOptional<zod77.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>>;
|
|
3876
|
+
tag: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3877
|
+
title: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3878
|
+
body: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
3879
|
+
original_id: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodNumber>>;
|
|
3880
|
+
is_internal: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
3881
|
+
}, "tag" | "body">, "strip", zod77.ZodTypeAny, {
|
|
3882
3882
|
tag?: string | null | undefined;
|
|
3883
3883
|
body?: string | null | undefined;
|
|
3884
3884
|
}, {
|
|
@@ -3986,23 +3986,23 @@ type SupportTicket$5 = CustomerSupportTicketReadDto;
|
|
|
3986
3986
|
type __VLS_Props$9 = {
|
|
3987
3987
|
support_ticket: SupportTicket$5;
|
|
3988
3988
|
};
|
|
3989
|
-
declare const __VLS_export$46:
|
|
3989
|
+
declare const __VLS_export$46: vue0.DefineComponent<__VLS_Props$9, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<__VLS_Props$9> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
3990
3990
|
declare const _default$75: typeof __VLS_export$46;
|
|
3991
3991
|
//#endregion
|
|
3992
3992
|
//#region src/slices/support_ticket/customer/CustomerCreateSupportTicketForm.vue.d.ts
|
|
3993
|
-
declare const __VLS_export$45:
|
|
3993
|
+
declare const __VLS_export$45: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
3994
3994
|
declare const _default$24: typeof __VLS_export$45;
|
|
3995
3995
|
//#endregion
|
|
3996
3996
|
//#region src/slices/support_ticket/customer/CustomerSupportTicketList.vue.d.ts
|
|
3997
|
-
declare const __VLS_export$44:
|
|
3997
|
+
declare const __VLS_export$44: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
3998
3998
|
declare const _default$26: typeof __VLS_export$44;
|
|
3999
3999
|
//#endregion
|
|
4000
4000
|
//#region src/slices/support_ticket/customer/CustomerSupportTicketParent.vue.d.ts
|
|
4001
|
-
declare const __VLS_export$43:
|
|
4001
|
+
declare const __VLS_export$43: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
4002
4002
|
declare const _default$27: typeof __VLS_export$43;
|
|
4003
4003
|
//#endregion
|
|
4004
4004
|
//#region src/slices/support_ticket/customer/CustomerSupportTicketSuccess.vue.d.ts
|
|
4005
|
-
declare const __VLS_export$42:
|
|
4005
|
+
declare const __VLS_export$42: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
4006
4006
|
declare const _default$28: typeof __VLS_export$42;
|
|
4007
4007
|
//#endregion
|
|
4008
4008
|
//#region src/slices/support_ticket/staff/components/ApproveRejectActions.vue.d.ts
|
|
@@ -4010,14 +4010,14 @@ type SupportTicket$4 = StaffSupportTicketReadDto;
|
|
|
4010
4010
|
type __VLS_Props$8 = {
|
|
4011
4011
|
support_ticket: SupportTicket$4;
|
|
4012
4012
|
};
|
|
4013
|
-
declare const __VLS_export$41:
|
|
4013
|
+
declare const __VLS_export$41: vue0.DefineComponent<__VLS_Props$8, {
|
|
4014
4014
|
showApproveModal: () => void;
|
|
4015
4015
|
showRejectModal: () => void;
|
|
4016
|
-
}, {}, {}, {},
|
|
4016
|
+
}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
4017
4017
|
update: (...args: any[]) => void;
|
|
4018
|
-
}, string,
|
|
4018
|
+
}, string, vue0.PublicProps, Readonly<__VLS_Props$8> & Readonly<{
|
|
4019
4019
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
4020
|
-
}>, {}, {}, {}, {}, string,
|
|
4020
|
+
}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
4021
4021
|
declare const _default$6: typeof __VLS_export$41;
|
|
4022
4022
|
//#endregion
|
|
4023
4023
|
//#region src/slices/support_ticket/staff/components/CancelInternalTaskWorkflow.vue.d.ts
|
|
@@ -4025,11 +4025,11 @@ type SupportTicket$3 = StaffSupportTicketReadDto;
|
|
|
4025
4025
|
type __VLS_Props$7 = {
|
|
4026
4026
|
support_ticket: SupportTicket$3;
|
|
4027
4027
|
};
|
|
4028
|
-
declare const __VLS_export$40:
|
|
4028
|
+
declare const __VLS_export$40: vue0.DefineComponent<__VLS_Props$7, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
4029
4029
|
update: (...args: any[]) => void;
|
|
4030
|
-
}, string,
|
|
4030
|
+
}, string, vue0.PublicProps, Readonly<__VLS_Props$7> & Readonly<{
|
|
4031
4031
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
4032
|
-
}>, {}, {}, {}, {}, string,
|
|
4032
|
+
}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
4033
4033
|
declare const _default$9: typeof __VLS_export$40;
|
|
4034
4034
|
//#endregion
|
|
4035
4035
|
//#region src/slices/support_ticket/staff/components/CompleteSupportTicketForm.vue.d.ts
|
|
@@ -4037,22 +4037,22 @@ type SupportTicket$2 = StaffSupportTicketReadDto;
|
|
|
4037
4037
|
type __VLS_Props$6 = {
|
|
4038
4038
|
support_ticket: SupportTicket$2;
|
|
4039
4039
|
};
|
|
4040
|
-
declare const __VLS_export$39:
|
|
4040
|
+
declare const __VLS_export$39: vue0.DefineComponent<__VLS_Props$6, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
4041
4041
|
update: (...args: any[]) => void;
|
|
4042
|
-
}, string,
|
|
4042
|
+
}, string, vue0.PublicProps, Readonly<__VLS_Props$6> & Readonly<{
|
|
4043
4043
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
4044
|
-
}>, {}, {}, {}, {}, string,
|
|
4044
|
+
}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
4045
4045
|
declare const _default$11: typeof __VLS_export$39;
|
|
4046
4046
|
//#endregion
|
|
4047
4047
|
//#region src/slices/support_ticket/staff/components/ConvertToCustomerWorkflow.vue.d.ts
|
|
4048
4048
|
type __VLS_Props$5 = {
|
|
4049
4049
|
support_ticket: StaffSupportTicketReadDto;
|
|
4050
4050
|
};
|
|
4051
|
-
declare const __VLS_export$38:
|
|
4051
|
+
declare const __VLS_export$38: vue0.DefineComponent<__VLS_Props$5, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
4052
4052
|
update: (...args: any[]) => void;
|
|
4053
|
-
}, string,
|
|
4053
|
+
}, string, vue0.PublicProps, Readonly<__VLS_Props$5> & Readonly<{
|
|
4054
4054
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
4055
|
-
}>, {}, {}, {}, {}, string,
|
|
4055
|
+
}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
4056
4056
|
declare const _default$13: typeof __VLS_export$38;
|
|
4057
4057
|
//#endregion
|
|
4058
4058
|
//#region src/slices/support_ticket/staff/components/ConvertToInternalWorkflow.vue.d.ts
|
|
@@ -4060,15 +4060,15 @@ type SupportTicket$1 = StaffSupportTicketReadDto;
|
|
|
4060
4060
|
type __VLS_Props$4 = {
|
|
4061
4061
|
support_ticket: SupportTicket$1;
|
|
4062
4062
|
};
|
|
4063
|
-
declare const __VLS_export$37:
|
|
4063
|
+
declare const __VLS_export$37: vue0.DefineComponent<__VLS_Props$4, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
4064
4064
|
update: (...args: any[]) => void;
|
|
4065
|
-
}, string,
|
|
4065
|
+
}, string, vue0.PublicProps, Readonly<__VLS_Props$4> & Readonly<{
|
|
4066
4066
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
4067
|
-
}>, {}, {}, {}, {}, string,
|
|
4067
|
+
}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
4068
4068
|
declare const _default$14: typeof __VLS_export$37;
|
|
4069
4069
|
//#endregion
|
|
4070
4070
|
//#region src/slices/support_ticket/staff/components/CustomerCreditBalance.vue.d.ts
|
|
4071
|
-
declare const __VLS_export$36:
|
|
4071
|
+
declare const __VLS_export$36: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
4072
4072
|
declare const _default$25: typeof __VLS_export$36;
|
|
4073
4073
|
//#endregion
|
|
4074
4074
|
//#region src/slices/support_ticket/staff/components/ReactivateInternalTaskWorkflow.vue.d.ts
|
|
@@ -4076,27 +4076,27 @@ type SupportTicket = StaffSupportTicketReadDto;
|
|
|
4076
4076
|
type __VLS_Props$3 = {
|
|
4077
4077
|
support_ticket: SupportTicket;
|
|
4078
4078
|
};
|
|
4079
|
-
declare const __VLS_export$35:
|
|
4079
|
+
declare const __VLS_export$35: vue0.DefineComponent<__VLS_Props$3, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
4080
4080
|
update: (...args: any[]) => void;
|
|
4081
|
-
}, string,
|
|
4081
|
+
}, string, vue0.PublicProps, Readonly<__VLS_Props$3> & Readonly<{
|
|
4082
4082
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
4083
|
-
}>, {}, {}, {}, {}, string,
|
|
4083
|
+
}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
4084
4084
|
declare const _default$52: typeof __VLS_export$35;
|
|
4085
4085
|
//#endregion
|
|
4086
4086
|
//#region src/slices/support_ticket/staff/StaffCreateSupportTicketForm.vue.d.ts
|
|
4087
|
-
declare const __VLS_export$34:
|
|
4087
|
+
declare const __VLS_export$34: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
4088
4088
|
declare const _default$65: typeof __VLS_export$34;
|
|
4089
4089
|
//#endregion
|
|
4090
4090
|
//#region src/slices/support_ticket/staff/StaffSupportTicketList.vue.d.ts
|
|
4091
|
-
declare const __VLS_export$33:
|
|
4091
|
+
declare const __VLS_export$33: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
4092
4092
|
declare const _default$66: typeof __VLS_export$33;
|
|
4093
4093
|
//#endregion
|
|
4094
4094
|
//#region src/slices/support_ticket/staff/StaffSupportTicketParent.vue.d.ts
|
|
4095
|
-
declare const __VLS_export$32:
|
|
4095
|
+
declare const __VLS_export$32: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
4096
4096
|
declare const _default$67: typeof __VLS_export$32;
|
|
4097
4097
|
//#endregion
|
|
4098
4098
|
//#region src/slices/support_ticket/staff/StaffSupportTicketSuccess.vue.d.ts
|
|
4099
|
-
declare const __VLS_export$31:
|
|
4099
|
+
declare const __VLS_export$31: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
4100
4100
|
declare const _default$68: typeof __VLS_export$31;
|
|
4101
4101
|
//#endregion
|
|
4102
4102
|
//#region src/slices/support_ticket/shared/CreditBalanceWidget.vue.d.ts
|
|
@@ -4106,12 +4106,12 @@ interface Props$13 {
|
|
|
4106
4106
|
showTitle?: boolean;
|
|
4107
4107
|
showHistoryLink?: boolean;
|
|
4108
4108
|
}
|
|
4109
|
-
declare const __VLS_export$30:
|
|
4109
|
+
declare const __VLS_export$30: vue0.DefineComponent<Props$13, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$13> & Readonly<{}>, {
|
|
4110
4110
|
variant: "compact" | "full";
|
|
4111
4111
|
expandable: boolean;
|
|
4112
4112
|
showTitle: boolean;
|
|
4113
4113
|
showHistoryLink: boolean;
|
|
4114
|
-
}, {}, {}, {}, string,
|
|
4114
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
4115
4115
|
declare const _default$20: typeof __VLS_export$30;
|
|
4116
4116
|
//#endregion
|
|
4117
4117
|
//#region src/slices/support_ticket/shared/InlineAttachments.vue.d.ts
|
|
@@ -4120,7 +4120,7 @@ interface Props$12 {
|
|
|
4120
4120
|
canUpload?: boolean;
|
|
4121
4121
|
canDelete?: boolean;
|
|
4122
4122
|
}
|
|
4123
|
-
declare const __VLS_export$29:
|
|
4123
|
+
declare const __VLS_export$29: vue0.DefineComponent<Props$12, {
|
|
4124
4124
|
getQueuedFiles: () => {
|
|
4125
4125
|
readonly lastModified: number;
|
|
4126
4126
|
readonly name: string;
|
|
@@ -4134,12 +4134,12 @@ declare const __VLS_export$29: vue6.DefineComponent<Props$12, {
|
|
|
4134
4134
|
text: () => Promise<string>;
|
|
4135
4135
|
}[];
|
|
4136
4136
|
uploadQueuedFiles: (ticketId: string) => Promise<void>;
|
|
4137
|
-
}, {}, {}, {},
|
|
4137
|
+
}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
4138
4138
|
uploaded: () => any;
|
|
4139
4139
|
deleted: () => any;
|
|
4140
4140
|
filesQueued: (files: File[]) => any;
|
|
4141
4141
|
"update:attachmentsCount": (count: number) => any;
|
|
4142
|
-
}, string,
|
|
4142
|
+
}, string, vue0.PublicProps, Readonly<Props$12> & Readonly<{
|
|
4143
4143
|
onUploaded?: (() => any) | undefined;
|
|
4144
4144
|
onDeleted?: (() => any) | undefined;
|
|
4145
4145
|
onFilesQueued?: ((files: File[]) => any) | undefined;
|
|
@@ -4147,11 +4147,11 @@ declare const __VLS_export$29: vue6.DefineComponent<Props$12, {
|
|
|
4147
4147
|
}>, {
|
|
4148
4148
|
canUpload: boolean;
|
|
4149
4149
|
canDelete: boolean;
|
|
4150
|
-
}, {}, {}, {}, string,
|
|
4150
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
4151
4151
|
declare const _default$41: typeof __VLS_export$29;
|
|
4152
4152
|
//#endregion
|
|
4153
4153
|
//#region src/slices/support_ticket/shared/SupportTicketAttachments.vue.d.ts
|
|
4154
|
-
declare const __VLS_export$28:
|
|
4154
|
+
declare const __VLS_export$28: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
4155
4155
|
declare const _default$71: typeof __VLS_export$28;
|
|
4156
4156
|
//#endregion
|
|
4157
4157
|
//#region src/slices/support_ticket/shared/SupportTicketApprovalBadge.vue.d.ts
|
|
@@ -4166,10 +4166,10 @@ interface Props$11 {
|
|
|
4166
4166
|
/** Visual variant of the badge - defaults to 'default' */
|
|
4167
4167
|
variant?: 'default' | 'outline';
|
|
4168
4168
|
}
|
|
4169
|
-
declare const __VLS_export$27:
|
|
4169
|
+
declare const __VLS_export$27: vue0.DefineComponent<Props$11, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$11> & Readonly<{}>, {
|
|
4170
4170
|
size: "sm" | "md" | "lg";
|
|
4171
4171
|
variant: "default" | "outline";
|
|
4172
|
-
}, {}, {}, {}, string,
|
|
4172
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
4173
4173
|
declare const _default$70: typeof __VLS_export$27;
|
|
4174
4174
|
//#endregion
|
|
4175
4175
|
//#region src/slices/support_ticket/shared/SupportTicketDevLifecycleBadge.vue.d.ts
|
|
@@ -4184,10 +4184,10 @@ interface Props$10 {
|
|
|
4184
4184
|
/** Visual variant of the badge - defaults to 'default' */
|
|
4185
4185
|
variant?: 'default' | 'outline';
|
|
4186
4186
|
}
|
|
4187
|
-
declare const __VLS_export$26:
|
|
4187
|
+
declare const __VLS_export$26: vue0.DefineComponent<Props$10, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$10> & Readonly<{}>, {
|
|
4188
4188
|
size: "sm" | "md" | "lg";
|
|
4189
4189
|
variant: "default" | "outline";
|
|
4190
|
-
}, {}, {}, {}, string,
|
|
4190
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
4191
4191
|
declare const _default$72: typeof __VLS_export$26;
|
|
4192
4192
|
//#endregion
|
|
4193
4193
|
//#region src/slices/support_ticket/shared/SupportTicketPriorityBadge.vue.d.ts
|
|
@@ -4202,10 +4202,10 @@ interface Props$9 {
|
|
|
4202
4202
|
/** Visual variant of the badge - defaults to 'default' */
|
|
4203
4203
|
variant?: 'default' | 'outline';
|
|
4204
4204
|
}
|
|
4205
|
-
declare const __VLS_export$25:
|
|
4205
|
+
declare const __VLS_export$25: vue0.DefineComponent<Props$9, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$9> & Readonly<{}>, {
|
|
4206
4206
|
size: "sm" | "md" | "lg";
|
|
4207
4207
|
variant: "default" | "outline";
|
|
4208
|
-
}, {}, {}, {}, string,
|
|
4208
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
4209
4209
|
declare const _default$73: typeof __VLS_export$25;
|
|
4210
4210
|
//#endregion
|
|
4211
4211
|
//#region src/slices/support_ticket/shared/SupportTicketStatusBadge.vue.d.ts
|
|
@@ -4220,10 +4220,10 @@ interface Props$8 {
|
|
|
4220
4220
|
/** Visual variant of the badge - defaults to 'default' */
|
|
4221
4221
|
variant?: 'default' | 'outline';
|
|
4222
4222
|
}
|
|
4223
|
-
declare const __VLS_export$24:
|
|
4223
|
+
declare const __VLS_export$24: vue0.DefineComponent<Props$8, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$8> & Readonly<{}>, {
|
|
4224
4224
|
size: "sm" | "md" | "lg";
|
|
4225
4225
|
variant: "default" | "outline";
|
|
4226
|
-
}, {}, {}, {}, string,
|
|
4226
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
4227
4227
|
declare const _default$74: typeof __VLS_export$24;
|
|
4228
4228
|
//#endregion
|
|
4229
4229
|
//#region src/slices/support_ticket/shared/SupportTicketTypeBadge.vue.d.ts
|
|
@@ -4238,21 +4238,21 @@ interface Props$7 {
|
|
|
4238
4238
|
/** Visual variant of the badge - defaults to 'default' */
|
|
4239
4239
|
variant?: 'default' | 'outline';
|
|
4240
4240
|
}
|
|
4241
|
-
declare const __VLS_export$23:
|
|
4241
|
+
declare const __VLS_export$23: vue0.DefineComponent<Props$7, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$7> & Readonly<{}>, {
|
|
4242
4242
|
size: "sm" | "md" | "lg";
|
|
4243
4243
|
variant: "default" | "outline";
|
|
4244
|
-
}, {}, {}, {}, string,
|
|
4244
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
4245
4245
|
declare const _default$76: typeof __VLS_export$23;
|
|
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",
|
|
4254
|
-
title: string;
|
|
4248
|
+
declare const customerSupportTicketCreateSchemaWithMetadata: zod77.ZodObject<{
|
|
4249
|
+
title: zod77.ZodString;
|
|
4250
|
+
description: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4251
|
+
type: zod77.ZodDefault<zod77.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>>;
|
|
4252
|
+
priority: zod77.ZodDefault<zod77.ZodNumber>;
|
|
4253
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4255
4254
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4255
|
+
title: string;
|
|
4256
4256
|
priority: number;
|
|
4257
4257
|
description?: string | null | undefined;
|
|
4258
4258
|
}, {
|
|
@@ -4261,22 +4261,22 @@ declare const customerSupportTicketCreateSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4261
4261
|
description?: string | null | undefined;
|
|
4262
4262
|
priority?: number | undefined;
|
|
4263
4263
|
}>;
|
|
4264
|
-
declare const customerSupportTicketUpdateSchemaWithMetadata:
|
|
4265
|
-
title:
|
|
4266
|
-
description:
|
|
4267
|
-
type:
|
|
4268
|
-
priority:
|
|
4264
|
+
declare const customerSupportTicketUpdateSchemaWithMetadata: zod77.ZodObject<{
|
|
4265
|
+
title: zod77.ZodString;
|
|
4266
|
+
description: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4267
|
+
type: zod77.ZodDefault<zod77.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>>;
|
|
4268
|
+
priority: zod77.ZodDefault<zod77.ZodNumber>;
|
|
4269
4269
|
} & {
|
|
4270
|
-
id:
|
|
4271
|
-
}, "strip",
|
|
4272
|
-
title: string;
|
|
4273
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4270
|
+
id: zod77.ZodString;
|
|
4271
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4274
4272
|
id: string;
|
|
4273
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4274
|
+
title: string;
|
|
4275
4275
|
priority: number;
|
|
4276
4276
|
description?: string | null | undefined;
|
|
4277
4277
|
}, {
|
|
4278
|
-
title: string;
|
|
4279
4278
|
id: string;
|
|
4279
|
+
title: string;
|
|
4280
4280
|
type?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4281
4281
|
description?: string | null | undefined;
|
|
4282
4282
|
priority?: number | undefined;
|
|
@@ -4287,38 +4287,38 @@ declare const customerSupportTicketUpdateSchemaWithMetadata: zod0.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
|
-
created_by_display_name:
|
|
4301
|
-
credit_value:
|
|
4302
|
-
start_at:
|
|
4303
|
-
target_at:
|
|
4304
|
-
completed_at:
|
|
4305
|
-
locked_approval_at:
|
|
4306
|
-
created_by:
|
|
4307
|
-
created_at:
|
|
4308
|
-
updated_by:
|
|
4309
|
-
updated_at:
|
|
4310
|
-
archived_at:
|
|
4311
|
-
my_subscription:
|
|
4312
|
-
id:
|
|
4313
|
-
record_type:
|
|
4314
|
-
record_id:
|
|
4315
|
-
user_id:
|
|
4316
|
-
user_id_display_name:
|
|
4317
|
-
subscribed_events:
|
|
4318
|
-
created_at:
|
|
4319
|
-
created_by:
|
|
4320
|
-
created_by_display_name:
|
|
4321
|
-
}, "strip",
|
|
4290
|
+
declare const customerSupportTicketRowSchemaWithMetadata: zod77.ZodObject<{
|
|
4291
|
+
id: zod77.ZodString;
|
|
4292
|
+
display_id: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4293
|
+
display_id_prefix: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4294
|
+
title: zod77.ZodString;
|
|
4295
|
+
description: zod77.ZodString;
|
|
4296
|
+
type: zod77.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
4297
|
+
priority: zod77.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
4298
|
+
status: zod77.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>;
|
|
4299
|
+
is_locked: zod77.ZodBoolean;
|
|
4300
|
+
created_by_display_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4301
|
+
credit_value: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4302
|
+
start_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4303
|
+
target_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4304
|
+
completed_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4305
|
+
locked_approval_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4306
|
+
created_by: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4307
|
+
created_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4308
|
+
updated_by: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4309
|
+
updated_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4310
|
+
archived_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4311
|
+
my_subscription: zod77.ZodOptional<zod77.ZodNullable<zod77.ZodObject<{
|
|
4312
|
+
id: zod77.ZodString;
|
|
4313
|
+
record_type: zod77.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
4314
|
+
record_id: zod77.ZodString;
|
|
4315
|
+
user_id: zod77.ZodString;
|
|
4316
|
+
user_id_display_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4317
|
+
subscribed_events: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>>;
|
|
4318
|
+
created_at: zod77.ZodString;
|
|
4319
|
+
created_by: zod77.ZodString;
|
|
4320
|
+
created_by_display_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
4321
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4322
4322
|
id: string;
|
|
4323
4323
|
created_at: string;
|
|
4324
4324
|
user_id: string;
|
|
@@ -4339,20 +4339,20 @@ declare const customerSupportTicketRowSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4339
4339
|
user_id_display_name?: string | null | undefined;
|
|
4340
4340
|
subscribed_events?: string[] | null | undefined;
|
|
4341
4341
|
}>>>;
|
|
4342
|
-
}, "strip",
|
|
4343
|
-
title: string;
|
|
4344
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4342
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4345
4343
|
id: string;
|
|
4346
4344
|
status: "PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED";
|
|
4345
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4346
|
+
title: string;
|
|
4347
4347
|
description: string;
|
|
4348
4348
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
4349
4349
|
is_locked: boolean;
|
|
4350
4350
|
created_at?: string | null | undefined;
|
|
4351
4351
|
updated_at?: string | null | undefined;
|
|
4352
|
-
archived_at?: string | null | undefined;
|
|
4353
4352
|
created_by?: string | null | undefined;
|
|
4354
4353
|
created_by_display_name?: string | null | undefined;
|
|
4355
4354
|
updated_by?: string | null | undefined;
|
|
4355
|
+
archived_at?: string | null | undefined;
|
|
4356
4356
|
display_id?: string | null | undefined;
|
|
4357
4357
|
display_id_prefix?: string | null | undefined;
|
|
4358
4358
|
credit_value?: string | null | undefined;
|
|
@@ -4372,19 +4372,19 @@ declare const customerSupportTicketRowSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4372
4372
|
subscribed_events?: string[] | null | undefined;
|
|
4373
4373
|
} | null | undefined;
|
|
4374
4374
|
}, {
|
|
4375
|
-
title: string;
|
|
4376
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4377
4375
|
id: string;
|
|
4378
4376
|
status: "PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED";
|
|
4377
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4378
|
+
title: string;
|
|
4379
4379
|
description: string;
|
|
4380
4380
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
4381
4381
|
is_locked: boolean;
|
|
4382
4382
|
created_at?: string | null | undefined;
|
|
4383
4383
|
updated_at?: string | null | undefined;
|
|
4384
|
-
archived_at?: string | null | undefined;
|
|
4385
4384
|
created_by?: string | null | undefined;
|
|
4386
4385
|
created_by_display_name?: string | null | undefined;
|
|
4387
4386
|
updated_by?: string | null | undefined;
|
|
4387
|
+
archived_at?: string | null | undefined;
|
|
4388
4388
|
display_id?: string | null | undefined;
|
|
4389
4389
|
display_id_prefix?: string | null | undefined;
|
|
4390
4390
|
credit_value?: string | null | undefined;
|
|
@@ -4406,20 +4406,20 @@ declare const customerSupportTicketRowSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4406
4406
|
}>;
|
|
4407
4407
|
//#endregion
|
|
4408
4408
|
//#region src/slices/support_ticket/staff/staffSupportTicketFiltersMetadata.d.ts
|
|
4409
|
-
declare const adminSupportTicketFiltersSchemaWithMetadata:
|
|
4410
|
-
first:
|
|
4411
|
-
after:
|
|
4412
|
-
sortBy:
|
|
4413
|
-
sortDirection:
|
|
4414
|
-
paginationToken:
|
|
4409
|
+
declare const adminSupportTicketFiltersSchemaWithMetadata: zod77.ZodObject<{
|
|
4410
|
+
first: zod77.ZodOptional<zod77.ZodNumber>;
|
|
4411
|
+
after: zod77.ZodOptional<zod77.ZodString>;
|
|
4412
|
+
sortBy: zod77.ZodOptional<zod77.ZodString>;
|
|
4413
|
+
sortDirection: zod77.ZodOptional<zod77.ZodEnum<["asc", "desc"]>>;
|
|
4414
|
+
paginationToken: zod77.ZodOptional<zod77.ZodString>;
|
|
4415
4415
|
} & {
|
|
4416
|
-
type:
|
|
4417
|
-
caseSensitive:
|
|
4416
|
+
type: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{
|
|
4417
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4418
4418
|
} & {
|
|
4419
|
-
operator:
|
|
4420
|
-
value:
|
|
4421
|
-
values:
|
|
4422
|
-
}, "strip",
|
|
4419
|
+
operator: zod77.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4420
|
+
value: zod77.ZodOptional<zod77.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>>;
|
|
4421
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>, "many">>;
|
|
4422
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4423
4423
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4424
4424
|
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4425
4425
|
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
@@ -4440,13 +4440,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4440
4440
|
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4441
4441
|
caseSensitive?: boolean | undefined;
|
|
4442
4442
|
}>>;
|
|
4443
|
-
status:
|
|
4444
|
-
caseSensitive:
|
|
4443
|
+
status: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{
|
|
4444
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4445
4445
|
} & {
|
|
4446
|
-
operator:
|
|
4447
|
-
value:
|
|
4448
|
-
values:
|
|
4449
|
-
}, "strip",
|
|
4446
|
+
operator: zod77.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4447
|
+
value: zod77.ZodOptional<zod77.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>>;
|
|
4448
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>, "many">>;
|
|
4449
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4450
4450
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4451
4451
|
values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED")[] | undefined;
|
|
4452
4452
|
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | undefined;
|
|
@@ -4467,13 +4467,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4467
4467
|
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | undefined;
|
|
4468
4468
|
caseSensitive?: boolean | undefined;
|
|
4469
4469
|
}>>;
|
|
4470
|
-
approval_status:
|
|
4471
|
-
caseSensitive:
|
|
4470
|
+
approval_status: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{
|
|
4471
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4472
4472
|
} & {
|
|
4473
|
-
operator:
|
|
4474
|
-
value:
|
|
4475
|
-
values:
|
|
4476
|
-
}, "strip",
|
|
4473
|
+
operator: zod77.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4474
|
+
value: zod77.ZodOptional<zod77.ZodEnum<["PENDING", "APPROVED", "REJECTED", "INTERNAL"]>>;
|
|
4475
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodEnum<["PENDING", "APPROVED", "REJECTED", "INTERNAL"]>, "many">>;
|
|
4476
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4477
4477
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4478
4478
|
values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
|
|
4479
4479
|
value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
|
|
@@ -4494,13 +4494,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4494
4494
|
value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
|
|
4495
4495
|
caseSensitive?: boolean | undefined;
|
|
4496
4496
|
}>>;
|
|
4497
|
-
priority:
|
|
4498
|
-
caseSensitive:
|
|
4497
|
+
priority: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
4498
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4499
4499
|
} & {
|
|
4500
|
-
operator:
|
|
4501
|
-
value:
|
|
4502
|
-
values:
|
|
4503
|
-
}, "strip",
|
|
4500
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte", "between", "in", "notIn"]>;
|
|
4501
|
+
value: zod77.ZodOptional<zod77.ZodNumber>;
|
|
4502
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodNumber, "many">>;
|
|
4503
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4504
4504
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4505
4505
|
values?: number[] | undefined;
|
|
4506
4506
|
value?: number | undefined;
|
|
@@ -4531,13 +4531,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4531
4531
|
value?: number | undefined;
|
|
4532
4532
|
caseSensitive?: boolean | undefined;
|
|
4533
4533
|
}>>;
|
|
4534
|
-
dev_lifecycle:
|
|
4535
|
-
caseSensitive:
|
|
4534
|
+
dev_lifecycle: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{
|
|
4535
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4536
4536
|
} & {
|
|
4537
|
-
operator:
|
|
4538
|
-
value:
|
|
4539
|
-
values:
|
|
4540
|
-
}, "strip",
|
|
4537
|
+
operator: zod77.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4538
|
+
value: zod77.ZodOptional<zod77.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION", "DEPLOYED", "CANCELLED"]>>;
|
|
4539
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION", "DEPLOYED", "CANCELLED"]>, "many">>;
|
|
4540
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4541
4541
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4542
4542
|
values?: ("PENDING" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "VERIFICATION" | "DEPLOYED" | "CANCELLED")[] | undefined;
|
|
4543
4543
|
value?: "PENDING" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "VERIFICATION" | "DEPLOYED" | "CANCELLED" | undefined;
|
|
@@ -4558,12 +4558,12 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4558
4558
|
value?: "PENDING" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "VERIFICATION" | "DEPLOYED" | "CANCELLED" | undefined;
|
|
4559
4559
|
caseSensitive?: boolean | undefined;
|
|
4560
4560
|
}>>;
|
|
4561
|
-
created_by:
|
|
4562
|
-
operator:
|
|
4563
|
-
value:
|
|
4564
|
-
values:
|
|
4565
|
-
caseSensitive:
|
|
4566
|
-
}, "strip",
|
|
4561
|
+
created_by: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
4562
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
4563
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
4564
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
4565
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4566
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4567
4567
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4568
4568
|
values?: string[] | undefined;
|
|
4569
4569
|
value?: string | undefined;
|
|
@@ -4584,12 +4584,12 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4584
4584
|
value?: string | undefined;
|
|
4585
4585
|
caseSensitive?: boolean | undefined;
|
|
4586
4586
|
}>>;
|
|
4587
|
-
title:
|
|
4588
|
-
operator:
|
|
4589
|
-
value:
|
|
4590
|
-
values:
|
|
4591
|
-
caseSensitive:
|
|
4592
|
-
}, "strip",
|
|
4587
|
+
title: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
4588
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
4589
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
4590
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
4591
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4592
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4593
4593
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4594
4594
|
values?: string[] | undefined;
|
|
4595
4595
|
value?: string | undefined;
|
|
@@ -4610,12 +4610,12 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4610
4610
|
value?: string | undefined;
|
|
4611
4611
|
caseSensitive?: boolean | undefined;
|
|
4612
4612
|
}>>;
|
|
4613
|
-
description:
|
|
4614
|
-
operator:
|
|
4615
|
-
value:
|
|
4616
|
-
values:
|
|
4617
|
-
caseSensitive:
|
|
4618
|
-
}, "strip",
|
|
4613
|
+
description: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodObject<{} & {
|
|
4614
|
+
operator: zod77.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
4615
|
+
value: zod77.ZodOptional<zod77.ZodString>;
|
|
4616
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodString, "many">>;
|
|
4617
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4618
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4619
4619
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4620
4620
|
values?: string[] | undefined;
|
|
4621
4621
|
value?: string | undefined;
|
|
@@ -4636,13 +4636,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4636
4636
|
value?: string | undefined;
|
|
4637
4637
|
caseSensitive?: boolean | undefined;
|
|
4638
4638
|
}>>;
|
|
4639
|
-
is_locked:
|
|
4640
|
-
values:
|
|
4641
|
-
caseSensitive:
|
|
4639
|
+
is_locked: zod77.ZodOptional<zod77.ZodObject<{
|
|
4640
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
4641
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4642
4642
|
} & {
|
|
4643
|
-
operator:
|
|
4644
|
-
value:
|
|
4645
|
-
}, "strip",
|
|
4643
|
+
operator: zod77.ZodEnum<["eq", "ne"]>;
|
|
4644
|
+
value: zod77.ZodBoolean;
|
|
4645
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4646
4646
|
value: boolean;
|
|
4647
4647
|
operator: "eq" | "ne";
|
|
4648
4648
|
values?: any[] | undefined;
|
|
@@ -4653,13 +4653,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4653
4653
|
values?: any[] | undefined;
|
|
4654
4654
|
caseSensitive?: boolean | undefined;
|
|
4655
4655
|
}>>;
|
|
4656
|
-
credit_value:
|
|
4657
|
-
caseSensitive:
|
|
4656
|
+
credit_value: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
4657
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4658
4658
|
} & {
|
|
4659
|
-
operator:
|
|
4660
|
-
value:
|
|
4661
|
-
values:
|
|
4662
|
-
}, "strip",
|
|
4659
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte", "between", "in", "notIn"]>;
|
|
4660
|
+
value: zod77.ZodOptional<zod77.ZodNumber>;
|
|
4661
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodNumber, "many">>;
|
|
4662
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4663
4663
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4664
4664
|
values?: number[] | undefined;
|
|
4665
4665
|
value?: number | undefined;
|
|
@@ -4690,13 +4690,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4690
4690
|
value?: number | undefined;
|
|
4691
4691
|
caseSensitive?: boolean | undefined;
|
|
4692
4692
|
}>>;
|
|
4693
|
-
delivered_value:
|
|
4694
|
-
caseSensitive:
|
|
4693
|
+
delivered_value: zod77.ZodOptional<zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
4694
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4695
4695
|
} & {
|
|
4696
|
-
operator:
|
|
4697
|
-
value:
|
|
4698
|
-
values:
|
|
4699
|
-
}, "strip",
|
|
4696
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte", "between", "in", "notIn"]>;
|
|
4697
|
+
value: zod77.ZodOptional<zod77.ZodNumber>;
|
|
4698
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodNumber, "many">>;
|
|
4699
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4700
4700
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4701
4701
|
values?: number[] | undefined;
|
|
4702
4702
|
value?: number | undefined;
|
|
@@ -4727,13 +4727,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4727
4727
|
value?: number | undefined;
|
|
4728
4728
|
caseSensitive?: boolean | undefined;
|
|
4729
4729
|
}>>;
|
|
4730
|
-
created_at:
|
|
4731
|
-
value:
|
|
4732
|
-
values:
|
|
4733
|
-
caseSensitive:
|
|
4730
|
+
created_at: zod77.ZodOptional<zod77.ZodUnion<[zod77.ZodEffects<zod77.ZodObject<{
|
|
4731
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
4732
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
4733
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4734
4734
|
} & {
|
|
4735
|
-
operator:
|
|
4736
|
-
}, "strip",
|
|
4735
|
+
operator: zod77.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
4736
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4737
4737
|
operator: "isEmpty" | "isNotEmpty";
|
|
4738
4738
|
values?: any[] | undefined;
|
|
4739
4739
|
value?: any;
|
|
@@ -4753,13 +4753,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4753
4753
|
values?: any[] | undefined;
|
|
4754
4754
|
value?: any;
|
|
4755
4755
|
caseSensitive?: boolean | undefined;
|
|
4756
|
-
}>,
|
|
4757
|
-
value:
|
|
4758
|
-
caseSensitive:
|
|
4756
|
+
}>, zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
4757
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
4758
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4759
4759
|
} & {
|
|
4760
|
-
operator:
|
|
4761
|
-
values:
|
|
4762
|
-
}, "strip",
|
|
4760
|
+
operator: zod77.ZodLiteral<"between">;
|
|
4761
|
+
values: zod77.ZodArray<zod77.ZodString, "many">;
|
|
4762
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4763
4763
|
values: string[];
|
|
4764
4764
|
operator: "between";
|
|
4765
4765
|
value?: any;
|
|
@@ -4789,13 +4789,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4789
4789
|
operator: "between";
|
|
4790
4790
|
value?: any;
|
|
4791
4791
|
caseSensitive?: boolean | undefined;
|
|
4792
|
-
}>,
|
|
4793
|
-
values:
|
|
4794
|
-
caseSensitive:
|
|
4792
|
+
}>, zod77.ZodEffects<zod77.ZodObject<{
|
|
4793
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
4794
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4795
4795
|
} & {
|
|
4796
|
-
operator:
|
|
4797
|
-
value:
|
|
4798
|
-
}, "strip",
|
|
4796
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
4797
|
+
value: zod77.ZodString;
|
|
4798
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4799
4799
|
value: string;
|
|
4800
4800
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
4801
4801
|
values?: any[] | undefined;
|
|
@@ -4816,13 +4816,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4816
4816
|
values?: any[] | undefined;
|
|
4817
4817
|
caseSensitive?: boolean | undefined;
|
|
4818
4818
|
}>]>>;
|
|
4819
|
-
updated_at:
|
|
4820
|
-
value:
|
|
4821
|
-
values:
|
|
4822
|
-
caseSensitive:
|
|
4819
|
+
updated_at: zod77.ZodOptional<zod77.ZodUnion<[zod77.ZodEffects<zod77.ZodObject<{
|
|
4820
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
4821
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
4822
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4823
4823
|
} & {
|
|
4824
|
-
operator:
|
|
4825
|
-
}, "strip",
|
|
4824
|
+
operator: zod77.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
4825
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4826
4826
|
operator: "isEmpty" | "isNotEmpty";
|
|
4827
4827
|
values?: any[] | undefined;
|
|
4828
4828
|
value?: any;
|
|
@@ -4842,13 +4842,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4842
4842
|
values?: any[] | undefined;
|
|
4843
4843
|
value?: any;
|
|
4844
4844
|
caseSensitive?: boolean | undefined;
|
|
4845
|
-
}>,
|
|
4846
|
-
value:
|
|
4847
|
-
caseSensitive:
|
|
4845
|
+
}>, zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
4846
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
4847
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4848
4848
|
} & {
|
|
4849
|
-
operator:
|
|
4850
|
-
values:
|
|
4851
|
-
}, "strip",
|
|
4849
|
+
operator: zod77.ZodLiteral<"between">;
|
|
4850
|
+
values: zod77.ZodArray<zod77.ZodString, "many">;
|
|
4851
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4852
4852
|
values: string[];
|
|
4853
4853
|
operator: "between";
|
|
4854
4854
|
value?: any;
|
|
@@ -4878,13 +4878,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4878
4878
|
operator: "between";
|
|
4879
4879
|
value?: any;
|
|
4880
4880
|
caseSensitive?: boolean | undefined;
|
|
4881
|
-
}>,
|
|
4882
|
-
values:
|
|
4883
|
-
caseSensitive:
|
|
4881
|
+
}>, zod77.ZodEffects<zod77.ZodObject<{
|
|
4882
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
4883
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4884
4884
|
} & {
|
|
4885
|
-
operator:
|
|
4886
|
-
value:
|
|
4887
|
-
}, "strip",
|
|
4885
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
4886
|
+
value: zod77.ZodString;
|
|
4887
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4888
4888
|
value: string;
|
|
4889
4889
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
4890
4890
|
values?: any[] | undefined;
|
|
@@ -4905,13 +4905,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4905
4905
|
values?: any[] | undefined;
|
|
4906
4906
|
caseSensitive?: boolean | undefined;
|
|
4907
4907
|
}>]>>;
|
|
4908
|
-
start_at:
|
|
4909
|
-
value:
|
|
4910
|
-
values:
|
|
4911
|
-
caseSensitive:
|
|
4908
|
+
start_at: zod77.ZodOptional<zod77.ZodUnion<[zod77.ZodEffects<zod77.ZodObject<{
|
|
4909
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
4910
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
4911
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4912
4912
|
} & {
|
|
4913
|
-
operator:
|
|
4914
|
-
}, "strip",
|
|
4913
|
+
operator: zod77.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
4914
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4915
4915
|
operator: "isEmpty" | "isNotEmpty";
|
|
4916
4916
|
values?: any[] | undefined;
|
|
4917
4917
|
value?: any;
|
|
@@ -4931,13 +4931,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4931
4931
|
values?: any[] | undefined;
|
|
4932
4932
|
value?: any;
|
|
4933
4933
|
caseSensitive?: boolean | undefined;
|
|
4934
|
-
}>,
|
|
4935
|
-
value:
|
|
4936
|
-
caseSensitive:
|
|
4934
|
+
}>, zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
4935
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
4936
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4937
4937
|
} & {
|
|
4938
|
-
operator:
|
|
4939
|
-
values:
|
|
4940
|
-
}, "strip",
|
|
4938
|
+
operator: zod77.ZodLiteral<"between">;
|
|
4939
|
+
values: zod77.ZodArray<zod77.ZodString, "many">;
|
|
4940
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4941
4941
|
values: string[];
|
|
4942
4942
|
operator: "between";
|
|
4943
4943
|
value?: any;
|
|
@@ -4967,13 +4967,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4967
4967
|
operator: "between";
|
|
4968
4968
|
value?: any;
|
|
4969
4969
|
caseSensitive?: boolean | undefined;
|
|
4970
|
-
}>,
|
|
4971
|
-
values:
|
|
4972
|
-
caseSensitive:
|
|
4970
|
+
}>, zod77.ZodEffects<zod77.ZodObject<{
|
|
4971
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
4972
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
4973
4973
|
} & {
|
|
4974
|
-
operator:
|
|
4975
|
-
value:
|
|
4976
|
-
}, "strip",
|
|
4974
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
4975
|
+
value: zod77.ZodString;
|
|
4976
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
4977
4977
|
value: string;
|
|
4978
4978
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
4979
4979
|
values?: any[] | undefined;
|
|
@@ -4994,13 +4994,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
4994
4994
|
values?: any[] | undefined;
|
|
4995
4995
|
caseSensitive?: boolean | undefined;
|
|
4996
4996
|
}>]>>;
|
|
4997
|
-
target_at:
|
|
4998
|
-
value:
|
|
4999
|
-
values:
|
|
5000
|
-
caseSensitive:
|
|
4997
|
+
target_at: zod77.ZodOptional<zod77.ZodUnion<[zod77.ZodEffects<zod77.ZodObject<{
|
|
4998
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
4999
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
5000
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
5001
5001
|
} & {
|
|
5002
|
-
operator:
|
|
5003
|
-
}, "strip",
|
|
5002
|
+
operator: zod77.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
5003
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
5004
5004
|
operator: "isEmpty" | "isNotEmpty";
|
|
5005
5005
|
values?: any[] | undefined;
|
|
5006
5006
|
value?: any;
|
|
@@ -5020,13 +5020,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5020
5020
|
values?: any[] | undefined;
|
|
5021
5021
|
value?: any;
|
|
5022
5022
|
caseSensitive?: boolean | undefined;
|
|
5023
|
-
}>,
|
|
5024
|
-
value:
|
|
5025
|
-
caseSensitive:
|
|
5023
|
+
}>, zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
5024
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
5025
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
5026
5026
|
} & {
|
|
5027
|
-
operator:
|
|
5028
|
-
values:
|
|
5029
|
-
}, "strip",
|
|
5027
|
+
operator: zod77.ZodLiteral<"between">;
|
|
5028
|
+
values: zod77.ZodArray<zod77.ZodString, "many">;
|
|
5029
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
5030
5030
|
values: string[];
|
|
5031
5031
|
operator: "between";
|
|
5032
5032
|
value?: any;
|
|
@@ -5056,13 +5056,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5056
5056
|
operator: "between";
|
|
5057
5057
|
value?: any;
|
|
5058
5058
|
caseSensitive?: boolean | undefined;
|
|
5059
|
-
}>,
|
|
5060
|
-
values:
|
|
5061
|
-
caseSensitive:
|
|
5059
|
+
}>, zod77.ZodEffects<zod77.ZodObject<{
|
|
5060
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
5061
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
5062
5062
|
} & {
|
|
5063
|
-
operator:
|
|
5064
|
-
value:
|
|
5065
|
-
}, "strip",
|
|
5063
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
5064
|
+
value: zod77.ZodString;
|
|
5065
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
5066
5066
|
value: string;
|
|
5067
5067
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
5068
5068
|
values?: any[] | undefined;
|
|
@@ -5083,13 +5083,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5083
5083
|
values?: any[] | undefined;
|
|
5084
5084
|
caseSensitive?: boolean | undefined;
|
|
5085
5085
|
}>]>>;
|
|
5086
|
-
completed_at:
|
|
5087
|
-
value:
|
|
5088
|
-
values:
|
|
5089
|
-
caseSensitive:
|
|
5086
|
+
completed_at: zod77.ZodOptional<zod77.ZodUnion<[zod77.ZodEffects<zod77.ZodObject<{
|
|
5087
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
5088
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
5089
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
5090
5090
|
} & {
|
|
5091
|
-
operator:
|
|
5092
|
-
}, "strip",
|
|
5091
|
+
operator: zod77.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
5092
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
5093
5093
|
operator: "isEmpty" | "isNotEmpty";
|
|
5094
5094
|
values?: any[] | undefined;
|
|
5095
5095
|
value?: any;
|
|
@@ -5109,13 +5109,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5109
5109
|
values?: any[] | undefined;
|
|
5110
5110
|
value?: any;
|
|
5111
5111
|
caseSensitive?: boolean | undefined;
|
|
5112
|
-
}>,
|
|
5113
|
-
value:
|
|
5114
|
-
caseSensitive:
|
|
5112
|
+
}>, zod77.ZodEffects<zod77.ZodEffects<zod77.ZodObject<{
|
|
5113
|
+
value: zod77.ZodOptional<zod77.ZodAny>;
|
|
5114
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
5115
5115
|
} & {
|
|
5116
|
-
operator:
|
|
5117
|
-
values:
|
|
5118
|
-
}, "strip",
|
|
5116
|
+
operator: zod77.ZodLiteral<"between">;
|
|
5117
|
+
values: zod77.ZodArray<zod77.ZodString, "many">;
|
|
5118
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
5119
5119
|
values: string[];
|
|
5120
5120
|
operator: "between";
|
|
5121
5121
|
value?: any;
|
|
@@ -5145,13 +5145,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5145
5145
|
operator: "between";
|
|
5146
5146
|
value?: any;
|
|
5147
5147
|
caseSensitive?: boolean | undefined;
|
|
5148
|
-
}>,
|
|
5149
|
-
values:
|
|
5150
|
-
caseSensitive:
|
|
5148
|
+
}>, zod77.ZodEffects<zod77.ZodObject<{
|
|
5149
|
+
values: zod77.ZodOptional<zod77.ZodArray<zod77.ZodAny, "many">>;
|
|
5150
|
+
caseSensitive: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
5151
5151
|
} & {
|
|
5152
|
-
operator:
|
|
5153
|
-
value:
|
|
5154
|
-
}, "strip",
|
|
5152
|
+
operator: zod77.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
5153
|
+
value: zod77.ZodString;
|
|
5154
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
5155
5155
|
value: string;
|
|
5156
5156
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
5157
5157
|
values?: any[] | undefined;
|
|
@@ -5172,29 +5172,17 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5172
5172
|
values?: any[] | undefined;
|
|
5173
5173
|
caseSensitive?: boolean | undefined;
|
|
5174
5174
|
}>]>>;
|
|
5175
|
-
search:
|
|
5176
|
-
query:
|
|
5177
|
-
searchableFields:
|
|
5178
|
-
}, "strip",
|
|
5175
|
+
search: zod77.ZodOptional<zod77.ZodObject<{
|
|
5176
|
+
query: zod77.ZodString;
|
|
5177
|
+
searchableFields: zod77.ZodArray<zod77.ZodString, "many">;
|
|
5178
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
5179
5179
|
query: string;
|
|
5180
5180
|
searchableFields: string[];
|
|
5181
5181
|
}, {
|
|
5182
5182
|
query: string;
|
|
5183
5183
|
searchableFields: string[];
|
|
5184
5184
|
}>>;
|
|
5185
|
-
}, "strip",
|
|
5186
|
-
title?: {
|
|
5187
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5188
|
-
values?: string[] | undefined;
|
|
5189
|
-
value?: string | undefined;
|
|
5190
|
-
caseSensitive?: boolean | undefined;
|
|
5191
|
-
} | undefined;
|
|
5192
|
-
type?: {
|
|
5193
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5194
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5195
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5196
|
-
caseSensitive?: boolean | undefined;
|
|
5197
|
-
} | undefined;
|
|
5185
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
5198
5186
|
created_at?: {
|
|
5199
5187
|
operator: "isEmpty" | "isNotEmpty";
|
|
5200
5188
|
values?: any[] | undefined;
|
|
@@ -5217,10 +5205,22 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5217
5205
|
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | undefined;
|
|
5218
5206
|
caseSensitive?: boolean | undefined;
|
|
5219
5207
|
} | undefined;
|
|
5208
|
+
type?: {
|
|
5209
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5210
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5211
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5212
|
+
caseSensitive?: boolean | undefined;
|
|
5213
|
+
} | undefined;
|
|
5220
5214
|
search?: {
|
|
5221
5215
|
query: string;
|
|
5222
5216
|
searchableFields: string[];
|
|
5223
5217
|
} | undefined;
|
|
5218
|
+
title?: {
|
|
5219
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5220
|
+
values?: string[] | undefined;
|
|
5221
|
+
value?: string | undefined;
|
|
5222
|
+
caseSensitive?: boolean | undefined;
|
|
5223
|
+
} | undefined;
|
|
5224
5224
|
updated_at?: {
|
|
5225
5225
|
operator: "isEmpty" | "isNotEmpty";
|
|
5226
5226
|
values?: any[] | undefined;
|
|
@@ -5237,11 +5237,6 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5237
5237
|
values?: any[] | undefined;
|
|
5238
5238
|
caseSensitive?: boolean | undefined;
|
|
5239
5239
|
} | undefined;
|
|
5240
|
-
first?: number | undefined;
|
|
5241
|
-
after?: string | undefined;
|
|
5242
|
-
sortBy?: string | undefined;
|
|
5243
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5244
|
-
paginationToken?: string | undefined;
|
|
5245
5240
|
description?: {
|
|
5246
5241
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5247
5242
|
values?: string[] | undefined;
|
|
@@ -5254,6 +5249,11 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5254
5249
|
value?: string | undefined;
|
|
5255
5250
|
caseSensitive?: boolean | undefined;
|
|
5256
5251
|
} | undefined;
|
|
5252
|
+
first?: number | undefined;
|
|
5253
|
+
after?: string | undefined;
|
|
5254
|
+
sortBy?: string | undefined;
|
|
5255
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5256
|
+
paginationToken?: string | undefined;
|
|
5257
5257
|
priority?: {
|
|
5258
5258
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5259
5259
|
values?: number[] | undefined;
|
|
@@ -5339,18 +5339,6 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5339
5339
|
caseSensitive?: boolean | undefined;
|
|
5340
5340
|
} | undefined;
|
|
5341
5341
|
}, {
|
|
5342
|
-
title?: {
|
|
5343
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5344
|
-
values?: string[] | undefined;
|
|
5345
|
-
value?: string | undefined;
|
|
5346
|
-
caseSensitive?: boolean | undefined;
|
|
5347
|
-
} | undefined;
|
|
5348
|
-
type?: {
|
|
5349
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5350
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5351
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5352
|
-
caseSensitive?: boolean | undefined;
|
|
5353
|
-
} | undefined;
|
|
5354
5342
|
created_at?: {
|
|
5355
5343
|
operator: "isEmpty" | "isNotEmpty";
|
|
5356
5344
|
values?: any[] | undefined;
|
|
@@ -5373,10 +5361,22 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5373
5361
|
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | undefined;
|
|
5374
5362
|
caseSensitive?: boolean | undefined;
|
|
5375
5363
|
} | undefined;
|
|
5364
|
+
type?: {
|
|
5365
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5366
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5367
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5368
|
+
caseSensitive?: boolean | undefined;
|
|
5369
|
+
} | undefined;
|
|
5376
5370
|
search?: {
|
|
5377
5371
|
query: string;
|
|
5378
5372
|
searchableFields: string[];
|
|
5379
5373
|
} | undefined;
|
|
5374
|
+
title?: {
|
|
5375
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5376
|
+
values?: string[] | undefined;
|
|
5377
|
+
value?: string | undefined;
|
|
5378
|
+
caseSensitive?: boolean | undefined;
|
|
5379
|
+
} | undefined;
|
|
5380
5380
|
updated_at?: {
|
|
5381
5381
|
operator: "isEmpty" | "isNotEmpty";
|
|
5382
5382
|
values?: any[] | undefined;
|
|
@@ -5393,11 +5393,6 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5393
5393
|
values?: any[] | undefined;
|
|
5394
5394
|
caseSensitive?: boolean | undefined;
|
|
5395
5395
|
} | undefined;
|
|
5396
|
-
first?: number | undefined;
|
|
5397
|
-
after?: string | undefined;
|
|
5398
|
-
sortBy?: string | undefined;
|
|
5399
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5400
|
-
paginationToken?: string | undefined;
|
|
5401
5396
|
description?: {
|
|
5402
5397
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5403
5398
|
values?: string[] | undefined;
|
|
@@ -5410,6 +5405,11 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5410
5405
|
value?: string | undefined;
|
|
5411
5406
|
caseSensitive?: boolean | undefined;
|
|
5412
5407
|
} | undefined;
|
|
5408
|
+
first?: number | undefined;
|
|
5409
|
+
after?: string | undefined;
|
|
5410
|
+
sortBy?: string | undefined;
|
|
5411
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5412
|
+
paginationToken?: string | undefined;
|
|
5413
5413
|
priority?: {
|
|
5414
5414
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5415
5415
|
values?: number[] | undefined;
|
|
@@ -5497,23 +5497,23 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5497
5497
|
}>;
|
|
5498
5498
|
//#endregion
|
|
5499
5499
|
//#region src/slices/support_ticket/staff/StaffSupportTicketMetadata.d.ts
|
|
5500
|
-
declare const adminSupportTicketCreateSchemaWithMetadata:
|
|
5501
|
-
title:
|
|
5502
|
-
description:
|
|
5503
|
-
type:
|
|
5504
|
-
priority:
|
|
5505
|
-
dev_lifecycle:
|
|
5506
|
-
credit_value:
|
|
5507
|
-
delivered_value:
|
|
5508
|
-
start_at:
|
|
5509
|
-
target_at:
|
|
5510
|
-
completed_at:
|
|
5511
|
-
assigned_to:
|
|
5500
|
+
declare const adminSupportTicketCreateSchemaWithMetadata: zod77.ZodObject<{
|
|
5501
|
+
title: zod77.ZodString;
|
|
5502
|
+
description: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5503
|
+
type: zod77.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
5504
|
+
priority: zod77.ZodNumber;
|
|
5505
|
+
dev_lifecycle: zod77.ZodOptional<zod77.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION"]>>;
|
|
5506
|
+
credit_value: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5507
|
+
delivered_value: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5508
|
+
start_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5509
|
+
target_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5510
|
+
completed_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5511
|
+
assigned_to: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5512
5512
|
} & {
|
|
5513
|
-
is_internal:
|
|
5514
|
-
}, "strip",
|
|
5515
|
-
title: string;
|
|
5513
|
+
is_internal: zod77.ZodOptional<zod77.ZodBoolean>;
|
|
5514
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
5516
5515
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5516
|
+
title: string;
|
|
5517
5517
|
priority: number;
|
|
5518
5518
|
description?: string | null | undefined;
|
|
5519
5519
|
is_internal?: boolean | undefined;
|
|
@@ -5525,8 +5525,8 @@ declare const adminSupportTicketCreateSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5525
5525
|
delivered_value?: string | null | undefined;
|
|
5526
5526
|
assigned_to?: string | null | undefined;
|
|
5527
5527
|
}, {
|
|
5528
|
-
title: string;
|
|
5529
5528
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5529
|
+
title: string;
|
|
5530
5530
|
priority: number;
|
|
5531
5531
|
description?: string | null | undefined;
|
|
5532
5532
|
is_internal?: boolean | undefined;
|
|
@@ -5538,24 +5538,24 @@ declare const adminSupportTicketCreateSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5538
5538
|
delivered_value?: string | null | undefined;
|
|
5539
5539
|
assigned_to?: string | null | undefined;
|
|
5540
5540
|
}>;
|
|
5541
|
-
declare const adminSupportTicketUpdateSchemaWithMetadata:
|
|
5542
|
-
title:
|
|
5543
|
-
description:
|
|
5544
|
-
type:
|
|
5545
|
-
priority:
|
|
5546
|
-
dev_lifecycle:
|
|
5547
|
-
credit_value:
|
|
5548
|
-
delivered_value:
|
|
5549
|
-
start_at:
|
|
5550
|
-
target_at:
|
|
5551
|
-
completed_at:
|
|
5552
|
-
assigned_to:
|
|
5541
|
+
declare const adminSupportTicketUpdateSchemaWithMetadata: zod77.ZodObject<{
|
|
5542
|
+
title: zod77.ZodString;
|
|
5543
|
+
description: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5544
|
+
type: zod77.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
5545
|
+
priority: zod77.ZodNumber;
|
|
5546
|
+
dev_lifecycle: zod77.ZodOptional<zod77.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION"]>>;
|
|
5547
|
+
credit_value: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5548
|
+
delivered_value: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5549
|
+
start_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5550
|
+
target_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5551
|
+
completed_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5552
|
+
assigned_to: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5553
5553
|
} & {
|
|
5554
|
-
id:
|
|
5555
|
-
}, "strip",
|
|
5556
|
-
title: string;
|
|
5557
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5554
|
+
id: zod77.ZodString;
|
|
5555
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
5558
5556
|
id: string;
|
|
5557
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5558
|
+
title: string;
|
|
5559
5559
|
priority: number;
|
|
5560
5560
|
description?: string | null | undefined;
|
|
5561
5561
|
credit_value?: string | null | undefined;
|
|
@@ -5566,9 +5566,9 @@ declare const adminSupportTicketUpdateSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5566
5566
|
delivered_value?: string | null | undefined;
|
|
5567
5567
|
assigned_to?: string | null | undefined;
|
|
5568
5568
|
}, {
|
|
5569
|
-
title: string;
|
|
5570
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5571
5569
|
id: string;
|
|
5570
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5571
|
+
title: string;
|
|
5572
5572
|
priority: number;
|
|
5573
5573
|
description?: string | null | undefined;
|
|
5574
5574
|
credit_value?: string | null | undefined;
|
|
@@ -5585,40 +5585,40 @@ declare const adminSupportTicketUpdateSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5585
5585
|
* Reuse the existing StaffSupportTicketReadSchema from the validation library
|
|
5586
5586
|
* for the data table rows - don't recreate it!
|
|
5587
5587
|
*/
|
|
5588
|
-
declare const adminSupportTicketRowSchemaWithMetadata:
|
|
5589
|
-
id:
|
|
5590
|
-
display_id:
|
|
5591
|
-
display_id_prefix:
|
|
5592
|
-
title:
|
|
5593
|
-
description:
|
|
5594
|
-
type:
|
|
5595
|
-
priority:
|
|
5596
|
-
status:
|
|
5597
|
-
approval_status:
|
|
5598
|
-
is_locked:
|
|
5599
|
-
can_delete:
|
|
5600
|
-
created_by_display_name:
|
|
5601
|
-
assigned_to:
|
|
5602
|
-
assigned_to_display_name:
|
|
5603
|
-
dev_lifecycle:
|
|
5604
|
-
credit_value:
|
|
5605
|
-
delivered_value:
|
|
5606
|
-
start_at:
|
|
5607
|
-
target_at:
|
|
5608
|
-
completed_at:
|
|
5609
|
-
locked_approval_at:
|
|
5610
|
-
created_by:
|
|
5611
|
-
created_at:
|
|
5612
|
-
updated_by:
|
|
5613
|
-
updated_by_display_name:
|
|
5614
|
-
updated_at:
|
|
5615
|
-
archived_at:
|
|
5616
|
-
archived_by:
|
|
5617
|
-
}, "strip",
|
|
5618
|
-
title: string;
|
|
5619
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5588
|
+
declare const adminSupportTicketRowSchemaWithMetadata: zod77.ZodObject<{
|
|
5589
|
+
id: zod77.ZodString;
|
|
5590
|
+
display_id: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5591
|
+
display_id_prefix: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5592
|
+
title: zod77.ZodString;
|
|
5593
|
+
description: zod77.ZodString;
|
|
5594
|
+
type: zod77.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
5595
|
+
priority: zod77.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
5596
|
+
status: zod77.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>;
|
|
5597
|
+
approval_status: zod77.ZodEnum<["PENDING", "APPROVED", "REJECTED", "INTERNAL"]>;
|
|
5598
|
+
is_locked: zod77.ZodBoolean;
|
|
5599
|
+
can_delete: zod77.ZodBoolean;
|
|
5600
|
+
created_by_display_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5601
|
+
assigned_to: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5602
|
+
assigned_to_display_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5603
|
+
dev_lifecycle: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION", "DEPLOYED", "CANCELLED"]>>>;
|
|
5604
|
+
credit_value: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5605
|
+
delivered_value: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5606
|
+
start_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5607
|
+
target_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5608
|
+
completed_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5609
|
+
locked_approval_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5610
|
+
created_by: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5611
|
+
created_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5612
|
+
updated_by: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5613
|
+
updated_by_display_name: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5614
|
+
updated_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5615
|
+
archived_at: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5616
|
+
archived_by: zod77.ZodNullable<zod77.ZodOptional<zod77.ZodString>>;
|
|
5617
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
5620
5618
|
id: string;
|
|
5621
5619
|
status: "PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED";
|
|
5620
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5621
|
+
title: string;
|
|
5622
5622
|
description: string;
|
|
5623
5623
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
5624
5624
|
is_locked: boolean;
|
|
@@ -5626,11 +5626,11 @@ declare const adminSupportTicketRowSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5626
5626
|
can_delete: boolean;
|
|
5627
5627
|
created_at?: string | null | undefined;
|
|
5628
5628
|
updated_at?: string | null | undefined;
|
|
5629
|
-
archived_at?: string | null | undefined;
|
|
5630
5629
|
created_by?: string | null | undefined;
|
|
5631
5630
|
created_by_display_name?: string | null | undefined;
|
|
5632
5631
|
updated_by?: string | null | undefined;
|
|
5633
5632
|
updated_by_display_name?: string | null | undefined;
|
|
5633
|
+
archived_at?: string | null | undefined;
|
|
5634
5634
|
archived_by?: string | null | undefined;
|
|
5635
5635
|
display_id?: string | null | undefined;
|
|
5636
5636
|
display_id_prefix?: string | null | undefined;
|
|
@@ -5644,10 +5644,10 @@ declare const adminSupportTicketRowSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5644
5644
|
assigned_to?: string | null | undefined;
|
|
5645
5645
|
assigned_to_display_name?: string | null | undefined;
|
|
5646
5646
|
}, {
|
|
5647
|
-
title: string;
|
|
5648
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5649
5647
|
id: string;
|
|
5650
5648
|
status: "PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED";
|
|
5649
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5650
|
+
title: string;
|
|
5651
5651
|
description: string;
|
|
5652
5652
|
priority: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
|
|
5653
5653
|
is_locked: boolean;
|
|
@@ -5655,11 +5655,11 @@ declare const adminSupportTicketRowSchemaWithMetadata: zod0.ZodObject<{
|
|
|
5655
5655
|
can_delete: boolean;
|
|
5656
5656
|
created_at?: string | null | undefined;
|
|
5657
5657
|
updated_at?: string | null | undefined;
|
|
5658
|
-
archived_at?: string | null | undefined;
|
|
5659
5658
|
created_by?: string | null | undefined;
|
|
5660
5659
|
created_by_display_name?: string | null | undefined;
|
|
5661
5660
|
updated_by?: string | null | undefined;
|
|
5662
5661
|
updated_by_display_name?: string | null | undefined;
|
|
5662
|
+
archived_at?: string | null | undefined;
|
|
5663
5663
|
archived_by?: string | null | undefined;
|
|
5664
5664
|
display_id?: string | null | undefined;
|
|
5665
5665
|
display_id_prefix?: string | null | undefined;
|
|
@@ -5788,7 +5788,7 @@ declare var __VLS_1: {};
|
|
|
5788
5788
|
type __VLS_Slots = {} & {
|
|
5789
5789
|
default?: (props: typeof __VLS_1) => any;
|
|
5790
5790
|
};
|
|
5791
|
-
declare const __VLS_base:
|
|
5791
|
+
declare const __VLS_base: vue0.DefineComponent<Props$6, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$6> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
5792
5792
|
declare const __VLS_export$22: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
5793
5793
|
declare const _default$86: typeof __VLS_export$22;
|
|
5794
5794
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -5815,7 +5815,7 @@ interface Props$5 {
|
|
|
5815
5815
|
newValue?: string | null;
|
|
5816
5816
|
changes?: SystemEventChange[];
|
|
5817
5817
|
}
|
|
5818
|
-
declare const __VLS_export$21:
|
|
5818
|
+
declare const __VLS_export$21: vue0.DefineComponent<Props$5, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$5> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
5819
5819
|
declare const _default$87: typeof __VLS_export$21;
|
|
5820
5820
|
//#endregion
|
|
5821
5821
|
//#region src/slices/auth/authRoutes.d.ts
|
|
@@ -5849,31 +5849,31 @@ declare const authPaths: {
|
|
|
5849
5849
|
declare const authRoutes: ExtendedRouteRecordRaw[];
|
|
5850
5850
|
//#endregion
|
|
5851
5851
|
//#region src/slices/auth/features/login/LoginForm.vue.d.ts
|
|
5852
|
-
declare const __VLS_export$20:
|
|
5852
|
+
declare const __VLS_export$20: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
5853
5853
|
declare const _default$46: typeof __VLS_export$20;
|
|
5854
5854
|
//#endregion
|
|
5855
5855
|
//#region src/slices/auth/features/signup/Signup.vue.d.ts
|
|
5856
|
-
declare const __VLS_export$19:
|
|
5856
|
+
declare const __VLS_export$19: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
5857
5857
|
declare const _default$63: typeof __VLS_export$19;
|
|
5858
5858
|
//#endregion
|
|
5859
5859
|
//#region src/slices/auth/features/forgot_password/ForgotPassword.vue.d.ts
|
|
5860
|
-
declare const __VLS_export$18:
|
|
5860
|
+
declare const __VLS_export$18: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
5861
5861
|
declare const _default$38: typeof __VLS_export$18;
|
|
5862
5862
|
//#endregion
|
|
5863
5863
|
//#region src/slices/auth/features/reset_password/ResetPassword.vue.d.ts
|
|
5864
|
-
declare const __VLS_export$17:
|
|
5864
|
+
declare const __VLS_export$17: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
5865
5865
|
declare const _default$57: typeof __VLS_export$17;
|
|
5866
5866
|
//#endregion
|
|
5867
5867
|
//#region src/slices/auth/features/Logout.vue.d.ts
|
|
5868
|
-
declare const __VLS_export$16:
|
|
5868
|
+
declare const __VLS_export$16: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
5869
5869
|
declare const _default$47: typeof __VLS_export$16;
|
|
5870
5870
|
//#endregion
|
|
5871
5871
|
//#region src/slices/auth/features/login/SocialLoginButtons.vue.d.ts
|
|
5872
|
-
declare const __VLS_export$15:
|
|
5872
|
+
declare const __VLS_export$15: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {} & {
|
|
5873
5873
|
login: (provider: string) => any;
|
|
5874
|
-
}, string,
|
|
5874
|
+
}, string, vue0.PublicProps, Readonly<{}> & Readonly<{
|
|
5875
5875
|
onLogin?: ((provider: string) => any) | undefined;
|
|
5876
|
-
}>, {}, {}, {}, {}, string,
|
|
5876
|
+
}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
5877
5877
|
declare const _default$64: typeof __VLS_export$15;
|
|
5878
5878
|
//#endregion
|
|
5879
5879
|
//#region src/slices/auth/features/login/loginSchema.d.ts
|
|
@@ -5968,21 +5968,21 @@ interface Props$4 {
|
|
|
5968
5968
|
userType: 'consumer' | 'lead' | 'staff' | 'super_admin';
|
|
5969
5969
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
5970
5970
|
}
|
|
5971
|
-
declare const __VLS_export$14:
|
|
5971
|
+
declare const __VLS_export$14: vue0.DefineComponent<Props$4, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$4> & Readonly<{}>, {
|
|
5972
5972
|
size: "xs" | "sm" | "md" | "lg";
|
|
5973
|
-
}, {}, {}, {}, string,
|
|
5973
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
5974
5974
|
declare const _default$90: typeof __VLS_export$14;
|
|
5975
5975
|
//#endregion
|
|
5976
5976
|
//#region src/slices/admin/features/create_user/CreateUserPage.vue.d.ts
|
|
5977
|
-
declare const __VLS_export$13:
|
|
5977
|
+
declare const __VLS_export$13: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
5978
5978
|
declare const _default$17: typeof __VLS_export$13;
|
|
5979
5979
|
//#endregion
|
|
5980
5980
|
//#region src/slices/admin/features/user_management/EditUserPage.vue.d.ts
|
|
5981
|
-
declare const __VLS_export$12:
|
|
5981
|
+
declare const __VLS_export$12: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
5982
5982
|
declare const _default$33: typeof __VLS_export$12;
|
|
5983
5983
|
//#endregion
|
|
5984
5984
|
//#region src/slices/admin/features/user_management/UserListPage.vue.d.ts
|
|
5985
|
-
declare const __VLS_export$11:
|
|
5985
|
+
declare const __VLS_export$11: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
5986
5986
|
declare const _default$88: typeof __VLS_export$11;
|
|
5987
5987
|
//#endregion
|
|
5988
5988
|
//#region src/slices/admin/features/create_user/create_user_schema.d.ts
|
|
@@ -6001,10 +6001,10 @@ declare const createUserSchemaWithMetadata: z.ZodObject<{
|
|
|
6001
6001
|
}>;
|
|
6002
6002
|
//#endregion
|
|
6003
6003
|
//#region src/slices/admin/features/user_management/updateUserMetadata.d.ts
|
|
6004
|
-
declare const updateUserSchemaWithMetadata:
|
|
6005
|
-
id:
|
|
6006
|
-
user_type:
|
|
6007
|
-
}, "strip",
|
|
6004
|
+
declare const updateUserSchemaWithMetadata: zod77.ZodObject<{
|
|
6005
|
+
id: zod77.ZodString;
|
|
6006
|
+
user_type: zod77.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
6007
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
6008
6008
|
id: string;
|
|
6009
6009
|
user_type: "super_admin" | "staff" | "lead" | "consumer";
|
|
6010
6010
|
}, {
|
|
@@ -6050,15 +6050,15 @@ declare const creditPaths: {
|
|
|
6050
6050
|
declare const creditRoutes: Array<ExtendedRouteRecordRaw>;
|
|
6051
6051
|
//#endregion
|
|
6052
6052
|
//#region src/slices/customer/CreditBalanceDashboard.vue.d.ts
|
|
6053
|
-
declare const __VLS_export$10:
|
|
6053
|
+
declare const __VLS_export$10: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
6054
6054
|
declare const _default$18: typeof __VLS_export$10;
|
|
6055
6055
|
//#endregion
|
|
6056
6056
|
//#region src/slices/customer/components/CreditBalanceOverview.vue.d.ts
|
|
6057
|
-
declare const __VLS_export$9:
|
|
6057
|
+
declare const __VLS_export$9: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
6058
6058
|
declare const _default$19: typeof __VLS_export$9;
|
|
6059
6059
|
//#endregion
|
|
6060
6060
|
//#region src/slices/customer/components/CreditTransactionHistory.vue.d.ts
|
|
6061
|
-
declare const __VLS_export$8:
|
|
6061
|
+
declare const __VLS_export$8: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
6062
6062
|
declare const _default$22: typeof __VLS_export$8;
|
|
6063
6063
|
//#endregion
|
|
6064
6064
|
//#region src/slices/customer/components/CreditTransactionTypeBadge.vue.d.ts
|
|
@@ -6066,31 +6066,31 @@ interface Props$3 {
|
|
|
6066
6066
|
type: string;
|
|
6067
6067
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
6068
6068
|
}
|
|
6069
|
-
declare const __VLS_export$7:
|
|
6069
|
+
declare const __VLS_export$7: vue0.DefineComponent<Props$3, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$3> & Readonly<{}>, {
|
|
6070
6070
|
size: "xs" | "sm" | "md" | "lg";
|
|
6071
|
-
}, {}, {}, {}, string,
|
|
6071
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
6072
6072
|
declare const _default$23: typeof __VLS_export$7;
|
|
6073
6073
|
//#endregion
|
|
6074
6074
|
//#region src/slices/customer/features/credit-management/CreditManagement.vue.d.ts
|
|
6075
|
-
declare const __VLS_export$6:
|
|
6075
|
+
declare const __VLS_export$6: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
6076
6076
|
declare const _default$21: typeof __VLS_export$6;
|
|
6077
6077
|
//#endregion
|
|
6078
6078
|
//#region src/slices/customer/features/credit-management/AddCredits.vue.d.ts
|
|
6079
6079
|
interface Props$2 {
|
|
6080
6080
|
onSuccess?: () => void;
|
|
6081
6081
|
}
|
|
6082
|
-
declare const __VLS_export$5:
|
|
6082
|
+
declare const __VLS_export$5: vue0.DefineComponent<Props$2, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$2> & Readonly<{}>, {
|
|
6083
6083
|
onSuccess: () => void;
|
|
6084
|
-
}, {}, {}, {}, string,
|
|
6084
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
6085
6085
|
declare const _default: typeof __VLS_export$5;
|
|
6086
6086
|
//#endregion
|
|
6087
6087
|
//#region src/slices/customer/features/credit-management/SetMonthlyAllocation.vue.d.ts
|
|
6088
6088
|
interface Props$1 {
|
|
6089
6089
|
onSuccess?: () => void;
|
|
6090
6090
|
}
|
|
6091
|
-
declare const __VLS_export$4:
|
|
6091
|
+
declare const __VLS_export$4: vue0.DefineComponent<Props$1, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props$1> & Readonly<{}>, {
|
|
6092
6092
|
onSuccess: () => void;
|
|
6093
|
-
}, {}, {}, {}, string,
|
|
6093
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
6094
6094
|
declare const _default$61: typeof __VLS_export$4;
|
|
6095
6095
|
//#endregion
|
|
6096
6096
|
//#region src/slices/customer/features/credit-management/ResetMonthlyBalance.vue.d.ts
|
|
@@ -6098,10 +6098,10 @@ interface Props {
|
|
|
6098
6098
|
currentMonthlyBalance?: string;
|
|
6099
6099
|
onSuccess?: () => void;
|
|
6100
6100
|
}
|
|
6101
|
-
declare const __VLS_export$3:
|
|
6101
|
+
declare const __VLS_export$3: vue0.DefineComponent<Props, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
6102
6102
|
onSuccess: () => void;
|
|
6103
6103
|
currentMonthlyBalance: string;
|
|
6104
|
-
}, {}, {}, {}, string,
|
|
6104
|
+
}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
6105
6105
|
declare const _default$56: typeof __VLS_export$3;
|
|
6106
6106
|
//#endregion
|
|
6107
6107
|
//#region src/slices/customer/creditTransactionRowSchema.d.ts
|
|
@@ -6115,18 +6115,18 @@ declare const creditTransactionRowSchemaWithMetadata: z.ZodObject<{
|
|
|
6115
6115
|
created_at: z.ZodString;
|
|
6116
6116
|
created_by: z.ZodString;
|
|
6117
6117
|
}, "strip", z.ZodTypeAny, {
|
|
6118
|
-
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
6119
6118
|
id: string;
|
|
6120
6119
|
created_at: string;
|
|
6120
|
+
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
6121
6121
|
created_by: string;
|
|
6122
6122
|
amount: string;
|
|
6123
6123
|
balance_after: string;
|
|
6124
6124
|
description?: string | null | undefined;
|
|
6125
6125
|
support_ticket_id?: string | null | undefined;
|
|
6126
6126
|
}, {
|
|
6127
|
-
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
6128
6127
|
id: string;
|
|
6129
6128
|
created_at: string;
|
|
6129
|
+
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
6130
6130
|
created_by: string;
|
|
6131
6131
|
amount: string;
|
|
6132
6132
|
balance_after: string;
|
|
@@ -6135,19 +6135,19 @@ declare const creditTransactionRowSchemaWithMetadata: z.ZodObject<{
|
|
|
6135
6135
|
}>;
|
|
6136
6136
|
//#endregion
|
|
6137
6137
|
//#region src/slices/customer/features/credit-management/creditFormMetadata.d.ts
|
|
6138
|
-
declare const addCreditsSchemaWithMetadata:
|
|
6139
|
-
amount:
|
|
6140
|
-
reason:
|
|
6141
|
-
}, "strip",
|
|
6138
|
+
declare const addCreditsSchemaWithMetadata: zod77.ZodObject<{
|
|
6139
|
+
amount: zod77.ZodString;
|
|
6140
|
+
reason: zod77.ZodOptional<zod77.ZodString>;
|
|
6141
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
6142
6142
|
amount: string;
|
|
6143
6143
|
reason?: string | undefined;
|
|
6144
6144
|
}, {
|
|
6145
6145
|
amount: string;
|
|
6146
6146
|
reason?: string | undefined;
|
|
6147
6147
|
}>;
|
|
6148
|
-
declare const setMonthlyAllocationSchemaWithMetadata:
|
|
6149
|
-
amount:
|
|
6150
|
-
}, "strip",
|
|
6148
|
+
declare const setMonthlyAllocationSchemaWithMetadata: zod77.ZodObject<{
|
|
6149
|
+
amount: zod77.ZodString;
|
|
6150
|
+
}, "strip", zod77.ZodTypeAny, {
|
|
6151
6151
|
amount: string;
|
|
6152
6152
|
}, {
|
|
6153
6153
|
amount: string;
|
|
@@ -6169,7 +6169,7 @@ type SavedFiltersConfig = {
|
|
|
6169
6169
|
onClearFilters?: () => void;
|
|
6170
6170
|
};
|
|
6171
6171
|
declare function useSavedFilters<TApi extends DragoncoreApi = DragoncoreApi>(config: SavedFiltersConfig): {
|
|
6172
|
-
presets:
|
|
6172
|
+
presets: vue0.ComputedRef<{
|
|
6173
6173
|
id: string;
|
|
6174
6174
|
created_at: string;
|
|
6175
6175
|
name: string;
|
|
@@ -6181,14 +6181,14 @@ declare function useSavedFilters<TApi extends DragoncoreApi = DragoncoreApi>(con
|
|
|
6181
6181
|
sort_direction?: "asc" | "desc" | undefined;
|
|
6182
6182
|
updated_at?: string | undefined;
|
|
6183
6183
|
}[]>;
|
|
6184
|
-
presetsLoading:
|
|
6185
|
-
creating:
|
|
6186
|
-
updating:
|
|
6187
|
-
deleting:
|
|
6184
|
+
presetsLoading: vue0.ShallowRef<boolean>;
|
|
6185
|
+
creating: vue0.ShallowRef<boolean>;
|
|
6186
|
+
updating: vue0.ShallowRef<boolean>;
|
|
6187
|
+
deleting: vue0.ShallowRef<boolean>;
|
|
6188
6188
|
applyPreset: (preset: SavedFilterReadDto) => void;
|
|
6189
6189
|
clearPreset: () => void;
|
|
6190
6190
|
clearLastUsed: () => void;
|
|
6191
|
-
activePreset:
|
|
6191
|
+
activePreset: vue0.ComputedRef<{
|
|
6192
6192
|
id: string;
|
|
6193
6193
|
created_at: string;
|
|
6194
6194
|
name: string;
|
|
@@ -6227,7 +6227,7 @@ declare function createLastUsedPresetGuard(context: string, routeName: string):
|
|
|
6227
6227
|
//#region src/slices/saved_filter/usePinnedPresets.d.ts
|
|
6228
6228
|
type PinnedPreset = Pick<SavedFilterReadDto, 'id' | 'name' | 'context' | 'route_path' | 'filters'>;
|
|
6229
6229
|
declare function usePinnedPresets(): {
|
|
6230
|
-
pinned:
|
|
6230
|
+
pinned: vue0.ComputedRef<never[] | ({
|
|
6231
6231
|
id: string;
|
|
6232
6232
|
created_at: string;
|
|
6233
6233
|
name: string;
|
|
@@ -6241,8 +6241,8 @@ declare function usePinnedPresets(): {
|
|
|
6241
6241
|
sort_direction?: "asc" | "desc" | undefined;
|
|
6242
6242
|
updated_at?: string | undefined;
|
|
6243
6243
|
}[] & Disposable)>;
|
|
6244
|
-
pinnedIds:
|
|
6245
|
-
canPinMore:
|
|
6244
|
+
pinnedIds: vue0.ComputedRef<Set<string>>;
|
|
6245
|
+
canPinMore: vue0.ComputedRef<boolean>;
|
|
6246
6246
|
isPinned: (presetId: string) => boolean;
|
|
6247
6247
|
pinPreset: (preset: SavedFilterReadDto) => Promise<boolean>;
|
|
6248
6248
|
unpinPreset: (presetId: string) => Promise<void>;
|
|
@@ -6258,7 +6258,7 @@ declare function usePinnedPresets(): {
|
|
|
6258
6258
|
declare const PINNED_PRESETS_KEY: InjectionKey<ReturnType<typeof usePinnedPresets>>;
|
|
6259
6259
|
/** Use pinned presets from the layout provider. Call this in child components (Sidebar, AppHome, etc.). */
|
|
6260
6260
|
declare function useInjectedPinnedPresets(): {
|
|
6261
|
-
pinned:
|
|
6261
|
+
pinned: vue0.ComputedRef<never[] | ({
|
|
6262
6262
|
id: string;
|
|
6263
6263
|
created_at: string;
|
|
6264
6264
|
name: string;
|
|
@@ -6272,8 +6272,8 @@ declare function useInjectedPinnedPresets(): {
|
|
|
6272
6272
|
sort_direction?: "asc" | "desc" | undefined;
|
|
6273
6273
|
updated_at?: string | undefined;
|
|
6274
6274
|
}[] & Disposable)>;
|
|
6275
|
-
pinnedIds:
|
|
6276
|
-
canPinMore:
|
|
6275
|
+
pinnedIds: vue0.ComputedRef<Set<string>>;
|
|
6276
|
+
canPinMore: vue0.ComputedRef<boolean>;
|
|
6277
6277
|
isPinned: (presetId: string) => boolean;
|
|
6278
6278
|
pinPreset: (preset: SavedFilterReadDto) => Promise<boolean>;
|
|
6279
6279
|
unpinPreset: (presetId: string) => Promise<void>;
|
|
@@ -6295,13 +6295,13 @@ type __VLS_Props$2 = {
|
|
|
6295
6295
|
isOpen: boolean;
|
|
6296
6296
|
saving?: boolean;
|
|
6297
6297
|
};
|
|
6298
|
-
declare const __VLS_export$2:
|
|
6298
|
+
declare const __VLS_export$2: vue0.DefineComponent<__VLS_Props$2, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
6299
6299
|
close: () => any;
|
|
6300
6300
|
save: (name: string) => any;
|
|
6301
|
-
}, string,
|
|
6301
|
+
}, string, vue0.PublicProps, Readonly<__VLS_Props$2> & Readonly<{
|
|
6302
6302
|
onClose?: (() => any) | undefined;
|
|
6303
6303
|
onSave?: ((name: string) => any) | undefined;
|
|
6304
|
-
}>, {}, {}, {}, {}, string,
|
|
6304
|
+
}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
6305
6305
|
declare const _default$59: typeof __VLS_export$2;
|
|
6306
6306
|
//#endregion
|
|
6307
6307
|
//#region src/slices/saved_filter/ManagePresetsModal.vue.d.ts
|
|
@@ -6313,7 +6313,7 @@ type __VLS_Props$1 = {
|
|
|
6313
6313
|
renaming?: boolean;
|
|
6314
6314
|
renamePreset: (presetId: string, name: string) => Promise<SavedFilterReadDto | null>;
|
|
6315
6315
|
};
|
|
6316
|
-
declare const __VLS_export$1:
|
|
6316
|
+
declare const __VLS_export$1: vue0.DefineComponent<__VLS_Props$1, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {
|
|
6317
6317
|
delete: (preset: {
|
|
6318
6318
|
id: string;
|
|
6319
6319
|
created_at: string;
|
|
@@ -6327,7 +6327,7 @@ declare const __VLS_export$1: vue6.DefineComponent<__VLS_Props$1, {}, {}, {}, {}
|
|
|
6327
6327
|
updated_at?: string | undefined;
|
|
6328
6328
|
}) => any;
|
|
6329
6329
|
close: () => any;
|
|
6330
|
-
}, string,
|
|
6330
|
+
}, string, vue0.PublicProps, Readonly<__VLS_Props$1> & Readonly<{
|
|
6331
6331
|
onDelete?: ((preset: {
|
|
6332
6332
|
id: string;
|
|
6333
6333
|
created_at: string;
|
|
@@ -6341,7 +6341,7 @@ declare const __VLS_export$1: vue6.DefineComponent<__VLS_Props$1, {}, {}, {}, {}
|
|
|
6341
6341
|
updated_at?: string | undefined;
|
|
6342
6342
|
}) => any) | undefined;
|
|
6343
6343
|
onClose?: (() => any) | undefined;
|
|
6344
|
-
}>, {}, {}, {}, {}, string,
|
|
6344
|
+
}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
6345
6345
|
declare const _default$48: typeof __VLS_export$1;
|
|
6346
6346
|
//#endregion
|
|
6347
6347
|
//#region src/slices/saved_filter/SavedFilterPresets.vue.d.ts
|
|
@@ -6359,7 +6359,7 @@ type __VLS_Props = {
|
|
|
6359
6359
|
renamePreset: (presetId: string, name: string) => Promise<SavedFilterReadDto | null>;
|
|
6360
6360
|
removePreset: (presetId: string) => Promise<boolean>;
|
|
6361
6361
|
};
|
|
6362
|
-
declare const __VLS_export:
|
|
6362
|
+
declare const __VLS_export: vue0.DefineComponent<__VLS_Props, {}, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, false, {}, any>;
|
|
6363
6363
|
declare const _default$60: typeof __VLS_export;
|
|
6364
6364
|
//#endregion
|
|
6365
6365
|
export { _default as AddCredits, type AddCreditsFormData, _default$1 as AdminLayout, _default$2 as AppHeader, _default$3 as AppLink, _default$4 as AppTabNavigation, _default$5 as AppearancePage, _default$6 as ApproveRejectActions, _default$7 as AuthLayout, type AuthenticatableApi, BATCH_MODE, BREADCRUMB_KEY, _default$8 as BaseModal, type BatchMode, type Breadcrumb, type BreadcrumbContext, type BreadcrumbSegment, _default$9 as CancelInternalTaskWorkflow, type ChangePasswordForm, _default$10 as ChangePasswordPage, _default$11 as CompleteSupportTicketForm, _default$12 as ConfirmDialog, _default$13 as ConvertToCustomerWorkflow, _default$14 as ConvertToInternalWorkflow, _default$15 as CreateTeamForm, _default$16 as CreateTeamMemberForm, _default$17 as CreateUserPage, _default$18 as CreditBalanceDashboard, _default$19 as CreditBalanceOverview, _default$20 as CreditBalanceWidget, _default$21 as CreditManagement, _default$22 as CreditTransactionHistory, _default$23 as CreditTransactionTypeBadge, _default$24 as CustomerCreateSupportTicketForm, _default$25 as CustomerCreditBalance, _default$26 as CustomerSupportTicketList, _default$27 as CustomerSupportTicketParent, _default$28 as CustomerSupportTicketSuccess, _default$29 as DefaultLayout, DragoncoreVue, type DragoncoreVuePluginOptions, _default$30 as EditNoteModal, _default$31 as EditTeamForm, _default$32 as EditTeamMemberForm, _default$33 as EditUserPage, EnhancedRefreshTokenHandler, type ExtendedRouteMeta, type ExtendedRouteRecordRaw, _default$34 as FieldDisplay, _default$35 as FieldGroup, type FieldRegistryMetadata, _default$36 as FieldsetSection, _default$37 as FileManager, type FilterConfiguration, type FilterQueryParams, type FilterValueObject, _default$38 as ForgotPassword, _default$39 as ImageModal, _default$40 as InAppLayout, _default$41 as InlineAttachments, _default$42 as InputModal, _default$43 as KeyValueEditor, LOG_LEVEL, _default$44 as LoadingErrorStates, type LogLevel, Logger, _default$45 as LoginButton, _default$46 as LoginForm, _default$47 as Logout, MS, _default$48 as ManagePresetsModal, type MutationFunction, _default$49 as Navbar, _default$50 as NotFound, _default$51 as NoteList, type NoteRow, PINNED_PRESETS_KEY, type PinnedPreset, type QueryFunction, _default$52 as ReactivateInternalTaskWorkflow, _default$53 as RecordChangesSummary, _default$54 as RecordVersionList, _default$55 as RecordVersionViewer, _default$56 as ResetMonthlyBalance, _default$57 as ResetPassword, _default$58 as RightSidebar, _default$59 as SaveFilterModal, _default$60 as SavedFilterPresets, type SavedFiltersConfig, type SectionTab, _default$61 as SetMonthlyAllocation, type SetMonthlyAllocationFormData, _default$62 as Sidebar, _default$63 as Signup, _default$64 as SocialLoginButtons, _default$65 as StaffCreateSupportTicketForm, _default$66 as StaffSupportTicketList, _default$67 as StaffSupportTicketParent, _default$68 as StaffSupportTicketSuccess, _default$69 as SummarySection, _default$70 as SupportTicketApprovalBadge, _default$71 as SupportTicketAttachments, _default$72 as SupportTicketDevLifecycleBadge, _default$73 as SupportTicketPriorityBadge, _default$74 as SupportTicketStatusBadge, _default$75 as SupportTicketTimeline, _default$76 as SupportTicketTypeBadge, type SystemEvent, _default$77 as TeamAttachmentsTab, _default$78 as TeamHistoryTab, _default$79 as TeamList, type TeamMemberItem, _default$80 as TeamMemberList, _default$81 as TeamMemberParent, _default$82 as TeamMembersTab, _default$83 as TeamNotesTab, _default$84 as TeamParent, _default$85 as ThemePref, _default$86 as TimelineItem, _default$87 as TimelineSystemEvent, type UseMutationOptions, type UseQueryOptions, type UserAuthorizedOptions, _default$88 as UserListPage, type UserProfileForm, _default$89 as UserProfilePage, type UserTeamMembersResponse, _default$90 as UserTypeBadge, _default$91 as ViewTeam, _default$92 as ViewTeamMember, _default$93 as ZiniaContainer, addCreditsSchemaWithMetadata, adminRoutes, adminSupportTicketCreateSchemaWithMetadata, adminSupportTicketFiltersSchemaWithMetadata, adminSupportTicketRowSchemaWithMetadata, adminSupportTicketUpdateSchemaWithMetadata, authPaths, authRoutes, buildQueryWithFilters, changePasswordSchemaWithMetadata, createAppBatch, createAuthenticatedGuard, createLastUsedPresetGuard, createLeadOrStaffOnlyGuard, createRefreshTokenHandler, createStaffOnlyGuard, createSuperAdminOnlyGuard, createUserAuthorizedGuard, createUserSchemaWithMetadata, creditPaths, creditRoutes, creditTransactionRowSchemaWithMetadata, customerSupportPaths, customerSupportTicketCreateSchemaWithMetadata, customerSupportTicketRoutes, customerSupportTicketRowSchemaWithMetadata, customerSupportTicketUpdateSchemaWithMetadata, deserializeFiltersFromQueryParams, executeWithAuth, extractFiltersFromQuery, extractRpcErrorMessage, forgotPasswordSchemaWithMetadata, formatCustomerCreditValue, formatStaffCreditValue, formatSystemTimestamp, formatTicketDate, formatTicketDisplayId, formatToISODate, formatUserDate, getLastUsedPresetRedirect, getRefreshTokenHandler, getTimezoneOffsetString, leadOrStaffOnly, logIfEnabled, logger, loginSchemaWithMetadata, noteCreateMetadata, noteRowSchemaWithMetadata, noteUpdateMetadata, recordVersionRowSchemaWithMetadata, resetPasswordSchemaWithMetadata, savedFilterRoutes, serializeFiltersToQueryParams, setMonthlyAllocationSchemaWithMetadata, setRefreshTokenHandler, setRouter, signupSchemaWithMetadata, staffOnly, staffSupportPaths, staffSupportTicketRoutes, teamCreateSchemaWithMetadata, teamFiltersSchemaWithMetadata, teamMemberCreateSchemaWithMetadata, teamMemberFiltersSchemaWithMetadata, teamMemberPaths, teamMemberRoutes, teamMemberRowSchemaWithMetadata, teamMemberUpdateSchemaWithMetadata, teamPaths, teamRoutes, teamRowSchemaWithMetadata, teamUpdateSchemaWithMetadata, timezones, toStringWithLocalTimeZoneOffSet, updateUserSchemaWithMetadata, useBreadcrumbs, useBuildTag, useEnv, useInjectedPinnedPresets, useMutation, usePinnedPresets, useQuery, useSavedFilters, useSupportTicketPermissions, useSupportTicketStatus, useUserLookup, useUserSessionStore, userAlreadyLoggedIn, userAuthenticated, userIsSuperAdmin, userProfileSchemaWithMetadata, userRoutes, userRowSchemaWithMetadata };
|