@opencrvs/toolkit 1.8.1-rc.fa83f7b → 1.8.1-rc.faf1965
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 +8 -7
- package/dist/commons/conditionals/validate.d.ts +3 -2
- package/dist/commons/events/AdvancedSearchConfig.d.ts +13 -31
- package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
- package/dist/commons/events/EventConfig.d.ts +9 -9
- package/dist/commons/events/EventIndex.d.ts +55 -52
- package/dist/commons/events/EventMetadata.d.ts +12 -9
- package/dist/commons/events/FieldConfig.d.ts +8 -1
- package/dist/commons/events/WorkqueueConfig.d.ts +164 -199
- package/dist/commons/events/defineConfig.d.ts +1 -1
- package/dist/commons/events/event.d.ts +61 -7
- package/dist/commons/events/utils.d.ts +2 -2
- package/dist/conditionals/index.js +2 -2
- package/dist/events/index.js +171 -74
- package/package.json +1 -1
@@ -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", "ARCHIVED"]>, "many">;
|
27
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
28
28
|
}, "strip", z.ZodTypeAny, {
|
29
29
|
type: "anyOf";
|
30
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
30
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
31
31
|
}, {
|
32
32
|
type: "anyOf";
|
33
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
33
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
34
34
|
}>, z.ZodObject<{
|
35
35
|
type: z.ZodLiteral<"exact">;
|
36
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
36
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
37
37
|
}, "strip", z.ZodTypeAny, {
|
38
38
|
type: "exact";
|
39
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
39
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
40
40
|
}, {
|
41
41
|
type: "exact";
|
42
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
42
|
+
term: "ARCHIVED" | "CERTIFIED" | "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 PRINTED: "printed";
|
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 PRINTED: "printed";
|
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" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
354
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
355
355
|
} | {
|
356
356
|
type: "anyOf";
|
357
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
357
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "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" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
460
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
461
461
|
} | {
|
462
462
|
type: "anyOf";
|
463
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
463
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "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" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
569
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
570
570
|
} | {
|
571
571
|
type: "anyOf";
|
572
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
572
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "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" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
678
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
679
679
|
} | {
|
680
680
|
type: "anyOf";
|
681
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
681
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "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", "ARCHIVED"]>, "many">;
|
788
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
789
789
|
}, "strip", z.ZodTypeAny, {
|
790
790
|
type: "anyOf";
|
791
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
791
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
792
792
|
}, {
|
793
793
|
type: "anyOf";
|
794
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
794
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
795
795
|
}>, z.ZodObject<{
|
796
796
|
type: z.ZodLiteral<"exact">;
|
797
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
797
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
798
798
|
}, "strip", z.ZodTypeAny, {
|
799
799
|
type: "exact";
|
800
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
800
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
801
801
|
}, {
|
802
802
|
type: "exact";
|
803
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
803
|
+
term: "ARCHIVED" | "CERTIFIED" | "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 PRINTED: "printed";
|
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 PRINTED: "printed";
|
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" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1115
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1116
1116
|
} | {
|
1117
1117
|
type: "anyOf";
|
1118
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1118
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "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" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1221
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1222
1222
|
} | {
|
1223
1223
|
type: "anyOf";
|
1224
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1224
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "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" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1330
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1331
1331
|
} | {
|
1332
1332
|
type: "anyOf";
|
1333
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1333
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "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" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1439
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1440
1440
|
} | {
|
1441
1441
|
type: "anyOf";
|
1442
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1442
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1443
1443
|
} | undefined;
|
1444
1444
|
data?: any;
|
1445
1445
|
createdByUserType?: {
|
@@ -1580,11 +1580,6 @@ 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
|
-
}>>;
|
1588
1583
|
}, "strip", z.ZodTypeAny, {
|
1589
1584
|
name: TranslationConfig;
|
1590
1585
|
actions: {
|
@@ -1596,10 +1591,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1596
1591
|
clauses: {
|
1597
1592
|
status?: {
|
1598
1593
|
type: "exact";
|
1599
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1594
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1600
1595
|
} | {
|
1601
1596
|
type: "anyOf";
|
1602
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1597
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1603
1598
|
} | undefined;
|
1604
1599
|
data?: any;
|
1605
1600
|
createdByUserType?: {
|
@@ -1705,10 +1700,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1705
1700
|
clauses: {
|
1706
1701
|
status?: {
|
1707
1702
|
type: "exact";
|
1708
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1703
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1709
1704
|
} | {
|
1710
1705
|
type: "anyOf";
|
1711
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1706
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1712
1707
|
} | undefined;
|
1713
1708
|
data?: any;
|
1714
1709
|
createdByUserType?: {
|
@@ -1818,7 +1813,6 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1818
1813
|
label: TranslationConfig;
|
1819
1814
|
}[];
|
1820
1815
|
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;
|
1822
1816
|
}, {
|
1823
1817
|
name: {
|
1824
1818
|
id: string;
|
@@ -1834,10 +1828,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1834
1828
|
clauses: {
|
1835
1829
|
status?: {
|
1836
1830
|
type: "exact";
|
1837
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1831
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1838
1832
|
} | {
|
1839
1833
|
type: "anyOf";
|
1840
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1834
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1841
1835
|
} | undefined;
|
1842
1836
|
data?: any;
|
1843
1837
|
createdByUserType?: {
|
@@ -1943,10 +1937,10 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
1943
1937
|
clauses: {
|
1944
1938
|
status?: {
|
1945
1939
|
type: "exact";
|
1946
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1940
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1947
1941
|
} | {
|
1948
1942
|
type: "anyOf";
|
1949
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1943
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1950
1944
|
} | undefined;
|
1951
1945
|
data?: any;
|
1952
1946
|
createdByUserType?: {
|
@@ -2060,11 +2054,6 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
2060
2054
|
defaultMessage: string;
|
2061
2055
|
};
|
2062
2056
|
}[] | undefined;
|
2063
|
-
emptyMessage?: {
|
2064
|
-
id: string;
|
2065
|
-
description: string;
|
2066
|
-
defaultMessage: string;
|
2067
|
-
} | undefined;
|
2068
2057
|
}>;
|
2069
2058
|
export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
2070
2059
|
slug: z.ZodString;
|
@@ -2079,22 +2068,22 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2079
2068
|
eventType: z.ZodOptional<z.ZodString>;
|
2080
2069
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
2081
2070
|
type: z.ZodLiteral<"anyOf">;
|
2082
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
2071
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
2083
2072
|
}, "strip", z.ZodTypeAny, {
|
2084
2073
|
type: "anyOf";
|
2085
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2074
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2086
2075
|
}, {
|
2087
2076
|
type: "anyOf";
|
2088
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2077
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2089
2078
|
}>, z.ZodObject<{
|
2090
2079
|
type: z.ZodLiteral<"exact">;
|
2091
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
2080
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
2092
2081
|
}, "strip", z.ZodTypeAny, {
|
2093
2082
|
type: "exact";
|
2094
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2083
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2095
2084
|
}, {
|
2096
2085
|
type: "exact";
|
2097
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2086
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2098
2087
|
}>]>>>;
|
2099
2088
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
2100
2089
|
type: z.ZodLiteral<"exact">;
|
@@ -2384,13 +2373,13 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2384
2373
|
}>>>;
|
2385
2374
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
2386
2375
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
2387
|
-
readonly
|
2376
|
+
readonly PRINTED: "printed";
|
2388
2377
|
readonly INCOMPLETE: "incomplete";
|
2389
2378
|
readonly REJECTED: "rejected";
|
2390
2379
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
2391
2380
|
}>]>, "many">>;
|
2392
2381
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
2393
|
-
readonly
|
2382
|
+
readonly PRINTED: "printed";
|
2394
2383
|
readonly INCOMPLETE: "incomplete";
|
2395
2384
|
readonly REJECTED: "rejected";
|
2396
2385
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -2406,10 +2395,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2406
2395
|
}, "strip", z.ZodTypeAny, {
|
2407
2396
|
status?: {
|
2408
2397
|
type: "exact";
|
2409
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2398
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2410
2399
|
} | {
|
2411
2400
|
type: "anyOf";
|
2412
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2401
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2413
2402
|
} | undefined;
|
2414
2403
|
data?: any;
|
2415
2404
|
createdByUserType?: {
|
@@ -2512,10 +2501,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2512
2501
|
}, {
|
2513
2502
|
status?: {
|
2514
2503
|
type: "exact";
|
2515
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2504
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2516
2505
|
} | {
|
2517
2506
|
type: "anyOf";
|
2518
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2507
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2519
2508
|
} | undefined;
|
2520
2509
|
data?: any;
|
2521
2510
|
createdByUserType?: {
|
@@ -2621,10 +2610,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2621
2610
|
clauses: {
|
2622
2611
|
status?: {
|
2623
2612
|
type: "exact";
|
2624
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2613
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2625
2614
|
} | {
|
2626
2615
|
type: "anyOf";
|
2627
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2616
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2628
2617
|
} | undefined;
|
2629
2618
|
data?: any;
|
2630
2619
|
createdByUserType?: {
|
@@ -2730,10 +2719,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2730
2719
|
clauses: {
|
2731
2720
|
status?: {
|
2732
2721
|
type: "exact";
|
2733
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2722
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2734
2723
|
} | {
|
2735
2724
|
type: "anyOf";
|
2736
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2725
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2737
2726
|
} | undefined;
|
2738
2727
|
data?: any;
|
2739
2728
|
createdByUserType?: {
|
@@ -2840,22 +2829,22 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
2840
2829
|
eventType: z.ZodOptional<z.ZodString>;
|
2841
2830
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
2842
2831
|
type: z.ZodLiteral<"anyOf">;
|
2843
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
2832
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
2844
2833
|
}, "strip", z.ZodTypeAny, {
|
2845
2834
|
type: "anyOf";
|
2846
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2835
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2847
2836
|
}, {
|
2848
2837
|
type: "anyOf";
|
2849
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2838
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2850
2839
|
}>, z.ZodObject<{
|
2851
2840
|
type: z.ZodLiteral<"exact">;
|
2852
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
2841
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
2853
2842
|
}, "strip", z.ZodTypeAny, {
|
2854
2843
|
type: "exact";
|
2855
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2844
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2856
2845
|
}, {
|
2857
2846
|
type: "exact";
|
2858
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2847
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2859
2848
|
}>]>>>;
|
2860
2849
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
2861
2850
|
type: z.ZodLiteral<"exact">;
|
@@ -3145,13 +3134,13 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3145
3134
|
}>>>;
|
3146
3135
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
3147
3136
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
3148
|
-
readonly
|
3137
|
+
readonly PRINTED: "printed";
|
3149
3138
|
readonly INCOMPLETE: "incomplete";
|
3150
3139
|
readonly REJECTED: "rejected";
|
3151
3140
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
3152
3141
|
}>]>, "many">>;
|
3153
3142
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
3154
|
-
readonly
|
3143
|
+
readonly PRINTED: "printed";
|
3155
3144
|
readonly INCOMPLETE: "incomplete";
|
3156
3145
|
readonly REJECTED: "rejected";
|
3157
3146
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -3167,10 +3156,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3167
3156
|
}, "strip", z.ZodTypeAny, {
|
3168
3157
|
status?: {
|
3169
3158
|
type: "exact";
|
3170
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3159
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3171
3160
|
} | {
|
3172
3161
|
type: "anyOf";
|
3173
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3162
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3174
3163
|
} | undefined;
|
3175
3164
|
data?: any;
|
3176
3165
|
createdByUserType?: {
|
@@ -3273,10 +3262,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3273
3262
|
}, {
|
3274
3263
|
status?: {
|
3275
3264
|
type: "exact";
|
3276
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3265
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3277
3266
|
} | {
|
3278
3267
|
type: "anyOf";
|
3279
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3268
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3280
3269
|
} | undefined;
|
3281
3270
|
data?: any;
|
3282
3271
|
createdByUserType?: {
|
@@ -3382,10 +3371,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3382
3371
|
clauses: {
|
3383
3372
|
status?: {
|
3384
3373
|
type: "exact";
|
3385
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3374
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3386
3375
|
} | {
|
3387
3376
|
type: "anyOf";
|
3388
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3377
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3389
3378
|
} | undefined;
|
3390
3379
|
data?: any;
|
3391
3380
|
createdByUserType?: {
|
@@ -3491,10 +3480,10 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3491
3480
|
clauses: {
|
3492
3481
|
status?: {
|
3493
3482
|
type: "exact";
|
3494
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3483
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3495
3484
|
} | {
|
3496
3485
|
type: "anyOf";
|
3497
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3486
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3498
3487
|
} | undefined;
|
3499
3488
|
data?: any;
|
3500
3489
|
createdByUserType?: {
|
@@ -3635,11 +3624,6 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3635
3624
|
};
|
3636
3625
|
}>, "many">>;
|
3637
3626
|
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
|
-
}>>;
|
3643
3627
|
}, "query" | "columns">, "strip", z.ZodTypeAny, {
|
3644
3628
|
name: TranslationConfig;
|
3645
3629
|
actions: {
|
@@ -3648,7 +3632,6 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3648
3632
|
}[];
|
3649
3633
|
slug: string;
|
3650
3634
|
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;
|
3652
3635
|
}, {
|
3653
3636
|
name: {
|
3654
3637
|
id: string;
|
@@ -3661,11 +3644,6 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<Omit<{
|
|
3661
3644
|
}[];
|
3662
3645
|
slug: string;
|
3663
3646
|
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;
|
3669
3647
|
}>;
|
3670
3648
|
export declare const WorkqueueConfigInput: z.ZodObject<{
|
3671
3649
|
slug: z.ZodString;
|
@@ -3678,22 +3656,22 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
3678
3656
|
eventType: z.ZodOptional<z.ZodString>;
|
3679
3657
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
3680
3658
|
type: z.ZodLiteral<"anyOf">;
|
3681
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
3659
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
3682
3660
|
}, "strip", z.ZodTypeAny, {
|
3683
3661
|
type: "anyOf";
|
3684
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3662
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3685
3663
|
}, {
|
3686
3664
|
type: "anyOf";
|
3687
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3665
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3688
3666
|
}>, z.ZodObject<{
|
3689
3667
|
type: z.ZodLiteral<"exact">;
|
3690
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
3668
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
3691
3669
|
}, "strip", z.ZodTypeAny, {
|
3692
3670
|
type: "exact";
|
3693
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3671
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3694
3672
|
}, {
|
3695
3673
|
type: "exact";
|
3696
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3674
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3697
3675
|
}>]>>>;
|
3698
3676
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
3699
3677
|
type: z.ZodLiteral<"exact">;
|
@@ -3983,13 +3961,13 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
3983
3961
|
}>>>;
|
3984
3962
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
3985
3963
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
3986
|
-
readonly
|
3964
|
+
readonly PRINTED: "printed";
|
3987
3965
|
readonly INCOMPLETE: "incomplete";
|
3988
3966
|
readonly REJECTED: "rejected";
|
3989
3967
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
3990
3968
|
}>]>, "many">>;
|
3991
3969
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
3992
|
-
readonly
|
3970
|
+
readonly PRINTED: "printed";
|
3993
3971
|
readonly INCOMPLETE: "incomplete";
|
3994
3972
|
readonly REJECTED: "rejected";
|
3995
3973
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -4005,10 +3983,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4005
3983
|
}, "strip", z.ZodTypeAny, {
|
4006
3984
|
status?: {
|
4007
3985
|
type: "exact";
|
4008
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3986
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4009
3987
|
} | {
|
4010
3988
|
type: "anyOf";
|
4011
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3989
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4012
3990
|
} | undefined;
|
4013
3991
|
data?: any;
|
4014
3992
|
createdByUserType?: {
|
@@ -4111,10 +4089,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4111
4089
|
}, {
|
4112
4090
|
status?: {
|
4113
4091
|
type: "exact";
|
4114
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4092
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4115
4093
|
} | {
|
4116
4094
|
type: "anyOf";
|
4117
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4095
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4118
4096
|
} | undefined;
|
4119
4097
|
data?: any;
|
4120
4098
|
createdByUserType?: {
|
@@ -4220,22 +4198,22 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4220
4198
|
eventType: z.ZodOptional<z.ZodString>;
|
4221
4199
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
4222
4200
|
type: z.ZodLiteral<"anyOf">;
|
4223
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
4201
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
4224
4202
|
}, "strip", z.ZodTypeAny, {
|
4225
4203
|
type: "anyOf";
|
4226
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4204
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4227
4205
|
}, {
|
4228
4206
|
type: "anyOf";
|
4229
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4207
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4230
4208
|
}>, z.ZodObject<{
|
4231
4209
|
type: z.ZodLiteral<"exact">;
|
4232
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
4210
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
4233
4211
|
}, "strip", z.ZodTypeAny, {
|
4234
4212
|
type: "exact";
|
4235
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4213
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4236
4214
|
}, {
|
4237
4215
|
type: "exact";
|
4238
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4216
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4239
4217
|
}>]>>>;
|
4240
4218
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
4241
4219
|
type: z.ZodLiteral<"exact">;
|
@@ -4525,13 +4503,13 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4525
4503
|
}>>>;
|
4526
4504
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
4527
4505
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
4528
|
-
readonly
|
4506
|
+
readonly PRINTED: "printed";
|
4529
4507
|
readonly INCOMPLETE: "incomplete";
|
4530
4508
|
readonly REJECTED: "rejected";
|
4531
4509
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
4532
4510
|
}>]>, "many">>;
|
4533
4511
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
4534
|
-
readonly
|
4512
|
+
readonly PRINTED: "printed";
|
4535
4513
|
readonly INCOMPLETE: "incomplete";
|
4536
4514
|
readonly REJECTED: "rejected";
|
4537
4515
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -4547,10 +4525,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4547
4525
|
}, "strip", z.ZodTypeAny, {
|
4548
4526
|
status?: {
|
4549
4527
|
type: "exact";
|
4550
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4528
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4551
4529
|
} | {
|
4552
4530
|
type: "anyOf";
|
4553
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4531
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4554
4532
|
} | undefined;
|
4555
4533
|
data?: any;
|
4556
4534
|
createdByUserType?: {
|
@@ -4653,10 +4631,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4653
4631
|
}, {
|
4654
4632
|
status?: {
|
4655
4633
|
type: "exact";
|
4656
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4634
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4657
4635
|
} | {
|
4658
4636
|
type: "anyOf";
|
4659
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4637
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4660
4638
|
} | undefined;
|
4661
4639
|
data?: any;
|
4662
4640
|
createdByUserType?: {
|
@@ -4762,10 +4740,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4762
4740
|
clauses: {
|
4763
4741
|
status?: {
|
4764
4742
|
type: "exact";
|
4765
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4743
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4766
4744
|
} | {
|
4767
4745
|
type: "anyOf";
|
4768
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4746
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4769
4747
|
} | undefined;
|
4770
4748
|
data?: any;
|
4771
4749
|
createdByUserType?: {
|
@@ -4871,10 +4849,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4871
4849
|
clauses: {
|
4872
4850
|
status?: {
|
4873
4851
|
type: "exact";
|
4874
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4852
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4875
4853
|
} | {
|
4876
4854
|
type: "anyOf";
|
4877
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4855
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4878
4856
|
} | undefined;
|
4879
4857
|
data?: any;
|
4880
4858
|
createdByUserType?: {
|
@@ -4981,22 +4959,22 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
4981
4959
|
eventType: z.ZodOptional<z.ZodString>;
|
4982
4960
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
4983
4961
|
type: z.ZodLiteral<"anyOf">;
|
4984
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
4962
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
4985
4963
|
}, "strip", z.ZodTypeAny, {
|
4986
4964
|
type: "anyOf";
|
4987
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4965
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4988
4966
|
}, {
|
4989
4967
|
type: "anyOf";
|
4990
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4968
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
4991
4969
|
}>, z.ZodObject<{
|
4992
4970
|
type: z.ZodLiteral<"exact">;
|
4993
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
4971
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
4994
4972
|
}, "strip", z.ZodTypeAny, {
|
4995
4973
|
type: "exact";
|
4996
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4974
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4997
4975
|
}, {
|
4998
4976
|
type: "exact";
|
4999
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
4977
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5000
4978
|
}>]>>>;
|
5001
4979
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
5002
4980
|
type: z.ZodLiteral<"exact">;
|
@@ -5286,13 +5264,13 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5286
5264
|
}>>>;
|
5287
5265
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
5288
5266
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
5289
|
-
readonly
|
5267
|
+
readonly PRINTED: "printed";
|
5290
5268
|
readonly INCOMPLETE: "incomplete";
|
5291
5269
|
readonly REJECTED: "rejected";
|
5292
5270
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
5293
5271
|
}>]>, "many">>;
|
5294
5272
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
5295
|
-
readonly
|
5273
|
+
readonly PRINTED: "printed";
|
5296
5274
|
readonly INCOMPLETE: "incomplete";
|
5297
5275
|
readonly REJECTED: "rejected";
|
5298
5276
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -5308,10 +5286,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5308
5286
|
}, "strip", z.ZodTypeAny, {
|
5309
5287
|
status?: {
|
5310
5288
|
type: "exact";
|
5311
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5289
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5312
5290
|
} | {
|
5313
5291
|
type: "anyOf";
|
5314
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5292
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5315
5293
|
} | undefined;
|
5316
5294
|
data?: any;
|
5317
5295
|
createdByUserType?: {
|
@@ -5414,10 +5392,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5414
5392
|
}, {
|
5415
5393
|
status?: {
|
5416
5394
|
type: "exact";
|
5417
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5395
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5418
5396
|
} | {
|
5419
5397
|
type: "anyOf";
|
5420
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5398
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5421
5399
|
} | undefined;
|
5422
5400
|
data?: any;
|
5423
5401
|
createdByUserType?: {
|
@@ -5523,10 +5501,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5523
5501
|
clauses: {
|
5524
5502
|
status?: {
|
5525
5503
|
type: "exact";
|
5526
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5504
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5527
5505
|
} | {
|
5528
5506
|
type: "anyOf";
|
5529
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5507
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5530
5508
|
} | undefined;
|
5531
5509
|
data?: any;
|
5532
5510
|
createdByUserType?: {
|
@@ -5632,10 +5610,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5632
5610
|
clauses: {
|
5633
5611
|
status?: {
|
5634
5612
|
type: "exact";
|
5635
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5613
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5636
5614
|
} | {
|
5637
5615
|
type: "anyOf";
|
5638
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5616
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5639
5617
|
} | undefined;
|
5640
5618
|
data?: any;
|
5641
5619
|
createdByUserType?: {
|
@@ -5776,11 +5754,6 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5776
5754
|
};
|
5777
5755
|
}>, "many">>;
|
5778
5756
|
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
|
-
}>>;
|
5784
5757
|
}, "strip", z.ZodTypeAny, {
|
5785
5758
|
name: TranslationConfig;
|
5786
5759
|
actions: {
|
@@ -5790,10 +5763,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5790
5763
|
query: {
|
5791
5764
|
status?: {
|
5792
5765
|
type: "exact";
|
5793
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5766
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5794
5767
|
} | {
|
5795
5768
|
type: "anyOf";
|
5796
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5769
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5797
5770
|
} | undefined;
|
5798
5771
|
data?: any;
|
5799
5772
|
createdByUserType?: {
|
@@ -5898,10 +5871,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
5898
5871
|
clauses: {
|
5899
5872
|
status?: {
|
5900
5873
|
type: "exact";
|
5901
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5874
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5902
5875
|
} | {
|
5903
5876
|
type: "anyOf";
|
5904
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5877
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5905
5878
|
} | undefined;
|
5906
5879
|
data?: any;
|
5907
5880
|
createdByUserType?: {
|
@@ -6007,10 +5980,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
6007
5980
|
clauses: {
|
6008
5981
|
status?: {
|
6009
5982
|
type: "exact";
|
6010
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
5983
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6011
5984
|
} | {
|
6012
5985
|
type: "anyOf";
|
6013
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
5986
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6014
5987
|
} | undefined;
|
6015
5988
|
data?: any;
|
6016
5989
|
createdByUserType?: {
|
@@ -6120,7 +6093,6 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
6120
6093
|
label: TranslationConfig;
|
6121
6094
|
}[];
|
6122
6095
|
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;
|
6124
6096
|
}, {
|
6125
6097
|
name: {
|
6126
6098
|
id: string;
|
@@ -6134,10 +6106,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
6134
6106
|
query: {
|
6135
6107
|
status?: {
|
6136
6108
|
type: "exact";
|
6137
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6109
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6138
6110
|
} | {
|
6139
6111
|
type: "anyOf";
|
6140
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6112
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6141
6113
|
} | undefined;
|
6142
6114
|
data?: any;
|
6143
6115
|
createdByUserType?: {
|
@@ -6242,10 +6214,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
6242
6214
|
clauses: {
|
6243
6215
|
status?: {
|
6244
6216
|
type: "exact";
|
6245
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6217
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6246
6218
|
} | {
|
6247
6219
|
type: "anyOf";
|
6248
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6220
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6249
6221
|
} | undefined;
|
6250
6222
|
data?: any;
|
6251
6223
|
createdByUserType?: {
|
@@ -6351,10 +6323,10 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
6351
6323
|
clauses: {
|
6352
6324
|
status?: {
|
6353
6325
|
type: "exact";
|
6354
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6326
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6355
6327
|
} | {
|
6356
6328
|
type: "anyOf";
|
6357
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6329
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6358
6330
|
} | undefined;
|
6359
6331
|
data?: any;
|
6360
6332
|
createdByUserType?: {
|
@@ -6468,11 +6440,6 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
6468
6440
|
defaultMessage: string;
|
6469
6441
|
};
|
6470
6442
|
}[] | undefined;
|
6471
|
-
emptyMessage?: {
|
6472
|
-
id: string;
|
6473
|
-
description: string;
|
6474
|
-
defaultMessage: string;
|
6475
|
-
} | undefined;
|
6476
6443
|
}>;
|
6477
6444
|
export type WorkqueueConfig = z.infer<typeof WorkqueueConfig>;
|
6478
6445
|
export type WorkqueueConfigWithoutQuery = z.infer<typeof WorkqueueConfigWithoutQuery>;
|
@@ -6488,10 +6455,10 @@ export declare function defineWorkqueue(workqueueInput: WorkqueueConfigInput): {
|
|
6488
6455
|
clauses: {
|
6489
6456
|
status?: {
|
6490
6457
|
type: "exact";
|
6491
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6458
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6492
6459
|
} | {
|
6493
6460
|
type: "anyOf";
|
6494
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6461
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6495
6462
|
} | undefined;
|
6496
6463
|
data?: any;
|
6497
6464
|
createdByUserType?: {
|
@@ -6597,10 +6564,10 @@ export declare function defineWorkqueue(workqueueInput: WorkqueueConfigInput): {
|
|
6597
6564
|
clauses: {
|
6598
6565
|
status?: {
|
6599
6566
|
type: "exact";
|
6600
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6567
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6601
6568
|
} | {
|
6602
6569
|
type: "anyOf";
|
6603
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6570
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6604
6571
|
} | undefined;
|
6605
6572
|
data?: any;
|
6606
6573
|
createdByUserType?: {
|
@@ -6710,7 +6677,6 @@ export declare function defineWorkqueue(workqueueInput: WorkqueueConfigInput): {
|
|
6710
6677
|
label: TranslationConfig;
|
6711
6678
|
}[];
|
6712
6679
|
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;
|
6714
6680
|
};
|
6715
6681
|
export declare function defineWorkqueues(workqueues: WorkqueueConfigInput[]): {
|
6716
6682
|
name: TranslationConfig;
|
@@ -6723,10 +6689,10 @@ export declare function defineWorkqueues(workqueues: WorkqueueConfigInput[]): {
|
|
6723
6689
|
clauses: {
|
6724
6690
|
status?: {
|
6725
6691
|
type: "exact";
|
6726
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6692
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6727
6693
|
} | {
|
6728
6694
|
type: "anyOf";
|
6729
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6695
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6730
6696
|
} | undefined;
|
6731
6697
|
data?: any;
|
6732
6698
|
createdByUserType?: {
|
@@ -6832,10 +6798,10 @@ export declare function defineWorkqueues(workqueues: WorkqueueConfigInput[]): {
|
|
6832
6798
|
clauses: {
|
6833
6799
|
status?: {
|
6834
6800
|
type: "exact";
|
6835
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6801
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6836
6802
|
} | {
|
6837
6803
|
type: "anyOf";
|
6838
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6804
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6839
6805
|
} | undefined;
|
6840
6806
|
data?: any;
|
6841
6807
|
createdByUserType?: {
|
@@ -6945,7 +6911,6 @@ export declare function defineWorkqueues(workqueues: WorkqueueConfigInput[]): {
|
|
6945
6911
|
label: TranslationConfig;
|
6946
6912
|
}[];
|
6947
6913
|
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;
|
6949
6914
|
}[];
|
6950
6915
|
export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
6951
6916
|
slug: z.ZodString;
|
@@ -6956,22 +6921,22 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
6956
6921
|
eventType: z.ZodOptional<z.ZodString>;
|
6957
6922
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
6958
6923
|
type: z.ZodLiteral<"anyOf">;
|
6959
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
|
6924
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
6960
6925
|
}, "strip", z.ZodTypeAny, {
|
6961
6926
|
type: "anyOf";
|
6962
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6927
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6963
6928
|
}, {
|
6964
6929
|
type: "anyOf";
|
6965
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6930
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
6966
6931
|
}>, z.ZodObject<{
|
6967
6932
|
type: z.ZodLiteral<"exact">;
|
6968
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
|
6933
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
6969
6934
|
}, "strip", z.ZodTypeAny, {
|
6970
6935
|
type: "exact";
|
6971
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6936
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6972
6937
|
}, {
|
6973
6938
|
type: "exact";
|
6974
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6939
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
6975
6940
|
}>]>>>;
|
6976
6941
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
6977
6942
|
type: z.ZodLiteral<"exact">;
|
@@ -7210,13 +7175,13 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7210
7175
|
}>>>;
|
7211
7176
|
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
7212
7177
|
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
7213
|
-
readonly
|
7178
|
+
readonly PRINTED: "printed";
|
7214
7179
|
readonly INCOMPLETE: "incomplete";
|
7215
7180
|
readonly REJECTED: "rejected";
|
7216
7181
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
7217
7182
|
}>]>, "many">>;
|
7218
7183
|
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
7219
|
-
readonly
|
7184
|
+
readonly PRINTED: "printed";
|
7220
7185
|
readonly INCOMPLETE: "incomplete";
|
7221
7186
|
readonly REJECTED: "rejected";
|
7222
7187
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
@@ -7233,10 +7198,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7233
7198
|
id?: string | undefined;
|
7234
7199
|
status?: {
|
7235
7200
|
type: "exact";
|
7236
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7201
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7237
7202
|
} | {
|
7238
7203
|
type: "anyOf";
|
7239
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7204
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7240
7205
|
} | undefined;
|
7241
7206
|
data?: any;
|
7242
7207
|
createdByUserType?: {
|
@@ -7333,10 +7298,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7333
7298
|
id?: string | undefined;
|
7334
7299
|
status?: {
|
7335
7300
|
type: "exact";
|
7336
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7301
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7337
7302
|
} | {
|
7338
7303
|
type: "anyOf";
|
7339
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7304
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7340
7305
|
} | undefined;
|
7341
7306
|
data?: any;
|
7342
7307
|
createdByUserType?: {
|
@@ -7433,10 +7398,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7433
7398
|
id?: string | undefined;
|
7434
7399
|
status?: {
|
7435
7400
|
type: "exact";
|
7436
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7401
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7437
7402
|
} | {
|
7438
7403
|
type: "anyOf";
|
7439
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7404
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7440
7405
|
} | undefined;
|
7441
7406
|
data?: any;
|
7442
7407
|
createdByUserType?: {
|
@@ -7533,10 +7498,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7533
7498
|
id?: string | undefined;
|
7534
7499
|
status?: {
|
7535
7500
|
type: "exact";
|
7536
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7501
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7537
7502
|
} | {
|
7538
7503
|
type: "anyOf";
|
7539
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7504
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7540
7505
|
} | undefined;
|
7541
7506
|
data?: any;
|
7542
7507
|
createdByUserType?: {
|
@@ -7633,10 +7598,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7633
7598
|
id?: string | undefined;
|
7634
7599
|
status?: {
|
7635
7600
|
type: "exact";
|
7636
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7601
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7637
7602
|
} | {
|
7638
7603
|
type: "anyOf";
|
7639
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7604
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7640
7605
|
} | undefined;
|
7641
7606
|
data?: any;
|
7642
7607
|
createdByUserType?: {
|
@@ -7733,10 +7698,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7733
7698
|
id?: string | undefined;
|
7734
7699
|
status?: {
|
7735
7700
|
type: "exact";
|
7736
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7701
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7737
7702
|
} | {
|
7738
7703
|
type: "anyOf";
|
7739
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7704
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7740
7705
|
} | undefined;
|
7741
7706
|
data?: any;
|
7742
7707
|
createdByUserType?: {
|
@@ -7836,10 +7801,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7836
7801
|
id?: string | undefined;
|
7837
7802
|
status?: {
|
7838
7803
|
type: "exact";
|
7839
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7804
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7840
7805
|
} | {
|
7841
7806
|
type: "anyOf";
|
7842
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7807
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7843
7808
|
} | undefined;
|
7844
7809
|
data?: any;
|
7845
7810
|
createdByUserType?: {
|
@@ -7936,10 +7901,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
7936
7901
|
id?: string | undefined;
|
7937
7902
|
status?: {
|
7938
7903
|
type: "exact";
|
7939
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7904
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7940
7905
|
} | {
|
7941
7906
|
type: "anyOf";
|
7942
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7907
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
7943
7908
|
} | undefined;
|
7944
7909
|
data?: any;
|
7945
7910
|
createdByUserType?: {
|
@@ -8044,10 +8009,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
8044
8009
|
id?: string | undefined;
|
8045
8010
|
status?: {
|
8046
8011
|
type: "exact";
|
8047
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
8012
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
8048
8013
|
} | {
|
8049
8014
|
type: "anyOf";
|
8050
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
8015
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
8051
8016
|
} | undefined;
|
8052
8017
|
data?: any;
|
8053
8018
|
createdByUserType?: {
|
@@ -8144,10 +8109,10 @@ export declare const WorkqueueCountInput: z.ZodArray<z.ZodObject<{
|
|
8144
8109
|
id?: string | undefined;
|
8145
8110
|
status?: {
|
8146
8111
|
type: "exact";
|
8147
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
8112
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
8148
8113
|
} | {
|
8149
8114
|
type: "anyOf";
|
8150
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
8115
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
8151
8116
|
} | undefined;
|
8152
8117
|
data?: any;
|
8153
8118
|
createdByUserType?: {
|