@opencrvs/toolkit 1.8.1-rc.e23b224 → 1.8.1-rc.e59d03c
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/commons/api/router.d.ts +433 -410
- package/dist/commons/conditionals/validate.d.ts +11 -2
- package/dist/commons/events/ActionConfig.d.ts +2004 -366
- package/dist/commons/events/ActionDocument.d.ts +795 -759
- package/dist/commons/events/ActionInput.d.ts +650 -614
- package/dist/commons/events/AdvancedSearchConfig.d.ts +83 -65
- package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
- package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
- package/dist/commons/events/Draft.d.ts +48 -48
- package/dist/commons/events/EventConfig.d.ts +695 -168
- package/dist/commons/events/EventDocument.d.ts +471 -445
- package/dist/commons/events/EventIndex.d.ts +184 -62
- package/dist/commons/events/EventMetadata.d.ts +9 -9
- package/dist/commons/events/FieldConfig.d.ts +254 -43
- package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
- package/dist/commons/events/FieldValue.d.ts +12 -12
- package/dist/commons/events/FormConfig.d.ts +1032 -246
- package/dist/commons/events/PageConfig.d.ts +264 -46
- package/dist/commons/events/WorkqueueConfig.d.ts +288 -164
- package/dist/commons/events/defineConfig.d.ts +129 -30
- package/dist/commons/events/event.d.ts +68 -6
- package/dist/commons/events/field.d.ts +14 -0
- package/dist/commons/events/test.utils.d.ts +17 -13
- package/dist/commons/events/utils.d.ts +236 -60
- package/dist/conditionals/index.js +3 -2
- package/dist/events/index.js +260 -99
- package/package.json +1 -1
- package/tsconfig.json +1 -1
- package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
- package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
- package/dist/commons/conditionals/validate.test.d.ts +0 -2
- package/dist/commons/events/utils.test.d.ts +0 -2
@@ -24,22 +24,22 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
24
24
|
eventType: z.ZodOptional<z.ZodString>;
|
25
25
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
26
26
|
type: z.ZodLiteral<"anyOf">;
|
27
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
27
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
28
28
|
}, "strip", z.ZodTypeAny, {
|
29
29
|
type: "anyOf";
|
30
|
-
terms: ("ARCHIVED" | "
|
30
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
31
31
|
}, {
|
32
32
|
type: "anyOf";
|
33
|
-
terms: ("ARCHIVED" | "
|
33
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
34
34
|
}>, z.ZodObject<{
|
35
35
|
type: z.ZodLiteral<"exact">;
|
36
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
36
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
37
37
|
}, "strip", z.ZodTypeAny, {
|
38
38
|
type: "exact";
|
39
|
-
term: "ARCHIVED" | "
|
39
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
40
40
|
}, {
|
41
41
|
type: "exact";
|
42
|
-
term: "ARCHIVED" | "
|
42
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
43
43
|
}>]>>>;
|
44
44
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
45
45
|
type: z.ZodLiteral<"exact">;
|
@@ -329,13 +329,13 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
329
329
|
}>>>;
|
330
330
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
331
331
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
332
|
-
readonly
|
332
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
333
333
|
readonly INCOMPLETE: "incomplete";
|
334
334
|
readonly REJECTED: "rejected";
|
335
335
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
336
336
|
}>]>, "many">>;
|
337
337
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
338
|
-
readonly
|
338
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
339
339
|
readonly INCOMPLETE: "incomplete";
|
340
340
|
readonly REJECTED: "rejected";
|
341
341
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -351,10 +351,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
351
351
|
}, "strip", z.ZodTypeAny, {
|
352
352
|
status?: {
|
353
353
|
type: "exact";
|
354
|
-
term: "ARCHIVED" | "
|
354
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
355
355
|
} | {
|
356
356
|
type: "anyOf";
|
357
|
-
terms: ("ARCHIVED" | "
|
357
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
358
358
|
} | undefined;
|
359
359
|
data?: any;
|
360
360
|
createdByUserType?: {
|
@@ -457,10 +457,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
457
457
|
}, {
|
458
458
|
status?: {
|
459
459
|
type: "exact";
|
460
|
-
term: "ARCHIVED" | "
|
460
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
461
461
|
} | {
|
462
462
|
type: "anyOf";
|
463
|
-
terms: ("ARCHIVED" | "
|
463
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
464
464
|
} | undefined;
|
465
465
|
data?: any;
|
466
466
|
createdByUserType?: {
|
@@ -566,10 +566,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
566
566
|
clauses: {
|
567
567
|
status?: {
|
568
568
|
type: "exact";
|
569
|
-
term: "ARCHIVED" | "
|
569
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
570
570
|
} | {
|
571
571
|
type: "anyOf";
|
572
|
-
terms: ("ARCHIVED" | "
|
572
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
573
573
|
} | undefined;
|
574
574
|
data?: any;
|
575
575
|
createdByUserType?: {
|
@@ -675,10 +675,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
675
675
|
clauses: {
|
676
676
|
status?: {
|
677
677
|
type: "exact";
|
678
|
-
term: "ARCHIVED" | "
|
678
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
679
679
|
} | {
|
680
680
|
type: "anyOf";
|
681
|
-
terms: ("ARCHIVED" | "
|
681
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
682
682
|
} | undefined;
|
683
683
|
data?: any;
|
684
684
|
createdByUserType?: {
|
@@ -785,22 +785,22 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
785
785
|
eventType: z.ZodOptional<z.ZodString>;
|
786
786
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
787
787
|
type: z.ZodLiteral<"anyOf">;
|
788
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
788
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
789
789
|
}, "strip", z.ZodTypeAny, {
|
790
790
|
type: "anyOf";
|
791
|
-
terms: ("ARCHIVED" | "
|
791
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
792
792
|
}, {
|
793
793
|
type: "anyOf";
|
794
|
-
terms: ("ARCHIVED" | "
|
794
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
795
795
|
}>, z.ZodObject<{
|
796
796
|
type: z.ZodLiteral<"exact">;
|
797
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
797
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
798
798
|
}, "strip", z.ZodTypeAny, {
|
799
799
|
type: "exact";
|
800
|
-
term: "ARCHIVED" | "
|
800
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
801
801
|
}, {
|
802
802
|
type: "exact";
|
803
|
-
term: "ARCHIVED" | "
|
803
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
804
804
|
}>]>>>;
|
805
805
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
806
806
|
type: z.ZodLiteral<"exact">;
|
@@ -1090,13 +1090,13 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1090
1090
|
}>>>;
|
1091
1091
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
1092
1092
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
1093
|
-
readonly
|
1093
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
1094
1094
|
readonly INCOMPLETE: "incomplete";
|
1095
1095
|
readonly REJECTED: "rejected";
|
1096
1096
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
1097
1097
|
}>]>, "many">>;
|
1098
1098
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
1099
|
-
readonly
|
1099
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
1100
1100
|
readonly INCOMPLETE: "incomplete";
|
1101
1101
|
readonly REJECTED: "rejected";
|
1102
1102
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -1112,10 +1112,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1112
1112
|
}, "strip", z.ZodTypeAny, {
|
1113
1113
|
status?: {
|
1114
1114
|
type: "exact";
|
1115
|
-
term: "ARCHIVED" | "
|
1115
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1116
1116
|
} | {
|
1117
1117
|
type: "anyOf";
|
1118
|
-
terms: ("ARCHIVED" | "
|
1118
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1119
1119
|
} | undefined;
|
1120
1120
|
data?: any;
|
1121
1121
|
createdByUserType?: {
|
@@ -1218,10 +1218,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1218
1218
|
}, {
|
1219
1219
|
status?: {
|
1220
1220
|
type: "exact";
|
1221
|
-
term: "ARCHIVED" | "
|
1221
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1222
1222
|
} | {
|
1223
1223
|
type: "anyOf";
|
1224
|
-
terms: ("ARCHIVED" | "
|
1224
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1225
1225
|
} | undefined;
|
1226
1226
|
data?: any;
|
1227
1227
|
createdByUserType?: {
|
@@ -1327,10 +1327,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1327
1327
|
clauses: {
|
1328
1328
|
status?: {
|
1329
1329
|
type: "exact";
|
1330
|
-
term: "ARCHIVED" | "
|
1330
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1331
1331
|
} | {
|
1332
1332
|
type: "anyOf";
|
1333
|
-
terms: ("ARCHIVED" | "
|
1333
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1334
1334
|
} | undefined;
|
1335
1335
|
data?: any;
|
1336
1336
|
createdByUserType?: {
|
@@ -1436,10 +1436,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1436
1436
|
clauses: {
|
1437
1437
|
status?: {
|
1438
1438
|
type: "exact";
|
1439
|
-
term: "ARCHIVED" | "
|
1439
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1440
1440
|
} | {
|
1441
1441
|
type: "anyOf";
|
1442
|
-
terms: ("ARCHIVED" | "
|
1442
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1443
1443
|
} | undefined;
|
1444
1444
|
data?: any;
|
1445
1445
|
createdByUserType?: {
|
@@ -1580,6 +1580,11 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1580
1580
|
};
|
1581
1581
|
}>, "many">>;
|
1582
1582
|
icon: z.ZodEnum<["Archived", "Assigned", "Certified", "Close", "Collapse", "Draft", "DuplicateYellow", "Expand", "ExternalValidate", "FilledCheck", "InReview", "Offline", "Registered", "RequiresUpdates", "Sent", "Validated", "WaitingApproval", "ChartActivity", "Activity", "Archive", "ArchiveTray", "ArrowLeft", "ArrowRight", "Buildings", "Circle", "CaretDown", "CaretLeft", "CaretRight", "ChartBar", "ChartLine", "ChatCircle", "CheckSquare", "Compass", "Check", "Copy", "Database", "DotsThreeVertical", "ArrowCounterClockwise", "MagnifyingGlassMinus", "MagnifyingGlassPlus", "Export", "Eye", "EyeSlash", "Envelope", "File", "FileSearch", "FileMinus", "FilePlus", "FileText", "FileX", "Handshake", "Gear", "GitBranch", "IdentificationCard", "List", "ListBullets", "Lock", "MagnifyingGlass", "MapPin", "Medal", "NotePencil", "Paperclip", "PaperPlaneTilt", "Pen", "Pencil", "PencilSimpleLine", "Phone", "Plus", "Printer", "SignOut", "Star", "Target", "TextT", "Trash", "UploadSimple", "User", "UserPlus", "Users", "WarningCircle", "X", "CircleWavyCheck", "CircleWavyQuestion", "ArchiveBox", "ArrowCircleDown", "FileArrowUp", "FileDotted", "Files", "PencilLine", "PencilCircle", "UserCircle", "Clock", "QrCode", "Webcam", "Sun", "DeviceTabletCamera", "Globe", "Fingerprint", "PushPin", "Timer"]>;
|
1583
|
+
emptyMessage: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1584
|
+
id: string;
|
1585
|
+
description: string;
|
1586
|
+
defaultMessage: string;
|
1587
|
+
}>>;
|
1583
1588
|
}, "strip", z.ZodTypeAny, {
|
1584
1589
|
name: TranslationConfig;
|
1585
1590
|
actions: {
|
@@ -1591,10 +1596,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1591
1596
|
clauses: {
|
1592
1597
|
status?: {
|
1593
1598
|
type: "exact";
|
1594
|
-
term: "ARCHIVED" | "
|
1599
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1595
1600
|
} | {
|
1596
1601
|
type: "anyOf";
|
1597
|
-
terms: ("ARCHIVED" | "
|
1602
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1598
1603
|
} | undefined;
|
1599
1604
|
data?: any;
|
1600
1605
|
createdByUserType?: {
|
@@ -1700,10 +1705,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1700
1705
|
clauses: {
|
1701
1706
|
status?: {
|
1702
1707
|
type: "exact";
|
1703
|
-
term: "ARCHIVED" | "
|
1708
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1704
1709
|
} | {
|
1705
1710
|
type: "anyOf";
|
1706
|
-
terms: ("ARCHIVED" | "
|
1711
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1707
1712
|
} | undefined;
|
1708
1713
|
data?: any;
|
1709
1714
|
createdByUserType?: {
|
@@ -1813,6 +1818,7 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1813
1818
|
label: TranslationConfig;
|
1814
1819
|
}[];
|
1815
1820
|
icon: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer";
|
1821
|
+
emptyMessage?: TranslationConfig | undefined;
|
1816
1822
|
}, {
|
1817
1823
|
name: {
|
1818
1824
|
id: string;
|
@@ -1828,10 +1834,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1828
1834
|
clauses: {
|
1829
1835
|
status?: {
|
1830
1836
|
type: "exact";
|
1831
|
-
term: "ARCHIVED" | "
|
1837
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1832
1838
|
} | {
|
1833
1839
|
type: "anyOf";
|
1834
|
-
terms: ("ARCHIVED" | "
|
1840
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1835
1841
|
} | undefined;
|
1836
1842
|
data?: any;
|
1837
1843
|
createdByUserType?: {
|
@@ -1937,10 +1943,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1937
1943
|
clauses: {
|
1938
1944
|
status?: {
|
1939
1945
|
type: "exact";
|
1940
|
-
term: "ARCHIVED" | "
|
1946
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1941
1947
|
} | {
|
1942
1948
|
type: "anyOf";
|
1943
|
-
terms: ("ARCHIVED" | "
|
1949
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1944
1950
|
} | undefined;
|
1945
1951
|
data?: any;
|
1946
1952
|
createdByUserType?: {
|
@@ -2054,6 +2060,11 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
2054
2060
|
defaultMessage: string;
|
2055
2061
|
};
|
2056
2062
|
}[] | undefined;
|
2063
|
+
emptyMessage?: {
|
2064
|
+
id: string;
|
2065
|
+
description: string;
|
2066
|
+
defaultMessage: string;
|
2067
|
+
} | undefined;
|
2057
2068
|
}>;
|
2058
2069
|
export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
2059
2070
|
slug: z.ZodString;
|
@@ -2068,22 +2079,22 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2068
2079
|
eventType: z.ZodOptional<z.ZodString>;
|
2069
2080
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
2070
2081
|
type: z.ZodLiteral<"anyOf">;
|
2071
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
2082
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
2072
2083
|
}, "strip", z.ZodTypeAny, {
|
2073
2084
|
type: "anyOf";
|
2074
|
-
terms: ("ARCHIVED" | "
|
2085
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2075
2086
|
}, {
|
2076
2087
|
type: "anyOf";
|
2077
|
-
terms: ("ARCHIVED" | "
|
2088
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2078
2089
|
}>, z.ZodObject<{
|
2079
2090
|
type: z.ZodLiteral<"exact">;
|
2080
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
2091
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
2081
2092
|
}, "strip", z.ZodTypeAny, {
|
2082
2093
|
type: "exact";
|
2083
|
-
term: "ARCHIVED" | "
|
2094
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2084
2095
|
}, {
|
2085
2096
|
type: "exact";
|
2086
|
-
term: "ARCHIVED" | "
|
2097
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2087
2098
|
}>]>>>;
|
2088
2099
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
2089
2100
|
type: z.ZodLiteral<"exact">;
|
@@ -2373,13 +2384,13 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2373
2384
|
}>>>;
|
2374
2385
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
2375
2386
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
2376
|
-
readonly
|
2387
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
2377
2388
|
readonly INCOMPLETE: "incomplete";
|
2378
2389
|
readonly REJECTED: "rejected";
|
2379
2390
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
2380
2391
|
}>]>, "many">>;
|
2381
2392
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
2382
|
-
readonly
|
2393
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
2383
2394
|
readonly INCOMPLETE: "incomplete";
|
2384
2395
|
readonly REJECTED: "rejected";
|
2385
2396
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -2395,10 +2406,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2395
2406
|
}, "strip", z.ZodTypeAny, {
|
2396
2407
|
status?: {
|
2397
2408
|
type: "exact";
|
2398
|
-
term: "ARCHIVED" | "
|
2409
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2399
2410
|
} | {
|
2400
2411
|
type: "anyOf";
|
2401
|
-
terms: ("ARCHIVED" | "
|
2412
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2402
2413
|
} | undefined;
|
2403
2414
|
data?: any;
|
2404
2415
|
createdByUserType?: {
|
@@ -2501,10 +2512,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2501
2512
|
}, {
|
2502
2513
|
status?: {
|
2503
2514
|
type: "exact";
|
2504
|
-
term: "ARCHIVED" | "
|
2515
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2505
2516
|
} | {
|
2506
2517
|
type: "anyOf";
|
2507
|
-
terms: ("ARCHIVED" | "
|
2518
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2508
2519
|
} | undefined;
|
2509
2520
|
data?: any;
|
2510
2521
|
createdByUserType?: {
|
@@ -2610,10 +2621,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2610
2621
|
clauses: {
|
2611
2622
|
status?: {
|
2612
2623
|
type: "exact";
|
2613
|
-
term: "ARCHIVED" | "
|
2624
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2614
2625
|
} | {
|
2615
2626
|
type: "anyOf";
|
2616
|
-
terms: ("ARCHIVED" | "
|
2627
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2617
2628
|
} | undefined;
|
2618
2629
|
data?: any;
|
2619
2630
|
createdByUserType?: {
|
@@ -2719,10 +2730,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2719
2730
|
clauses: {
|
2720
2731
|
status?: {
|
2721
2732
|
type: "exact";
|
2722
|
-
term: "ARCHIVED" | "
|
2733
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2723
2734
|
} | {
|
2724
2735
|
type: "anyOf";
|
2725
|
-
terms: ("ARCHIVED" | "
|
2736
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2726
2737
|
} | undefined;
|
2727
2738
|
data?: any;
|
2728
2739
|
createdByUserType?: {
|
@@ -2829,22 +2840,22 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2829
2840
|
eventType: z.ZodOptional<z.ZodString>;
|
2830
2841
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
2831
2842
|
type: z.ZodLiteral<"anyOf">;
|
2832
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
2843
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
2833
2844
|
}, "strip", z.ZodTypeAny, {
|
2834
2845
|
type: "anyOf";
|
2835
|
-
terms: ("ARCHIVED" | "
|
2846
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2836
2847
|
}, {
|
2837
2848
|
type: "anyOf";
|
2838
|
-
terms: ("ARCHIVED" | "
|
2849
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2839
2850
|
}>, z.ZodObject<{
|
2840
2851
|
type: z.ZodLiteral<"exact">;
|
2841
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
2852
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
2842
2853
|
}, "strip", z.ZodTypeAny, {
|
2843
2854
|
type: "exact";
|
2844
|
-
term: "ARCHIVED" | "
|
2855
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2845
2856
|
}, {
|
2846
2857
|
type: "exact";
|
2847
|
-
term: "ARCHIVED" | "
|
2858
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2848
2859
|
}>]>>>;
|
2849
2860
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
2850
2861
|
type: z.ZodLiteral<"exact">;
|
@@ -3134,13 +3145,13 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3134
3145
|
}>>>;
|
3135
3146
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
3136
3147
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
3137
|
-
readonly
|
3148
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
3138
3149
|
readonly INCOMPLETE: "incomplete";
|
3139
3150
|
readonly REJECTED: "rejected";
|
3140
3151
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
3141
3152
|
}>]>, "many">>;
|
3142
3153
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
3143
|
-
readonly
|
3154
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
3144
3155
|
readonly INCOMPLETE: "incomplete";
|
3145
3156
|
readonly REJECTED: "rejected";
|
3146
3157
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -3156,10 +3167,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3156
3167
|
}, "strip", z.ZodTypeAny, {
|
3157
3168
|
status?: {
|
3158
3169
|
type: "exact";
|
3159
|
-
term: "ARCHIVED" | "
|
3170
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3160
3171
|
} | {
|
3161
3172
|
type: "anyOf";
|
3162
|
-
terms: ("ARCHIVED" | "
|
3173
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3163
3174
|
} | undefined;
|
3164
3175
|
data?: any;
|
3165
3176
|
createdByUserType?: {
|
@@ -3262,10 +3273,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3262
3273
|
}, {
|
3263
3274
|
status?: {
|
3264
3275
|
type: "exact";
|
3265
|
-
term: "ARCHIVED" | "
|
3276
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3266
3277
|
} | {
|
3267
3278
|
type: "anyOf";
|
3268
|
-
terms: ("ARCHIVED" | "
|
3279
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3269
3280
|
} | undefined;
|
3270
3281
|
data?: any;
|
3271
3282
|
createdByUserType?: {
|
@@ -3371,10 +3382,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3371
3382
|
clauses: {
|
3372
3383
|
status?: {
|
3373
3384
|
type: "exact";
|
3374
|
-
term: "ARCHIVED" | "
|
3385
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3375
3386
|
} | {
|
3376
3387
|
type: "anyOf";
|
3377
|
-
terms: ("ARCHIVED" | "
|
3388
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3378
3389
|
} | undefined;
|
3379
3390
|
data?: any;
|
3380
3391
|
createdByUserType?: {
|
@@ -3480,10 +3491,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3480
3491
|
clauses: {
|
3481
3492
|
status?: {
|
3482
3493
|
type: "exact";
|
3483
|
-
term: "ARCHIVED" | "
|
3494
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3484
3495
|
} | {
|
3485
3496
|
type: "anyOf";
|
3486
|
-
terms: ("ARCHIVED" | "
|
3497
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3487
3498
|
} | undefined;
|
3488
3499
|
data?: any;
|
3489
3500
|
createdByUserType?: {
|
@@ -3624,6 +3635,11 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3624
3635
|
};
|
3625
3636
|
}>, "many">>;
|
3626
3637
|
icon: z.ZodEnum<["Archived", "Assigned", "Certified", "Close", "Collapse", "Draft", "DuplicateYellow", "Expand", "ExternalValidate", "FilledCheck", "InReview", "Offline", "Registered", "RequiresUpdates", "Sent", "Validated", "WaitingApproval", "ChartActivity", "Activity", "Archive", "ArchiveTray", "ArrowLeft", "ArrowRight", "Buildings", "Circle", "CaretDown", "CaretLeft", "CaretRight", "ChartBar", "ChartLine", "ChatCircle", "CheckSquare", "Compass", "Check", "Copy", "Database", "DotsThreeVertical", "ArrowCounterClockwise", "MagnifyingGlassMinus", "MagnifyingGlassPlus", "Export", "Eye", "EyeSlash", "Envelope", "File", "FileSearch", "FileMinus", "FilePlus", "FileText", "FileX", "Handshake", "Gear", "GitBranch", "IdentificationCard", "List", "ListBullets", "Lock", "MagnifyingGlass", "MapPin", "Medal", "NotePencil", "Paperclip", "PaperPlaneTilt", "Pen", "Pencil", "PencilSimpleLine", "Phone", "Plus", "Printer", "SignOut", "Star", "Target", "TextT", "Trash", "UploadSimple", "User", "UserPlus", "Users", "WarningCircle", "X", "CircleWavyCheck", "CircleWavyQuestion", "ArchiveBox", "ArrowCircleDown", "FileArrowUp", "FileDotted", "Files", "PencilLine", "PencilCircle", "UserCircle", "Clock", "QrCode", "Webcam", "Sun", "DeviceTabletCamera", "Globe", "Fingerprint", "PushPin", "Timer"]>;
|
3638
|
+
emptyMessage: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3639
|
+
id: string;
|
3640
|
+
description: string;
|
3641
|
+
defaultMessage: string;
|
3642
|
+
}>>;
|
3627
3643
|
}, "query" | "columns">, "strip", z.ZodTypeAny, {
|
3628
3644
|
name: TranslationConfig;
|
3629
3645
|
actions: {
|
@@ -3632,6 +3648,7 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3632
3648
|
}[];
|
3633
3649
|
slug: string;
|
3634
3650
|
icon: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer";
|
3651
|
+
emptyMessage?: TranslationConfig | undefined;
|
3635
3652
|
}, {
|
3636
3653
|
name: {
|
3637
3654
|
id: string;
|
@@ -3644,6 +3661,11 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3644
3661
|
}[];
|
3645
3662
|
slug: string;
|
3646
3663
|
icon: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer";
|
3664
|
+
emptyMessage?: {
|
3665
|
+
id: string;
|
3666
|
+
description: string;
|
3667
|
+
defaultMessage: string;
|
3668
|
+
} | undefined;
|
3647
3669
|
}>;
|
3648
3670
|
export declare const WorkqueueConfigInput: z.ZodObject<{
|
3649
3671
|
slug: z.ZodString;
|
@@ -3656,22 +3678,22 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
3656
3678
|
eventType: z.ZodOptional<z.ZodString>;
|
3657
3679
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
3658
3680
|
type: z.ZodLiteral<"anyOf">;
|
3659
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
3681
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
3660
3682
|
}, "strip", z.ZodTypeAny, {
|
3661
3683
|
type: "anyOf";
|
3662
|
-
terms: ("ARCHIVED" | "
|
3684
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3663
3685
|
}, {
|
3664
3686
|
type: "anyOf";
|
3665
|
-
terms: ("ARCHIVED" | "
|
3687
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3666
3688
|
}>, z.ZodObject<{
|
3667
3689
|
type: z.ZodLiteral<"exact">;
|
3668
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
3690
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
3669
3691
|
}, "strip", z.ZodTypeAny, {
|
3670
3692
|
type: "exact";
|
3671
|
-
term: "ARCHIVED" | "
|
3693
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3672
3694
|
}, {
|
3673
3695
|
type: "exact";
|
3674
|
-
term: "ARCHIVED" | "
|
3696
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3675
3697
|
}>]>>>;
|
3676
3698
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
3677
3699
|
type: z.ZodLiteral<"exact">;
|
@@ -3961,13 +3983,13 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
3961
3983
|
}>>>;
|
3962
3984
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
3963
3985
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
3964
|
-
readonly
|
3986
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
3965
3987
|
readonly INCOMPLETE: "incomplete";
|
3966
3988
|
readonly REJECTED: "rejected";
|
3967
3989
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
3968
3990
|
}>]>, "many">>;
|
3969
3991
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
3970
|
-
readonly
|
3992
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
3971
3993
|
readonly INCOMPLETE: "incomplete";
|
3972
3994
|
readonly REJECTED: "rejected";
|
3973
3995
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -3983,10 +4005,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
3983
4005
|
}, "strip", z.ZodTypeAny, {
|
3984
4006
|
status?: {
|
3985
4007
|
type: "exact";
|
3986
|
-
term: "ARCHIVED" | "
|
4008
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3987
4009
|
} | {
|
3988
4010
|
type: "anyOf";
|
3989
|
-
terms: ("ARCHIVED" | "
|
4011
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3990
4012
|
} | undefined;
|
3991
4013
|
data?: any;
|
3992
4014
|
createdByUserType?: {
|
@@ -4089,10 +4111,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4089
4111
|
}, {
|
4090
4112
|
status?: {
|
4091
4113
|
type: "exact";
|
4092
|
-
term: "ARCHIVED" | "
|
4114
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4093
4115
|
} | {
|
4094
4116
|
type: "anyOf";
|
4095
|
-
terms: ("ARCHIVED" | "
|
4117
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4096
4118
|
} | undefined;
|
4097
4119
|
data?: any;
|
4098
4120
|
createdByUserType?: {
|
@@ -4198,22 +4220,22 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4198
4220
|
eventType: z.ZodOptional<z.ZodString>;
|
4199
4221
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
4200
4222
|
type: z.ZodLiteral<"anyOf">;
|
4201
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
4223
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
4202
4224
|
}, "strip", z.ZodTypeAny, {
|
4203
4225
|
type: "anyOf";
|
4204
|
-
terms: ("ARCHIVED" | "
|
4226
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4205
4227
|
}, {
|
4206
4228
|
type: "anyOf";
|
4207
|
-
terms: ("ARCHIVED" | "
|
4229
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4208
4230
|
}>, z.ZodObject<{
|
4209
4231
|
type: z.ZodLiteral<"exact">;
|
4210
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
4232
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
4211
4233
|
}, "strip", z.ZodTypeAny, {
|
4212
4234
|
type: "exact";
|
4213
|
-
term: "ARCHIVED" | "
|
4235
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4214
4236
|
}, {
|
4215
4237
|
type: "exact";
|
4216
|
-
term: "ARCHIVED" | "
|
4238
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4217
4239
|
}>]>>>;
|
4218
4240
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
4219
4241
|
type: z.ZodLiteral<"exact">;
|
@@ -4503,13 +4525,13 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4503
4525
|
}>>>;
|
4504
4526
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
4505
4527
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
4506
|
-
readonly
|
4528
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
4507
4529
|
readonly INCOMPLETE: "incomplete";
|
4508
4530
|
readonly REJECTED: "rejected";
|
4509
4531
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
4510
4532
|
}>]>, "many">>;
|
4511
4533
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
4512
|
-
readonly
|
4534
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
4513
4535
|
readonly INCOMPLETE: "incomplete";
|
4514
4536
|
readonly REJECTED: "rejected";
|
4515
4537
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -4525,10 +4547,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4525
4547
|
}, "strip", z.ZodTypeAny, {
|
4526
4548
|
status?: {
|
4527
4549
|
type: "exact";
|
4528
|
-
term: "ARCHIVED" | "
|
4550
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4529
4551
|
} | {
|
4530
4552
|
type: "anyOf";
|
4531
|
-
terms: ("ARCHIVED" | "
|
4553
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4532
4554
|
} | undefined;
|
4533
4555
|
data?: any;
|
4534
4556
|
createdByUserType?: {
|
@@ -4631,10 +4653,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4631
4653
|
}, {
|
4632
4654
|
status?: {
|
4633
4655
|
type: "exact";
|
4634
|
-
term: "ARCHIVED" | "
|
4656
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4635
4657
|
} | {
|
4636
4658
|
type: "anyOf";
|
4637
|
-
terms: ("ARCHIVED" | "
|
4659
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4638
4660
|
} | undefined;
|
4639
4661
|
data?: any;
|
4640
4662
|
createdByUserType?: {
|
@@ -4740,10 +4762,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4740
4762
|
clauses: {
|
4741
4763
|
status?: {
|
4742
4764
|
type: "exact";
|
4743
|
-
term: "ARCHIVED" | "
|
4765
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4744
4766
|
} | {
|
4745
4767
|
type: "anyOf";
|
4746
|
-
terms: ("ARCHIVED" | "
|
4768
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4747
4769
|
} | undefined;
|
4748
4770
|
data?: any;
|
4749
4771
|
createdByUserType?: {
|
@@ -4849,10 +4871,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4849
4871
|
clauses: {
|
4850
4872
|
status?: {
|
4851
4873
|
type: "exact";
|
4852
|
-
term: "ARCHIVED" | "
|
4874
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4853
4875
|
} | {
|
4854
4876
|
type: "anyOf";
|
4855
|
-
terms: ("ARCHIVED" | "
|
4877
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4856
4878
|
} | undefined;
|
4857
4879
|
data?: any;
|
4858
4880
|
createdByUserType?: {
|
@@ -4959,22 +4981,22 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4959
4981
|
eventType: z.ZodOptional<z.ZodString>;
|
4960
4982
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
4961
4983
|
type: z.ZodLiteral<"anyOf">;
|
4962
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
4984
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
4963
4985
|
}, "strip", z.ZodTypeAny, {
|
4964
4986
|
type: "anyOf";
|
4965
|
-
terms: ("ARCHIVED" | "
|
4987
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4966
4988
|
}, {
|
4967
4989
|
type: "anyOf";
|
4968
|
-
terms: ("ARCHIVED" | "
|
4990
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4969
4991
|
}>, z.ZodObject<{
|
4970
4992
|
type: z.ZodLiteral<"exact">;
|
4971
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
4993
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
4972
4994
|
}, "strip", z.ZodTypeAny, {
|
4973
4995
|
type: "exact";
|
4974
|
-
term: "ARCHIVED" | "
|
4996
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4975
4997
|
}, {
|
4976
4998
|
type: "exact";
|
4977
|
-
term: "ARCHIVED" | "
|
4999
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4978
5000
|
}>]>>>;
|
4979
5001
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
4980
5002
|
type: z.ZodLiteral<"exact">;
|
@@ -5264,13 +5286,13 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5264
5286
|
}>>>;
|
5265
5287
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
5266
5288
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
5267
|
-
readonly
|
5289
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
5268
5290
|
readonly INCOMPLETE: "incomplete";
|
5269
5291
|
readonly REJECTED: "rejected";
|
5270
5292
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
5271
5293
|
}>]>, "many">>;
|
5272
5294
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
5273
|
-
readonly
|
5295
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
5274
5296
|
readonly INCOMPLETE: "incomplete";
|
5275
5297
|
readonly REJECTED: "rejected";
|
5276
5298
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -5286,10 +5308,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5286
5308
|
}, "strip", z.ZodTypeAny, {
|
5287
5309
|
status?: {
|
5288
5310
|
type: "exact";
|
5289
|
-
term: "ARCHIVED" | "
|
5311
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5290
5312
|
} | {
|
5291
5313
|
type: "anyOf";
|
5292
|
-
terms: ("ARCHIVED" | "
|
5314
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5293
5315
|
} | undefined;
|
5294
5316
|
data?: any;
|
5295
5317
|
createdByUserType?: {
|
@@ -5392,10 +5414,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5392
5414
|
}, {
|
5393
5415
|
status?: {
|
5394
5416
|
type: "exact";
|
5395
|
-
term: "ARCHIVED" | "
|
5417
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5396
5418
|
} | {
|
5397
5419
|
type: "anyOf";
|
5398
|
-
terms: ("ARCHIVED" | "
|
5420
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5399
5421
|
} | undefined;
|
5400
5422
|
data?: any;
|
5401
5423
|
createdByUserType?: {
|
@@ -5501,10 +5523,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5501
5523
|
clauses: {
|
5502
5524
|
status?: {
|
5503
5525
|
type: "exact";
|
5504
|
-
term: "ARCHIVED" | "
|
5526
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5505
5527
|
} | {
|
5506
5528
|
type: "anyOf";
|
5507
|
-
terms: ("ARCHIVED" | "
|
5529
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5508
5530
|
} | undefined;
|
5509
5531
|
data?: any;
|
5510
5532
|
createdByUserType?: {
|
@@ -5610,10 +5632,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5610
5632
|
clauses: {
|
5611
5633
|
status?: {
|
5612
5634
|
type: "exact";
|
5613
|
-
term: "ARCHIVED" | "
|
5635
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5614
5636
|
} | {
|
5615
5637
|
type: "anyOf";
|
5616
|
-
terms: ("ARCHIVED" | "
|
5638
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5617
5639
|
} | undefined;
|
5618
5640
|
data?: any;
|
5619
5641
|
createdByUserType?: {
|
@@ -5754,6 +5776,11 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5754
5776
|
};
|
5755
5777
|
}>, "many">>;
|
5756
5778
|
icon: z.ZodEnum<["Archived", "Assigned", "Certified", "Close", "Collapse", "Draft", "DuplicateYellow", "Expand", "ExternalValidate", "FilledCheck", "InReview", "Offline", "Registered", "RequiresUpdates", "Sent", "Validated", "WaitingApproval", "ChartActivity", "Activity", "Archive", "ArchiveTray", "ArrowLeft", "ArrowRight", "Buildings", "Circle", "CaretDown", "CaretLeft", "CaretRight", "ChartBar", "ChartLine", "ChatCircle", "CheckSquare", "Compass", "Check", "Copy", "Database", "DotsThreeVertical", "ArrowCounterClockwise", "MagnifyingGlassMinus", "MagnifyingGlassPlus", "Export", "Eye", "EyeSlash", "Envelope", "File", "FileSearch", "FileMinus", "FilePlus", "FileText", "FileX", "Handshake", "Gear", "GitBranch", "IdentificationCard", "List", "ListBullets", "Lock", "MagnifyingGlass", "MapPin", "Medal", "NotePencil", "Paperclip", "PaperPlaneTilt", "Pen", "Pencil", "PencilSimpleLine", "Phone", "Plus", "Printer", "SignOut", "Star", "Target", "TextT", "Trash", "UploadSimple", "User", "UserPlus", "Users", "WarningCircle", "X", "CircleWavyCheck", "CircleWavyQuestion", "ArchiveBox", "ArrowCircleDown", "FileArrowUp", "FileDotted", "Files", "PencilLine", "PencilCircle", "UserCircle", "Clock", "QrCode", "Webcam", "Sun", "DeviceTabletCamera", "Globe", "Fingerprint", "PushPin", "Timer"]>;
|
5779
|
+
emptyMessage: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5780
|
+
id: string;
|
5781
|
+
description: string;
|
5782
|
+
defaultMessage: string;
|
5783
|
+
}>>;
|
5757
5784
|
}, "strip", z.ZodTypeAny, {
|
5758
5785
|
name: TranslationConfig;
|
5759
5786
|
actions: {
|
@@ -5763,10 +5790,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5763
5790
|
query: {
|
5764
5791
|
status?: {
|
5765
5792
|
type: "exact";
|
5766
|
-
term: "ARCHIVED" | "
|
5793
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5767
5794
|
} | {
|
5768
5795
|
type: "anyOf";
|
5769
|
-
terms: ("ARCHIVED" | "
|
5796
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5770
5797
|
} | undefined;
|
5771
5798
|
data?: any;
|
5772
5799
|
createdByUserType?: {
|
@@ -5871,10 +5898,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5871
5898
|
clauses: {
|
5872
5899
|
status?: {
|
5873
5900
|
type: "exact";
|
5874
|
-
term: "ARCHIVED" | "
|
5901
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5875
5902
|
} | {
|
5876
5903
|
type: "anyOf";
|
5877
|
-
terms: ("ARCHIVED" | "
|
5904
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5878
5905
|
} | undefined;
|
5879
5906
|
data?: any;
|
5880
5907
|
createdByUserType?: {
|
@@ -5980,10 +6007,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5980
6007
|
clauses: {
|
5981
6008
|
status?: {
|
5982
6009
|
type: "exact";
|
5983
|
-
term: "ARCHIVED" | "
|
6010
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5984
6011
|
} | {
|
5985
6012
|
type: "anyOf";
|
5986
|
-
terms: ("ARCHIVED" | "
|
6013
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5987
6014
|
} | undefined;
|
5988
6015
|
data?: any;
|
5989
6016
|
createdByUserType?: {
|
@@ -6093,6 +6120,7 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
6093
6120
|
label: TranslationConfig;
|
6094
6121
|
}[];
|
6095
6122
|
icon: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer";
|
6123
|
+
emptyMessage?: TranslationConfig | undefined;
|
6096
6124
|
}, {
|
6097
6125
|
name: {
|
6098
6126
|
id: string;
|
@@ -6106,10 +6134,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
6106
6134
|
query: {
|
6107
6135
|
status?: {
|
6108
6136
|
type: "exact";
|
6109
|
-
term: "ARCHIVED" | "
|
6137
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6110
6138
|
} | {
|
6111
6139
|
type: "anyOf";
|
6112
|
-
terms: ("ARCHIVED" | "
|
6140
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6113
6141
|
} | undefined;
|
6114
6142
|
data?: any;
|
6115
6143
|
createdByUserType?: {
|
@@ -6214,10 +6242,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
6214
6242
|
clauses: {
|
6215
6243
|
status?: {
|
6216
6244
|
type: "exact";
|
6217
|
-
term: "ARCHIVED" | "
|
6245
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6218
6246
|
} | {
|
6219
6247
|
type: "anyOf";
|
6220
|
-
terms: ("ARCHIVED" | "
|
6248
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6221
6249
|
} | undefined;
|
6222
6250
|
data?: any;
|
6223
6251
|
createdByUserType?: {
|
@@ -6323,10 +6351,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
6323
6351
|
clauses: {
|
6324
6352
|
status?: {
|
6325
6353
|
type: "exact";
|
6326
|
-
term: "ARCHIVED" | "
|
6354
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6327
6355
|
} | {
|
6328
6356
|
type: "anyOf";
|
6329
|
-
terms: ("ARCHIVED" | "
|
6357
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6330
6358
|
} | undefined;
|
6331
6359
|
data?: any;
|
6332
6360
|
createdByUserType?: {
|
@@ -6440,6 +6468,11 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
6440
6468
|
defaultMessage: string;
|
6441
6469
|
};
|
6442
6470
|
}[] | undefined;
|
6471
|
+
emptyMessage?: {
|
6472
|
+
id: string;
|
6473
|
+
description: string;
|
6474
|
+
defaultMessage: string;
|
6475
|
+
} | undefined;
|
6443
6476
|
}>;
|
6444
6477
|
export type WorkqueueConfig = z.infer<typeof WorkqueueConfig>;
|
6445
6478
|
export type WorkqueueConfigWithoutQuery = z.infer<typeof WorkqueueConfigWithoutQuery>;
|
@@ -6455,10 +6488,10 @@ export declare function defineWorkqueue(workqueueInput: WorkqueueConfigInput): {
|
|
6455
6488
|
clauses: {
|
6456
6489
|
status?: {
|
6457
6490
|
type: "exact";
|
6458
|
-
term: "ARCHIVED" | "
|
6491
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6459
6492
|
} | {
|
6460
6493
|
type: "anyOf";
|
6461
|
-
terms: ("ARCHIVED" | "
|
6494
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6462
6495
|
} | undefined;
|
6463
6496
|
data?: any;
|
6464
6497
|
createdByUserType?: {
|
@@ -6564,10 +6597,10 @@ export declare function defineWorkqueue(workqueueInput: WorkqueueConfigInput): {
|
|
6564
6597
|
clauses: {
|
6565
6598
|
status?: {
|
6566
6599
|
type: "exact";
|
6567
|
-
term: "ARCHIVED" | "
|
6600
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6568
6601
|
} | {
|
6569
6602
|
type: "anyOf";
|
6570
|
-
terms: ("ARCHIVED" | "
|
6603
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6571
6604
|
} | undefined;
|
6572
6605
|
data?: any;
|
6573
6606
|
createdByUserType?: {
|
@@ -6677,6 +6710,7 @@ export declare function defineWorkqueue(workqueueInput: WorkqueueConfigInput): {
|
|
6677
6710
|
label: TranslationConfig;
|
6678
6711
|
}[];
|
6679
6712
|
icon: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer";
|
6713
|
+
emptyMessage?: TranslationConfig | undefined;
|
6680
6714
|
};
|
6681
6715
|
export declare function defineWorkqueues(workqueues: WorkqueueConfigInput[]): {
|
6682
6716
|
name: TranslationConfig;
|
@@ -6689,10 +6723,10 @@ export declare function defineWorkqueues(workqueues: WorkqueueConfigInput[]): {
|
|
6689
6723
|
clauses: {
|
6690
6724
|
status?: {
|
6691
6725
|
type: "exact";
|
6692
|
-
term: "ARCHIVED" | "
|
6726
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6693
6727
|
} | {
|
6694
6728
|
type: "anyOf";
|
6695
|
-
terms: ("ARCHIVED" | "
|
6729
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6696
6730
|
} | undefined;
|
6697
6731
|
data?: any;
|
6698
6732
|
createdByUserType?: {
|
@@ -6798,10 +6832,10 @@ export declare function defineWorkqueues(workqueues: WorkqueueConfigInput[]): {
|
|
6798
6832
|
clauses: {
|
6799
6833
|
status?: {
|
6800
6834
|
type: "exact";
|
6801
|
-
term: "ARCHIVED" | "
|
6835
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6802
6836
|
} | {
|
6803
6837
|
type: "anyOf";
|
6804
|
-
terms: ("ARCHIVED" | "
|
6838
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6805
6839
|
} | undefined;
|
6806
6840
|
data?: any;
|
6807
6841
|
createdByUserType?: {
|
@@ -6911,6 +6945,7 @@ export declare function defineWorkqueues(workqueues: WorkqueueConfigInput[]): {
|
|
6911
6945
|
label: TranslationConfig;
|
6912
6946
|
}[];
|
6913
6947
|
icon: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer";
|
6948
|
+
emptyMessage?: TranslationConfig | undefined;
|
6914
6949
|
}[];
|
6915
6950
|
export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
6916
6951
|
slug: z.ZodString;
|
@@ -6921,22 +6956,22 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
6921
6956
|
eventType: z.ZodOptional<z.ZodString>;
|
6922
6957
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
6923
6958
|
type: z.ZodLiteral<"anyOf">;
|
6924
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
6959
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
6925
6960
|
}, "strip", z.ZodTypeAny, {
|
6926
6961
|
type: "anyOf";
|
6927
|
-
terms: ("ARCHIVED" | "
|
6962
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6928
6963
|
}, {
|
6929
6964
|
type: "anyOf";
|
6930
|
-
terms: ("ARCHIVED" | "
|
6965
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6931
6966
|
}>, z.ZodObject<{
|
6932
6967
|
type: z.ZodLiteral<"exact">;
|
6933
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "
|
6968
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
6934
6969
|
}, "strip", z.ZodTypeAny, {
|
6935
6970
|
type: "exact";
|
6936
|
-
term: "ARCHIVED" | "
|
6971
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6937
6972
|
}, {
|
6938
6973
|
type: "exact";
|
6939
|
-
term: "ARCHIVED" | "
|
6974
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6940
6975
|
}>]>>>;
|
6941
6976
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
6942
6977
|
type: z.ZodLiteral<"exact">;
|
@@ -7037,6 +7072,25 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7037
7072
|
type: "timePeriod";
|
7038
7073
|
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
7039
7074
|
}>]>>>;
|
7075
|
+
'legalStatuses.DECLARED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
7076
|
+
type: z.ZodLiteral<"within">;
|
7077
|
+
location: z.ZodString;
|
7078
|
+
}, "strip", z.ZodTypeAny, {
|
7079
|
+
type: "within";
|
7080
|
+
location: string;
|
7081
|
+
}, {
|
7082
|
+
type: "within";
|
7083
|
+
location: string;
|
7084
|
+
}>, z.ZodObject<{
|
7085
|
+
type: z.ZodLiteral<"exact">;
|
7086
|
+
term: z.ZodString;
|
7087
|
+
}, "strip", z.ZodTypeAny, {
|
7088
|
+
type: "exact";
|
7089
|
+
term: string;
|
7090
|
+
}, {
|
7091
|
+
type: "exact";
|
7092
|
+
term: string;
|
7093
|
+
}>]>>>;
|
7040
7094
|
'legalStatuses.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
7041
7095
|
type: z.ZodLiteral<"within">;
|
7042
7096
|
location: z.ZodString;
|
@@ -7156,13 +7210,13 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7156
7210
|
}>>>;
|
7157
7211
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
7158
7212
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
7159
|
-
readonly
|
7213
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
7160
7214
|
readonly INCOMPLETE: "incomplete";
|
7161
7215
|
readonly REJECTED: "rejected";
|
7162
7216
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
7163
7217
|
}>]>, "many">>;
|
7164
7218
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
7165
|
-
readonly
|
7219
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
7166
7220
|
readonly INCOMPLETE: "incomplete";
|
7167
7221
|
readonly REJECTED: "rejected";
|
7168
7222
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -7179,10 +7233,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7179
7233
|
id?: string | undefined;
|
7180
7234
|
status?: {
|
7181
7235
|
type: "exact";
|
7182
|
-
term: "ARCHIVED" | "
|
7236
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7183
7237
|
} | {
|
7184
7238
|
type: "anyOf";
|
7185
|
-
terms: ("ARCHIVED" | "
|
7239
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7186
7240
|
} | undefined;
|
7187
7241
|
data?: any;
|
7188
7242
|
createdByUserType?: {
|
@@ -7257,6 +7311,13 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7257
7311
|
type: "timePeriod";
|
7258
7312
|
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
7259
7313
|
} | undefined;
|
7314
|
+
'legalStatuses.DECLARED.createdAtLocation'?: {
|
7315
|
+
type: "exact";
|
7316
|
+
term: string;
|
7317
|
+
} | {
|
7318
|
+
type: "within";
|
7319
|
+
location: string;
|
7320
|
+
} | undefined;
|
7260
7321
|
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
7261
7322
|
type: "exact";
|
7262
7323
|
term: string;
|
@@ -7272,10 +7333,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7272
7333
|
id?: string | undefined;
|
7273
7334
|
status?: {
|
7274
7335
|
type: "exact";
|
7275
|
-
term: "ARCHIVED" | "
|
7336
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7276
7337
|
} | {
|
7277
7338
|
type: "anyOf";
|
7278
|
-
terms: ("ARCHIVED" | "
|
7339
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7279
7340
|
} | undefined;
|
7280
7341
|
data?: any;
|
7281
7342
|
createdByUserType?: {
|
@@ -7350,6 +7411,13 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7350
7411
|
type: "timePeriod";
|
7351
7412
|
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
7352
7413
|
} | undefined;
|
7414
|
+
'legalStatuses.DECLARED.createdAtLocation'?: {
|
7415
|
+
type: "exact";
|
7416
|
+
term: string;
|
7417
|
+
} | {
|
7418
|
+
type: "within";
|
7419
|
+
location: string;
|
7420
|
+
} | undefined;
|
7353
7421
|
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
7354
7422
|
type: "exact";
|
7355
7423
|
term: string;
|
@@ -7365,10 +7433,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7365
7433
|
id?: string | undefined;
|
7366
7434
|
status?: {
|
7367
7435
|
type: "exact";
|
7368
|
-
term: "ARCHIVED" | "
|
7436
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7369
7437
|
} | {
|
7370
7438
|
type: "anyOf";
|
7371
|
-
terms: ("ARCHIVED" | "
|
7439
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7372
7440
|
} | undefined;
|
7373
7441
|
data?: any;
|
7374
7442
|
createdByUserType?: {
|
@@ -7443,6 +7511,13 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7443
7511
|
type: "timePeriod";
|
7444
7512
|
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
7445
7513
|
} | undefined;
|
7514
|
+
'legalStatuses.DECLARED.createdAtLocation'?: {
|
7515
|
+
type: "exact";
|
7516
|
+
term: string;
|
7517
|
+
} | {
|
7518
|
+
type: "within";
|
7519
|
+
location: string;
|
7520
|
+
} | undefined;
|
7446
7521
|
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
7447
7522
|
type: "exact";
|
7448
7523
|
term: string;
|
@@ -7458,10 +7533,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7458
7533
|
id?: string | undefined;
|
7459
7534
|
status?: {
|
7460
7535
|
type: "exact";
|
7461
|
-
term: "ARCHIVED" | "
|
7536
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7462
7537
|
} | {
|
7463
7538
|
type: "anyOf";
|
7464
|
-
terms: ("ARCHIVED" | "
|
7539
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7465
7540
|
} | undefined;
|
7466
7541
|
data?: any;
|
7467
7542
|
createdByUserType?: {
|
@@ -7536,6 +7611,13 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7536
7611
|
type: "timePeriod";
|
7537
7612
|
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
7538
7613
|
} | undefined;
|
7614
|
+
'legalStatuses.DECLARED.createdAtLocation'?: {
|
7615
|
+
type: "exact";
|
7616
|
+
term: string;
|
7617
|
+
} | {
|
7618
|
+
type: "within";
|
7619
|
+
location: string;
|
7620
|
+
} | undefined;
|
7539
7621
|
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
7540
7622
|
type: "exact";
|
7541
7623
|
term: string;
|
@@ -7551,10 +7633,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7551
7633
|
id?: string | undefined;
|
7552
7634
|
status?: {
|
7553
7635
|
type: "exact";
|
7554
|
-
term: "ARCHIVED" | "
|
7636
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7555
7637
|
} | {
|
7556
7638
|
type: "anyOf";
|
7557
|
-
terms: ("ARCHIVED" | "
|
7639
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7558
7640
|
} | undefined;
|
7559
7641
|
data?: any;
|
7560
7642
|
createdByUserType?: {
|
@@ -7629,6 +7711,13 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7629
7711
|
type: "timePeriod";
|
7630
7712
|
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
7631
7713
|
} | undefined;
|
7714
|
+
'legalStatuses.DECLARED.createdAtLocation'?: {
|
7715
|
+
type: "exact";
|
7716
|
+
term: string;
|
7717
|
+
} | {
|
7718
|
+
type: "within";
|
7719
|
+
location: string;
|
7720
|
+
} | undefined;
|
7632
7721
|
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
7633
7722
|
type: "exact";
|
7634
7723
|
term: string;
|
@@ -7644,10 +7733,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7644
7733
|
id?: string | undefined;
|
7645
7734
|
status?: {
|
7646
7735
|
type: "exact";
|
7647
|
-
term: "ARCHIVED" | "
|
7736
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7648
7737
|
} | {
|
7649
7738
|
type: "anyOf";
|
7650
|
-
terms: ("ARCHIVED" | "
|
7739
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7651
7740
|
} | undefined;
|
7652
7741
|
data?: any;
|
7653
7742
|
createdByUserType?: {
|
@@ -7722,6 +7811,13 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7722
7811
|
type: "timePeriod";
|
7723
7812
|
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
7724
7813
|
} | undefined;
|
7814
|
+
'legalStatuses.DECLARED.createdAtLocation'?: {
|
7815
|
+
type: "exact";
|
7816
|
+
term: string;
|
7817
|
+
} | {
|
7818
|
+
type: "within";
|
7819
|
+
location: string;
|
7820
|
+
} | undefined;
|
7725
7821
|
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
7726
7822
|
type: "exact";
|
7727
7823
|
term: string;
|
@@ -7740,10 +7836,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7740
7836
|
id?: string | undefined;
|
7741
7837
|
status?: {
|
7742
7838
|
type: "exact";
|
7743
|
-
term: "ARCHIVED" | "
|
7839
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7744
7840
|
} | {
|
7745
7841
|
type: "anyOf";
|
7746
|
-
terms: ("ARCHIVED" | "
|
7842
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7747
7843
|
} | undefined;
|
7748
7844
|
data?: any;
|
7749
7845
|
createdByUserType?: {
|
@@ -7818,6 +7914,13 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7818
7914
|
type: "timePeriod";
|
7819
7915
|
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
7820
7916
|
} | undefined;
|
7917
|
+
'legalStatuses.DECLARED.createdAtLocation'?: {
|
7918
|
+
type: "exact";
|
7919
|
+
term: string;
|
7920
|
+
} | {
|
7921
|
+
type: "within";
|
7922
|
+
location: string;
|
7923
|
+
} | undefined;
|
7821
7924
|
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
7822
7925
|
type: "exact";
|
7823
7926
|
term: string;
|
@@ -7833,10 +7936,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7833
7936
|
id?: string | undefined;
|
7834
7937
|
status?: {
|
7835
7938
|
type: "exact";
|
7836
|
-
term: "ARCHIVED" | "
|
7939
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7837
7940
|
} | {
|
7838
7941
|
type: "anyOf";
|
7839
|
-
terms: ("ARCHIVED" | "
|
7942
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7840
7943
|
} | undefined;
|
7841
7944
|
data?: any;
|
7842
7945
|
createdByUserType?: {
|
@@ -7911,6 +8014,13 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7911
8014
|
type: "timePeriod";
|
7912
8015
|
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
7913
8016
|
} | undefined;
|
8017
|
+
'legalStatuses.DECLARED.createdAtLocation'?: {
|
8018
|
+
type: "exact";
|
8019
|
+
term: string;
|
8020
|
+
} | {
|
8021
|
+
type: "within";
|
8022
|
+
location: string;
|
8023
|
+
} | undefined;
|
7914
8024
|
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
7915
8025
|
type: "exact";
|
7916
8026
|
term: string;
|
@@ -7934,10 +8044,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7934
8044
|
id?: string | undefined;
|
7935
8045
|
status?: {
|
7936
8046
|
type: "exact";
|
7937
|
-
term: "ARCHIVED" | "
|
8047
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7938
8048
|
} | {
|
7939
8049
|
type: "anyOf";
|
7940
|
-
terms: ("ARCHIVED" | "
|
8050
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7941
8051
|
} | undefined;
|
7942
8052
|
data?: any;
|
7943
8053
|
createdByUserType?: {
|
@@ -8012,6 +8122,13 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
8012
8122
|
type: "timePeriod";
|
8013
8123
|
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
8014
8124
|
} | undefined;
|
8125
|
+
'legalStatuses.DECLARED.createdAtLocation'?: {
|
8126
|
+
type: "exact";
|
8127
|
+
term: string;
|
8128
|
+
} | {
|
8129
|
+
type: "within";
|
8130
|
+
location: string;
|
8131
|
+
} | undefined;
|
8015
8132
|
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
8016
8133
|
type: "exact";
|
8017
8134
|
term: string;
|
@@ -8027,10 +8144,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
8027
8144
|
id?: string | undefined;
|
8028
8145
|
status?: {
|
8029
8146
|
type: "exact";
|
8030
|
-
term: "ARCHIVED" | "
|
8147
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
8031
8148
|
} | {
|
8032
8149
|
type: "anyOf";
|
8033
|
-
terms: ("ARCHIVED" | "
|
8150
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
8034
8151
|
} | undefined;
|
8035
8152
|
data?: any;
|
8036
8153
|
createdByUserType?: {
|
@@ -8105,6 +8222,13 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
8105
8222
|
type: "timePeriod";
|
8106
8223
|
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
8107
8224
|
} | undefined;
|
8225
|
+
'legalStatuses.DECLARED.createdAtLocation'?: {
|
8226
|
+
type: "exact";
|
8227
|
+
term: string;
|
8228
|
+
} | {
|
8229
|
+
type: "within";
|
8230
|
+
location: string;
|
8231
|
+
} | undefined;
|
8108
8232
|
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
8109
8233
|
type: "exact";
|
8110
8234
|
term: string;
|