@dragonmastery/dragoncore-vue 0.0.33 → 0.0.35
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 +765 -765
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import * as pinia0 from "pinia";
|
|
|
5
5
|
import { NavigationGuard, RouteLocationNormalized, RouteLocationNormalizedLoaded, RouteLocationRaw, RouteMeta, RouteRecordRaw, Router } from "vue-router";
|
|
6
6
|
import { AddCreditsSchema, CreditTransactionReadSchema, CustomerSupportTicketCreateSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateSchema, DragoncoreApi, LoginResponse, 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, signupInitiateSchema } from "@dragonmastery/dragoncore-shared";
|
|
7
7
|
import { UseFormTyped } from "@dragonmastery/zinia-forms-core";
|
|
8
|
-
import * as
|
|
8
|
+
import * as zod0 from "zod";
|
|
9
9
|
import { z } from "zod";
|
|
10
10
|
|
|
11
11
|
//#region src/composables/useEnv.d.ts
|
|
@@ -1920,9 +1920,9 @@ declare const recordVersionRowSchemaWithMetadata: z.ZodObject<{
|
|
|
1920
1920
|
}, "strip", z.ZodTypeAny, {
|
|
1921
1921
|
id: string;
|
|
1922
1922
|
operation: string;
|
|
1923
|
-
record_type: string;
|
|
1924
1923
|
record_id: string;
|
|
1925
1924
|
recorded_at: string;
|
|
1925
|
+
record_type: string;
|
|
1926
1926
|
record?: string | null | undefined;
|
|
1927
1927
|
old_record?: string | null | undefined;
|
|
1928
1928
|
auth_uid?: string | null | undefined;
|
|
@@ -1931,9 +1931,9 @@ declare const recordVersionRowSchemaWithMetadata: z.ZodObject<{
|
|
|
1931
1931
|
}, {
|
|
1932
1932
|
id: string;
|
|
1933
1933
|
operation: string;
|
|
1934
|
-
record_type: string;
|
|
1935
1934
|
record_id: string;
|
|
1936
1935
|
recorded_at: string;
|
|
1936
|
+
record_type: string;
|
|
1937
1937
|
record?: string | null | undefined;
|
|
1938
1938
|
old_record?: string | null | undefined;
|
|
1939
1939
|
auth_uid?: string | null | undefined;
|
|
@@ -1946,19 +1946,19 @@ declare const __VLS_export$63: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.Com
|
|
|
1946
1946
|
declare const _default$81: typeof __VLS_export$63;
|
|
1947
1947
|
//#endregion
|
|
1948
1948
|
//#region src/slices/team/teamFiltersMetadata.d.ts
|
|
1949
|
-
declare const teamFiltersSchemaWithMetadata:
|
|
1950
|
-
first:
|
|
1951
|
-
after:
|
|
1952
|
-
sortBy:
|
|
1953
|
-
sortDirection:
|
|
1954
|
-
paginationToken:
|
|
1949
|
+
declare const teamFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
1950
|
+
first: zod0.ZodOptional<zod0.ZodNumber>;
|
|
1951
|
+
after: zod0.ZodOptional<zod0.ZodString>;
|
|
1952
|
+
sortBy: zod0.ZodOptional<zod0.ZodString>;
|
|
1953
|
+
sortDirection: zod0.ZodOptional<zod0.ZodEnum<["asc", "desc"]>>;
|
|
1954
|
+
paginationToken: zod0.ZodOptional<zod0.ZodString>;
|
|
1955
1955
|
} & {
|
|
1956
|
-
unique_name:
|
|
1957
|
-
operator:
|
|
1958
|
-
value:
|
|
1959
|
-
values:
|
|
1960
|
-
caseSensitive:
|
|
1961
|
-
}, "strip",
|
|
1956
|
+
unique_name: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
1957
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1958
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
1959
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
1960
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
1961
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
1962
1962
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1963
1963
|
values?: string[] | undefined;
|
|
1964
1964
|
value?: string | undefined;
|
|
@@ -1979,12 +1979,12 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
1979
1979
|
value?: string | undefined;
|
|
1980
1980
|
caseSensitive?: boolean | undefined;
|
|
1981
1981
|
}>>;
|
|
1982
|
-
display_name:
|
|
1983
|
-
operator:
|
|
1984
|
-
value:
|
|
1985
|
-
values:
|
|
1986
|
-
caseSensitive:
|
|
1987
|
-
}, "strip",
|
|
1982
|
+
display_name: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
1983
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
1984
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
1985
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
1986
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
1987
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
1988
1988
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1989
1989
|
values?: string[] | undefined;
|
|
1990
1990
|
value?: string | undefined;
|
|
@@ -2005,12 +2005,12 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2005
2005
|
value?: string | undefined;
|
|
2006
2006
|
caseSensitive?: boolean | undefined;
|
|
2007
2007
|
}>>;
|
|
2008
|
-
legal_name:
|
|
2009
|
-
operator:
|
|
2010
|
-
value:
|
|
2011
|
-
values:
|
|
2012
|
-
caseSensitive:
|
|
2013
|
-
}, "strip",
|
|
2008
|
+
legal_name: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2009
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2010
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2011
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2012
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2013
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2014
2014
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2015
2015
|
values?: string[] | undefined;
|
|
2016
2016
|
value?: string | undefined;
|
|
@@ -2031,12 +2031,12 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2031
2031
|
value?: string | undefined;
|
|
2032
2032
|
caseSensitive?: boolean | undefined;
|
|
2033
2033
|
}>>;
|
|
2034
|
-
contact_email:
|
|
2035
|
-
operator:
|
|
2036
|
-
value:
|
|
2037
|
-
values:
|
|
2038
|
-
caseSensitive:
|
|
2039
|
-
}, "strip",
|
|
2034
|
+
contact_email: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2035
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2036
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2037
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2038
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2039
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2040
2040
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2041
2041
|
values?: string[] | undefined;
|
|
2042
2042
|
value?: string | undefined;
|
|
@@ -2057,12 +2057,12 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2057
2057
|
value?: string | undefined;
|
|
2058
2058
|
caseSensitive?: boolean | undefined;
|
|
2059
2059
|
}>>;
|
|
2060
|
-
address_city:
|
|
2061
|
-
operator:
|
|
2062
|
-
value:
|
|
2063
|
-
values:
|
|
2064
|
-
caseSensitive:
|
|
2065
|
-
}, "strip",
|
|
2060
|
+
address_city: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2061
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2062
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2063
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2064
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2065
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2066
2066
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2067
2067
|
values?: string[] | undefined;
|
|
2068
2068
|
value?: string | undefined;
|
|
@@ -2083,12 +2083,12 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2083
2083
|
value?: string | undefined;
|
|
2084
2084
|
caseSensitive?: boolean | undefined;
|
|
2085
2085
|
}>>;
|
|
2086
|
-
address_zip:
|
|
2087
|
-
operator:
|
|
2088
|
-
value:
|
|
2089
|
-
values:
|
|
2090
|
-
caseSensitive:
|
|
2091
|
-
}, "strip",
|
|
2086
|
+
address_zip: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2087
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2088
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2089
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2090
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2091
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2092
2092
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2093
2093
|
values?: string[] | undefined;
|
|
2094
2094
|
value?: string | undefined;
|
|
@@ -2109,13 +2109,13 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2109
2109
|
value?: string | undefined;
|
|
2110
2110
|
caseSensitive?: boolean | undefined;
|
|
2111
2111
|
}>>;
|
|
2112
|
-
includeArchived:
|
|
2113
|
-
values:
|
|
2114
|
-
caseSensitive:
|
|
2112
|
+
includeArchived: zod0.ZodOptional<zod0.ZodObject<{
|
|
2113
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
2114
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2115
2115
|
} & {
|
|
2116
|
-
operator:
|
|
2117
|
-
value:
|
|
2118
|
-
}, "strip",
|
|
2116
|
+
operator: zod0.ZodEnum<["eq", "ne"]>;
|
|
2117
|
+
value: zod0.ZodBoolean;
|
|
2118
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2119
2119
|
value: boolean;
|
|
2120
2120
|
operator: "eq" | "ne";
|
|
2121
2121
|
values?: any[] | undefined;
|
|
@@ -2126,13 +2126,13 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2126
2126
|
values?: any[] | undefined;
|
|
2127
2127
|
caseSensitive?: boolean | undefined;
|
|
2128
2128
|
}>>;
|
|
2129
|
-
created_at:
|
|
2130
|
-
value:
|
|
2131
|
-
values:
|
|
2132
|
-
caseSensitive:
|
|
2129
|
+
created_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
2130
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
2131
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
2132
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2133
2133
|
} & {
|
|
2134
|
-
operator:
|
|
2135
|
-
}, "strip",
|
|
2134
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
2135
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2136
2136
|
operator: "isEmpty" | "isNotEmpty";
|
|
2137
2137
|
values?: any[] | undefined;
|
|
2138
2138
|
value?: any;
|
|
@@ -2152,13 +2152,13 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2152
2152
|
values?: any[] | undefined;
|
|
2153
2153
|
value?: any;
|
|
2154
2154
|
caseSensitive?: boolean | undefined;
|
|
2155
|
-
}>,
|
|
2156
|
-
value:
|
|
2157
|
-
caseSensitive:
|
|
2155
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
2156
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
2157
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2158
2158
|
} & {
|
|
2159
|
-
operator:
|
|
2160
|
-
values:
|
|
2161
|
-
}, "strip",
|
|
2159
|
+
operator: zod0.ZodLiteral<"between">;
|
|
2160
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
2161
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2162
2162
|
values: string[];
|
|
2163
2163
|
operator: "between";
|
|
2164
2164
|
value?: any;
|
|
@@ -2188,13 +2188,13 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2188
2188
|
operator: "between";
|
|
2189
2189
|
value?: any;
|
|
2190
2190
|
caseSensitive?: boolean | undefined;
|
|
2191
|
-
}>,
|
|
2192
|
-
values:
|
|
2193
|
-
caseSensitive:
|
|
2191
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
2192
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
2193
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2194
2194
|
} & {
|
|
2195
|
-
operator:
|
|
2196
|
-
value:
|
|
2197
|
-
}, "strip",
|
|
2195
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
2196
|
+
value: zod0.ZodString;
|
|
2197
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2198
2198
|
value: string;
|
|
2199
2199
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2200
2200
|
values?: any[] | undefined;
|
|
@@ -2215,13 +2215,13 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2215
2215
|
values?: any[] | undefined;
|
|
2216
2216
|
caseSensitive?: boolean | undefined;
|
|
2217
2217
|
}>]>>;
|
|
2218
|
-
updated_at:
|
|
2219
|
-
value:
|
|
2220
|
-
values:
|
|
2221
|
-
caseSensitive:
|
|
2218
|
+
updated_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
2219
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
2220
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
2221
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2222
2222
|
} & {
|
|
2223
|
-
operator:
|
|
2224
|
-
}, "strip",
|
|
2223
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
2224
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2225
2225
|
operator: "isEmpty" | "isNotEmpty";
|
|
2226
2226
|
values?: any[] | undefined;
|
|
2227
2227
|
value?: any;
|
|
@@ -2241,13 +2241,13 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2241
2241
|
values?: any[] | undefined;
|
|
2242
2242
|
value?: any;
|
|
2243
2243
|
caseSensitive?: boolean | undefined;
|
|
2244
|
-
}>,
|
|
2245
|
-
value:
|
|
2246
|
-
caseSensitive:
|
|
2244
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
2245
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
2246
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2247
2247
|
} & {
|
|
2248
|
-
operator:
|
|
2249
|
-
values:
|
|
2250
|
-
}, "strip",
|
|
2248
|
+
operator: zod0.ZodLiteral<"between">;
|
|
2249
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
2250
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2251
2251
|
values: string[];
|
|
2252
2252
|
operator: "between";
|
|
2253
2253
|
value?: any;
|
|
@@ -2277,13 +2277,13 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2277
2277
|
operator: "between";
|
|
2278
2278
|
value?: any;
|
|
2279
2279
|
caseSensitive?: boolean | undefined;
|
|
2280
|
-
}>,
|
|
2281
|
-
values:
|
|
2282
|
-
caseSensitive:
|
|
2280
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
2281
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
2282
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2283
2283
|
} & {
|
|
2284
|
-
operator:
|
|
2285
|
-
value:
|
|
2286
|
-
}, "strip",
|
|
2284
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
2285
|
+
value: zod0.ZodString;
|
|
2286
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2287
2287
|
value: string;
|
|
2288
2288
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2289
2289
|
values?: any[] | undefined;
|
|
@@ -2304,13 +2304,13 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2304
2304
|
values?: any[] | undefined;
|
|
2305
2305
|
caseSensitive?: boolean | undefined;
|
|
2306
2306
|
}>]>>;
|
|
2307
|
-
archived_at:
|
|
2308
|
-
value:
|
|
2309
|
-
values:
|
|
2310
|
-
caseSensitive:
|
|
2307
|
+
archived_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
2308
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
2309
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
2310
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2311
2311
|
} & {
|
|
2312
|
-
operator:
|
|
2313
|
-
}, "strip",
|
|
2312
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
2313
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2314
2314
|
operator: "isEmpty" | "isNotEmpty";
|
|
2315
2315
|
values?: any[] | undefined;
|
|
2316
2316
|
value?: any;
|
|
@@ -2330,13 +2330,13 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2330
2330
|
values?: any[] | undefined;
|
|
2331
2331
|
value?: any;
|
|
2332
2332
|
caseSensitive?: boolean | undefined;
|
|
2333
|
-
}>,
|
|
2334
|
-
value:
|
|
2335
|
-
caseSensitive:
|
|
2333
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
2334
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
2335
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2336
2336
|
} & {
|
|
2337
|
-
operator:
|
|
2338
|
-
values:
|
|
2339
|
-
}, "strip",
|
|
2337
|
+
operator: zod0.ZodLiteral<"between">;
|
|
2338
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
2339
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2340
2340
|
values: string[];
|
|
2341
2341
|
operator: "between";
|
|
2342
2342
|
value?: any;
|
|
@@ -2366,13 +2366,13 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2366
2366
|
operator: "between";
|
|
2367
2367
|
value?: any;
|
|
2368
2368
|
caseSensitive?: boolean | undefined;
|
|
2369
|
-
}>,
|
|
2370
|
-
values:
|
|
2371
|
-
caseSensitive:
|
|
2369
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
2370
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
2371
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2372
2372
|
} & {
|
|
2373
|
-
operator:
|
|
2374
|
-
value:
|
|
2375
|
-
}, "strip",
|
|
2373
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
2374
|
+
value: zod0.ZodString;
|
|
2375
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2376
2376
|
value: string;
|
|
2377
2377
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2378
2378
|
values?: any[] | undefined;
|
|
@@ -2393,17 +2393,17 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2393
2393
|
values?: any[] | undefined;
|
|
2394
2394
|
caseSensitive?: boolean | undefined;
|
|
2395
2395
|
}>]>>;
|
|
2396
|
-
search:
|
|
2397
|
-
query:
|
|
2398
|
-
searchableFields:
|
|
2399
|
-
}, "strip",
|
|
2396
|
+
search: zod0.ZodOptional<zod0.ZodObject<{
|
|
2397
|
+
query: zod0.ZodString;
|
|
2398
|
+
searchableFields: zod0.ZodArray<zod0.ZodString, "many">;
|
|
2399
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2400
2400
|
query: string;
|
|
2401
2401
|
searchableFields: string[];
|
|
2402
2402
|
}, {
|
|
2403
2403
|
query: string;
|
|
2404
2404
|
searchableFields: string[];
|
|
2405
2405
|
}>>;
|
|
2406
|
-
}, "strip",
|
|
2406
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2407
2407
|
created_at?: {
|
|
2408
2408
|
operator: "isEmpty" | "isNotEmpty";
|
|
2409
2409
|
values?: any[] | undefined;
|
|
@@ -2440,22 +2440,6 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2440
2440
|
values?: any[] | undefined;
|
|
2441
2441
|
caseSensitive?: boolean | undefined;
|
|
2442
2442
|
} | undefined;
|
|
2443
|
-
archived_at?: {
|
|
2444
|
-
operator: "isEmpty" | "isNotEmpty";
|
|
2445
|
-
values?: any[] | undefined;
|
|
2446
|
-
value?: any;
|
|
2447
|
-
caseSensitive?: boolean | undefined;
|
|
2448
|
-
} | {
|
|
2449
|
-
values: string[];
|
|
2450
|
-
operator: "between";
|
|
2451
|
-
value?: any;
|
|
2452
|
-
caseSensitive?: boolean | undefined;
|
|
2453
|
-
} | {
|
|
2454
|
-
value: string;
|
|
2455
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2456
|
-
values?: any[] | undefined;
|
|
2457
|
-
caseSensitive?: boolean | undefined;
|
|
2458
|
-
} | undefined;
|
|
2459
2443
|
first?: number | undefined;
|
|
2460
2444
|
after?: string | undefined;
|
|
2461
2445
|
sortBy?: string | undefined;
|
|
@@ -2503,8 +2487,7 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2503
2487
|
values?: any[] | undefined;
|
|
2504
2488
|
caseSensitive?: boolean | undefined;
|
|
2505
2489
|
} | undefined;
|
|
2506
|
-
|
|
2507
|
-
created_at?: {
|
|
2490
|
+
archived_at?: {
|
|
2508
2491
|
operator: "isEmpty" | "isNotEmpty";
|
|
2509
2492
|
values?: any[] | undefined;
|
|
2510
2493
|
value?: any;
|
|
@@ -2520,11 +2503,8 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2520
2503
|
values?: any[] | undefined;
|
|
2521
2504
|
caseSensitive?: boolean | undefined;
|
|
2522
2505
|
} | undefined;
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
searchableFields: string[];
|
|
2526
|
-
} | undefined;
|
|
2527
|
-
updated_at?: {
|
|
2506
|
+
}, {
|
|
2507
|
+
created_at?: {
|
|
2528
2508
|
operator: "isEmpty" | "isNotEmpty";
|
|
2529
2509
|
values?: any[] | undefined;
|
|
2530
2510
|
value?: any;
|
|
@@ -2540,7 +2520,11 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2540
2520
|
values?: any[] | undefined;
|
|
2541
2521
|
caseSensitive?: boolean | undefined;
|
|
2542
2522
|
} | undefined;
|
|
2543
|
-
|
|
2523
|
+
search?: {
|
|
2524
|
+
query: string;
|
|
2525
|
+
searchableFields: string[];
|
|
2526
|
+
} | undefined;
|
|
2527
|
+
updated_at?: {
|
|
2544
2528
|
operator: "isEmpty" | "isNotEmpty";
|
|
2545
2529
|
values?: any[] | undefined;
|
|
2546
2530
|
value?: any;
|
|
@@ -2603,6 +2587,22 @@ declare const teamFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2603
2587
|
values?: any[] | undefined;
|
|
2604
2588
|
caseSensitive?: boolean | undefined;
|
|
2605
2589
|
} | undefined;
|
|
2590
|
+
archived_at?: {
|
|
2591
|
+
operator: "isEmpty" | "isNotEmpty";
|
|
2592
|
+
values?: any[] | undefined;
|
|
2593
|
+
value?: any;
|
|
2594
|
+
caseSensitive?: boolean | undefined;
|
|
2595
|
+
} | {
|
|
2596
|
+
values: string[];
|
|
2597
|
+
operator: "between";
|
|
2598
|
+
value?: any;
|
|
2599
|
+
caseSensitive?: boolean | undefined;
|
|
2600
|
+
} | {
|
|
2601
|
+
value: string;
|
|
2602
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
2603
|
+
values?: any[] | undefined;
|
|
2604
|
+
caseSensitive?: boolean | undefined;
|
|
2605
|
+
} | undefined;
|
|
2606
2606
|
}>;
|
|
2607
2607
|
//#endregion
|
|
2608
2608
|
//#region src/slices/team/TeamHistoryTab.vue.d.ts
|
|
@@ -2618,25 +2618,25 @@ declare const __VLS_export$60: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.Com
|
|
|
2618
2618
|
declare const _default$86: typeof __VLS_export$60;
|
|
2619
2619
|
//#endregion
|
|
2620
2620
|
//#region src/slices/team/teamMetadata.d.ts
|
|
2621
|
-
declare const teamCreateSchemaWithMetadata:
|
|
2622
|
-
unique_name:
|
|
2623
|
-
display_name:
|
|
2624
|
-
legal_name:
|
|
2625
|
-
description:
|
|
2626
|
-
contact_name:
|
|
2627
|
-
contact_email:
|
|
2628
|
-
contact_business_phone:
|
|
2629
|
-
contact_mobile_phone:
|
|
2630
|
-
contact_time_zone:
|
|
2631
|
-
address_full:
|
|
2632
|
-
address_city:
|
|
2633
|
-
address_zip:
|
|
2634
|
-
twitter_username:
|
|
2635
|
-
url:
|
|
2636
|
-
logo:
|
|
2637
|
-
email_sent_from:
|
|
2638
|
-
email_reply_to:
|
|
2639
|
-
}, "strip",
|
|
2621
|
+
declare const teamCreateSchemaWithMetadata: zod0.ZodObject<{
|
|
2622
|
+
unique_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2623
|
+
display_name: zod0.ZodString;
|
|
2624
|
+
legal_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2625
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2626
|
+
contact_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2627
|
+
contact_email: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2628
|
+
contact_business_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2629
|
+
contact_mobile_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2630
|
+
contact_time_zone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2631
|
+
address_full: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2632
|
+
address_city: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2633
|
+
address_zip: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2634
|
+
twitter_username: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2635
|
+
url: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2636
|
+
logo: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2637
|
+
email_sent_from: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2638
|
+
email_reply_to: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2639
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2640
2640
|
display_name: string;
|
|
2641
2641
|
description?: string | null | undefined;
|
|
2642
2642
|
unique_name?: string | null | undefined;
|
|
@@ -2673,27 +2673,27 @@ declare const teamCreateSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2673
2673
|
email_sent_from?: string | null | undefined;
|
|
2674
2674
|
email_reply_to?: string | null | undefined;
|
|
2675
2675
|
}>;
|
|
2676
|
-
declare const teamUpdateSchemaWithMetadata:
|
|
2677
|
-
unique_name:
|
|
2678
|
-
display_name:
|
|
2679
|
-
legal_name:
|
|
2680
|
-
description:
|
|
2681
|
-
contact_name:
|
|
2682
|
-
contact_email:
|
|
2683
|
-
contact_business_phone:
|
|
2684
|
-
contact_mobile_phone:
|
|
2685
|
-
contact_time_zone:
|
|
2686
|
-
address_full:
|
|
2687
|
-
address_city:
|
|
2688
|
-
address_zip:
|
|
2689
|
-
twitter_username:
|
|
2690
|
-
url:
|
|
2691
|
-
logo:
|
|
2692
|
-
email_sent_from:
|
|
2693
|
-
email_reply_to:
|
|
2676
|
+
declare const teamUpdateSchemaWithMetadata: zod0.ZodObject<{
|
|
2677
|
+
unique_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2678
|
+
display_name: zod0.ZodString;
|
|
2679
|
+
legal_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2680
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2681
|
+
contact_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2682
|
+
contact_email: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2683
|
+
contact_business_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2684
|
+
contact_mobile_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2685
|
+
contact_time_zone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2686
|
+
address_full: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2687
|
+
address_city: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2688
|
+
address_zip: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2689
|
+
twitter_username: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2690
|
+
url: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2691
|
+
logo: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2692
|
+
email_sent_from: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2693
|
+
email_reply_to: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2694
2694
|
} & {
|
|
2695
|
-
id:
|
|
2696
|
-
}, "strip",
|
|
2695
|
+
id: zod0.ZodString;
|
|
2696
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2697
2697
|
id: string;
|
|
2698
2698
|
display_name: string;
|
|
2699
2699
|
description?: string | null | undefined;
|
|
@@ -2791,55 +2791,51 @@ declare const teamRoutes: Array<ExtendedRouteRecordRaw>;
|
|
|
2791
2791
|
* Reuse the existing TeamReadSchema from the validation library
|
|
2792
2792
|
* for the data table rows - don't recreate it!
|
|
2793
2793
|
*/
|
|
2794
|
-
declare const teamRowSchemaWithMetadata:
|
|
2795
|
-
unique_name:
|
|
2796
|
-
display_name:
|
|
2797
|
-
legal_name:
|
|
2798
|
-
description:
|
|
2799
|
-
contact_name:
|
|
2800
|
-
contact_email:
|
|
2801
|
-
contact_business_phone:
|
|
2802
|
-
contact_mobile_phone:
|
|
2803
|
-
contact_time_zone:
|
|
2804
|
-
address_full:
|
|
2805
|
-
address_city:
|
|
2806
|
-
address_zip:
|
|
2807
|
-
twitter_username:
|
|
2808
|
-
url:
|
|
2809
|
-
logo:
|
|
2810
|
-
email_sent_from:
|
|
2811
|
-
email_reply_to:
|
|
2794
|
+
declare const teamRowSchemaWithMetadata: zod0.ZodObject<{
|
|
2795
|
+
unique_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2796
|
+
display_name: zod0.ZodString;
|
|
2797
|
+
legal_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2798
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2799
|
+
contact_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2800
|
+
contact_email: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2801
|
+
contact_business_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2802
|
+
contact_mobile_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2803
|
+
contact_time_zone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2804
|
+
address_full: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2805
|
+
address_city: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2806
|
+
address_zip: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2807
|
+
twitter_username: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2808
|
+
url: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2809
|
+
logo: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2810
|
+
email_sent_from: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2811
|
+
email_reply_to: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2812
2812
|
} & {
|
|
2813
|
-
id:
|
|
2814
|
-
original_id:
|
|
2815
|
-
path:
|
|
2816
|
-
referral_tag:
|
|
2817
|
-
created_at:
|
|
2818
|
-
updated_at:
|
|
2819
|
-
created_by:
|
|
2820
|
-
created_by_display_name:
|
|
2821
|
-
updated_by:
|
|
2822
|
-
updated_by_display_name:
|
|
2823
|
-
archived_at:
|
|
2824
|
-
archived_by:
|
|
2825
|
-
}, "strip",
|
|
2813
|
+
id: zod0.ZodString;
|
|
2814
|
+
original_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2815
|
+
path: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2816
|
+
referral_tag: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2817
|
+
created_at: zod0.ZodString;
|
|
2818
|
+
updated_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2819
|
+
created_by: zod0.ZodString;
|
|
2820
|
+
created_by_display_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2821
|
+
updated_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2822
|
+
updated_by_display_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2823
|
+
archived_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2824
|
+
archived_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
2825
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2826
2826
|
id: string;
|
|
2827
2827
|
created_at: string;
|
|
2828
|
-
created_by: string;
|
|
2829
2828
|
display_name: string;
|
|
2829
|
+
created_by: string;
|
|
2830
2830
|
path?: string | null | undefined;
|
|
2831
2831
|
updated_at?: string | null | undefined;
|
|
2832
2832
|
description?: string | null | undefined;
|
|
2833
|
-
created_by_display_name?: string | null | undefined;
|
|
2834
|
-
updated_by?: string | null | undefined;
|
|
2835
|
-
archived_at?: string | null | undefined;
|
|
2836
|
-
updated_by_display_name?: string | null | undefined;
|
|
2837
|
-
archived_by?: string | null | undefined;
|
|
2838
2833
|
unique_name?: string | null | undefined;
|
|
2839
2834
|
legal_name?: string | null | undefined;
|
|
2840
2835
|
contact_email?: string | null | undefined;
|
|
2841
2836
|
address_city?: string | null | undefined;
|
|
2842
2837
|
address_zip?: string | null | undefined;
|
|
2838
|
+
archived_at?: string | null | undefined;
|
|
2843
2839
|
contact_name?: string | null | undefined;
|
|
2844
2840
|
contact_business_phone?: string | null | undefined;
|
|
2845
2841
|
contact_mobile_phone?: string | null | undefined;
|
|
@@ -2852,24 +2848,24 @@ declare const teamRowSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2852
2848
|
email_reply_to?: string | null | undefined;
|
|
2853
2849
|
original_id?: string | null | undefined;
|
|
2854
2850
|
referral_tag?: string | null | undefined;
|
|
2851
|
+
created_by_display_name?: string | null | undefined;
|
|
2852
|
+
updated_by?: string | null | undefined;
|
|
2853
|
+
updated_by_display_name?: string | null | undefined;
|
|
2854
|
+
archived_by?: string | null | undefined;
|
|
2855
2855
|
}, {
|
|
2856
2856
|
id: string;
|
|
2857
2857
|
created_at: string;
|
|
2858
|
-
created_by: string;
|
|
2859
2858
|
display_name: string;
|
|
2859
|
+
created_by: string;
|
|
2860
2860
|
path?: string | null | undefined;
|
|
2861
2861
|
updated_at?: string | null | undefined;
|
|
2862
2862
|
description?: string | null | undefined;
|
|
2863
|
-
created_by_display_name?: string | null | undefined;
|
|
2864
|
-
updated_by?: string | null | undefined;
|
|
2865
|
-
archived_at?: string | null | undefined;
|
|
2866
|
-
updated_by_display_name?: string | null | undefined;
|
|
2867
|
-
archived_by?: string | null | undefined;
|
|
2868
2863
|
unique_name?: string | null | undefined;
|
|
2869
2864
|
legal_name?: string | null | undefined;
|
|
2870
2865
|
contact_email?: string | null | undefined;
|
|
2871
2866
|
address_city?: string | null | undefined;
|
|
2872
2867
|
address_zip?: string | null | undefined;
|
|
2868
|
+
archived_at?: string | null | undefined;
|
|
2873
2869
|
contact_name?: string | null | undefined;
|
|
2874
2870
|
contact_business_phone?: string | null | undefined;
|
|
2875
2871
|
contact_mobile_phone?: string | null | undefined;
|
|
@@ -2882,6 +2878,10 @@ declare const teamRowSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2882
2878
|
email_reply_to?: string | null | undefined;
|
|
2883
2879
|
original_id?: string | null | undefined;
|
|
2884
2880
|
referral_tag?: string | null | undefined;
|
|
2881
|
+
created_by_display_name?: string | null | undefined;
|
|
2882
|
+
updated_by?: string | null | undefined;
|
|
2883
|
+
updated_by_display_name?: string | null | undefined;
|
|
2884
|
+
archived_by?: string | null | undefined;
|
|
2885
2885
|
}>;
|
|
2886
2886
|
//#endregion
|
|
2887
2887
|
//#region src/slices/team/ViewTeam.vue.d.ts
|
|
@@ -2932,20 +2932,20 @@ declare const teamMemberPaths: {
|
|
|
2932
2932
|
declare const teamMemberRoutes: Array<ExtendedRouteRecordRaw>;
|
|
2933
2933
|
//#endregion
|
|
2934
2934
|
//#region src/slices/team/team_member/teamMemberFiltersMetadata.d.ts
|
|
2935
|
-
declare const teamMemberFiltersSchemaWithMetadata:
|
|
2936
|
-
first:
|
|
2937
|
-
after:
|
|
2938
|
-
sortBy:
|
|
2939
|
-
sortDirection:
|
|
2940
|
-
paginationToken:
|
|
2935
|
+
declare const teamMemberFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
2936
|
+
first: zod0.ZodOptional<zod0.ZodNumber>;
|
|
2937
|
+
after: zod0.ZodOptional<zod0.ZodString>;
|
|
2938
|
+
sortBy: zod0.ZodOptional<zod0.ZodString>;
|
|
2939
|
+
sortDirection: zod0.ZodOptional<zod0.ZodEnum<["asc", "desc"]>>;
|
|
2940
|
+
paginationToken: zod0.ZodOptional<zod0.ZodString>;
|
|
2941
2941
|
} & {
|
|
2942
|
-
original_id:
|
|
2943
|
-
caseSensitive:
|
|
2942
|
+
original_id: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
2943
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2944
2944
|
} & {
|
|
2945
|
-
operator:
|
|
2946
|
-
value:
|
|
2947
|
-
values:
|
|
2948
|
-
}, "strip",
|
|
2945
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte", "between", "in", "notIn"]>;
|
|
2946
|
+
value: zod0.ZodOptional<zod0.ZodNumber>;
|
|
2947
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodNumber, "many">>;
|
|
2948
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2949
2949
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
2950
2950
|
values?: number[] | undefined;
|
|
2951
2951
|
value?: number | undefined;
|
|
@@ -2976,12 +2976,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
2976
2976
|
value?: number | undefined;
|
|
2977
2977
|
caseSensitive?: boolean | undefined;
|
|
2978
2978
|
}>>;
|
|
2979
|
-
team_id:
|
|
2980
|
-
operator:
|
|
2981
|
-
value:
|
|
2982
|
-
values:
|
|
2983
|
-
caseSensitive:
|
|
2984
|
-
}, "strip",
|
|
2979
|
+
team_id: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
2980
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
2981
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
2982
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
2983
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
2984
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
2985
2985
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2986
2986
|
values?: string[] | undefined;
|
|
2987
2987
|
value?: string | undefined;
|
|
@@ -3002,12 +3002,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3002
3002
|
value?: string | undefined;
|
|
3003
3003
|
caseSensitive?: boolean | undefined;
|
|
3004
3004
|
}>>;
|
|
3005
|
-
original_team_id:
|
|
3006
|
-
operator:
|
|
3007
|
-
value:
|
|
3008
|
-
values:
|
|
3009
|
-
caseSensitive:
|
|
3010
|
-
}, "strip",
|
|
3005
|
+
original_team_id: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
3006
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3007
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
3008
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
3009
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3010
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3011
3011
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3012
3012
|
values?: string[] | undefined;
|
|
3013
3013
|
value?: string | undefined;
|
|
@@ -3028,12 +3028,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3028
3028
|
value?: string | undefined;
|
|
3029
3029
|
caseSensitive?: boolean | undefined;
|
|
3030
3030
|
}>>;
|
|
3031
|
-
user_id:
|
|
3032
|
-
operator:
|
|
3033
|
-
value:
|
|
3034
|
-
values:
|
|
3035
|
-
caseSensitive:
|
|
3036
|
-
}, "strip",
|
|
3031
|
+
user_id: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
3032
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3033
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
3034
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
3035
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3036
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3037
3037
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3038
3038
|
values?: string[] | undefined;
|
|
3039
3039
|
value?: string | undefined;
|
|
@@ -3054,12 +3054,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3054
3054
|
value?: string | undefined;
|
|
3055
3055
|
caseSensitive?: boolean | undefined;
|
|
3056
3056
|
}>>;
|
|
3057
|
-
original_user_id:
|
|
3058
|
-
operator:
|
|
3059
|
-
value:
|
|
3060
|
-
values:
|
|
3061
|
-
caseSensitive:
|
|
3062
|
-
}, "strip",
|
|
3057
|
+
original_user_id: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
3058
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3059
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
3060
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
3061
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3062
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3063
3063
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3064
3064
|
values?: string[] | undefined;
|
|
3065
3065
|
value?: string | undefined;
|
|
@@ -3080,13 +3080,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3080
3080
|
value?: string | undefined;
|
|
3081
3081
|
caseSensitive?: boolean | undefined;
|
|
3082
3082
|
}>>;
|
|
3083
|
-
role:
|
|
3084
|
-
caseSensitive:
|
|
3083
|
+
role: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{
|
|
3084
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3085
3085
|
} & {
|
|
3086
|
-
operator:
|
|
3087
|
-
value:
|
|
3088
|
-
values:
|
|
3089
|
-
}, "strip",
|
|
3086
|
+
operator: zod0.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
3087
|
+
value: zod0.ZodOptional<zod0.ZodEnum<["owner", "manager", "member", "client"]>>;
|
|
3088
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodEnum<["owner", "manager", "member", "client"]>, "many">>;
|
|
3089
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3090
3090
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
3091
3091
|
values?: ("owner" | "manager" | "member" | "client")[] | undefined;
|
|
3092
3092
|
value?: "owner" | "manager" | "member" | "client" | undefined;
|
|
@@ -3107,12 +3107,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3107
3107
|
value?: "owner" | "manager" | "member" | "client" | undefined;
|
|
3108
3108
|
caseSensitive?: boolean | undefined;
|
|
3109
3109
|
}>>;
|
|
3110
|
-
display_name:
|
|
3111
|
-
operator:
|
|
3112
|
-
value:
|
|
3113
|
-
values:
|
|
3114
|
-
caseSensitive:
|
|
3115
|
-
}, "strip",
|
|
3110
|
+
display_name: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
3111
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3112
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
3113
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
3114
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3115
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3116
3116
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3117
3117
|
values?: string[] | undefined;
|
|
3118
3118
|
value?: string | undefined;
|
|
@@ -3133,12 +3133,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3133
3133
|
value?: string | undefined;
|
|
3134
3134
|
caseSensitive?: boolean | undefined;
|
|
3135
3135
|
}>>;
|
|
3136
|
-
business_phone:
|
|
3137
|
-
operator:
|
|
3138
|
-
value:
|
|
3139
|
-
values:
|
|
3140
|
-
caseSensitive:
|
|
3141
|
-
}, "strip",
|
|
3136
|
+
business_phone: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
3137
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3138
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
3139
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
3140
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3141
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3142
3142
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3143
3143
|
values?: string[] | undefined;
|
|
3144
3144
|
value?: string | undefined;
|
|
@@ -3159,12 +3159,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3159
3159
|
value?: string | undefined;
|
|
3160
3160
|
caseSensitive?: boolean | undefined;
|
|
3161
3161
|
}>>;
|
|
3162
|
-
mobile_phone:
|
|
3163
|
-
operator:
|
|
3164
|
-
value:
|
|
3165
|
-
values:
|
|
3166
|
-
caseSensitive:
|
|
3167
|
-
}, "strip",
|
|
3162
|
+
mobile_phone: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
3163
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3164
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
3165
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
3166
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3167
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3168
3168
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3169
3169
|
values?: string[] | undefined;
|
|
3170
3170
|
value?: string | undefined;
|
|
@@ -3185,12 +3185,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3185
3185
|
value?: string | undefined;
|
|
3186
3186
|
caseSensitive?: boolean | undefined;
|
|
3187
3187
|
}>>;
|
|
3188
|
-
email_address:
|
|
3189
|
-
operator:
|
|
3190
|
-
value:
|
|
3191
|
-
values:
|
|
3192
|
-
caseSensitive:
|
|
3193
|
-
}, "strip",
|
|
3188
|
+
email_address: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
3189
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3190
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
3191
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
3192
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3193
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3194
3194
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3195
3195
|
values?: string[] | undefined;
|
|
3196
3196
|
value?: string | undefined;
|
|
@@ -3211,12 +3211,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3211
3211
|
value?: string | undefined;
|
|
3212
3212
|
caseSensitive?: boolean | undefined;
|
|
3213
3213
|
}>>;
|
|
3214
|
-
website_address:
|
|
3215
|
-
operator:
|
|
3216
|
-
value:
|
|
3217
|
-
values:
|
|
3218
|
-
caseSensitive:
|
|
3219
|
-
}, "strip",
|
|
3214
|
+
website_address: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
3215
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3216
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
3217
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
3218
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3219
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3220
3220
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3221
3221
|
values?: string[] | undefined;
|
|
3222
3222
|
value?: string | undefined;
|
|
@@ -3237,12 +3237,12 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3237
3237
|
value?: string | undefined;
|
|
3238
3238
|
caseSensitive?: boolean | undefined;
|
|
3239
3239
|
}>>;
|
|
3240
|
-
time_zone:
|
|
3241
|
-
operator:
|
|
3242
|
-
value:
|
|
3243
|
-
values:
|
|
3244
|
-
caseSensitive:
|
|
3245
|
-
}, "strip",
|
|
3240
|
+
time_zone: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
3241
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3242
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
3243
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
3244
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3245
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3246
3246
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3247
3247
|
values?: string[] | undefined;
|
|
3248
3248
|
value?: string | undefined;
|
|
@@ -3263,13 +3263,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3263
3263
|
value?: string | undefined;
|
|
3264
3264
|
caseSensitive?: boolean | undefined;
|
|
3265
3265
|
}>>;
|
|
3266
|
-
created_at:
|
|
3267
|
-
value:
|
|
3268
|
-
values:
|
|
3269
|
-
caseSensitive:
|
|
3266
|
+
created_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
3267
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
3268
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
3269
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3270
3270
|
} & {
|
|
3271
|
-
operator:
|
|
3272
|
-
}, "strip",
|
|
3271
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
3272
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3273
3273
|
operator: "isEmpty" | "isNotEmpty";
|
|
3274
3274
|
values?: any[] | undefined;
|
|
3275
3275
|
value?: any;
|
|
@@ -3289,13 +3289,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3289
3289
|
values?: any[] | undefined;
|
|
3290
3290
|
value?: any;
|
|
3291
3291
|
caseSensitive?: boolean | undefined;
|
|
3292
|
-
}>,
|
|
3293
|
-
value:
|
|
3294
|
-
caseSensitive:
|
|
3292
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
3293
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
3294
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3295
3295
|
} & {
|
|
3296
|
-
operator:
|
|
3297
|
-
values:
|
|
3298
|
-
}, "strip",
|
|
3296
|
+
operator: zod0.ZodLiteral<"between">;
|
|
3297
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
3298
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3299
3299
|
values: string[];
|
|
3300
3300
|
operator: "between";
|
|
3301
3301
|
value?: any;
|
|
@@ -3325,13 +3325,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3325
3325
|
operator: "between";
|
|
3326
3326
|
value?: any;
|
|
3327
3327
|
caseSensitive?: boolean | undefined;
|
|
3328
|
-
}>,
|
|
3329
|
-
values:
|
|
3330
|
-
caseSensitive:
|
|
3328
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
3329
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
3330
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3331
3331
|
} & {
|
|
3332
|
-
operator:
|
|
3333
|
-
value:
|
|
3334
|
-
}, "strip",
|
|
3332
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
3333
|
+
value: zod0.ZodString;
|
|
3334
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3335
3335
|
value: string;
|
|
3336
3336
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
3337
3337
|
values?: any[] | undefined;
|
|
@@ -3352,13 +3352,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3352
3352
|
values?: any[] | undefined;
|
|
3353
3353
|
caseSensitive?: boolean | undefined;
|
|
3354
3354
|
}>]>>;
|
|
3355
|
-
updated_at:
|
|
3356
|
-
value:
|
|
3357
|
-
values:
|
|
3358
|
-
caseSensitive:
|
|
3355
|
+
updated_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
3356
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
3357
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
3358
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3359
3359
|
} & {
|
|
3360
|
-
operator:
|
|
3361
|
-
}, "strip",
|
|
3360
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
3361
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3362
3362
|
operator: "isEmpty" | "isNotEmpty";
|
|
3363
3363
|
values?: any[] | undefined;
|
|
3364
3364
|
value?: any;
|
|
@@ -3378,13 +3378,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3378
3378
|
values?: any[] | undefined;
|
|
3379
3379
|
value?: any;
|
|
3380
3380
|
caseSensitive?: boolean | undefined;
|
|
3381
|
-
}>,
|
|
3382
|
-
value:
|
|
3383
|
-
caseSensitive:
|
|
3381
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
3382
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
3383
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3384
3384
|
} & {
|
|
3385
|
-
operator:
|
|
3386
|
-
values:
|
|
3387
|
-
}, "strip",
|
|
3385
|
+
operator: zod0.ZodLiteral<"between">;
|
|
3386
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
3387
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3388
3388
|
values: string[];
|
|
3389
3389
|
operator: "between";
|
|
3390
3390
|
value?: any;
|
|
@@ -3414,13 +3414,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3414
3414
|
operator: "between";
|
|
3415
3415
|
value?: any;
|
|
3416
3416
|
caseSensitive?: boolean | undefined;
|
|
3417
|
-
}>,
|
|
3418
|
-
values:
|
|
3419
|
-
caseSensitive:
|
|
3417
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
3418
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
3419
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3420
3420
|
} & {
|
|
3421
|
-
operator:
|
|
3422
|
-
value:
|
|
3423
|
-
}, "strip",
|
|
3421
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
3422
|
+
value: zod0.ZodString;
|
|
3423
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3424
3424
|
value: string;
|
|
3425
3425
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
3426
3426
|
values?: any[] | undefined;
|
|
@@ -3441,13 +3441,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3441
3441
|
values?: any[] | undefined;
|
|
3442
3442
|
caseSensitive?: boolean | undefined;
|
|
3443
3443
|
}>]>>;
|
|
3444
|
-
deleted_at:
|
|
3445
|
-
value:
|
|
3446
|
-
values:
|
|
3447
|
-
caseSensitive:
|
|
3444
|
+
deleted_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
3445
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
3446
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
3447
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3448
3448
|
} & {
|
|
3449
|
-
operator:
|
|
3450
|
-
}, "strip",
|
|
3449
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
3450
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3451
3451
|
operator: "isEmpty" | "isNotEmpty";
|
|
3452
3452
|
values?: any[] | undefined;
|
|
3453
3453
|
value?: any;
|
|
@@ -3467,13 +3467,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3467
3467
|
values?: any[] | undefined;
|
|
3468
3468
|
value?: any;
|
|
3469
3469
|
caseSensitive?: boolean | undefined;
|
|
3470
|
-
}>,
|
|
3471
|
-
value:
|
|
3472
|
-
caseSensitive:
|
|
3470
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
3471
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
3472
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3473
3473
|
} & {
|
|
3474
|
-
operator:
|
|
3475
|
-
values:
|
|
3476
|
-
}, "strip",
|
|
3474
|
+
operator: zod0.ZodLiteral<"between">;
|
|
3475
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
3476
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3477
3477
|
values: string[];
|
|
3478
3478
|
operator: "between";
|
|
3479
3479
|
value?: any;
|
|
@@ -3503,13 +3503,13 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3503
3503
|
operator: "between";
|
|
3504
3504
|
value?: any;
|
|
3505
3505
|
caseSensitive?: boolean | undefined;
|
|
3506
|
-
}>,
|
|
3507
|
-
values:
|
|
3508
|
-
caseSensitive:
|
|
3506
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
3507
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
3508
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
3509
3509
|
} & {
|
|
3510
|
-
operator:
|
|
3511
|
-
value:
|
|
3512
|
-
}, "strip",
|
|
3510
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
3511
|
+
value: zod0.ZodString;
|
|
3512
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3513
3513
|
value: string;
|
|
3514
3514
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
3515
3515
|
values?: any[] | undefined;
|
|
@@ -3530,17 +3530,17 @@ declare const teamMemberFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3530
3530
|
values?: any[] | undefined;
|
|
3531
3531
|
caseSensitive?: boolean | undefined;
|
|
3532
3532
|
}>]>>;
|
|
3533
|
-
search:
|
|
3534
|
-
query:
|
|
3535
|
-
searchableFields:
|
|
3536
|
-
}, "strip",
|
|
3533
|
+
search: zod0.ZodOptional<zod0.ZodObject<{
|
|
3534
|
+
query: zod0.ZodString;
|
|
3535
|
+
searchableFields: zod0.ZodArray<zod0.ZodString, "many">;
|
|
3536
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3537
3537
|
query: string;
|
|
3538
3538
|
searchableFields: string[];
|
|
3539
3539
|
}, {
|
|
3540
3540
|
query: string;
|
|
3541
3541
|
searchableFields: string[];
|
|
3542
3542
|
}>>;
|
|
3543
|
-
}, "strip",
|
|
3543
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3544
3544
|
created_at?: {
|
|
3545
3545
|
operator: "isEmpty" | "isNotEmpty";
|
|
3546
3546
|
values?: any[] | undefined;
|
|
@@ -3807,17 +3807,17 @@ declare const __VLS_export$54: vue0.DefineComponent<{}, {}, {}, {}, {}, vue0.Com
|
|
|
3807
3807
|
declare const _default$84: typeof __VLS_export$54;
|
|
3808
3808
|
//#endregion
|
|
3809
3809
|
//#region src/slices/team/team_member/teamMemberMetadata.d.ts
|
|
3810
|
-
declare const teamMemberCreateSchemaWithMetadata:
|
|
3811
|
-
team_id:
|
|
3812
|
-
user_id:
|
|
3813
|
-
role:
|
|
3814
|
-
display_name:
|
|
3815
|
-
business_phone:
|
|
3816
|
-
mobile_phone:
|
|
3817
|
-
email_address:
|
|
3818
|
-
website_address:
|
|
3819
|
-
time_zone:
|
|
3820
|
-
}, "team_id">, "strip",
|
|
3810
|
+
declare const teamMemberCreateSchemaWithMetadata: zod0.ZodObject<Omit<{
|
|
3811
|
+
team_id: zod0.ZodString;
|
|
3812
|
+
user_id: zod0.ZodString;
|
|
3813
|
+
role: zod0.ZodEnum<["owner", "manager", "member", "client"]>;
|
|
3814
|
+
display_name: zod0.ZodString;
|
|
3815
|
+
business_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3816
|
+
mobile_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3817
|
+
email_address: zod0.ZodString;
|
|
3818
|
+
website_address: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3819
|
+
time_zone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3820
|
+
}, "team_id">, "strip", zod0.ZodTypeAny, {
|
|
3821
3821
|
user_id: string;
|
|
3822
3822
|
display_name: string;
|
|
3823
3823
|
role: "owner" | "manager" | "member" | "client";
|
|
@@ -3836,19 +3836,19 @@ declare const teamMemberCreateSchemaWithMetadata: zod536.ZodObject<Omit<{
|
|
|
3836
3836
|
website_address?: string | null | undefined;
|
|
3837
3837
|
time_zone?: string | null | undefined;
|
|
3838
3838
|
}>;
|
|
3839
|
-
declare const teamMemberUpdateSchemaWithMetadata:
|
|
3840
|
-
team_id:
|
|
3841
|
-
user_id:
|
|
3842
|
-
role:
|
|
3843
|
-
display_name:
|
|
3844
|
-
business_phone:
|
|
3845
|
-
mobile_phone:
|
|
3846
|
-
email_address:
|
|
3847
|
-
website_address:
|
|
3848
|
-
time_zone:
|
|
3839
|
+
declare const teamMemberUpdateSchemaWithMetadata: zod0.ZodObject<{
|
|
3840
|
+
team_id: zod0.ZodString;
|
|
3841
|
+
user_id: zod0.ZodString;
|
|
3842
|
+
role: zod0.ZodEnum<["owner", "manager", "member", "client"]>;
|
|
3843
|
+
display_name: zod0.ZodString;
|
|
3844
|
+
business_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3845
|
+
mobile_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3846
|
+
email_address: zod0.ZodString;
|
|
3847
|
+
website_address: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3848
|
+
time_zone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3849
3849
|
} & {
|
|
3850
|
-
id:
|
|
3851
|
-
}, "strip",
|
|
3850
|
+
id: zod0.ZodString;
|
|
3851
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3852
3852
|
id: string;
|
|
3853
3853
|
user_id: string;
|
|
3854
3854
|
display_name: string;
|
|
@@ -3881,29 +3881,29 @@ declare const _default$85: typeof __VLS_export$53;
|
|
|
3881
3881
|
* Reuse the existing TeamMemberReadSchema from the validation library
|
|
3882
3882
|
* for the data table rows - don't recreate it!
|
|
3883
3883
|
*/
|
|
3884
|
-
declare const teamMemberRowSchemaWithMetadata:
|
|
3885
|
-
id:
|
|
3886
|
-
original_id:
|
|
3887
|
-
team_id:
|
|
3888
|
-
original_team_id:
|
|
3889
|
-
user_id:
|
|
3890
|
-
original_user_id:
|
|
3891
|
-
role:
|
|
3892
|
-
display_name:
|
|
3893
|
-
business_phone:
|
|
3894
|
-
mobile_phone:
|
|
3895
|
-
email_address:
|
|
3896
|
-
website_address:
|
|
3897
|
-
time_zone:
|
|
3898
|
-
created_at:
|
|
3899
|
-
created_by:
|
|
3900
|
-
created_by_display_name:
|
|
3901
|
-
updated_at:
|
|
3902
|
-
updated_by:
|
|
3903
|
-
updated_by_display_name:
|
|
3904
|
-
deleted_at:
|
|
3905
|
-
deleted_by:
|
|
3906
|
-
}, "strip",
|
|
3884
|
+
declare const teamMemberRowSchemaWithMetadata: zod0.ZodObject<{
|
|
3885
|
+
id: zod0.ZodString;
|
|
3886
|
+
original_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodNumber>>;
|
|
3887
|
+
team_id: zod0.ZodString;
|
|
3888
|
+
original_team_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3889
|
+
user_id: zod0.ZodString;
|
|
3890
|
+
original_user_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3891
|
+
role: zod0.ZodEnum<["owner", "manager", "member", "client"]>;
|
|
3892
|
+
display_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3893
|
+
business_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3894
|
+
mobile_phone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3895
|
+
email_address: zod0.ZodString;
|
|
3896
|
+
website_address: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3897
|
+
time_zone: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3898
|
+
created_at: zod0.ZodString;
|
|
3899
|
+
created_by: zod0.ZodString;
|
|
3900
|
+
created_by_display_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3901
|
+
updated_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3902
|
+
updated_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3903
|
+
updated_by_display_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3904
|
+
deleted_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3905
|
+
deleted_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
3906
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
3907
3907
|
id: string;
|
|
3908
3908
|
created_at: string;
|
|
3909
3909
|
user_id: string;
|
|
@@ -3912,11 +3912,11 @@ declare const teamMemberRowSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3912
3912
|
role: "owner" | "manager" | "member" | "client";
|
|
3913
3913
|
email_address: string;
|
|
3914
3914
|
updated_at?: string | null | undefined;
|
|
3915
|
+
display_name?: string | null | undefined;
|
|
3916
|
+
original_id?: number | null | undefined;
|
|
3915
3917
|
created_by_display_name?: string | null | undefined;
|
|
3916
3918
|
updated_by?: string | null | undefined;
|
|
3917
3919
|
updated_by_display_name?: string | null | undefined;
|
|
3918
|
-
display_name?: string | null | undefined;
|
|
3919
|
-
original_id?: number | null | undefined;
|
|
3920
3920
|
original_team_id?: string | null | undefined;
|
|
3921
3921
|
original_user_id?: string | null | undefined;
|
|
3922
3922
|
business_phone?: string | null | undefined;
|
|
@@ -3934,11 +3934,11 @@ declare const teamMemberRowSchemaWithMetadata: zod536.ZodObject<{
|
|
|
3934
3934
|
role: "owner" | "manager" | "member" | "client";
|
|
3935
3935
|
email_address: string;
|
|
3936
3936
|
updated_at?: string | null | undefined;
|
|
3937
|
+
display_name?: string | null | undefined;
|
|
3938
|
+
original_id?: number | null | undefined;
|
|
3937
3939
|
created_by_display_name?: string | null | undefined;
|
|
3938
3940
|
updated_by?: string | null | undefined;
|
|
3939
3941
|
updated_by_display_name?: string | null | undefined;
|
|
3940
|
-
display_name?: string | null | undefined;
|
|
3941
|
-
original_id?: number | null | undefined;
|
|
3942
3942
|
original_team_id?: string | null | undefined;
|
|
3943
3943
|
original_user_id?: string | null | undefined;
|
|
3944
3944
|
business_phone?: string | null | undefined;
|
|
@@ -3992,18 +3992,18 @@ declare const noteRowSchemaWithMetadata: z.ZodObject<{
|
|
|
3992
3992
|
}, "strip", z.ZodTypeAny, {
|
|
3993
3993
|
id: string;
|
|
3994
3994
|
created_at: string;
|
|
3995
|
-
created_by: string;
|
|
3996
|
-
record_type: "user" | "app_setting" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
3997
3995
|
record_id: string;
|
|
3996
|
+
record_type: "user" | "app_setting" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
3997
|
+
created_by: string;
|
|
3998
3998
|
is_internal: boolean;
|
|
3999
3999
|
title?: string | null | undefined;
|
|
4000
4000
|
updated_at?: string | null | undefined;
|
|
4001
|
+
archived_at?: string | null | undefined;
|
|
4002
|
+
original_id?: number | null | undefined;
|
|
4001
4003
|
created_by_display_name?: string | null | undefined;
|
|
4002
4004
|
updated_by?: string | null | undefined;
|
|
4003
|
-
archived_at?: string | null | undefined;
|
|
4004
4005
|
updated_by_display_name?: string | null | undefined;
|
|
4005
4006
|
archived_by?: string | null | undefined;
|
|
4006
|
-
original_id?: number | null | undefined;
|
|
4007
4007
|
deleted_at?: string | null | undefined;
|
|
4008
4008
|
deleted_by?: string | null | undefined;
|
|
4009
4009
|
tag?: string | null | undefined;
|
|
@@ -4011,18 +4011,18 @@ declare const noteRowSchemaWithMetadata: z.ZodObject<{
|
|
|
4011
4011
|
}, {
|
|
4012
4012
|
id: string;
|
|
4013
4013
|
created_at: string;
|
|
4014
|
-
created_by: string;
|
|
4015
|
-
record_type: "user" | "app_setting" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
4016
4014
|
record_id: string;
|
|
4015
|
+
record_type: "user" | "app_setting" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
4016
|
+
created_by: string;
|
|
4017
4017
|
is_internal: boolean;
|
|
4018
4018
|
title?: string | null | undefined;
|
|
4019
4019
|
updated_at?: string | null | undefined;
|
|
4020
|
+
archived_at?: string | null | undefined;
|
|
4021
|
+
original_id?: number | null | undefined;
|
|
4020
4022
|
created_by_display_name?: string | null | undefined;
|
|
4021
4023
|
updated_by?: string | null | undefined;
|
|
4022
|
-
archived_at?: string | null | undefined;
|
|
4023
4024
|
updated_by_display_name?: string | null | undefined;
|
|
4024
4025
|
archived_by?: string | null | undefined;
|
|
4025
|
-
original_id?: number | null | undefined;
|
|
4026
4026
|
deleted_at?: string | null | undefined;
|
|
4027
4027
|
deleted_by?: string | null | undefined;
|
|
4028
4028
|
tag?: string | null | undefined;
|
|
@@ -4045,35 +4045,35 @@ declare const __VLS_export$50: vue0.DefineComponent<Props$14, {}, {}, {}, {}, vu
|
|
|
4045
4045
|
declare const _default$30: typeof __VLS_export$50;
|
|
4046
4046
|
//#endregion
|
|
4047
4047
|
//#region src/slices/note/noteFormMetadata.d.ts
|
|
4048
|
-
declare const noteCreateMetadata:
|
|
4049
|
-
record_id:
|
|
4050
|
-
record_type:
|
|
4051
|
-
tag:
|
|
4052
|
-
title:
|
|
4053
|
-
body:
|
|
4054
|
-
original_id:
|
|
4055
|
-
is_internal:
|
|
4056
|
-
}, "
|
|
4048
|
+
declare const noteCreateMetadata: zod0.ZodObject<Pick<{
|
|
4049
|
+
record_id: zod0.ZodString;
|
|
4050
|
+
record_type: zod0.ZodEnum<["app_setting", "attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff", "user_consent"]>;
|
|
4051
|
+
tag: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4052
|
+
title: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4053
|
+
body: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4054
|
+
original_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodNumber>>;
|
|
4055
|
+
is_internal: zod0.ZodDefault<zod0.ZodOptional<zod0.ZodBoolean>>;
|
|
4056
|
+
}, "tag" | "body" | "is_internal">, "strip", zod0.ZodTypeAny, {
|
|
4057
4057
|
is_internal: boolean;
|
|
4058
4058
|
tag?: string | null | undefined;
|
|
4059
4059
|
body?: string | null | undefined;
|
|
4060
4060
|
}, {
|
|
4061
|
-
is_internal?: boolean | undefined;
|
|
4062
4061
|
tag?: string | null | undefined;
|
|
4063
4062
|
body?: string | null | undefined;
|
|
4063
|
+
is_internal?: boolean | undefined;
|
|
4064
4064
|
}>;
|
|
4065
4065
|
//#endregion
|
|
4066
4066
|
//#region src/slices/note/noteUpdateMetadata.d.ts
|
|
4067
|
-
declare const noteUpdateMetadata:
|
|
4068
|
-
id:
|
|
4069
|
-
record_id:
|
|
4070
|
-
record_type:
|
|
4071
|
-
tag:
|
|
4072
|
-
title:
|
|
4073
|
-
body:
|
|
4074
|
-
original_id:
|
|
4075
|
-
is_internal:
|
|
4076
|
-
}, "tag" | "body">, "strip",
|
|
4067
|
+
declare const noteUpdateMetadata: zod0.ZodObject<Pick<{
|
|
4068
|
+
id: zod0.ZodString;
|
|
4069
|
+
record_id: zod0.ZodOptional<zod0.ZodString>;
|
|
4070
|
+
record_type: zod0.ZodOptional<zod0.ZodEnum<["app_setting", "attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff", "user_consent"]>>;
|
|
4071
|
+
tag: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4072
|
+
title: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4073
|
+
body: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4074
|
+
original_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodNumber>>;
|
|
4075
|
+
is_internal: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4076
|
+
}, "tag" | "body">, "strip", zod0.ZodTypeAny, {
|
|
4077
4077
|
tag?: string | null | undefined;
|
|
4078
4078
|
body?: string | null | undefined;
|
|
4079
4079
|
}, {
|
|
@@ -4440,12 +4440,12 @@ declare const __VLS_export$26: vue0.DefineComponent<Props$7, {}, {}, {}, {}, vue
|
|
|
4440
4440
|
declare const _default$80: typeof __VLS_export$26;
|
|
4441
4441
|
//#endregion
|
|
4442
4442
|
//#region src/slices/support_ticket/customer/customerSupportTicketMetadata.d.ts
|
|
4443
|
-
declare const customerSupportTicketCreateSchemaWithMetadata:
|
|
4444
|
-
title:
|
|
4445
|
-
description:
|
|
4446
|
-
type:
|
|
4447
|
-
priority:
|
|
4448
|
-
}, "strip",
|
|
4443
|
+
declare const customerSupportTicketCreateSchemaWithMetadata: zod0.ZodObject<{
|
|
4444
|
+
title: zod0.ZodString;
|
|
4445
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4446
|
+
type: zod0.ZodDefault<zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>>;
|
|
4447
|
+
priority: zod0.ZodDefault<zod0.ZodNumber>;
|
|
4448
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4449
4449
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4450
4450
|
title: string;
|
|
4451
4451
|
priority: number;
|
|
@@ -4456,14 +4456,14 @@ declare const customerSupportTicketCreateSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4456
4456
|
description?: string | null | undefined;
|
|
4457
4457
|
priority?: number | undefined;
|
|
4458
4458
|
}>;
|
|
4459
|
-
declare const customerSupportTicketUpdateSchemaWithMetadata:
|
|
4460
|
-
title:
|
|
4461
|
-
description:
|
|
4462
|
-
type:
|
|
4463
|
-
priority:
|
|
4459
|
+
declare const customerSupportTicketUpdateSchemaWithMetadata: zod0.ZodObject<{
|
|
4460
|
+
title: zod0.ZodString;
|
|
4461
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4462
|
+
type: zod0.ZodDefault<zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>>;
|
|
4463
|
+
priority: zod0.ZodDefault<zod0.ZodNumber>;
|
|
4464
4464
|
} & {
|
|
4465
|
-
id:
|
|
4466
|
-
}, "strip",
|
|
4465
|
+
id: zod0.ZodString;
|
|
4466
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4467
4467
|
id: string;
|
|
4468
4468
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4469
4469
|
title: string;
|
|
@@ -4482,44 +4482,44 @@ declare const customerSupportTicketUpdateSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4482
4482
|
* Reuse the existing CustomerSupportTicketReadSchema from the validation library
|
|
4483
4483
|
* for the data table rows - don't recreate it!
|
|
4484
4484
|
*/
|
|
4485
|
-
declare const customerSupportTicketRowSchemaWithMetadata:
|
|
4486
|
-
id:
|
|
4487
|
-
display_id:
|
|
4488
|
-
display_id_prefix:
|
|
4489
|
-
title:
|
|
4490
|
-
description:
|
|
4491
|
-
type:
|
|
4492
|
-
priority:
|
|
4493
|
-
status:
|
|
4494
|
-
is_locked:
|
|
4495
|
-
created_by_display_name:
|
|
4496
|
-
credit_value:
|
|
4497
|
-
start_at:
|
|
4498
|
-
target_at:
|
|
4499
|
-
completed_at:
|
|
4500
|
-
locked_approval_at:
|
|
4501
|
-
created_by:
|
|
4502
|
-
created_at:
|
|
4503
|
-
updated_by:
|
|
4504
|
-
updated_at:
|
|
4505
|
-
archived_at:
|
|
4506
|
-
my_subscription:
|
|
4507
|
-
id:
|
|
4508
|
-
record_type:
|
|
4509
|
-
record_id:
|
|
4510
|
-
user_id:
|
|
4511
|
-
user_id_display_name:
|
|
4512
|
-
subscribed_events:
|
|
4513
|
-
created_at:
|
|
4514
|
-
created_by:
|
|
4515
|
-
created_by_display_name:
|
|
4516
|
-
}, "strip",
|
|
4485
|
+
declare const customerSupportTicketRowSchemaWithMetadata: zod0.ZodObject<{
|
|
4486
|
+
id: zod0.ZodString;
|
|
4487
|
+
display_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4488
|
+
display_id_prefix: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4489
|
+
title: zod0.ZodString;
|
|
4490
|
+
description: zod0.ZodString;
|
|
4491
|
+
type: zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
4492
|
+
priority: zod0.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
4493
|
+
status: zod0.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>;
|
|
4494
|
+
is_locked: zod0.ZodBoolean;
|
|
4495
|
+
created_by_display_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4496
|
+
credit_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4497
|
+
start_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4498
|
+
target_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4499
|
+
completed_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4500
|
+
locked_approval_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4501
|
+
created_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4502
|
+
created_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4503
|
+
updated_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4504
|
+
updated_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4505
|
+
archived_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4506
|
+
my_subscription: zod0.ZodOptional<zod0.ZodNullable<zod0.ZodObject<{
|
|
4507
|
+
id: zod0.ZodString;
|
|
4508
|
+
record_type: zod0.ZodEnum<["app_setting", "attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff", "user_consent"]>;
|
|
4509
|
+
record_id: zod0.ZodString;
|
|
4510
|
+
user_id: zod0.ZodString;
|
|
4511
|
+
user_id_display_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4512
|
+
subscribed_events: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>>;
|
|
4513
|
+
created_at: zod0.ZodString;
|
|
4514
|
+
created_by: zod0.ZodString;
|
|
4515
|
+
created_by_display_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
4516
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4517
4517
|
id: string;
|
|
4518
4518
|
created_at: string;
|
|
4519
4519
|
user_id: string;
|
|
4520
|
-
created_by: string;
|
|
4521
|
-
record_type: "user" | "app_setting" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
4522
4520
|
record_id: string;
|
|
4521
|
+
record_type: "user" | "app_setting" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
4522
|
+
created_by: string;
|
|
4523
4523
|
created_by_display_name?: string | null | undefined;
|
|
4524
4524
|
user_id_display_name?: string | null | undefined;
|
|
4525
4525
|
subscribed_events?: string[] | null | undefined;
|
|
@@ -4527,14 +4527,14 @@ declare const customerSupportTicketRowSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4527
4527
|
id: string;
|
|
4528
4528
|
created_at: string;
|
|
4529
4529
|
user_id: string;
|
|
4530
|
-
created_by: string;
|
|
4531
|
-
record_type: "user" | "app_setting" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
4532
4530
|
record_id: string;
|
|
4531
|
+
record_type: "user" | "app_setting" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
4532
|
+
created_by: string;
|
|
4533
4533
|
created_by_display_name?: string | null | undefined;
|
|
4534
4534
|
user_id_display_name?: string | null | undefined;
|
|
4535
4535
|
subscribed_events?: string[] | null | undefined;
|
|
4536
4536
|
}>>>;
|
|
4537
|
-
}, "strip",
|
|
4537
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4538
4538
|
id: string;
|
|
4539
4539
|
status: "PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED";
|
|
4540
4540
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
@@ -4544,24 +4544,24 @@ declare const customerSupportTicketRowSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4544
4544
|
is_locked: boolean;
|
|
4545
4545
|
created_at?: string | null | undefined;
|
|
4546
4546
|
updated_at?: string | null | undefined;
|
|
4547
|
+
archived_at?: string | null | undefined;
|
|
4548
|
+
created_by?: string | null | undefined;
|
|
4549
|
+
created_by_display_name?: string | null | undefined;
|
|
4550
|
+
updated_by?: string | null | undefined;
|
|
4547
4551
|
display_id?: string | null | undefined;
|
|
4548
4552
|
display_id_prefix?: string | null | undefined;
|
|
4549
|
-
created_by_display_name?: string | null | undefined;
|
|
4550
4553
|
credit_value?: string | null | undefined;
|
|
4551
4554
|
start_at?: string | null | undefined;
|
|
4552
4555
|
target_at?: string | null | undefined;
|
|
4553
4556
|
completed_at?: string | null | undefined;
|
|
4554
4557
|
locked_approval_at?: string | null | undefined;
|
|
4555
|
-
created_by?: string | null | undefined;
|
|
4556
|
-
updated_by?: string | null | undefined;
|
|
4557
|
-
archived_at?: string | null | undefined;
|
|
4558
4558
|
my_subscription?: {
|
|
4559
4559
|
id: string;
|
|
4560
4560
|
created_at: string;
|
|
4561
4561
|
user_id: string;
|
|
4562
|
-
created_by: string;
|
|
4563
|
-
record_type: "user" | "app_setting" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
4564
4562
|
record_id: string;
|
|
4563
|
+
record_type: "user" | "app_setting" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
4564
|
+
created_by: string;
|
|
4565
4565
|
created_by_display_name?: string | null | undefined;
|
|
4566
4566
|
user_id_display_name?: string | null | undefined;
|
|
4567
4567
|
subscribed_events?: string[] | null | undefined;
|
|
@@ -4576,24 +4576,24 @@ declare const customerSupportTicketRowSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4576
4576
|
is_locked: boolean;
|
|
4577
4577
|
created_at?: string | null | undefined;
|
|
4578
4578
|
updated_at?: string | null | undefined;
|
|
4579
|
+
archived_at?: string | null | undefined;
|
|
4580
|
+
created_by?: string | null | undefined;
|
|
4581
|
+
created_by_display_name?: string | null | undefined;
|
|
4582
|
+
updated_by?: string | null | undefined;
|
|
4579
4583
|
display_id?: string | null | undefined;
|
|
4580
4584
|
display_id_prefix?: string | null | undefined;
|
|
4581
|
-
created_by_display_name?: string | null | undefined;
|
|
4582
4585
|
credit_value?: string | null | undefined;
|
|
4583
4586
|
start_at?: string | null | undefined;
|
|
4584
4587
|
target_at?: string | null | undefined;
|
|
4585
4588
|
completed_at?: string | null | undefined;
|
|
4586
4589
|
locked_approval_at?: string | null | undefined;
|
|
4587
|
-
created_by?: string | null | undefined;
|
|
4588
|
-
updated_by?: string | null | undefined;
|
|
4589
|
-
archived_at?: string | null | undefined;
|
|
4590
4590
|
my_subscription?: {
|
|
4591
4591
|
id: string;
|
|
4592
4592
|
created_at: string;
|
|
4593
4593
|
user_id: string;
|
|
4594
|
-
created_by: string;
|
|
4595
|
-
record_type: "user" | "app_setting" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
4596
4594
|
record_id: string;
|
|
4595
|
+
record_type: "user" | "app_setting" | "attachment_folder" | "attachment" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
4596
|
+
created_by: string;
|
|
4597
4597
|
created_by_display_name?: string | null | undefined;
|
|
4598
4598
|
user_id_display_name?: string | null | undefined;
|
|
4599
4599
|
subscribed_events?: string[] | null | undefined;
|
|
@@ -4601,20 +4601,20 @@ declare const customerSupportTicketRowSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4601
4601
|
}>;
|
|
4602
4602
|
//#endregion
|
|
4603
4603
|
//#region src/slices/support_ticket/staff/staffSupportTicketFiltersMetadata.d.ts
|
|
4604
|
-
declare const adminSupportTicketFiltersSchemaWithMetadata:
|
|
4605
|
-
first:
|
|
4606
|
-
after:
|
|
4607
|
-
sortBy:
|
|
4608
|
-
sortDirection:
|
|
4609
|
-
paginationToken:
|
|
4604
|
+
declare const adminSupportTicketFiltersSchemaWithMetadata: zod0.ZodObject<{
|
|
4605
|
+
first: zod0.ZodOptional<zod0.ZodNumber>;
|
|
4606
|
+
after: zod0.ZodOptional<zod0.ZodString>;
|
|
4607
|
+
sortBy: zod0.ZodOptional<zod0.ZodString>;
|
|
4608
|
+
sortDirection: zod0.ZodOptional<zod0.ZodEnum<["asc", "desc"]>>;
|
|
4609
|
+
paginationToken: zod0.ZodOptional<zod0.ZodString>;
|
|
4610
4610
|
} & {
|
|
4611
|
-
type:
|
|
4612
|
-
caseSensitive:
|
|
4611
|
+
type: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{
|
|
4612
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4613
4613
|
} & {
|
|
4614
|
-
operator:
|
|
4615
|
-
value:
|
|
4616
|
-
values:
|
|
4617
|
-
}, "strip",
|
|
4614
|
+
operator: zod0.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4615
|
+
value: zod0.ZodOptional<zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>>;
|
|
4616
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>, "many">>;
|
|
4617
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4618
4618
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4619
4619
|
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4620
4620
|
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
@@ -4635,13 +4635,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4635
4635
|
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4636
4636
|
caseSensitive?: boolean | undefined;
|
|
4637
4637
|
}>>;
|
|
4638
|
-
status:
|
|
4639
|
-
caseSensitive:
|
|
4638
|
+
status: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{
|
|
4639
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4640
4640
|
} & {
|
|
4641
|
-
operator:
|
|
4642
|
-
value:
|
|
4643
|
-
values:
|
|
4644
|
-
}, "strip",
|
|
4641
|
+
operator: zod0.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4642
|
+
value: zod0.ZodOptional<zod0.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>>;
|
|
4643
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>, "many">>;
|
|
4644
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4645
4645
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4646
4646
|
values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED")[] | undefined;
|
|
4647
4647
|
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | undefined;
|
|
@@ -4662,13 +4662,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4662
4662
|
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | undefined;
|
|
4663
4663
|
caseSensitive?: boolean | undefined;
|
|
4664
4664
|
}>>;
|
|
4665
|
-
approval_status:
|
|
4666
|
-
caseSensitive:
|
|
4665
|
+
approval_status: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{
|
|
4666
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4667
4667
|
} & {
|
|
4668
|
-
operator:
|
|
4669
|
-
value:
|
|
4670
|
-
values:
|
|
4671
|
-
}, "strip",
|
|
4668
|
+
operator: zod0.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4669
|
+
value: zod0.ZodOptional<zod0.ZodEnum<["PENDING", "APPROVED", "REJECTED", "INTERNAL"]>>;
|
|
4670
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodEnum<["PENDING", "APPROVED", "REJECTED", "INTERNAL"]>, "many">>;
|
|
4671
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4672
4672
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4673
4673
|
values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
|
|
4674
4674
|
value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
|
|
@@ -4689,13 +4689,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4689
4689
|
value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
|
|
4690
4690
|
caseSensitive?: boolean | undefined;
|
|
4691
4691
|
}>>;
|
|
4692
|
-
priority:
|
|
4693
|
-
caseSensitive:
|
|
4692
|
+
priority: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
4693
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4694
4694
|
} & {
|
|
4695
|
-
operator:
|
|
4696
|
-
value:
|
|
4697
|
-
values:
|
|
4698
|
-
}, "strip",
|
|
4695
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte", "between", "in", "notIn"]>;
|
|
4696
|
+
value: zod0.ZodOptional<zod0.ZodNumber>;
|
|
4697
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodNumber, "many">>;
|
|
4698
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4699
4699
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4700
4700
|
values?: number[] | undefined;
|
|
4701
4701
|
value?: number | undefined;
|
|
@@ -4726,13 +4726,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4726
4726
|
value?: number | undefined;
|
|
4727
4727
|
caseSensitive?: boolean | undefined;
|
|
4728
4728
|
}>>;
|
|
4729
|
-
dev_lifecycle:
|
|
4730
|
-
caseSensitive:
|
|
4729
|
+
dev_lifecycle: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{
|
|
4730
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4731
4731
|
} & {
|
|
4732
|
-
operator:
|
|
4733
|
-
value:
|
|
4734
|
-
values:
|
|
4735
|
-
}, "strip",
|
|
4732
|
+
operator: zod0.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4733
|
+
value: zod0.ZodOptional<zod0.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION", "DEPLOYED", "CANCELLED"]>>;
|
|
4734
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION", "DEPLOYED", "CANCELLED"]>, "many">>;
|
|
4735
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4736
4736
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4737
4737
|
values?: ("PENDING" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "VERIFICATION" | "DEPLOYED" | "CANCELLED")[] | undefined;
|
|
4738
4738
|
value?: "PENDING" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "VERIFICATION" | "DEPLOYED" | "CANCELLED" | undefined;
|
|
@@ -4753,12 +4753,12 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4753
4753
|
value?: "PENDING" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "VERIFICATION" | "DEPLOYED" | "CANCELLED" | undefined;
|
|
4754
4754
|
caseSensitive?: boolean | undefined;
|
|
4755
4755
|
}>>;
|
|
4756
|
-
created_by:
|
|
4757
|
-
operator:
|
|
4758
|
-
value:
|
|
4759
|
-
values:
|
|
4760
|
-
caseSensitive:
|
|
4761
|
-
}, "strip",
|
|
4756
|
+
created_by: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
4757
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
4758
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
4759
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
4760
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4761
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4762
4762
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4763
4763
|
values?: string[] | undefined;
|
|
4764
4764
|
value?: string | undefined;
|
|
@@ -4779,12 +4779,12 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4779
4779
|
value?: string | undefined;
|
|
4780
4780
|
caseSensitive?: boolean | undefined;
|
|
4781
4781
|
}>>;
|
|
4782
|
-
title:
|
|
4783
|
-
operator:
|
|
4784
|
-
value:
|
|
4785
|
-
values:
|
|
4786
|
-
caseSensitive:
|
|
4787
|
-
}, "strip",
|
|
4782
|
+
title: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
4783
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
4784
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
4785
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
4786
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4787
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4788
4788
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4789
4789
|
values?: string[] | undefined;
|
|
4790
4790
|
value?: string | undefined;
|
|
@@ -4805,12 +4805,12 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4805
4805
|
value?: string | undefined;
|
|
4806
4806
|
caseSensitive?: boolean | undefined;
|
|
4807
4807
|
}>>;
|
|
4808
|
-
description:
|
|
4809
|
-
operator:
|
|
4810
|
-
value:
|
|
4811
|
-
values:
|
|
4812
|
-
caseSensitive:
|
|
4813
|
-
}, "strip",
|
|
4808
|
+
description: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodObject<{} & {
|
|
4809
|
+
operator: zod0.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
4810
|
+
value: zod0.ZodOptional<zod0.ZodString>;
|
|
4811
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodString, "many">>;
|
|
4812
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4813
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4814
4814
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4815
4815
|
values?: string[] | undefined;
|
|
4816
4816
|
value?: string | undefined;
|
|
@@ -4831,13 +4831,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4831
4831
|
value?: string | undefined;
|
|
4832
4832
|
caseSensitive?: boolean | undefined;
|
|
4833
4833
|
}>>;
|
|
4834
|
-
is_locked:
|
|
4835
|
-
values:
|
|
4836
|
-
caseSensitive:
|
|
4834
|
+
is_locked: zod0.ZodOptional<zod0.ZodObject<{
|
|
4835
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
4836
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4837
4837
|
} & {
|
|
4838
|
-
operator:
|
|
4839
|
-
value:
|
|
4840
|
-
}, "strip",
|
|
4838
|
+
operator: zod0.ZodEnum<["eq", "ne"]>;
|
|
4839
|
+
value: zod0.ZodBoolean;
|
|
4840
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4841
4841
|
value: boolean;
|
|
4842
4842
|
operator: "eq" | "ne";
|
|
4843
4843
|
values?: any[] | undefined;
|
|
@@ -4848,13 +4848,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4848
4848
|
values?: any[] | undefined;
|
|
4849
4849
|
caseSensitive?: boolean | undefined;
|
|
4850
4850
|
}>>;
|
|
4851
|
-
credit_value:
|
|
4852
|
-
caseSensitive:
|
|
4851
|
+
credit_value: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
4852
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4853
4853
|
} & {
|
|
4854
|
-
operator:
|
|
4855
|
-
value:
|
|
4856
|
-
values:
|
|
4857
|
-
}, "strip",
|
|
4854
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte", "between", "in", "notIn"]>;
|
|
4855
|
+
value: zod0.ZodOptional<zod0.ZodNumber>;
|
|
4856
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodNumber, "many">>;
|
|
4857
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4858
4858
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4859
4859
|
values?: number[] | undefined;
|
|
4860
4860
|
value?: number | undefined;
|
|
@@ -4885,13 +4885,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4885
4885
|
value?: number | undefined;
|
|
4886
4886
|
caseSensitive?: boolean | undefined;
|
|
4887
4887
|
}>>;
|
|
4888
|
-
delivered_value:
|
|
4889
|
-
caseSensitive:
|
|
4888
|
+
delivered_value: zod0.ZodOptional<zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
4889
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4890
4890
|
} & {
|
|
4891
|
-
operator:
|
|
4892
|
-
value:
|
|
4893
|
-
values:
|
|
4894
|
-
}, "strip",
|
|
4891
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte", "between", "in", "notIn"]>;
|
|
4892
|
+
value: zod0.ZodOptional<zod0.ZodNumber>;
|
|
4893
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodNumber, "many">>;
|
|
4894
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4895
4895
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4896
4896
|
values?: number[] | undefined;
|
|
4897
4897
|
value?: number | undefined;
|
|
@@ -4922,13 +4922,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4922
4922
|
value?: number | undefined;
|
|
4923
4923
|
caseSensitive?: boolean | undefined;
|
|
4924
4924
|
}>>;
|
|
4925
|
-
created_at:
|
|
4926
|
-
value:
|
|
4927
|
-
values:
|
|
4928
|
-
caseSensitive:
|
|
4925
|
+
created_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
4926
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
4927
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
4928
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4929
4929
|
} & {
|
|
4930
|
-
operator:
|
|
4931
|
-
}, "strip",
|
|
4930
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
4931
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4932
4932
|
operator: "isEmpty" | "isNotEmpty";
|
|
4933
4933
|
values?: any[] | undefined;
|
|
4934
4934
|
value?: any;
|
|
@@ -4948,13 +4948,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4948
4948
|
values?: any[] | undefined;
|
|
4949
4949
|
value?: any;
|
|
4950
4950
|
caseSensitive?: boolean | undefined;
|
|
4951
|
-
}>,
|
|
4952
|
-
value:
|
|
4953
|
-
caseSensitive:
|
|
4951
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
4952
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
4953
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4954
4954
|
} & {
|
|
4955
|
-
operator:
|
|
4956
|
-
values:
|
|
4957
|
-
}, "strip",
|
|
4955
|
+
operator: zod0.ZodLiteral<"between">;
|
|
4956
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
4957
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4958
4958
|
values: string[];
|
|
4959
4959
|
operator: "between";
|
|
4960
4960
|
value?: any;
|
|
@@ -4984,13 +4984,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
4984
4984
|
operator: "between";
|
|
4985
4985
|
value?: any;
|
|
4986
4986
|
caseSensitive?: boolean | undefined;
|
|
4987
|
-
}>,
|
|
4988
|
-
values:
|
|
4989
|
-
caseSensitive:
|
|
4987
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
4988
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
4989
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
4990
4990
|
} & {
|
|
4991
|
-
operator:
|
|
4992
|
-
value:
|
|
4993
|
-
}, "strip",
|
|
4991
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
4992
|
+
value: zod0.ZodString;
|
|
4993
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
4994
4994
|
value: string;
|
|
4995
4995
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
4996
4996
|
values?: any[] | undefined;
|
|
@@ -5011,13 +5011,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5011
5011
|
values?: any[] | undefined;
|
|
5012
5012
|
caseSensitive?: boolean | undefined;
|
|
5013
5013
|
}>]>>;
|
|
5014
|
-
updated_at:
|
|
5015
|
-
value:
|
|
5016
|
-
values:
|
|
5017
|
-
caseSensitive:
|
|
5014
|
+
updated_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
5015
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5016
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5017
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5018
5018
|
} & {
|
|
5019
|
-
operator:
|
|
5020
|
-
}, "strip",
|
|
5019
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
5020
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5021
5021
|
operator: "isEmpty" | "isNotEmpty";
|
|
5022
5022
|
values?: any[] | undefined;
|
|
5023
5023
|
value?: any;
|
|
@@ -5037,13 +5037,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5037
5037
|
values?: any[] | undefined;
|
|
5038
5038
|
value?: any;
|
|
5039
5039
|
caseSensitive?: boolean | undefined;
|
|
5040
|
-
}>,
|
|
5041
|
-
value:
|
|
5042
|
-
caseSensitive:
|
|
5040
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
5041
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5042
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5043
5043
|
} & {
|
|
5044
|
-
operator:
|
|
5045
|
-
values:
|
|
5046
|
-
}, "strip",
|
|
5044
|
+
operator: zod0.ZodLiteral<"between">;
|
|
5045
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
5046
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5047
5047
|
values: string[];
|
|
5048
5048
|
operator: "between";
|
|
5049
5049
|
value?: any;
|
|
@@ -5073,13 +5073,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5073
5073
|
operator: "between";
|
|
5074
5074
|
value?: any;
|
|
5075
5075
|
caseSensitive?: boolean | undefined;
|
|
5076
|
-
}>,
|
|
5077
|
-
values:
|
|
5078
|
-
caseSensitive:
|
|
5076
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
5077
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5078
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5079
5079
|
} & {
|
|
5080
|
-
operator:
|
|
5081
|
-
value:
|
|
5082
|
-
}, "strip",
|
|
5080
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
5081
|
+
value: zod0.ZodString;
|
|
5082
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5083
5083
|
value: string;
|
|
5084
5084
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
5085
5085
|
values?: any[] | undefined;
|
|
@@ -5100,13 +5100,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5100
5100
|
values?: any[] | undefined;
|
|
5101
5101
|
caseSensitive?: boolean | undefined;
|
|
5102
5102
|
}>]>>;
|
|
5103
|
-
start_at:
|
|
5104
|
-
value:
|
|
5105
|
-
values:
|
|
5106
|
-
caseSensitive:
|
|
5103
|
+
start_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
5104
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5105
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5106
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5107
5107
|
} & {
|
|
5108
|
-
operator:
|
|
5109
|
-
}, "strip",
|
|
5108
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
5109
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5110
5110
|
operator: "isEmpty" | "isNotEmpty";
|
|
5111
5111
|
values?: any[] | undefined;
|
|
5112
5112
|
value?: any;
|
|
@@ -5126,13 +5126,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5126
5126
|
values?: any[] | undefined;
|
|
5127
5127
|
value?: any;
|
|
5128
5128
|
caseSensitive?: boolean | undefined;
|
|
5129
|
-
}>,
|
|
5130
|
-
value:
|
|
5131
|
-
caseSensitive:
|
|
5129
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
5130
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5131
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5132
5132
|
} & {
|
|
5133
|
-
operator:
|
|
5134
|
-
values:
|
|
5135
|
-
}, "strip",
|
|
5133
|
+
operator: zod0.ZodLiteral<"between">;
|
|
5134
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
5135
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5136
5136
|
values: string[];
|
|
5137
5137
|
operator: "between";
|
|
5138
5138
|
value?: any;
|
|
@@ -5162,13 +5162,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5162
5162
|
operator: "between";
|
|
5163
5163
|
value?: any;
|
|
5164
5164
|
caseSensitive?: boolean | undefined;
|
|
5165
|
-
}>,
|
|
5166
|
-
values:
|
|
5167
|
-
caseSensitive:
|
|
5165
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
5166
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5167
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5168
5168
|
} & {
|
|
5169
|
-
operator:
|
|
5170
|
-
value:
|
|
5171
|
-
}, "strip",
|
|
5169
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
5170
|
+
value: zod0.ZodString;
|
|
5171
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5172
5172
|
value: string;
|
|
5173
5173
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
5174
5174
|
values?: any[] | undefined;
|
|
@@ -5189,13 +5189,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5189
5189
|
values?: any[] | undefined;
|
|
5190
5190
|
caseSensitive?: boolean | undefined;
|
|
5191
5191
|
}>]>>;
|
|
5192
|
-
target_at:
|
|
5193
|
-
value:
|
|
5194
|
-
values:
|
|
5195
|
-
caseSensitive:
|
|
5192
|
+
target_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
5193
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5194
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5195
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5196
5196
|
} & {
|
|
5197
|
-
operator:
|
|
5198
|
-
}, "strip",
|
|
5197
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
5198
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5199
5199
|
operator: "isEmpty" | "isNotEmpty";
|
|
5200
5200
|
values?: any[] | undefined;
|
|
5201
5201
|
value?: any;
|
|
@@ -5215,13 +5215,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5215
5215
|
values?: any[] | undefined;
|
|
5216
5216
|
value?: any;
|
|
5217
5217
|
caseSensitive?: boolean | undefined;
|
|
5218
|
-
}>,
|
|
5219
|
-
value:
|
|
5220
|
-
caseSensitive:
|
|
5218
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
5219
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5220
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5221
5221
|
} & {
|
|
5222
|
-
operator:
|
|
5223
|
-
values:
|
|
5224
|
-
}, "strip",
|
|
5222
|
+
operator: zod0.ZodLiteral<"between">;
|
|
5223
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
5224
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5225
5225
|
values: string[];
|
|
5226
5226
|
operator: "between";
|
|
5227
5227
|
value?: any;
|
|
@@ -5251,13 +5251,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5251
5251
|
operator: "between";
|
|
5252
5252
|
value?: any;
|
|
5253
5253
|
caseSensitive?: boolean | undefined;
|
|
5254
|
-
}>,
|
|
5255
|
-
values:
|
|
5256
|
-
caseSensitive:
|
|
5254
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
5255
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5256
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5257
5257
|
} & {
|
|
5258
|
-
operator:
|
|
5259
|
-
value:
|
|
5260
|
-
}, "strip",
|
|
5258
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
5259
|
+
value: zod0.ZodString;
|
|
5260
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5261
5261
|
value: string;
|
|
5262
5262
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
5263
5263
|
values?: any[] | undefined;
|
|
@@ -5278,13 +5278,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5278
5278
|
values?: any[] | undefined;
|
|
5279
5279
|
caseSensitive?: boolean | undefined;
|
|
5280
5280
|
}>]>>;
|
|
5281
|
-
completed_at:
|
|
5282
|
-
value:
|
|
5283
|
-
values:
|
|
5284
|
-
caseSensitive:
|
|
5281
|
+
completed_at: zod0.ZodOptional<zod0.ZodUnion<[zod0.ZodEffects<zod0.ZodObject<{
|
|
5282
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5283
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5284
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5285
5285
|
} & {
|
|
5286
|
-
operator:
|
|
5287
|
-
}, "strip",
|
|
5286
|
+
operator: zod0.ZodEnum<["isEmpty", "isNotEmpty"]>;
|
|
5287
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5288
5288
|
operator: "isEmpty" | "isNotEmpty";
|
|
5289
5289
|
values?: any[] | undefined;
|
|
5290
5290
|
value?: any;
|
|
@@ -5304,13 +5304,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5304
5304
|
values?: any[] | undefined;
|
|
5305
5305
|
value?: any;
|
|
5306
5306
|
caseSensitive?: boolean | undefined;
|
|
5307
|
-
}>,
|
|
5308
|
-
value:
|
|
5309
|
-
caseSensitive:
|
|
5307
|
+
}>, zod0.ZodEffects<zod0.ZodEffects<zod0.ZodObject<{
|
|
5308
|
+
value: zod0.ZodOptional<zod0.ZodAny>;
|
|
5309
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5310
5310
|
} & {
|
|
5311
|
-
operator:
|
|
5312
|
-
values:
|
|
5313
|
-
}, "strip",
|
|
5311
|
+
operator: zod0.ZodLiteral<"between">;
|
|
5312
|
+
values: zod0.ZodArray<zod0.ZodString, "many">;
|
|
5313
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5314
5314
|
values: string[];
|
|
5315
5315
|
operator: "between";
|
|
5316
5316
|
value?: any;
|
|
@@ -5340,13 +5340,13 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5340
5340
|
operator: "between";
|
|
5341
5341
|
value?: any;
|
|
5342
5342
|
caseSensitive?: boolean | undefined;
|
|
5343
|
-
}>,
|
|
5344
|
-
values:
|
|
5345
|
-
caseSensitive:
|
|
5343
|
+
}>, zod0.ZodEffects<zod0.ZodObject<{
|
|
5344
|
+
values: zod0.ZodOptional<zod0.ZodArray<zod0.ZodAny, "many">>;
|
|
5345
|
+
caseSensitive: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5346
5346
|
} & {
|
|
5347
|
-
operator:
|
|
5348
|
-
value:
|
|
5349
|
-
}, "strip",
|
|
5347
|
+
operator: zod0.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte"]>;
|
|
5348
|
+
value: zod0.ZodString;
|
|
5349
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5350
5350
|
value: string;
|
|
5351
5351
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
5352
5352
|
values?: any[] | undefined;
|
|
@@ -5367,17 +5367,17 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5367
5367
|
values?: any[] | undefined;
|
|
5368
5368
|
caseSensitive?: boolean | undefined;
|
|
5369
5369
|
}>]>>;
|
|
5370
|
-
search:
|
|
5371
|
-
query:
|
|
5372
|
-
searchableFields:
|
|
5373
|
-
}, "strip",
|
|
5370
|
+
search: zod0.ZodOptional<zod0.ZodObject<{
|
|
5371
|
+
query: zod0.ZodString;
|
|
5372
|
+
searchableFields: zod0.ZodArray<zod0.ZodString, "many">;
|
|
5373
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5374
5374
|
query: string;
|
|
5375
5375
|
searchableFields: string[];
|
|
5376
5376
|
}, {
|
|
5377
5377
|
query: string;
|
|
5378
5378
|
searchableFields: string[];
|
|
5379
5379
|
}>>;
|
|
5380
|
-
}, "strip",
|
|
5380
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5381
5381
|
created_at?: {
|
|
5382
5382
|
operator: "isEmpty" | "isNotEmpty";
|
|
5383
5383
|
values?: any[] | undefined;
|
|
@@ -5438,6 +5438,17 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5438
5438
|
value?: string | undefined;
|
|
5439
5439
|
caseSensitive?: boolean | undefined;
|
|
5440
5440
|
} | undefined;
|
|
5441
|
+
first?: number | undefined;
|
|
5442
|
+
after?: string | undefined;
|
|
5443
|
+
sortBy?: string | undefined;
|
|
5444
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5445
|
+
paginationToken?: string | undefined;
|
|
5446
|
+
created_by?: {
|
|
5447
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5448
|
+
values?: string[] | undefined;
|
|
5449
|
+
value?: string | undefined;
|
|
5450
|
+
caseSensitive?: boolean | undefined;
|
|
5451
|
+
} | undefined;
|
|
5441
5452
|
priority?: {
|
|
5442
5453
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5443
5454
|
values?: number[] | undefined;
|
|
@@ -5504,17 +5515,6 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5504
5515
|
values?: any[] | undefined;
|
|
5505
5516
|
caseSensitive?: boolean | undefined;
|
|
5506
5517
|
} | undefined;
|
|
5507
|
-
created_by?: {
|
|
5508
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5509
|
-
values?: string[] | undefined;
|
|
5510
|
-
value?: string | undefined;
|
|
5511
|
-
caseSensitive?: boolean | undefined;
|
|
5512
|
-
} | undefined;
|
|
5513
|
-
first?: number | undefined;
|
|
5514
|
-
after?: string | undefined;
|
|
5515
|
-
sortBy?: string | undefined;
|
|
5516
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5517
|
-
paginationToken?: string | undefined;
|
|
5518
5518
|
approval_status?: {
|
|
5519
5519
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
5520
5520
|
values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
|
|
@@ -5594,6 +5594,17 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5594
5594
|
value?: string | undefined;
|
|
5595
5595
|
caseSensitive?: boolean | undefined;
|
|
5596
5596
|
} | undefined;
|
|
5597
|
+
first?: number | undefined;
|
|
5598
|
+
after?: string | undefined;
|
|
5599
|
+
sortBy?: string | undefined;
|
|
5600
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5601
|
+
paginationToken?: string | undefined;
|
|
5602
|
+
created_by?: {
|
|
5603
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5604
|
+
values?: string[] | undefined;
|
|
5605
|
+
value?: string | undefined;
|
|
5606
|
+
caseSensitive?: boolean | undefined;
|
|
5607
|
+
} | undefined;
|
|
5597
5608
|
priority?: {
|
|
5598
5609
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5599
5610
|
values?: number[] | undefined;
|
|
@@ -5660,17 +5671,6 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5660
5671
|
values?: any[] | undefined;
|
|
5661
5672
|
caseSensitive?: boolean | undefined;
|
|
5662
5673
|
} | undefined;
|
|
5663
|
-
created_by?: {
|
|
5664
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5665
|
-
values?: string[] | undefined;
|
|
5666
|
-
value?: string | undefined;
|
|
5667
|
-
caseSensitive?: boolean | undefined;
|
|
5668
|
-
} | undefined;
|
|
5669
|
-
first?: number | undefined;
|
|
5670
|
-
after?: string | undefined;
|
|
5671
|
-
sortBy?: string | undefined;
|
|
5672
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5673
|
-
paginationToken?: string | undefined;
|
|
5674
5674
|
approval_status?: {
|
|
5675
5675
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
5676
5676
|
values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
|
|
@@ -5692,25 +5692,26 @@ declare const adminSupportTicketFiltersSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5692
5692
|
}>;
|
|
5693
5693
|
//#endregion
|
|
5694
5694
|
//#region src/slices/support_ticket/staff/StaffSupportTicketMetadata.d.ts
|
|
5695
|
-
declare const adminSupportTicketCreateSchemaWithMetadata:
|
|
5696
|
-
title:
|
|
5697
|
-
description:
|
|
5698
|
-
type:
|
|
5699
|
-
priority:
|
|
5700
|
-
dev_lifecycle:
|
|
5701
|
-
credit_value:
|
|
5702
|
-
delivered_value:
|
|
5703
|
-
start_at:
|
|
5704
|
-
target_at:
|
|
5705
|
-
completed_at:
|
|
5706
|
-
assigned_to:
|
|
5695
|
+
declare const adminSupportTicketCreateSchemaWithMetadata: zod0.ZodObject<{
|
|
5696
|
+
title: zod0.ZodString;
|
|
5697
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5698
|
+
type: zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
5699
|
+
priority: zod0.ZodNumber;
|
|
5700
|
+
dev_lifecycle: zod0.ZodOptional<zod0.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION"]>>;
|
|
5701
|
+
credit_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5702
|
+
delivered_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5703
|
+
start_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5704
|
+
target_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5705
|
+
completed_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5706
|
+
assigned_to: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5707
5707
|
} & {
|
|
5708
|
-
is_internal:
|
|
5709
|
-
}, "strip",
|
|
5708
|
+
is_internal: zod0.ZodOptional<zod0.ZodBoolean>;
|
|
5709
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5710
5710
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5711
5711
|
title: string;
|
|
5712
5712
|
priority: number;
|
|
5713
5713
|
description?: string | null | undefined;
|
|
5714
|
+
is_internal?: boolean | undefined;
|
|
5714
5715
|
credit_value?: string | null | undefined;
|
|
5715
5716
|
start_at?: string | null | undefined;
|
|
5716
5717
|
target_at?: string | null | undefined;
|
|
@@ -5718,12 +5719,12 @@ declare const adminSupportTicketCreateSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5718
5719
|
dev_lifecycle?: "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "VERIFICATION" | undefined;
|
|
5719
5720
|
delivered_value?: string | null | undefined;
|
|
5720
5721
|
assigned_to?: string | null | undefined;
|
|
5721
|
-
is_internal?: boolean | undefined;
|
|
5722
5722
|
}, {
|
|
5723
5723
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5724
5724
|
title: string;
|
|
5725
5725
|
priority: number;
|
|
5726
5726
|
description?: string | null | undefined;
|
|
5727
|
+
is_internal?: boolean | undefined;
|
|
5727
5728
|
credit_value?: string | null | undefined;
|
|
5728
5729
|
start_at?: string | null | undefined;
|
|
5729
5730
|
target_at?: string | null | undefined;
|
|
@@ -5731,23 +5732,22 @@ declare const adminSupportTicketCreateSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5731
5732
|
dev_lifecycle?: "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "VERIFICATION" | undefined;
|
|
5732
5733
|
delivered_value?: string | null | undefined;
|
|
5733
5734
|
assigned_to?: string | null | undefined;
|
|
5734
|
-
is_internal?: boolean | undefined;
|
|
5735
5735
|
}>;
|
|
5736
|
-
declare const adminSupportTicketUpdateSchemaWithMetadata:
|
|
5737
|
-
title:
|
|
5738
|
-
description:
|
|
5739
|
-
type:
|
|
5740
|
-
priority:
|
|
5741
|
-
dev_lifecycle:
|
|
5742
|
-
credit_value:
|
|
5743
|
-
delivered_value:
|
|
5744
|
-
start_at:
|
|
5745
|
-
target_at:
|
|
5746
|
-
completed_at:
|
|
5747
|
-
assigned_to:
|
|
5736
|
+
declare const adminSupportTicketUpdateSchemaWithMetadata: zod0.ZodObject<{
|
|
5737
|
+
title: zod0.ZodString;
|
|
5738
|
+
description: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5739
|
+
type: zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
5740
|
+
priority: zod0.ZodNumber;
|
|
5741
|
+
dev_lifecycle: zod0.ZodOptional<zod0.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION"]>>;
|
|
5742
|
+
credit_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5743
|
+
delivered_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5744
|
+
start_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5745
|
+
target_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5746
|
+
completed_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5747
|
+
assigned_to: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5748
5748
|
} & {
|
|
5749
|
-
id:
|
|
5750
|
-
}, "strip",
|
|
5749
|
+
id: zod0.ZodString;
|
|
5750
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5751
5751
|
id: string;
|
|
5752
5752
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5753
5753
|
title: string;
|
|
@@ -5780,36 +5780,36 @@ declare const adminSupportTicketUpdateSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5780
5780
|
* Reuse the existing StaffSupportTicketReadSchema from the validation library
|
|
5781
5781
|
* for the data table rows - don't recreate it!
|
|
5782
5782
|
*/
|
|
5783
|
-
declare const adminSupportTicketRowSchemaWithMetadata:
|
|
5784
|
-
id:
|
|
5785
|
-
display_id:
|
|
5786
|
-
display_id_prefix:
|
|
5787
|
-
title:
|
|
5788
|
-
description:
|
|
5789
|
-
type:
|
|
5790
|
-
priority:
|
|
5791
|
-
status:
|
|
5792
|
-
approval_status:
|
|
5793
|
-
is_locked:
|
|
5794
|
-
can_delete:
|
|
5795
|
-
created_by_display_name:
|
|
5796
|
-
assigned_to:
|
|
5797
|
-
assigned_to_display_name:
|
|
5798
|
-
dev_lifecycle:
|
|
5799
|
-
credit_value:
|
|
5800
|
-
delivered_value:
|
|
5801
|
-
start_at:
|
|
5802
|
-
target_at:
|
|
5803
|
-
completed_at:
|
|
5804
|
-
locked_approval_at:
|
|
5805
|
-
created_by:
|
|
5806
|
-
created_at:
|
|
5807
|
-
updated_by:
|
|
5808
|
-
updated_by_display_name:
|
|
5809
|
-
updated_at:
|
|
5810
|
-
archived_at:
|
|
5811
|
-
archived_by:
|
|
5812
|
-
}, "strip",
|
|
5783
|
+
declare const adminSupportTicketRowSchemaWithMetadata: zod0.ZodObject<{
|
|
5784
|
+
id: zod0.ZodString;
|
|
5785
|
+
display_id: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5786
|
+
display_id_prefix: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5787
|
+
title: zod0.ZodString;
|
|
5788
|
+
description: zod0.ZodString;
|
|
5789
|
+
type: zod0.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
5790
|
+
priority: zod0.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
5791
|
+
status: zod0.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>;
|
|
5792
|
+
approval_status: zod0.ZodEnum<["PENDING", "APPROVED", "REJECTED", "INTERNAL"]>;
|
|
5793
|
+
is_locked: zod0.ZodBoolean;
|
|
5794
|
+
can_delete: zod0.ZodBoolean;
|
|
5795
|
+
created_by_display_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5796
|
+
assigned_to: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5797
|
+
assigned_to_display_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5798
|
+
dev_lifecycle: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION", "DEPLOYED", "CANCELLED"]>>>;
|
|
5799
|
+
credit_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5800
|
+
delivered_value: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5801
|
+
start_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5802
|
+
target_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5803
|
+
completed_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5804
|
+
locked_approval_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5805
|
+
created_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5806
|
+
created_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5807
|
+
updated_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5808
|
+
updated_by_display_name: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5809
|
+
updated_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5810
|
+
archived_at: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5811
|
+
archived_by: zod0.ZodNullable<zod0.ZodOptional<zod0.ZodString>>;
|
|
5812
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
5813
5813
|
id: string;
|
|
5814
5814
|
status: "PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED";
|
|
5815
5815
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
@@ -5821,23 +5821,23 @@ declare const adminSupportTicketRowSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5821
5821
|
can_delete: boolean;
|
|
5822
5822
|
created_at?: string | null | undefined;
|
|
5823
5823
|
updated_at?: string | null | undefined;
|
|
5824
|
+
archived_at?: string | null | undefined;
|
|
5825
|
+
created_by?: string | null | undefined;
|
|
5826
|
+
created_by_display_name?: string | null | undefined;
|
|
5827
|
+
updated_by?: string | null | undefined;
|
|
5828
|
+
updated_by_display_name?: string | null | undefined;
|
|
5829
|
+
archived_by?: string | null | undefined;
|
|
5824
5830
|
display_id?: string | null | undefined;
|
|
5825
5831
|
display_id_prefix?: string | null | undefined;
|
|
5826
|
-
created_by_display_name?: string | null | undefined;
|
|
5827
5832
|
credit_value?: string | null | undefined;
|
|
5828
5833
|
start_at?: string | null | undefined;
|
|
5829
5834
|
target_at?: string | null | undefined;
|
|
5830
5835
|
completed_at?: string | null | undefined;
|
|
5831
5836
|
locked_approval_at?: string | null | undefined;
|
|
5832
|
-
created_by?: string | null | undefined;
|
|
5833
|
-
updated_by?: string | null | undefined;
|
|
5834
|
-
archived_at?: string | null | undefined;
|
|
5835
5837
|
dev_lifecycle?: "PENDING" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "VERIFICATION" | "DEPLOYED" | "CANCELLED" | null | undefined;
|
|
5836
5838
|
delivered_value?: string | null | undefined;
|
|
5837
5839
|
assigned_to?: string | null | undefined;
|
|
5838
5840
|
assigned_to_display_name?: string | null | undefined;
|
|
5839
|
-
updated_by_display_name?: string | null | undefined;
|
|
5840
|
-
archived_by?: string | null | undefined;
|
|
5841
5841
|
}, {
|
|
5842
5842
|
id: string;
|
|
5843
5843
|
status: "PENDING" | "VERIFICATION" | "CANCELLED" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED";
|
|
@@ -5850,23 +5850,23 @@ declare const adminSupportTicketRowSchemaWithMetadata: zod536.ZodObject<{
|
|
|
5850
5850
|
can_delete: boolean;
|
|
5851
5851
|
created_at?: string | null | undefined;
|
|
5852
5852
|
updated_at?: string | null | undefined;
|
|
5853
|
+
archived_at?: string | null | undefined;
|
|
5854
|
+
created_by?: string | null | undefined;
|
|
5855
|
+
created_by_display_name?: string | null | undefined;
|
|
5856
|
+
updated_by?: string | null | undefined;
|
|
5857
|
+
updated_by_display_name?: string | null | undefined;
|
|
5858
|
+
archived_by?: string | null | undefined;
|
|
5853
5859
|
display_id?: string | null | undefined;
|
|
5854
5860
|
display_id_prefix?: string | null | undefined;
|
|
5855
|
-
created_by_display_name?: string | null | undefined;
|
|
5856
5861
|
credit_value?: string | null | undefined;
|
|
5857
5862
|
start_at?: string | null | undefined;
|
|
5858
5863
|
target_at?: string | null | undefined;
|
|
5859
5864
|
completed_at?: string | null | undefined;
|
|
5860
5865
|
locked_approval_at?: string | null | undefined;
|
|
5861
|
-
created_by?: string | null | undefined;
|
|
5862
|
-
updated_by?: string | null | undefined;
|
|
5863
|
-
archived_at?: string | null | undefined;
|
|
5864
5866
|
dev_lifecycle?: "PENDING" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "VERIFICATION" | "DEPLOYED" | "CANCELLED" | null | undefined;
|
|
5865
5867
|
delivered_value?: string | null | undefined;
|
|
5866
5868
|
assigned_to?: string | null | undefined;
|
|
5867
5869
|
assigned_to_display_name?: string | null | undefined;
|
|
5868
|
-
updated_by_display_name?: string | null | undefined;
|
|
5869
|
-
archived_by?: string | null | undefined;
|
|
5870
5870
|
}>;
|
|
5871
5871
|
//#endregion
|
|
5872
5872
|
//#region src/slices/support_ticket/customer/composables/useSupportTicketPermissions.d.ts
|
|
@@ -6300,10 +6300,10 @@ declare const createUserSchemaWithMetadata: z.ZodObject<{
|
|
|
6300
6300
|
}>;
|
|
6301
6301
|
//#endregion
|
|
6302
6302
|
//#region src/slices/admin/features/user_management/updateUserMetadata.d.ts
|
|
6303
|
-
declare const updateUserSchemaWithMetadata:
|
|
6304
|
-
id:
|
|
6305
|
-
user_type:
|
|
6306
|
-
}, "strip",
|
|
6303
|
+
declare const updateUserSchemaWithMetadata: zod0.ZodObject<{
|
|
6304
|
+
id: zod0.ZodString;
|
|
6305
|
+
user_type: zod0.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
6306
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
6307
6307
|
id: string;
|
|
6308
6308
|
user_type: "super_admin" | "staff" | "lead" | "consumer";
|
|
6309
6309
|
}, {
|
|
@@ -6434,19 +6434,19 @@ declare const creditTransactionRowSchemaWithMetadata: z.ZodObject<{
|
|
|
6434
6434
|
}>;
|
|
6435
6435
|
//#endregion
|
|
6436
6436
|
//#region src/slices/customer/features/credit-management/creditFormMetadata.d.ts
|
|
6437
|
-
declare const addCreditsSchemaWithMetadata:
|
|
6438
|
-
amount:
|
|
6439
|
-
reason:
|
|
6440
|
-
}, "strip",
|
|
6437
|
+
declare const addCreditsSchemaWithMetadata: zod0.ZodObject<{
|
|
6438
|
+
amount: zod0.ZodString;
|
|
6439
|
+
reason: zod0.ZodOptional<zod0.ZodString>;
|
|
6440
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
6441
6441
|
amount: string;
|
|
6442
6442
|
reason?: string | undefined;
|
|
6443
6443
|
}, {
|
|
6444
6444
|
amount: string;
|
|
6445
6445
|
reason?: string | undefined;
|
|
6446
6446
|
}>;
|
|
6447
|
-
declare const setMonthlyAllocationSchemaWithMetadata:
|
|
6448
|
-
amount:
|
|
6449
|
-
}, "strip",
|
|
6447
|
+
declare const setMonthlyAllocationSchemaWithMetadata: zod0.ZodObject<{
|
|
6448
|
+
amount: zod0.ZodString;
|
|
6449
|
+
}, "strip", zod0.ZodTypeAny, {
|
|
6450
6450
|
amount: string;
|
|
6451
6451
|
}, {
|
|
6452
6452
|
amount: string;
|