@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
@@ -102,8 +102,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
102
102
|
street?: string | null | undefined;
|
103
103
|
zipCode?: string | null | undefined;
|
104
104
|
} | {
|
105
|
-
firstname
|
106
|
-
surname
|
105
|
+
firstname: string;
|
106
|
+
surname: string;
|
107
107
|
middlename?: string | null | undefined;
|
108
108
|
} | {
|
109
109
|
country: string;
|
@@ -150,8 +150,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
150
150
|
street?: string | null | undefined;
|
151
151
|
zipCode?: string | null | undefined;
|
152
152
|
} | {
|
153
|
-
firstname
|
154
|
-
surname
|
153
|
+
firstname: string;
|
154
|
+
surname: string;
|
155
155
|
middlename?: string | null | undefined;
|
156
156
|
} | {
|
157
157
|
country: string;
|
@@ -205,8 +205,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
205
205
|
street?: string | null | undefined;
|
206
206
|
zipCode?: string | null | undefined;
|
207
207
|
} | {
|
208
|
-
firstname
|
209
|
-
surname
|
208
|
+
firstname: string;
|
209
|
+
surname: string;
|
210
210
|
middlename?: string | null | undefined;
|
211
211
|
} | {
|
212
212
|
country: string;
|
@@ -252,8 +252,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
252
252
|
street?: string | null | undefined;
|
253
253
|
zipCode?: string | null | undefined;
|
254
254
|
} | {
|
255
|
-
firstname
|
256
|
-
surname
|
255
|
+
firstname: string;
|
256
|
+
surname: string;
|
257
257
|
middlename?: string | null | undefined;
|
258
258
|
} | {
|
259
259
|
country: string;
|
@@ -307,8 +307,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
307
307
|
street?: string | null | undefined;
|
308
308
|
zipCode?: string | null | undefined;
|
309
309
|
} | {
|
310
|
-
firstname
|
311
|
-
surname
|
310
|
+
firstname: string;
|
311
|
+
surname: string;
|
312
312
|
middlename?: string | null | undefined;
|
313
313
|
} | {
|
314
314
|
country: string;
|
@@ -354,8 +354,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
354
354
|
street?: string | null | undefined;
|
355
355
|
zipCode?: string | null | undefined;
|
356
356
|
} | {
|
357
|
-
firstname
|
358
|
-
surname
|
357
|
+
firstname: string;
|
358
|
+
surname: string;
|
359
359
|
middlename?: string | null | undefined;
|
360
360
|
} | {
|
361
361
|
country: string;
|
@@ -410,8 +410,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
410
410
|
street?: string | null | undefined;
|
411
411
|
zipCode?: string | null | undefined;
|
412
412
|
} | {
|
413
|
-
firstname
|
414
|
-
surname
|
413
|
+
firstname: string;
|
414
|
+
surname: string;
|
415
415
|
middlename?: string | null | undefined;
|
416
416
|
} | {
|
417
417
|
country: string;
|
@@ -457,8 +457,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
457
457
|
street?: string | null | undefined;
|
458
458
|
zipCode?: string | null | undefined;
|
459
459
|
} | {
|
460
|
-
firstname
|
461
|
-
surname
|
460
|
+
firstname: string;
|
461
|
+
surname: string;
|
462
462
|
middlename?: string | null | undefined;
|
463
463
|
} | {
|
464
464
|
country: string;
|
@@ -512,8 +512,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
512
512
|
street?: string | null | undefined;
|
513
513
|
zipCode?: string | null | undefined;
|
514
514
|
} | {
|
515
|
-
firstname
|
516
|
-
surname
|
515
|
+
firstname: string;
|
516
|
+
surname: string;
|
517
517
|
middlename?: string | null | undefined;
|
518
518
|
} | {
|
519
519
|
country: string;
|
@@ -559,8 +559,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
559
559
|
street?: string | null | undefined;
|
560
560
|
zipCode?: string | null | undefined;
|
561
561
|
} | {
|
562
|
-
firstname
|
563
|
-
surname
|
562
|
+
firstname: string;
|
563
|
+
surname: string;
|
564
564
|
middlename?: string | null | undefined;
|
565
565
|
} | {
|
566
566
|
country: string;
|
@@ -618,8 +618,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
618
618
|
street?: string | null | undefined;
|
619
619
|
zipCode?: string | null | undefined;
|
620
620
|
} | {
|
621
|
-
firstname
|
622
|
-
surname
|
621
|
+
firstname: string;
|
622
|
+
surname: string;
|
623
623
|
middlename?: string | null | undefined;
|
624
624
|
} | {
|
625
625
|
country: string;
|
@@ -665,8 +665,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
665
665
|
street?: string | null | undefined;
|
666
666
|
zipCode?: string | null | undefined;
|
667
667
|
} | {
|
668
|
-
firstname
|
669
|
-
surname
|
668
|
+
firstname: string;
|
669
|
+
surname: string;
|
670
670
|
middlename?: string | null | undefined;
|
671
671
|
} | {
|
672
672
|
country: string;
|
@@ -720,8 +720,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
720
720
|
street?: string | null | undefined;
|
721
721
|
zipCode?: string | null | undefined;
|
722
722
|
} | {
|
723
|
-
firstname
|
724
|
-
surname
|
723
|
+
firstname: string;
|
724
|
+
surname: string;
|
725
725
|
middlename?: string | null | undefined;
|
726
726
|
} | {
|
727
727
|
country: string;
|
@@ -767,8 +767,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
767
767
|
street?: string | null | undefined;
|
768
768
|
zipCode?: string | null | undefined;
|
769
769
|
} | {
|
770
|
-
firstname
|
771
|
-
surname
|
770
|
+
firstname: string;
|
771
|
+
surname: string;
|
772
772
|
middlename?: string | null | undefined;
|
773
773
|
} | {
|
774
774
|
country: string;
|
@@ -826,8 +826,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
826
826
|
street?: string | null | undefined;
|
827
827
|
zipCode?: string | null | undefined;
|
828
828
|
} | {
|
829
|
-
firstname
|
830
|
-
surname
|
829
|
+
firstname: string;
|
830
|
+
surname: string;
|
831
831
|
middlename?: string | null | undefined;
|
832
832
|
} | {
|
833
833
|
country: string;
|
@@ -873,8 +873,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
873
873
|
street?: string | null | undefined;
|
874
874
|
zipCode?: string | null | undefined;
|
875
875
|
} | {
|
876
|
-
firstname
|
877
|
-
surname
|
876
|
+
firstname: string;
|
877
|
+
surname: string;
|
878
878
|
middlename?: string | null | undefined;
|
879
879
|
} | {
|
880
880
|
country: string;
|
@@ -928,8 +928,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
928
928
|
street?: string | null | undefined;
|
929
929
|
zipCode?: string | null | undefined;
|
930
930
|
} | {
|
931
|
-
firstname
|
932
|
-
surname
|
931
|
+
firstname: string;
|
932
|
+
surname: string;
|
933
933
|
middlename?: string | null | undefined;
|
934
934
|
} | {
|
935
935
|
country: string;
|
@@ -975,8 +975,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
975
975
|
street?: string | null | undefined;
|
976
976
|
zipCode?: string | null | undefined;
|
977
977
|
} | {
|
978
|
-
firstname
|
979
|
-
surname
|
978
|
+
firstname: string;
|
979
|
+
surname: string;
|
980
980
|
middlename?: string | null | undefined;
|
981
981
|
} | {
|
982
982
|
country: string;
|
@@ -1030,8 +1030,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1030
1030
|
street?: string | null | undefined;
|
1031
1031
|
zipCode?: string | null | undefined;
|
1032
1032
|
} | {
|
1033
|
-
firstname
|
1034
|
-
surname
|
1033
|
+
firstname: string;
|
1034
|
+
surname: string;
|
1035
1035
|
middlename?: string | null | undefined;
|
1036
1036
|
} | {
|
1037
1037
|
country: string;
|
@@ -1077,8 +1077,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1077
1077
|
street?: string | null | undefined;
|
1078
1078
|
zipCode?: string | null | undefined;
|
1079
1079
|
} | {
|
1080
|
-
firstname
|
1081
|
-
surname
|
1080
|
+
firstname: string;
|
1081
|
+
surname: string;
|
1082
1082
|
middlename?: string | null | undefined;
|
1083
1083
|
} | {
|
1084
1084
|
country: string;
|
@@ -1132,8 +1132,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1132
1132
|
street?: string | null | undefined;
|
1133
1133
|
zipCode?: string | null | undefined;
|
1134
1134
|
} | {
|
1135
|
-
firstname
|
1136
|
-
surname
|
1135
|
+
firstname: string;
|
1136
|
+
surname: string;
|
1137
1137
|
middlename?: string | null | undefined;
|
1138
1138
|
} | {
|
1139
1139
|
country: string;
|
@@ -1161,6 +1161,9 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1161
1161
|
start: string;
|
1162
1162
|
end: string;
|
1163
1163
|
} | null | undefined>;
|
1164
|
+
content?: {
|
1165
|
+
templateId?: string | undefined;
|
1166
|
+
} | null | undefined;
|
1164
1167
|
createdBySignature?: string | null | undefined;
|
1165
1168
|
createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
1166
1169
|
annotation?: Record<string, string | number | boolean | {
|
@@ -1179,8 +1182,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1179
1182
|
street?: string | null | undefined;
|
1180
1183
|
zipCode?: string | null | undefined;
|
1181
1184
|
} | {
|
1182
|
-
firstname
|
1183
|
-
surname
|
1185
|
+
firstname: string;
|
1186
|
+
surname: string;
|
1184
1187
|
middlename?: string | null | undefined;
|
1185
1188
|
} | {
|
1186
1189
|
country: string;
|
@@ -1209,9 +1212,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1209
1212
|
end: string;
|
1210
1213
|
} | null | undefined> | null | undefined;
|
1211
1214
|
originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
1212
|
-
actionDetails?: {
|
1213
|
-
templateId?: string | undefined;
|
1214
|
-
} | null | undefined;
|
1215
1215
|
} | {
|
1216
1216
|
type: "REQUEST_CORRECTION";
|
1217
1217
|
id: string & import("zod").BRAND<"UUID">;
|
@@ -1237,8 +1237,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1237
1237
|
street?: string | null | undefined;
|
1238
1238
|
zipCode?: string | null | undefined;
|
1239
1239
|
} | {
|
1240
|
-
firstname
|
1241
|
-
surname
|
1240
|
+
firstname: string;
|
1241
|
+
surname: string;
|
1242
1242
|
middlename?: string | null | undefined;
|
1243
1243
|
} | {
|
1244
1244
|
country: string;
|
@@ -1284,8 +1284,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1284
1284
|
street?: string | null | undefined;
|
1285
1285
|
zipCode?: string | null | undefined;
|
1286
1286
|
} | {
|
1287
|
-
firstname
|
1288
|
-
surname
|
1287
|
+
firstname: string;
|
1288
|
+
surname: string;
|
1289
1289
|
middlename?: string | null | undefined;
|
1290
1290
|
} | {
|
1291
1291
|
country: string;
|
@@ -1339,8 +1339,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1339
1339
|
street?: string | null | undefined;
|
1340
1340
|
zipCode?: string | null | undefined;
|
1341
1341
|
} | {
|
1342
|
-
firstname
|
1343
|
-
surname
|
1342
|
+
firstname: string;
|
1343
|
+
surname: string;
|
1344
1344
|
middlename?: string | null | undefined;
|
1345
1345
|
} | {
|
1346
1346
|
country: string;
|
@@ -1387,8 +1387,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1387
1387
|
street?: string | null | undefined;
|
1388
1388
|
zipCode?: string | null | undefined;
|
1389
1389
|
} | {
|
1390
|
-
firstname
|
1391
|
-
surname
|
1390
|
+
firstname: string;
|
1391
|
+
surname: string;
|
1392
1392
|
middlename?: string | null | undefined;
|
1393
1393
|
} | {
|
1394
1394
|
country: string;
|
@@ -1421,6 +1421,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1421
1421
|
type: "REJECT_CORRECTION";
|
1422
1422
|
id: string & import("zod").BRAND<"UUID">;
|
1423
1423
|
status: "Rejected" | "Requested" | "Accepted";
|
1424
|
+
reason: {
|
1425
|
+
message: string;
|
1426
|
+
isDuplicate?: boolean | undefined;
|
1427
|
+
};
|
1424
1428
|
transactionId: string;
|
1425
1429
|
createdByUserType: "system" | "user";
|
1426
1430
|
createdAt: string;
|
@@ -1442,8 +1446,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1442
1446
|
street?: string | null | undefined;
|
1443
1447
|
zipCode?: string | null | undefined;
|
1444
1448
|
} | {
|
1445
|
-
firstname
|
1446
|
-
surname
|
1449
|
+
firstname: string;
|
1450
|
+
surname: string;
|
1447
1451
|
middlename?: string | null | undefined;
|
1448
1452
|
} | {
|
1449
1453
|
country: string;
|
@@ -1490,8 +1494,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1490
1494
|
street?: string | null | undefined;
|
1491
1495
|
zipCode?: string | null | undefined;
|
1492
1496
|
} | {
|
1493
|
-
firstname
|
1494
|
-
surname
|
1497
|
+
firstname: string;
|
1498
|
+
surname: string;
|
1495
1499
|
middlename?: string | null | undefined;
|
1496
1500
|
} | {
|
1497
1501
|
country: string;
|
@@ -1545,8 +1549,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1545
1549
|
street?: string | null | undefined;
|
1546
1550
|
zipCode?: string | null | undefined;
|
1547
1551
|
} | {
|
1548
|
-
firstname
|
1549
|
-
surname
|
1552
|
+
firstname: string;
|
1553
|
+
surname: string;
|
1550
1554
|
middlename?: string | null | undefined;
|
1551
1555
|
} | {
|
1552
1556
|
country: string;
|
@@ -1592,8 +1596,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1592
1596
|
street?: string | null | undefined;
|
1593
1597
|
zipCode?: string | null | undefined;
|
1594
1598
|
} | {
|
1595
|
-
firstname
|
1596
|
-
surname
|
1599
|
+
firstname: string;
|
1600
|
+
surname: string;
|
1597
1601
|
middlename?: string | null | undefined;
|
1598
1602
|
} | {
|
1599
1603
|
country: string;
|
@@ -1671,8 +1675,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1671
1675
|
street?: string | null | undefined;
|
1672
1676
|
zipCode?: string | null | undefined;
|
1673
1677
|
} | {
|
1674
|
-
firstname
|
1675
|
-
surname
|
1678
|
+
firstname: string;
|
1679
|
+
surname: string;
|
1676
1680
|
middlename?: string | null | undefined;
|
1677
1681
|
} | {
|
1678
1682
|
country: string;
|
@@ -1719,8 +1723,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1719
1723
|
street?: string | null | undefined;
|
1720
1724
|
zipCode?: string | null | undefined;
|
1721
1725
|
} | {
|
1722
|
-
firstname
|
1723
|
-
surname
|
1726
|
+
firstname: string;
|
1727
|
+
surname: string;
|
1724
1728
|
middlename?: string | null | undefined;
|
1725
1729
|
} | {
|
1726
1730
|
country: string;
|
@@ -1774,8 +1778,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1774
1778
|
street?: string | null | undefined;
|
1775
1779
|
zipCode?: string | null | undefined;
|
1776
1780
|
} | {
|
1777
|
-
firstname
|
1778
|
-
surname
|
1781
|
+
firstname: string;
|
1782
|
+
surname: string;
|
1779
1783
|
middlename?: string | null | undefined;
|
1780
1784
|
} | {
|
1781
1785
|
country: string;
|
@@ -1821,8 +1825,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1821
1825
|
street?: string | null | undefined;
|
1822
1826
|
zipCode?: string | null | undefined;
|
1823
1827
|
} | {
|
1824
|
-
firstname
|
1825
|
-
surname
|
1828
|
+
firstname: string;
|
1829
|
+
surname: string;
|
1826
1830
|
middlename?: string | null | undefined;
|
1827
1831
|
} | {
|
1828
1832
|
country: string;
|
@@ -1876,8 +1880,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1876
1880
|
street?: string | null | undefined;
|
1877
1881
|
zipCode?: string | null | undefined;
|
1878
1882
|
} | {
|
1879
|
-
firstname
|
1880
|
-
surname
|
1883
|
+
firstname: string;
|
1884
|
+
surname: string;
|
1881
1885
|
middlename?: string | null | undefined;
|
1882
1886
|
} | {
|
1883
1887
|
country: string;
|
@@ -1923,8 +1927,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1923
1927
|
street?: string | null | undefined;
|
1924
1928
|
zipCode?: string | null | undefined;
|
1925
1929
|
} | {
|
1926
|
-
firstname
|
1927
|
-
surname
|
1930
|
+
firstname: string;
|
1931
|
+
surname: string;
|
1928
1932
|
middlename?: string | null | undefined;
|
1929
1933
|
} | {
|
1930
1934
|
country: string;
|
@@ -1979,8 +1983,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1979
1983
|
street?: string | null | undefined;
|
1980
1984
|
zipCode?: string | null | undefined;
|
1981
1985
|
} | {
|
1982
|
-
firstname
|
1983
|
-
surname
|
1986
|
+
firstname: string;
|
1987
|
+
surname: string;
|
1984
1988
|
middlename?: string | null | undefined;
|
1985
1989
|
} | {
|
1986
1990
|
country: string;
|
@@ -2026,8 +2030,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2026
2030
|
street?: string | null | undefined;
|
2027
2031
|
zipCode?: string | null | undefined;
|
2028
2032
|
} | {
|
2029
|
-
firstname
|
2030
|
-
surname
|
2033
|
+
firstname: string;
|
2034
|
+
surname: string;
|
2031
2035
|
middlename?: string | null | undefined;
|
2032
2036
|
} | {
|
2033
2037
|
country: string;
|
@@ -2081,8 +2085,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2081
2085
|
street?: string | null | undefined;
|
2082
2086
|
zipCode?: string | null | undefined;
|
2083
2087
|
} | {
|
2084
|
-
firstname
|
2085
|
-
surname
|
2088
|
+
firstname: string;
|
2089
|
+
surname: string;
|
2086
2090
|
middlename?: string | null | undefined;
|
2087
2091
|
} | {
|
2088
2092
|
country: string;
|
@@ -2128,8 +2132,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2128
2132
|
street?: string | null | undefined;
|
2129
2133
|
zipCode?: string | null | undefined;
|
2130
2134
|
} | {
|
2131
|
-
firstname
|
2132
|
-
surname
|
2135
|
+
firstname: string;
|
2136
|
+
surname: string;
|
2133
2137
|
middlename?: string | null | undefined;
|
2134
2138
|
} | {
|
2135
2139
|
country: string;
|
@@ -2187,8 +2191,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2187
2191
|
street?: string | null | undefined;
|
2188
2192
|
zipCode?: string | null | undefined;
|
2189
2193
|
} | {
|
2190
|
-
firstname
|
2191
|
-
surname
|
2194
|
+
firstname: string;
|
2195
|
+
surname: string;
|
2192
2196
|
middlename?: string | null | undefined;
|
2193
2197
|
} | {
|
2194
2198
|
country: string;
|
@@ -2234,8 +2238,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2234
2238
|
street?: string | null | undefined;
|
2235
2239
|
zipCode?: string | null | undefined;
|
2236
2240
|
} | {
|
2237
|
-
firstname
|
2238
|
-
surname
|
2241
|
+
firstname: string;
|
2242
|
+
surname: string;
|
2239
2243
|
middlename?: string | null | undefined;
|
2240
2244
|
} | {
|
2241
2245
|
country: string;
|
@@ -2289,8 +2293,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2289
2293
|
street?: string | null | undefined;
|
2290
2294
|
zipCode?: string | null | undefined;
|
2291
2295
|
} | {
|
2292
|
-
firstname
|
2293
|
-
surname
|
2296
|
+
firstname: string;
|
2297
|
+
surname: string;
|
2294
2298
|
middlename?: string | null | undefined;
|
2295
2299
|
} | {
|
2296
2300
|
country: string;
|
@@ -2336,8 +2340,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2336
2340
|
street?: string | null | undefined;
|
2337
2341
|
zipCode?: string | null | undefined;
|
2338
2342
|
} | {
|
2339
|
-
firstname
|
2340
|
-
surname
|
2343
|
+
firstname: string;
|
2344
|
+
surname: string;
|
2341
2345
|
middlename?: string | null | undefined;
|
2342
2346
|
} | {
|
2343
2347
|
country: string;
|
@@ -2395,8 +2399,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2395
2399
|
street?: string | null | undefined;
|
2396
2400
|
zipCode?: string | null | undefined;
|
2397
2401
|
} | {
|
2398
|
-
firstname
|
2399
|
-
surname
|
2402
|
+
firstname: string;
|
2403
|
+
surname: string;
|
2400
2404
|
middlename?: string | null | undefined;
|
2401
2405
|
} | {
|
2402
2406
|
country: string;
|
@@ -2442,8 +2446,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2442
2446
|
street?: string | null | undefined;
|
2443
2447
|
zipCode?: string | null | undefined;
|
2444
2448
|
} | {
|
2445
|
-
firstname
|
2446
|
-
surname
|
2449
|
+
firstname: string;
|
2450
|
+
surname: string;
|
2447
2451
|
middlename?: string | null | undefined;
|
2448
2452
|
} | {
|
2449
2453
|
country: string;
|
@@ -2497,8 +2501,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2497
2501
|
street?: string | null | undefined;
|
2498
2502
|
zipCode?: string | null | undefined;
|
2499
2503
|
} | {
|
2500
|
-
firstname
|
2501
|
-
surname
|
2504
|
+
firstname: string;
|
2505
|
+
surname: string;
|
2502
2506
|
middlename?: string | null | undefined;
|
2503
2507
|
} | {
|
2504
2508
|
country: string;
|
@@ -2544,8 +2548,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2544
2548
|
street?: string | null | undefined;
|
2545
2549
|
zipCode?: string | null | undefined;
|
2546
2550
|
} | {
|
2547
|
-
firstname
|
2548
|
-
surname
|
2551
|
+
firstname: string;
|
2552
|
+
surname: string;
|
2549
2553
|
middlename?: string | null | undefined;
|
2550
2554
|
} | {
|
2551
2555
|
country: string;
|
@@ -2599,8 +2603,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2599
2603
|
street?: string | null | undefined;
|
2600
2604
|
zipCode?: string | null | undefined;
|
2601
2605
|
} | {
|
2602
|
-
firstname
|
2603
|
-
surname
|
2606
|
+
firstname: string;
|
2607
|
+
surname: string;
|
2604
2608
|
middlename?: string | null | undefined;
|
2605
2609
|
} | {
|
2606
2610
|
country: string;
|
@@ -2646,8 +2650,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2646
2650
|
street?: string | null | undefined;
|
2647
2651
|
zipCode?: string | null | undefined;
|
2648
2652
|
} | {
|
2649
|
-
firstname
|
2650
|
-
surname
|
2653
|
+
firstname: string;
|
2654
|
+
surname: string;
|
2651
2655
|
middlename?: string | null | undefined;
|
2652
2656
|
} | {
|
2653
2657
|
country: string;
|
@@ -2701,8 +2705,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2701
2705
|
street?: string | null | undefined;
|
2702
2706
|
zipCode?: string | null | undefined;
|
2703
2707
|
} | {
|
2704
|
-
firstname
|
2705
|
-
surname
|
2708
|
+
firstname: string;
|
2709
|
+
surname: string;
|
2706
2710
|
middlename?: string | null | undefined;
|
2707
2711
|
} | {
|
2708
2712
|
country: string;
|
@@ -2730,6 +2734,9 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2730
2734
|
start: string;
|
2731
2735
|
end: string;
|
2732
2736
|
} | null | undefined>;
|
2737
|
+
content?: {
|
2738
|
+
templateId?: string | undefined;
|
2739
|
+
} | null | undefined;
|
2733
2740
|
createdBySignature?: string | null | undefined;
|
2734
2741
|
createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
2735
2742
|
annotation?: Record<string, string | number | boolean | {
|
@@ -2748,8 +2755,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2748
2755
|
street?: string | null | undefined;
|
2749
2756
|
zipCode?: string | null | undefined;
|
2750
2757
|
} | {
|
2751
|
-
firstname
|
2752
|
-
surname
|
2758
|
+
firstname: string;
|
2759
|
+
surname: string;
|
2753
2760
|
middlename?: string | null | undefined;
|
2754
2761
|
} | {
|
2755
2762
|
country: string;
|
@@ -2778,9 +2785,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2778
2785
|
end: string;
|
2779
2786
|
} | null | undefined> | null | undefined;
|
2780
2787
|
originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
2781
|
-
actionDetails?: {
|
2782
|
-
templateId?: string | undefined;
|
2783
|
-
} | null | undefined;
|
2784
2788
|
} | {
|
2785
2789
|
type: "REQUEST_CORRECTION";
|
2786
2790
|
id: string & import("zod").BRAND<"UUID">;
|
@@ -2806,8 +2810,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2806
2810
|
street?: string | null | undefined;
|
2807
2811
|
zipCode?: string | null | undefined;
|
2808
2812
|
} | {
|
2809
|
-
firstname
|
2810
|
-
surname
|
2813
|
+
firstname: string;
|
2814
|
+
surname: string;
|
2811
2815
|
middlename?: string | null | undefined;
|
2812
2816
|
} | {
|
2813
2817
|
country: string;
|
@@ -2853,8 +2857,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2853
2857
|
street?: string | null | undefined;
|
2854
2858
|
zipCode?: string | null | undefined;
|
2855
2859
|
} | {
|
2856
|
-
firstname
|
2857
|
-
surname
|
2860
|
+
firstname: string;
|
2861
|
+
surname: string;
|
2858
2862
|
middlename?: string | null | undefined;
|
2859
2863
|
} | {
|
2860
2864
|
country: string;
|
@@ -2908,8 +2912,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2908
2912
|
street?: string | null | undefined;
|
2909
2913
|
zipCode?: string | null | undefined;
|
2910
2914
|
} | {
|
2911
|
-
firstname
|
2912
|
-
surname
|
2915
|
+
firstname: string;
|
2916
|
+
surname: string;
|
2913
2917
|
middlename?: string | null | undefined;
|
2914
2918
|
} | {
|
2915
2919
|
country: string;
|
@@ -2956,8 +2960,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2956
2960
|
street?: string | null | undefined;
|
2957
2961
|
zipCode?: string | null | undefined;
|
2958
2962
|
} | {
|
2959
|
-
firstname
|
2960
|
-
surname
|
2963
|
+
firstname: string;
|
2964
|
+
surname: string;
|
2961
2965
|
middlename?: string | null | undefined;
|
2962
2966
|
} | {
|
2963
2967
|
country: string;
|
@@ -2990,6 +2994,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2990
2994
|
type: "REJECT_CORRECTION";
|
2991
2995
|
id: string & import("zod").BRAND<"UUID">;
|
2992
2996
|
status: "Rejected" | "Requested" | "Accepted";
|
2997
|
+
reason: {
|
2998
|
+
message: string;
|
2999
|
+
isDuplicate?: boolean | undefined;
|
3000
|
+
};
|
2993
3001
|
transactionId: string;
|
2994
3002
|
createdByUserType: "system" | "user";
|
2995
3003
|
createdAt: string;
|
@@ -3011,8 +3019,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3011
3019
|
street?: string | null | undefined;
|
3012
3020
|
zipCode?: string | null | undefined;
|
3013
3021
|
} | {
|
3014
|
-
firstname
|
3015
|
-
surname
|
3022
|
+
firstname: string;
|
3023
|
+
surname: string;
|
3016
3024
|
middlename?: string | null | undefined;
|
3017
3025
|
} | {
|
3018
3026
|
country: string;
|
@@ -3059,8 +3067,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3059
3067
|
street?: string | null | undefined;
|
3060
3068
|
zipCode?: string | null | undefined;
|
3061
3069
|
} | {
|
3062
|
-
firstname
|
3063
|
-
surname
|
3070
|
+
firstname: string;
|
3071
|
+
surname: string;
|
3064
3072
|
middlename?: string | null | undefined;
|
3065
3073
|
} | {
|
3066
3074
|
country: string;
|
@@ -3114,8 +3122,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3114
3122
|
street?: string | null | undefined;
|
3115
3123
|
zipCode?: string | null | undefined;
|
3116
3124
|
} | {
|
3117
|
-
firstname
|
3118
|
-
surname
|
3125
|
+
firstname: string;
|
3126
|
+
surname: string;
|
3119
3127
|
middlename?: string | null | undefined;
|
3120
3128
|
} | {
|
3121
3129
|
country: string;
|
@@ -3161,8 +3169,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3161
3169
|
street?: string | null | undefined;
|
3162
3170
|
zipCode?: string | null | undefined;
|
3163
3171
|
} | {
|
3164
|
-
firstname
|
3165
|
-
surname
|
3172
|
+
firstname: string;
|
3173
|
+
surname: string;
|
3166
3174
|
middlename?: string | null | undefined;
|
3167
3175
|
} | {
|
3168
3176
|
country: string;
|
@@ -3269,8 +3277,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3269
3277
|
street?: string | null | undefined;
|
3270
3278
|
zipCode?: string | null | undefined;
|
3271
3279
|
} | {
|
3272
|
-
firstname
|
3273
|
-
surname
|
3280
|
+
firstname: string;
|
3281
|
+
surname: string;
|
3274
3282
|
middlename?: string | null | undefined;
|
3275
3283
|
} | {
|
3276
3284
|
country: string;
|
@@ -3316,8 +3324,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3316
3324
|
street?: string | null | undefined;
|
3317
3325
|
zipCode?: string | null | undefined;
|
3318
3326
|
} | {
|
3319
|
-
firstname
|
3320
|
-
surname
|
3327
|
+
firstname: string;
|
3328
|
+
surname: string;
|
3321
3329
|
middlename?: string | null | undefined;
|
3322
3330
|
} | {
|
3323
3331
|
country: string;
|
@@ -3372,8 +3380,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3372
3380
|
street?: string | null | undefined;
|
3373
3381
|
zipCode?: string | null | undefined;
|
3374
3382
|
} | {
|
3375
|
-
firstname
|
3376
|
-
surname
|
3383
|
+
firstname: string;
|
3384
|
+
surname: string;
|
3377
3385
|
middlename?: string | null | undefined;
|
3378
3386
|
} | {
|
3379
3387
|
country: string;
|
@@ -3417,8 +3425,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3417
3425
|
street?: string | null | undefined;
|
3418
3426
|
zipCode?: string | null | undefined;
|
3419
3427
|
} | {
|
3420
|
-
firstname
|
3421
|
-
surname
|
3428
|
+
firstname: string;
|
3429
|
+
surname: string;
|
3422
3430
|
middlename?: string | null | undefined;
|
3423
3431
|
} | {
|
3424
3432
|
country: string;
|
@@ -3478,8 +3486,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3478
3486
|
street?: string | null | undefined;
|
3479
3487
|
zipCode?: string | null | undefined;
|
3480
3488
|
} | {
|
3481
|
-
firstname
|
3482
|
-
surname
|
3489
|
+
firstname: string;
|
3490
|
+
surname: string;
|
3483
3491
|
middlename?: string | null | undefined;
|
3484
3492
|
} | {
|
3485
3493
|
country: string;
|
@@ -3525,8 +3533,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3525
3533
|
street?: string | null | undefined;
|
3526
3534
|
zipCode?: string | null | undefined;
|
3527
3535
|
} | {
|
3528
|
-
firstname
|
3529
|
-
surname
|
3536
|
+
firstname: string;
|
3537
|
+
surname: string;
|
3530
3538
|
middlename?: string | null | undefined;
|
3531
3539
|
} | {
|
3532
3540
|
country: string;
|
@@ -3925,8 +3933,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3925
3933
|
street?: string | null | undefined;
|
3926
3934
|
zipCode?: string | null | undefined;
|
3927
3935
|
} | {
|
3928
|
-
firstname
|
3929
|
-
surname
|
3936
|
+
firstname: string;
|
3937
|
+
surname: string;
|
3930
3938
|
middlename?: string | null | undefined;
|
3931
3939
|
} | {
|
3932
3940
|
country: string;
|
@@ -3970,8 +3978,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3970
3978
|
street?: string | null | undefined;
|
3971
3979
|
zipCode?: string | null | undefined;
|
3972
3980
|
} | {
|
3973
|
-
firstname
|
3974
|
-
surname
|
3981
|
+
firstname: string;
|
3982
|
+
surname: string;
|
3975
3983
|
middlename?: string | null | undefined;
|
3976
3984
|
} | {
|
3977
3985
|
country: string;
|
@@ -4032,8 +4040,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4032
4040
|
street?: string | null | undefined;
|
4033
4041
|
zipCode?: string | null | undefined;
|
4034
4042
|
} | {
|
4035
|
-
firstname
|
4036
|
-
surname
|
4043
|
+
firstname: string;
|
4044
|
+
surname: string;
|
4037
4045
|
middlename?: string | null | undefined;
|
4038
4046
|
} | {
|
4039
4047
|
country: string;
|
@@ -4080,8 +4088,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4080
4088
|
street?: string | null | undefined;
|
4081
4089
|
zipCode?: string | null | undefined;
|
4082
4090
|
} | {
|
4083
|
-
firstname
|
4084
|
-
surname
|
4091
|
+
firstname: string;
|
4092
|
+
surname: string;
|
4085
4093
|
middlename?: string | null | undefined;
|
4086
4094
|
} | {
|
4087
4095
|
country: string;
|
@@ -4135,8 +4143,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4135
4143
|
street?: string | null | undefined;
|
4136
4144
|
zipCode?: string | null | undefined;
|
4137
4145
|
} | {
|
4138
|
-
firstname
|
4139
|
-
surname
|
4146
|
+
firstname: string;
|
4147
|
+
surname: string;
|
4140
4148
|
middlename?: string | null | undefined;
|
4141
4149
|
} | {
|
4142
4150
|
country: string;
|
@@ -4182,8 +4190,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4182
4190
|
street?: string | null | undefined;
|
4183
4191
|
zipCode?: string | null | undefined;
|
4184
4192
|
} | {
|
4185
|
-
firstname
|
4186
|
-
surname
|
4193
|
+
firstname: string;
|
4194
|
+
surname: string;
|
4187
4195
|
middlename?: string | null | undefined;
|
4188
4196
|
} | {
|
4189
4197
|
country: string;
|
@@ -4237,8 +4245,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4237
4245
|
street?: string | null | undefined;
|
4238
4246
|
zipCode?: string | null | undefined;
|
4239
4247
|
} | {
|
4240
|
-
firstname
|
4241
|
-
surname
|
4248
|
+
firstname: string;
|
4249
|
+
surname: string;
|
4242
4250
|
middlename?: string | null | undefined;
|
4243
4251
|
} | {
|
4244
4252
|
country: string;
|
@@ -4284,8 +4292,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4284
4292
|
street?: string | null | undefined;
|
4285
4293
|
zipCode?: string | null | undefined;
|
4286
4294
|
} | {
|
4287
|
-
firstname
|
4288
|
-
surname
|
4295
|
+
firstname: string;
|
4296
|
+
surname: string;
|
4289
4297
|
middlename?: string | null | undefined;
|
4290
4298
|
} | {
|
4291
4299
|
country: string;
|
@@ -4340,8 +4348,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4340
4348
|
street?: string | null | undefined;
|
4341
4349
|
zipCode?: string | null | undefined;
|
4342
4350
|
} | {
|
4343
|
-
firstname
|
4344
|
-
surname
|
4351
|
+
firstname: string;
|
4352
|
+
surname: string;
|
4345
4353
|
middlename?: string | null | undefined;
|
4346
4354
|
} | {
|
4347
4355
|
country: string;
|
@@ -4387,8 +4395,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4387
4395
|
street?: string | null | undefined;
|
4388
4396
|
zipCode?: string | null | undefined;
|
4389
4397
|
} | {
|
4390
|
-
firstname
|
4391
|
-
surname
|
4398
|
+
firstname: string;
|
4399
|
+
surname: string;
|
4392
4400
|
middlename?: string | null | undefined;
|
4393
4401
|
} | {
|
4394
4402
|
country: string;
|
@@ -4442,8 +4450,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4442
4450
|
street?: string | null | undefined;
|
4443
4451
|
zipCode?: string | null | undefined;
|
4444
4452
|
} | {
|
4445
|
-
firstname
|
4446
|
-
surname
|
4453
|
+
firstname: string;
|
4454
|
+
surname: string;
|
4447
4455
|
middlename?: string | null | undefined;
|
4448
4456
|
} | {
|
4449
4457
|
country: string;
|
@@ -4489,8 +4497,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4489
4497
|
street?: string | null | undefined;
|
4490
4498
|
zipCode?: string | null | undefined;
|
4491
4499
|
} | {
|
4492
|
-
firstname
|
4493
|
-
surname
|
4500
|
+
firstname: string;
|
4501
|
+
surname: string;
|
4494
4502
|
middlename?: string | null | undefined;
|
4495
4503
|
} | {
|
4496
4504
|
country: string;
|
@@ -4548,8 +4556,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4548
4556
|
street?: string | null | undefined;
|
4549
4557
|
zipCode?: string | null | undefined;
|
4550
4558
|
} | {
|
4551
|
-
firstname
|
4552
|
-
surname
|
4559
|
+
firstname: string;
|
4560
|
+
surname: string;
|
4553
4561
|
middlename?: string | null | undefined;
|
4554
4562
|
} | {
|
4555
4563
|
country: string;
|
@@ -4595,8 +4603,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4595
4603
|
street?: string | null | undefined;
|
4596
4604
|
zipCode?: string | null | undefined;
|
4597
4605
|
} | {
|
4598
|
-
firstname
|
4599
|
-
surname
|
4606
|
+
firstname: string;
|
4607
|
+
surname: string;
|
4600
4608
|
middlename?: string | null | undefined;
|
4601
4609
|
} | {
|
4602
4610
|
country: string;
|
@@ -4650,8 +4658,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4650
4658
|
street?: string | null | undefined;
|
4651
4659
|
zipCode?: string | null | undefined;
|
4652
4660
|
} | {
|
4653
|
-
firstname
|
4654
|
-
surname
|
4661
|
+
firstname: string;
|
4662
|
+
surname: string;
|
4655
4663
|
middlename?: string | null | undefined;
|
4656
4664
|
} | {
|
4657
4665
|
country: string;
|
@@ -4697,8 +4705,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4697
4705
|
street?: string | null | undefined;
|
4698
4706
|
zipCode?: string | null | undefined;
|
4699
4707
|
} | {
|
4700
|
-
firstname
|
4701
|
-
surname
|
4708
|
+
firstname: string;
|
4709
|
+
surname: string;
|
4702
4710
|
middlename?: string | null | undefined;
|
4703
4711
|
} | {
|
4704
4712
|
country: string;
|
@@ -4756,8 +4764,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4756
4764
|
street?: string | null | undefined;
|
4757
4765
|
zipCode?: string | null | undefined;
|
4758
4766
|
} | {
|
4759
|
-
firstname
|
4760
|
-
surname
|
4767
|
+
firstname: string;
|
4768
|
+
surname: string;
|
4761
4769
|
middlename?: string | null | undefined;
|
4762
4770
|
} | {
|
4763
4771
|
country: string;
|
@@ -4803,8 +4811,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4803
4811
|
street?: string | null | undefined;
|
4804
4812
|
zipCode?: string | null | undefined;
|
4805
4813
|
} | {
|
4806
|
-
firstname
|
4807
|
-
surname
|
4814
|
+
firstname: string;
|
4815
|
+
surname: string;
|
4808
4816
|
middlename?: string | null | undefined;
|
4809
4817
|
} | {
|
4810
4818
|
country: string;
|
@@ -4858,8 +4866,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4858
4866
|
street?: string | null | undefined;
|
4859
4867
|
zipCode?: string | null | undefined;
|
4860
4868
|
} | {
|
4861
|
-
firstname
|
4862
|
-
surname
|
4869
|
+
firstname: string;
|
4870
|
+
surname: string;
|
4863
4871
|
middlename?: string | null | undefined;
|
4864
4872
|
} | {
|
4865
4873
|
country: string;
|
@@ -4905,8 +4913,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4905
4913
|
street?: string | null | undefined;
|
4906
4914
|
zipCode?: string | null | undefined;
|
4907
4915
|
} | {
|
4908
|
-
firstname
|
4909
|
-
surname
|
4916
|
+
firstname: string;
|
4917
|
+
surname: string;
|
4910
4918
|
middlename?: string | null | undefined;
|
4911
4919
|
} | {
|
4912
4920
|
country: string;
|
@@ -4960,8 +4968,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4960
4968
|
street?: string | null | undefined;
|
4961
4969
|
zipCode?: string | null | undefined;
|
4962
4970
|
} | {
|
4963
|
-
firstname
|
4964
|
-
surname
|
4971
|
+
firstname: string;
|
4972
|
+
surname: string;
|
4965
4973
|
middlename?: string | null | undefined;
|
4966
4974
|
} | {
|
4967
4975
|
country: string;
|
@@ -5007,8 +5015,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5007
5015
|
street?: string | null | undefined;
|
5008
5016
|
zipCode?: string | null | undefined;
|
5009
5017
|
} | {
|
5010
|
-
firstname
|
5011
|
-
surname
|
5018
|
+
firstname: string;
|
5019
|
+
surname: string;
|
5012
5020
|
middlename?: string | null | undefined;
|
5013
5021
|
} | {
|
5014
5022
|
country: string;
|
@@ -5062,8 +5070,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5062
5070
|
street?: string | null | undefined;
|
5063
5071
|
zipCode?: string | null | undefined;
|
5064
5072
|
} | {
|
5065
|
-
firstname
|
5066
|
-
surname
|
5073
|
+
firstname: string;
|
5074
|
+
surname: string;
|
5067
5075
|
middlename?: string | null | undefined;
|
5068
5076
|
} | {
|
5069
5077
|
country: string;
|
@@ -5091,6 +5099,9 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5091
5099
|
start: string;
|
5092
5100
|
end: string;
|
5093
5101
|
} | null | undefined>;
|
5102
|
+
content?: {
|
5103
|
+
templateId?: string | undefined;
|
5104
|
+
} | null | undefined;
|
5094
5105
|
createdBySignature?: string | null | undefined;
|
5095
5106
|
createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
5096
5107
|
annotation?: Record<string, string | number | boolean | {
|
@@ -5109,8 +5120,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5109
5120
|
street?: string | null | undefined;
|
5110
5121
|
zipCode?: string | null | undefined;
|
5111
5122
|
} | {
|
5112
|
-
firstname
|
5113
|
-
surname
|
5123
|
+
firstname: string;
|
5124
|
+
surname: string;
|
5114
5125
|
middlename?: string | null | undefined;
|
5115
5126
|
} | {
|
5116
5127
|
country: string;
|
@@ -5139,9 +5150,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5139
5150
|
end: string;
|
5140
5151
|
} | null | undefined> | null | undefined;
|
5141
5152
|
originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
5142
|
-
actionDetails?: {
|
5143
|
-
templateId?: string | undefined;
|
5144
|
-
} | null | undefined;
|
5145
5153
|
} | {
|
5146
5154
|
type: "REQUEST_CORRECTION";
|
5147
5155
|
id: string & import("zod").BRAND<"UUID">;
|
@@ -5167,8 +5175,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5167
5175
|
street?: string | null | undefined;
|
5168
5176
|
zipCode?: string | null | undefined;
|
5169
5177
|
} | {
|
5170
|
-
firstname
|
5171
|
-
surname
|
5178
|
+
firstname: string;
|
5179
|
+
surname: string;
|
5172
5180
|
middlename?: string | null | undefined;
|
5173
5181
|
} | {
|
5174
5182
|
country: string;
|
@@ -5214,8 +5222,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5214
5222
|
street?: string | null | undefined;
|
5215
5223
|
zipCode?: string | null | undefined;
|
5216
5224
|
} | {
|
5217
|
-
firstname
|
5218
|
-
surname
|
5225
|
+
firstname: string;
|
5226
|
+
surname: string;
|
5219
5227
|
middlename?: string | null | undefined;
|
5220
5228
|
} | {
|
5221
5229
|
country: string;
|
@@ -5269,8 +5277,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5269
5277
|
street?: string | null | undefined;
|
5270
5278
|
zipCode?: string | null | undefined;
|
5271
5279
|
} | {
|
5272
|
-
firstname
|
5273
|
-
surname
|
5280
|
+
firstname: string;
|
5281
|
+
surname: string;
|
5274
5282
|
middlename?: string | null | undefined;
|
5275
5283
|
} | {
|
5276
5284
|
country: string;
|
@@ -5317,8 +5325,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5317
5325
|
street?: string | null | undefined;
|
5318
5326
|
zipCode?: string | null | undefined;
|
5319
5327
|
} | {
|
5320
|
-
firstname
|
5321
|
-
surname
|
5328
|
+
firstname: string;
|
5329
|
+
surname: string;
|
5322
5330
|
middlename?: string | null | undefined;
|
5323
5331
|
} | {
|
5324
5332
|
country: string;
|
@@ -5351,6 +5359,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5351
5359
|
type: "REJECT_CORRECTION";
|
5352
5360
|
id: string & import("zod").BRAND<"UUID">;
|
5353
5361
|
status: "Rejected" | "Requested" | "Accepted";
|
5362
|
+
reason: {
|
5363
|
+
message: string;
|
5364
|
+
isDuplicate?: boolean | undefined;
|
5365
|
+
};
|
5354
5366
|
transactionId: string;
|
5355
5367
|
createdByUserType: "system" | "user";
|
5356
5368
|
createdAt: string;
|
@@ -5372,8 +5384,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5372
5384
|
street?: string | null | undefined;
|
5373
5385
|
zipCode?: string | null | undefined;
|
5374
5386
|
} | {
|
5375
|
-
firstname
|
5376
|
-
surname
|
5387
|
+
firstname: string;
|
5388
|
+
surname: string;
|
5377
5389
|
middlename?: string | null | undefined;
|
5378
5390
|
} | {
|
5379
5391
|
country: string;
|
@@ -5420,8 +5432,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5420
5432
|
street?: string | null | undefined;
|
5421
5433
|
zipCode?: string | null | undefined;
|
5422
5434
|
} | {
|
5423
|
-
firstname
|
5424
|
-
surname
|
5435
|
+
firstname: string;
|
5436
|
+
surname: string;
|
5425
5437
|
middlename?: string | null | undefined;
|
5426
5438
|
} | {
|
5427
5439
|
country: string;
|
@@ -5475,8 +5487,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5475
5487
|
street?: string | null | undefined;
|
5476
5488
|
zipCode?: string | null | undefined;
|
5477
5489
|
} | {
|
5478
|
-
firstname
|
5479
|
-
surname
|
5490
|
+
firstname: string;
|
5491
|
+
surname: string;
|
5480
5492
|
middlename?: string | null | undefined;
|
5481
5493
|
} | {
|
5482
5494
|
country: string;
|
@@ -5522,8 +5534,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5522
5534
|
street?: string | null | undefined;
|
5523
5535
|
zipCode?: string | null | undefined;
|
5524
5536
|
} | {
|
5525
|
-
firstname
|
5526
|
-
surname
|
5537
|
+
firstname: string;
|
5538
|
+
surname: string;
|
5527
5539
|
middlename?: string | null | undefined;
|
5528
5540
|
} | {
|
5529
5541
|
country: string;
|
@@ -5590,8 +5602,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5590
5602
|
street?: string | null | undefined;
|
5591
5603
|
zipCode?: string | null | undefined;
|
5592
5604
|
} | {
|
5593
|
-
firstname
|
5594
|
-
surname
|
5605
|
+
firstname: string;
|
5606
|
+
surname: string;
|
5595
5607
|
middlename?: string | null | undefined;
|
5596
5608
|
} | {
|
5597
5609
|
country: string;
|
@@ -5635,8 +5647,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5635
5647
|
street?: string | null | undefined;
|
5636
5648
|
zipCode?: string | null | undefined;
|
5637
5649
|
} | {
|
5638
|
-
firstname
|
5639
|
-
surname
|
5650
|
+
firstname: string;
|
5651
|
+
surname: string;
|
5640
5652
|
middlename?: string | null | undefined;
|
5641
5653
|
} | {
|
5642
5654
|
country: string;
|
@@ -5698,8 +5710,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5698
5710
|
street?: string | null | undefined;
|
5699
5711
|
zipCode?: string | null | undefined;
|
5700
5712
|
} | {
|
5701
|
-
firstname
|
5702
|
-
surname
|
5713
|
+
firstname: string;
|
5714
|
+
surname: string;
|
5703
5715
|
middlename?: string | null | undefined;
|
5704
5716
|
} | {
|
5705
5717
|
country: string;
|
@@ -5746,8 +5758,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5746
5758
|
street?: string | null | undefined;
|
5747
5759
|
zipCode?: string | null | undefined;
|
5748
5760
|
} | {
|
5749
|
-
firstname
|
5750
|
-
surname
|
5761
|
+
firstname: string;
|
5762
|
+
surname: string;
|
5751
5763
|
middlename?: string | null | undefined;
|
5752
5764
|
} | {
|
5753
5765
|
country: string;
|
@@ -5801,8 +5813,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5801
5813
|
street?: string | null | undefined;
|
5802
5814
|
zipCode?: string | null | undefined;
|
5803
5815
|
} | {
|
5804
|
-
firstname
|
5805
|
-
surname
|
5816
|
+
firstname: string;
|
5817
|
+
surname: string;
|
5806
5818
|
middlename?: string | null | undefined;
|
5807
5819
|
} | {
|
5808
5820
|
country: string;
|
@@ -5848,8 +5860,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5848
5860
|
street?: string | null | undefined;
|
5849
5861
|
zipCode?: string | null | undefined;
|
5850
5862
|
} | {
|
5851
|
-
firstname
|
5852
|
-
surname
|
5863
|
+
firstname: string;
|
5864
|
+
surname: string;
|
5853
5865
|
middlename?: string | null | undefined;
|
5854
5866
|
} | {
|
5855
5867
|
country: string;
|
@@ -5903,8 +5915,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5903
5915
|
street?: string | null | undefined;
|
5904
5916
|
zipCode?: string | null | undefined;
|
5905
5917
|
} | {
|
5906
|
-
firstname
|
5907
|
-
surname
|
5918
|
+
firstname: string;
|
5919
|
+
surname: string;
|
5908
5920
|
middlename?: string | null | undefined;
|
5909
5921
|
} | {
|
5910
5922
|
country: string;
|
@@ -5950,8 +5962,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5950
5962
|
street?: string | null | undefined;
|
5951
5963
|
zipCode?: string | null | undefined;
|
5952
5964
|
} | {
|
5953
|
-
firstname
|
5954
|
-
surname
|
5965
|
+
firstname: string;
|
5966
|
+
surname: string;
|
5955
5967
|
middlename?: string | null | undefined;
|
5956
5968
|
} | {
|
5957
5969
|
country: string;
|
@@ -6006,8 +6018,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6006
6018
|
street?: string | null | undefined;
|
6007
6019
|
zipCode?: string | null | undefined;
|
6008
6020
|
} | {
|
6009
|
-
firstname
|
6010
|
-
surname
|
6021
|
+
firstname: string;
|
6022
|
+
surname: string;
|
6011
6023
|
middlename?: string | null | undefined;
|
6012
6024
|
} | {
|
6013
6025
|
country: string;
|
@@ -6053,8 +6065,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6053
6065
|
street?: string | null | undefined;
|
6054
6066
|
zipCode?: string | null | undefined;
|
6055
6067
|
} | {
|
6056
|
-
firstname
|
6057
|
-
surname
|
6068
|
+
firstname: string;
|
6069
|
+
surname: string;
|
6058
6070
|
middlename?: string | null | undefined;
|
6059
6071
|
} | {
|
6060
6072
|
country: string;
|
@@ -6108,8 +6120,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6108
6120
|
street?: string | null | undefined;
|
6109
6121
|
zipCode?: string | null | undefined;
|
6110
6122
|
} | {
|
6111
|
-
firstname
|
6112
|
-
surname
|
6123
|
+
firstname: string;
|
6124
|
+
surname: string;
|
6113
6125
|
middlename?: string | null | undefined;
|
6114
6126
|
} | {
|
6115
6127
|
country: string;
|
@@ -6155,8 +6167,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6155
6167
|
street?: string | null | undefined;
|
6156
6168
|
zipCode?: string | null | undefined;
|
6157
6169
|
} | {
|
6158
|
-
firstname
|
6159
|
-
surname
|
6170
|
+
firstname: string;
|
6171
|
+
surname: string;
|
6160
6172
|
middlename?: string | null | undefined;
|
6161
6173
|
} | {
|
6162
6174
|
country: string;
|
@@ -6214,8 +6226,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6214
6226
|
street?: string | null | undefined;
|
6215
6227
|
zipCode?: string | null | undefined;
|
6216
6228
|
} | {
|
6217
|
-
firstname
|
6218
|
-
surname
|
6229
|
+
firstname: string;
|
6230
|
+
surname: string;
|
6219
6231
|
middlename?: string | null | undefined;
|
6220
6232
|
} | {
|
6221
6233
|
country: string;
|
@@ -6261,8 +6273,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6261
6273
|
street?: string | null | undefined;
|
6262
6274
|
zipCode?: string | null | undefined;
|
6263
6275
|
} | {
|
6264
|
-
firstname
|
6265
|
-
surname
|
6276
|
+
firstname: string;
|
6277
|
+
surname: string;
|
6266
6278
|
middlename?: string | null | undefined;
|
6267
6279
|
} | {
|
6268
6280
|
country: string;
|
@@ -6316,8 +6328,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6316
6328
|
street?: string | null | undefined;
|
6317
6329
|
zipCode?: string | null | undefined;
|
6318
6330
|
} | {
|
6319
|
-
firstname
|
6320
|
-
surname
|
6331
|
+
firstname: string;
|
6332
|
+
surname: string;
|
6321
6333
|
middlename?: string | null | undefined;
|
6322
6334
|
} | {
|
6323
6335
|
country: string;
|
@@ -6363,8 +6375,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6363
6375
|
street?: string | null | undefined;
|
6364
6376
|
zipCode?: string | null | undefined;
|
6365
6377
|
} | {
|
6366
|
-
firstname
|
6367
|
-
surname
|
6378
|
+
firstname: string;
|
6379
|
+
surname: string;
|
6368
6380
|
middlename?: string | null | undefined;
|
6369
6381
|
} | {
|
6370
6382
|
country: string;
|
@@ -6422,8 +6434,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6422
6434
|
street?: string | null | undefined;
|
6423
6435
|
zipCode?: string | null | undefined;
|
6424
6436
|
} | {
|
6425
|
-
firstname
|
6426
|
-
surname
|
6437
|
+
firstname: string;
|
6438
|
+
surname: string;
|
6427
6439
|
middlename?: string | null | undefined;
|
6428
6440
|
} | {
|
6429
6441
|
country: string;
|
@@ -6469,8 +6481,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6469
6481
|
street?: string | null | undefined;
|
6470
6482
|
zipCode?: string | null | undefined;
|
6471
6483
|
} | {
|
6472
|
-
firstname
|
6473
|
-
surname
|
6484
|
+
firstname: string;
|
6485
|
+
surname: string;
|
6474
6486
|
middlename?: string | null | undefined;
|
6475
6487
|
} | {
|
6476
6488
|
country: string;
|
@@ -6524,8 +6536,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6524
6536
|
street?: string | null | undefined;
|
6525
6537
|
zipCode?: string | null | undefined;
|
6526
6538
|
} | {
|
6527
|
-
firstname
|
6528
|
-
surname
|
6539
|
+
firstname: string;
|
6540
|
+
surname: string;
|
6529
6541
|
middlename?: string | null | undefined;
|
6530
6542
|
} | {
|
6531
6543
|
country: string;
|
@@ -6571,8 +6583,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6571
6583
|
street?: string | null | undefined;
|
6572
6584
|
zipCode?: string | null | undefined;
|
6573
6585
|
} | {
|
6574
|
-
firstname
|
6575
|
-
surname
|
6586
|
+
firstname: string;
|
6587
|
+
surname: string;
|
6576
6588
|
middlename?: string | null | undefined;
|
6577
6589
|
} | {
|
6578
6590
|
country: string;
|
@@ -6626,8 +6638,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6626
6638
|
street?: string | null | undefined;
|
6627
6639
|
zipCode?: string | null | undefined;
|
6628
6640
|
} | {
|
6629
|
-
firstname
|
6630
|
-
surname
|
6641
|
+
firstname: string;
|
6642
|
+
surname: string;
|
6631
6643
|
middlename?: string | null | undefined;
|
6632
6644
|
} | {
|
6633
6645
|
country: string;
|
@@ -6673,8 +6685,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6673
6685
|
street?: string | null | undefined;
|
6674
6686
|
zipCode?: string | null | undefined;
|
6675
6687
|
} | {
|
6676
|
-
firstname
|
6677
|
-
surname
|
6688
|
+
firstname: string;
|
6689
|
+
surname: string;
|
6678
6690
|
middlename?: string | null | undefined;
|
6679
6691
|
} | {
|
6680
6692
|
country: string;
|
@@ -6728,8 +6740,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6728
6740
|
street?: string | null | undefined;
|
6729
6741
|
zipCode?: string | null | undefined;
|
6730
6742
|
} | {
|
6731
|
-
firstname
|
6732
|
-
surname
|
6743
|
+
firstname: string;
|
6744
|
+
surname: string;
|
6733
6745
|
middlename?: string | null | undefined;
|
6734
6746
|
} | {
|
6735
6747
|
country: string;
|
@@ -6757,6 +6769,9 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6757
6769
|
start: string;
|
6758
6770
|
end: string;
|
6759
6771
|
} | null | undefined>;
|
6772
|
+
content?: {
|
6773
|
+
templateId?: string | undefined;
|
6774
|
+
} | null | undefined;
|
6760
6775
|
createdBySignature?: string | null | undefined;
|
6761
6776
|
createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
6762
6777
|
annotation?: Record<string, string | number | boolean | {
|
@@ -6775,8 +6790,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6775
6790
|
street?: string | null | undefined;
|
6776
6791
|
zipCode?: string | null | undefined;
|
6777
6792
|
} | {
|
6778
|
-
firstname
|
6779
|
-
surname
|
6793
|
+
firstname: string;
|
6794
|
+
surname: string;
|
6780
6795
|
middlename?: string | null | undefined;
|
6781
6796
|
} | {
|
6782
6797
|
country: string;
|
@@ -6805,9 +6820,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6805
6820
|
end: string;
|
6806
6821
|
} | null | undefined> | null | undefined;
|
6807
6822
|
originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
6808
|
-
actionDetails?: {
|
6809
|
-
templateId?: string | undefined;
|
6810
|
-
} | null | undefined;
|
6811
6823
|
} | {
|
6812
6824
|
type: "REQUEST_CORRECTION";
|
6813
6825
|
id: string & import("zod").BRAND<"UUID">;
|
@@ -6833,8 +6845,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6833
6845
|
street?: string | null | undefined;
|
6834
6846
|
zipCode?: string | null | undefined;
|
6835
6847
|
} | {
|
6836
|
-
firstname
|
6837
|
-
surname
|
6848
|
+
firstname: string;
|
6849
|
+
surname: string;
|
6838
6850
|
middlename?: string | null | undefined;
|
6839
6851
|
} | {
|
6840
6852
|
country: string;
|
@@ -6880,8 +6892,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6880
6892
|
street?: string | null | undefined;
|
6881
6893
|
zipCode?: string | null | undefined;
|
6882
6894
|
} | {
|
6883
|
-
firstname
|
6884
|
-
surname
|
6895
|
+
firstname: string;
|
6896
|
+
surname: string;
|
6885
6897
|
middlename?: string | null | undefined;
|
6886
6898
|
} | {
|
6887
6899
|
country: string;
|
@@ -6935,8 +6947,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6935
6947
|
street?: string | null | undefined;
|
6936
6948
|
zipCode?: string | null | undefined;
|
6937
6949
|
} | {
|
6938
|
-
firstname
|
6939
|
-
surname
|
6950
|
+
firstname: string;
|
6951
|
+
surname: string;
|
6940
6952
|
middlename?: string | null | undefined;
|
6941
6953
|
} | {
|
6942
6954
|
country: string;
|
@@ -6983,8 +6995,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6983
6995
|
street?: string | null | undefined;
|
6984
6996
|
zipCode?: string | null | undefined;
|
6985
6997
|
} | {
|
6986
|
-
firstname
|
6987
|
-
surname
|
6998
|
+
firstname: string;
|
6999
|
+
surname: string;
|
6988
7000
|
middlename?: string | null | undefined;
|
6989
7001
|
} | {
|
6990
7002
|
country: string;
|
@@ -7017,6 +7029,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7017
7029
|
type: "REJECT_CORRECTION";
|
7018
7030
|
id: string & import("zod").BRAND<"UUID">;
|
7019
7031
|
status: "Rejected" | "Requested" | "Accepted";
|
7032
|
+
reason: {
|
7033
|
+
message: string;
|
7034
|
+
isDuplicate?: boolean | undefined;
|
7035
|
+
};
|
7020
7036
|
transactionId: string;
|
7021
7037
|
createdByUserType: "system" | "user";
|
7022
7038
|
createdAt: string;
|
@@ -7038,8 +7054,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7038
7054
|
street?: string | null | undefined;
|
7039
7055
|
zipCode?: string | null | undefined;
|
7040
7056
|
} | {
|
7041
|
-
firstname
|
7042
|
-
surname
|
7057
|
+
firstname: string;
|
7058
|
+
surname: string;
|
7043
7059
|
middlename?: string | null | undefined;
|
7044
7060
|
} | {
|
7045
7061
|
country: string;
|
@@ -7086,8 +7102,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7086
7102
|
street?: string | null | undefined;
|
7087
7103
|
zipCode?: string | null | undefined;
|
7088
7104
|
} | {
|
7089
|
-
firstname
|
7090
|
-
surname
|
7105
|
+
firstname: string;
|
7106
|
+
surname: string;
|
7091
7107
|
middlename?: string | null | undefined;
|
7092
7108
|
} | {
|
7093
7109
|
country: string;
|
@@ -7141,8 +7157,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7141
7157
|
street?: string | null | undefined;
|
7142
7158
|
zipCode?: string | null | undefined;
|
7143
7159
|
} | {
|
7144
|
-
firstname
|
7145
|
-
surname
|
7160
|
+
firstname: string;
|
7161
|
+
surname: string;
|
7146
7162
|
middlename?: string | null | undefined;
|
7147
7163
|
} | {
|
7148
7164
|
country: string;
|
@@ -7188,8 +7204,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7188
7204
|
street?: string | null | undefined;
|
7189
7205
|
zipCode?: string | null | undefined;
|
7190
7206
|
} | {
|
7191
|
-
firstname
|
7192
|
-
surname
|
7207
|
+
firstname: string;
|
7208
|
+
surname: string;
|
7193
7209
|
middlename?: string | null | undefined;
|
7194
7210
|
} | {
|
7195
7211
|
country: string;
|
@@ -7393,7 +7409,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7393
7409
|
output: {
|
7394
7410
|
type: string;
|
7395
7411
|
id: string & import("zod").BRAND<"UUID">;
|
7396
|
-
status: "ARCHIVED" | "
|
7412
|
+
status: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7397
7413
|
createdAt: string;
|
7398
7414
|
createdBy: string;
|
7399
7415
|
declaration: Record<string, string | number | boolean | {
|
@@ -7423,8 +7439,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7423
7439
|
surname: string;
|
7424
7440
|
middlename?: string | undefined;
|
7425
7441
|
} | {
|
7426
|
-
firstname
|
7427
|
-
surname
|
7442
|
+
firstname: string;
|
7443
|
+
surname: string;
|
7428
7444
|
middlename?: string | null | undefined;
|
7429
7445
|
} | {
|
7430
7446
|
country: string;
|
@@ -7488,7 +7504,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7488
7504
|
output: {
|
7489
7505
|
type: string;
|
7490
7506
|
id: string & import("zod").BRAND<"UUID">;
|
7491
|
-
status: "ARCHIVED" | "
|
7507
|
+
status: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7492
7508
|
createdAt: string;
|
7493
7509
|
createdBy: string;
|
7494
7510
|
declaration: Record<string, string | number | boolean | {
|
@@ -7518,8 +7534,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7518
7534
|
surname: string;
|
7519
7535
|
middlename?: string | undefined;
|
7520
7536
|
} | {
|
7521
|
-
firstname
|
7522
|
-
surname
|
7537
|
+
firstname: string;
|
7538
|
+
surname: string;
|
7523
7539
|
middlename?: string | null | undefined;
|
7524
7540
|
} | {
|
7525
7541
|
country: string;
|
@@ -7606,8 +7622,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7606
7622
|
street?: string | null | undefined;
|
7607
7623
|
zipCode?: string | null | undefined;
|
7608
7624
|
} | {
|
7609
|
-
firstname
|
7610
|
-
surname
|
7625
|
+
firstname: string;
|
7626
|
+
surname: string;
|
7611
7627
|
middlename?: string | null | undefined;
|
7612
7628
|
} | {
|
7613
7629
|
country: string;
|
@@ -7654,8 +7670,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7654
7670
|
street?: string | null | undefined;
|
7655
7671
|
zipCode?: string | null | undefined;
|
7656
7672
|
} | {
|
7657
|
-
firstname
|
7658
|
-
surname
|
7673
|
+
firstname: string;
|
7674
|
+
surname: string;
|
7659
7675
|
middlename?: string | null | undefined;
|
7660
7676
|
} | {
|
7661
7677
|
country: string;
|
@@ -7709,8 +7725,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7709
7725
|
street?: string | null | undefined;
|
7710
7726
|
zipCode?: string | null | undefined;
|
7711
7727
|
} | {
|
7712
|
-
firstname
|
7713
|
-
surname
|
7728
|
+
firstname: string;
|
7729
|
+
surname: string;
|
7714
7730
|
middlename?: string | null | undefined;
|
7715
7731
|
} | {
|
7716
7732
|
country: string;
|
@@ -7756,8 +7772,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7756
7772
|
street?: string | null | undefined;
|
7757
7773
|
zipCode?: string | null | undefined;
|
7758
7774
|
} | {
|
7759
|
-
firstname
|
7760
|
-
surname
|
7775
|
+
firstname: string;
|
7776
|
+
surname: string;
|
7761
7777
|
middlename?: string | null | undefined;
|
7762
7778
|
} | {
|
7763
7779
|
country: string;
|
@@ -7811,8 +7827,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7811
7827
|
street?: string | null | undefined;
|
7812
7828
|
zipCode?: string | null | undefined;
|
7813
7829
|
} | {
|
7814
|
-
firstname
|
7815
|
-
surname
|
7830
|
+
firstname: string;
|
7831
|
+
surname: string;
|
7816
7832
|
middlename?: string | null | undefined;
|
7817
7833
|
} | {
|
7818
7834
|
country: string;
|
@@ -7858,8 +7874,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7858
7874
|
street?: string | null | undefined;
|
7859
7875
|
zipCode?: string | null | undefined;
|
7860
7876
|
} | {
|
7861
|
-
firstname
|
7862
|
-
surname
|
7877
|
+
firstname: string;
|
7878
|
+
surname: string;
|
7863
7879
|
middlename?: string | null | undefined;
|
7864
7880
|
} | {
|
7865
7881
|
country: string;
|
@@ -7914,8 +7930,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7914
7930
|
street?: string | null | undefined;
|
7915
7931
|
zipCode?: string | null | undefined;
|
7916
7932
|
} | {
|
7917
|
-
firstname
|
7918
|
-
surname
|
7933
|
+
firstname: string;
|
7934
|
+
surname: string;
|
7919
7935
|
middlename?: string | null | undefined;
|
7920
7936
|
} | {
|
7921
7937
|
country: string;
|
@@ -7961,8 +7977,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7961
7977
|
street?: string | null | undefined;
|
7962
7978
|
zipCode?: string | null | undefined;
|
7963
7979
|
} | {
|
7964
|
-
firstname
|
7965
|
-
surname
|
7980
|
+
firstname: string;
|
7981
|
+
surname: string;
|
7966
7982
|
middlename?: string | null | undefined;
|
7967
7983
|
} | {
|
7968
7984
|
country: string;
|
@@ -8016,8 +8032,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8016
8032
|
street?: string | null | undefined;
|
8017
8033
|
zipCode?: string | null | undefined;
|
8018
8034
|
} | {
|
8019
|
-
firstname
|
8020
|
-
surname
|
8035
|
+
firstname: string;
|
8036
|
+
surname: string;
|
8021
8037
|
middlename?: string | null | undefined;
|
8022
8038
|
} | {
|
8023
8039
|
country: string;
|
@@ -8063,8 +8079,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8063
8079
|
street?: string | null | undefined;
|
8064
8080
|
zipCode?: string | null | undefined;
|
8065
8081
|
} | {
|
8066
|
-
firstname
|
8067
|
-
surname
|
8082
|
+
firstname: string;
|
8083
|
+
surname: string;
|
8068
8084
|
middlename?: string | null | undefined;
|
8069
8085
|
} | {
|
8070
8086
|
country: string;
|
@@ -8122,8 +8138,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8122
8138
|
street?: string | null | undefined;
|
8123
8139
|
zipCode?: string | null | undefined;
|
8124
8140
|
} | {
|
8125
|
-
firstname
|
8126
|
-
surname
|
8141
|
+
firstname: string;
|
8142
|
+
surname: string;
|
8127
8143
|
middlename?: string | null | undefined;
|
8128
8144
|
} | {
|
8129
8145
|
country: string;
|
@@ -8169,8 +8185,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8169
8185
|
street?: string | null | undefined;
|
8170
8186
|
zipCode?: string | null | undefined;
|
8171
8187
|
} | {
|
8172
|
-
firstname
|
8173
|
-
surname
|
8188
|
+
firstname: string;
|
8189
|
+
surname: string;
|
8174
8190
|
middlename?: string | null | undefined;
|
8175
8191
|
} | {
|
8176
8192
|
country: string;
|
@@ -8224,8 +8240,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8224
8240
|
street?: string | null | undefined;
|
8225
8241
|
zipCode?: string | null | undefined;
|
8226
8242
|
} | {
|
8227
|
-
firstname
|
8228
|
-
surname
|
8243
|
+
firstname: string;
|
8244
|
+
surname: string;
|
8229
8245
|
middlename?: string | null | undefined;
|
8230
8246
|
} | {
|
8231
8247
|
country: string;
|
@@ -8271,8 +8287,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8271
8287
|
street?: string | null | undefined;
|
8272
8288
|
zipCode?: string | null | undefined;
|
8273
8289
|
} | {
|
8274
|
-
firstname
|
8275
|
-
surname
|
8290
|
+
firstname: string;
|
8291
|
+
surname: string;
|
8276
8292
|
middlename?: string | null | undefined;
|
8277
8293
|
} | {
|
8278
8294
|
country: string;
|
@@ -8330,8 +8346,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8330
8346
|
street?: string | null | undefined;
|
8331
8347
|
zipCode?: string | null | undefined;
|
8332
8348
|
} | {
|
8333
|
-
firstname
|
8334
|
-
surname
|
8349
|
+
firstname: string;
|
8350
|
+
surname: string;
|
8335
8351
|
middlename?: string | null | undefined;
|
8336
8352
|
} | {
|
8337
8353
|
country: string;
|
@@ -8377,8 +8393,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8377
8393
|
street?: string | null | undefined;
|
8378
8394
|
zipCode?: string | null | undefined;
|
8379
8395
|
} | {
|
8380
|
-
firstname
|
8381
|
-
surname
|
8396
|
+
firstname: string;
|
8397
|
+
surname: string;
|
8382
8398
|
middlename?: string | null | undefined;
|
8383
8399
|
} | {
|
8384
8400
|
country: string;
|
@@ -8432,8 +8448,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8432
8448
|
street?: string | null | undefined;
|
8433
8449
|
zipCode?: string | null | undefined;
|
8434
8450
|
} | {
|
8435
|
-
firstname
|
8436
|
-
surname
|
8451
|
+
firstname: string;
|
8452
|
+
surname: string;
|
8437
8453
|
middlename?: string | null | undefined;
|
8438
8454
|
} | {
|
8439
8455
|
country: string;
|
@@ -8479,8 +8495,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8479
8495
|
street?: string | null | undefined;
|
8480
8496
|
zipCode?: string | null | undefined;
|
8481
8497
|
} | {
|
8482
|
-
firstname
|
8483
|
-
surname
|
8498
|
+
firstname: string;
|
8499
|
+
surname: string;
|
8484
8500
|
middlename?: string | null | undefined;
|
8485
8501
|
} | {
|
8486
8502
|
country: string;
|
@@ -8534,8 +8550,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8534
8550
|
street?: string | null | undefined;
|
8535
8551
|
zipCode?: string | null | undefined;
|
8536
8552
|
} | {
|
8537
|
-
firstname
|
8538
|
-
surname
|
8553
|
+
firstname: string;
|
8554
|
+
surname: string;
|
8539
8555
|
middlename?: string | null | undefined;
|
8540
8556
|
} | {
|
8541
8557
|
country: string;
|
@@ -8581,8 +8597,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8581
8597
|
street?: string | null | undefined;
|
8582
8598
|
zipCode?: string | null | undefined;
|
8583
8599
|
} | {
|
8584
|
-
firstname
|
8585
|
-
surname
|
8600
|
+
firstname: string;
|
8601
|
+
surname: string;
|
8586
8602
|
middlename?: string | null | undefined;
|
8587
8603
|
} | {
|
8588
8604
|
country: string;
|
@@ -8636,8 +8652,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8636
8652
|
street?: string | null | undefined;
|
8637
8653
|
zipCode?: string | null | undefined;
|
8638
8654
|
} | {
|
8639
|
-
firstname
|
8640
|
-
surname
|
8655
|
+
firstname: string;
|
8656
|
+
surname: string;
|
8641
8657
|
middlename?: string | null | undefined;
|
8642
8658
|
} | {
|
8643
8659
|
country: string;
|
@@ -8665,6 +8681,9 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8665
8681
|
start: string;
|
8666
8682
|
end: string;
|
8667
8683
|
} | null | undefined>;
|
8684
|
+
content?: {
|
8685
|
+
templateId?: string | undefined;
|
8686
|
+
} | null | undefined;
|
8668
8687
|
createdBySignature?: string | null | undefined;
|
8669
8688
|
createdAtLocation?: string | null | undefined;
|
8670
8689
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8683,8 +8702,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8683
8702
|
street?: string | null | undefined;
|
8684
8703
|
zipCode?: string | null | undefined;
|
8685
8704
|
} | {
|
8686
|
-
firstname
|
8687
|
-
surname
|
8705
|
+
firstname: string;
|
8706
|
+
surname: string;
|
8688
8707
|
middlename?: string | null | undefined;
|
8689
8708
|
} | {
|
8690
8709
|
country: string;
|
@@ -8713,9 +8732,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8713
8732
|
end: string;
|
8714
8733
|
} | null | undefined> | null | undefined;
|
8715
8734
|
originalActionId?: string | null | undefined;
|
8716
|
-
actionDetails?: {
|
8717
|
-
templateId?: string | undefined;
|
8718
|
-
} | null | undefined;
|
8719
8735
|
} | {
|
8720
8736
|
type: "REQUEST_CORRECTION";
|
8721
8737
|
id: string;
|
@@ -8741,8 +8757,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8741
8757
|
street?: string | null | undefined;
|
8742
8758
|
zipCode?: string | null | undefined;
|
8743
8759
|
} | {
|
8744
|
-
firstname
|
8745
|
-
surname
|
8760
|
+
firstname: string;
|
8761
|
+
surname: string;
|
8746
8762
|
middlename?: string | null | undefined;
|
8747
8763
|
} | {
|
8748
8764
|
country: string;
|
@@ -8788,8 +8804,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8788
8804
|
street?: string | null | undefined;
|
8789
8805
|
zipCode?: string | null | undefined;
|
8790
8806
|
} | {
|
8791
|
-
firstname
|
8792
|
-
surname
|
8807
|
+
firstname: string;
|
8808
|
+
surname: string;
|
8793
8809
|
middlename?: string | null | undefined;
|
8794
8810
|
} | {
|
8795
8811
|
country: string;
|
@@ -8843,8 +8859,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8843
8859
|
street?: string | null | undefined;
|
8844
8860
|
zipCode?: string | null | undefined;
|
8845
8861
|
} | {
|
8846
|
-
firstname
|
8847
|
-
surname
|
8862
|
+
firstname: string;
|
8863
|
+
surname: string;
|
8848
8864
|
middlename?: string | null | undefined;
|
8849
8865
|
} | {
|
8850
8866
|
country: string;
|
@@ -8891,8 +8907,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8891
8907
|
street?: string | null | undefined;
|
8892
8908
|
zipCode?: string | null | undefined;
|
8893
8909
|
} | {
|
8894
|
-
firstname
|
8895
|
-
surname
|
8910
|
+
firstname: string;
|
8911
|
+
surname: string;
|
8896
8912
|
middlename?: string | null | undefined;
|
8897
8913
|
} | {
|
8898
8914
|
country: string;
|
@@ -8925,6 +8941,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8925
8941
|
type: "REJECT_CORRECTION";
|
8926
8942
|
id: string;
|
8927
8943
|
status: "Rejected" | "Requested" | "Accepted";
|
8944
|
+
reason: {
|
8945
|
+
message: string;
|
8946
|
+
isDuplicate?: boolean | undefined;
|
8947
|
+
};
|
8928
8948
|
transactionId: string;
|
8929
8949
|
createdByUserType: "system" | "user";
|
8930
8950
|
createdAt: string;
|
@@ -8946,8 +8966,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8946
8966
|
street?: string | null | undefined;
|
8947
8967
|
zipCode?: string | null | undefined;
|
8948
8968
|
} | {
|
8949
|
-
firstname
|
8950
|
-
surname
|
8969
|
+
firstname: string;
|
8970
|
+
surname: string;
|
8951
8971
|
middlename?: string | null | undefined;
|
8952
8972
|
} | {
|
8953
8973
|
country: string;
|
@@ -8994,8 +9014,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8994
9014
|
street?: string | null | undefined;
|
8995
9015
|
zipCode?: string | null | undefined;
|
8996
9016
|
} | {
|
8997
|
-
firstname
|
8998
|
-
surname
|
9017
|
+
firstname: string;
|
9018
|
+
surname: string;
|
8999
9019
|
middlename?: string | null | undefined;
|
9000
9020
|
} | {
|
9001
9021
|
country: string;
|
@@ -9049,8 +9069,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9049
9069
|
street?: string | null | undefined;
|
9050
9070
|
zipCode?: string | null | undefined;
|
9051
9071
|
} | {
|
9052
|
-
firstname
|
9053
|
-
surname
|
9072
|
+
firstname: string;
|
9073
|
+
surname: string;
|
9054
9074
|
middlename?: string | null | undefined;
|
9055
9075
|
} | {
|
9056
9076
|
country: string;
|
@@ -9096,8 +9116,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9096
9116
|
street?: string | null | undefined;
|
9097
9117
|
zipCode?: string | null | undefined;
|
9098
9118
|
} | {
|
9099
|
-
firstname
|
9100
|
-
surname
|
9119
|
+
firstname: string;
|
9120
|
+
surname: string;
|
9101
9121
|
middlename?: string | null | undefined;
|
9102
9122
|
} | {
|
9103
9123
|
country: string;
|
@@ -9171,8 +9191,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9171
9191
|
street?: string | null | undefined;
|
9172
9192
|
zipCode?: string | null | undefined;
|
9173
9193
|
} | {
|
9174
|
-
firstname
|
9175
|
-
surname
|
9194
|
+
firstname: string;
|
9195
|
+
surname: string;
|
9176
9196
|
middlename?: string | null | undefined;
|
9177
9197
|
} | {
|
9178
9198
|
country: string;
|
@@ -9219,8 +9239,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9219
9239
|
street?: string | null | undefined;
|
9220
9240
|
zipCode?: string | null | undefined;
|
9221
9241
|
} | {
|
9222
|
-
firstname
|
9223
|
-
surname
|
9242
|
+
firstname: string;
|
9243
|
+
surname: string;
|
9224
9244
|
middlename?: string | null | undefined;
|
9225
9245
|
} | {
|
9226
9246
|
country: string;
|
@@ -9274,8 +9294,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9274
9294
|
street?: string | null | undefined;
|
9275
9295
|
zipCode?: string | null | undefined;
|
9276
9296
|
} | {
|
9277
|
-
firstname
|
9278
|
-
surname
|
9297
|
+
firstname: string;
|
9298
|
+
surname: string;
|
9279
9299
|
middlename?: string | null | undefined;
|
9280
9300
|
} | {
|
9281
9301
|
country: string;
|
@@ -9321,8 +9341,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9321
9341
|
street?: string | null | undefined;
|
9322
9342
|
zipCode?: string | null | undefined;
|
9323
9343
|
} | {
|
9324
|
-
firstname
|
9325
|
-
surname
|
9344
|
+
firstname: string;
|
9345
|
+
surname: string;
|
9326
9346
|
middlename?: string | null | undefined;
|
9327
9347
|
} | {
|
9328
9348
|
country: string;
|
@@ -9376,8 +9396,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9376
9396
|
street?: string | null | undefined;
|
9377
9397
|
zipCode?: string | null | undefined;
|
9378
9398
|
} | {
|
9379
|
-
firstname
|
9380
|
-
surname
|
9399
|
+
firstname: string;
|
9400
|
+
surname: string;
|
9381
9401
|
middlename?: string | null | undefined;
|
9382
9402
|
} | {
|
9383
9403
|
country: string;
|
@@ -9423,8 +9443,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9423
9443
|
street?: string | null | undefined;
|
9424
9444
|
zipCode?: string | null | undefined;
|
9425
9445
|
} | {
|
9426
|
-
firstname
|
9427
|
-
surname
|
9446
|
+
firstname: string;
|
9447
|
+
surname: string;
|
9428
9448
|
middlename?: string | null | undefined;
|
9429
9449
|
} | {
|
9430
9450
|
country: string;
|
@@ -9479,8 +9499,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9479
9499
|
street?: string | null | undefined;
|
9480
9500
|
zipCode?: string | null | undefined;
|
9481
9501
|
} | {
|
9482
|
-
firstname
|
9483
|
-
surname
|
9502
|
+
firstname: string;
|
9503
|
+
surname: string;
|
9484
9504
|
middlename?: string | null | undefined;
|
9485
9505
|
} | {
|
9486
9506
|
country: string;
|
@@ -9526,8 +9546,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9526
9546
|
street?: string | null | undefined;
|
9527
9547
|
zipCode?: string | null | undefined;
|
9528
9548
|
} | {
|
9529
|
-
firstname
|
9530
|
-
surname
|
9549
|
+
firstname: string;
|
9550
|
+
surname: string;
|
9531
9551
|
middlename?: string | null | undefined;
|
9532
9552
|
} | {
|
9533
9553
|
country: string;
|
@@ -9581,8 +9601,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9581
9601
|
street?: string | null | undefined;
|
9582
9602
|
zipCode?: string | null | undefined;
|
9583
9603
|
} | {
|
9584
|
-
firstname
|
9585
|
-
surname
|
9604
|
+
firstname: string;
|
9605
|
+
surname: string;
|
9586
9606
|
middlename?: string | null | undefined;
|
9587
9607
|
} | {
|
9588
9608
|
country: string;
|
@@ -9628,8 +9648,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9628
9648
|
street?: string | null | undefined;
|
9629
9649
|
zipCode?: string | null | undefined;
|
9630
9650
|
} | {
|
9631
|
-
firstname
|
9632
|
-
surname
|
9651
|
+
firstname: string;
|
9652
|
+
surname: string;
|
9633
9653
|
middlename?: string | null | undefined;
|
9634
9654
|
} | {
|
9635
9655
|
country: string;
|
@@ -9687,8 +9707,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9687
9707
|
street?: string | null | undefined;
|
9688
9708
|
zipCode?: string | null | undefined;
|
9689
9709
|
} | {
|
9690
|
-
firstname
|
9691
|
-
surname
|
9710
|
+
firstname: string;
|
9711
|
+
surname: string;
|
9692
9712
|
middlename?: string | null | undefined;
|
9693
9713
|
} | {
|
9694
9714
|
country: string;
|
@@ -9734,8 +9754,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9734
9754
|
street?: string | null | undefined;
|
9735
9755
|
zipCode?: string | null | undefined;
|
9736
9756
|
} | {
|
9737
|
-
firstname
|
9738
|
-
surname
|
9757
|
+
firstname: string;
|
9758
|
+
surname: string;
|
9739
9759
|
middlename?: string | null | undefined;
|
9740
9760
|
} | {
|
9741
9761
|
country: string;
|
@@ -9789,8 +9809,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9789
9809
|
street?: string | null | undefined;
|
9790
9810
|
zipCode?: string | null | undefined;
|
9791
9811
|
} | {
|
9792
|
-
firstname
|
9793
|
-
surname
|
9812
|
+
firstname: string;
|
9813
|
+
surname: string;
|
9794
9814
|
middlename?: string | null | undefined;
|
9795
9815
|
} | {
|
9796
9816
|
country: string;
|
@@ -9836,8 +9856,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9836
9856
|
street?: string | null | undefined;
|
9837
9857
|
zipCode?: string | null | undefined;
|
9838
9858
|
} | {
|
9839
|
-
firstname
|
9840
|
-
surname
|
9859
|
+
firstname: string;
|
9860
|
+
surname: string;
|
9841
9861
|
middlename?: string | null | undefined;
|
9842
9862
|
} | {
|
9843
9863
|
country: string;
|
@@ -9895,8 +9915,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9895
9915
|
street?: string | null | undefined;
|
9896
9916
|
zipCode?: string | null | undefined;
|
9897
9917
|
} | {
|
9898
|
-
firstname
|
9899
|
-
surname
|
9918
|
+
firstname: string;
|
9919
|
+
surname: string;
|
9900
9920
|
middlename?: string | null | undefined;
|
9901
9921
|
} | {
|
9902
9922
|
country: string;
|
@@ -9942,8 +9962,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9942
9962
|
street?: string | null | undefined;
|
9943
9963
|
zipCode?: string | null | undefined;
|
9944
9964
|
} | {
|
9945
|
-
firstname
|
9946
|
-
surname
|
9965
|
+
firstname: string;
|
9966
|
+
surname: string;
|
9947
9967
|
middlename?: string | null | undefined;
|
9948
9968
|
} | {
|
9949
9969
|
country: string;
|
@@ -9997,8 +10017,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9997
10017
|
street?: string | null | undefined;
|
9998
10018
|
zipCode?: string | null | undefined;
|
9999
10019
|
} | {
|
10000
|
-
firstname
|
10001
|
-
surname
|
10020
|
+
firstname: string;
|
10021
|
+
surname: string;
|
10002
10022
|
middlename?: string | null | undefined;
|
10003
10023
|
} | {
|
10004
10024
|
country: string;
|
@@ -10044,8 +10064,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10044
10064
|
street?: string | null | undefined;
|
10045
10065
|
zipCode?: string | null | undefined;
|
10046
10066
|
} | {
|
10047
|
-
firstname
|
10048
|
-
surname
|
10067
|
+
firstname: string;
|
10068
|
+
surname: string;
|
10049
10069
|
middlename?: string | null | undefined;
|
10050
10070
|
} | {
|
10051
10071
|
country: string;
|
@@ -10099,8 +10119,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10099
10119
|
street?: string | null | undefined;
|
10100
10120
|
zipCode?: string | null | undefined;
|
10101
10121
|
} | {
|
10102
|
-
firstname
|
10103
|
-
surname
|
10122
|
+
firstname: string;
|
10123
|
+
surname: string;
|
10104
10124
|
middlename?: string | null | undefined;
|
10105
10125
|
} | {
|
10106
10126
|
country: string;
|
@@ -10146,8 +10166,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10146
10166
|
street?: string | null | undefined;
|
10147
10167
|
zipCode?: string | null | undefined;
|
10148
10168
|
} | {
|
10149
|
-
firstname
|
10150
|
-
surname
|
10169
|
+
firstname: string;
|
10170
|
+
surname: string;
|
10151
10171
|
middlename?: string | null | undefined;
|
10152
10172
|
} | {
|
10153
10173
|
country: string;
|
@@ -10201,8 +10221,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10201
10221
|
street?: string | null | undefined;
|
10202
10222
|
zipCode?: string | null | undefined;
|
10203
10223
|
} | {
|
10204
|
-
firstname
|
10205
|
-
surname
|
10224
|
+
firstname: string;
|
10225
|
+
surname: string;
|
10206
10226
|
middlename?: string | null | undefined;
|
10207
10227
|
} | {
|
10208
10228
|
country: string;
|
@@ -10230,6 +10250,9 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10230
10250
|
start: string;
|
10231
10251
|
end: string;
|
10232
10252
|
} | null | undefined>;
|
10253
|
+
content?: {
|
10254
|
+
templateId?: string | undefined;
|
10255
|
+
} | null | undefined;
|
10233
10256
|
createdBySignature?: string | null | undefined;
|
10234
10257
|
createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
10235
10258
|
annotation?: Record<string, string | number | boolean | {
|
@@ -10248,8 +10271,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10248
10271
|
street?: string | null | undefined;
|
10249
10272
|
zipCode?: string | null | undefined;
|
10250
10273
|
} | {
|
10251
|
-
firstname
|
10252
|
-
surname
|
10274
|
+
firstname: string;
|
10275
|
+
surname: string;
|
10253
10276
|
middlename?: string | null | undefined;
|
10254
10277
|
} | {
|
10255
10278
|
country: string;
|
@@ -10278,9 +10301,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10278
10301
|
end: string;
|
10279
10302
|
} | null | undefined> | null | undefined;
|
10280
10303
|
originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
10281
|
-
actionDetails?: {
|
10282
|
-
templateId?: string | undefined;
|
10283
|
-
} | null | undefined;
|
10284
10304
|
} | {
|
10285
10305
|
type: "REQUEST_CORRECTION";
|
10286
10306
|
id: string & import("zod").BRAND<"UUID">;
|
@@ -10306,8 +10326,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10306
10326
|
street?: string | null | undefined;
|
10307
10327
|
zipCode?: string | null | undefined;
|
10308
10328
|
} | {
|
10309
|
-
firstname
|
10310
|
-
surname
|
10329
|
+
firstname: string;
|
10330
|
+
surname: string;
|
10311
10331
|
middlename?: string | null | undefined;
|
10312
10332
|
} | {
|
10313
10333
|
country: string;
|
@@ -10353,8 +10373,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10353
10373
|
street?: string | null | undefined;
|
10354
10374
|
zipCode?: string | null | undefined;
|
10355
10375
|
} | {
|
10356
|
-
firstname
|
10357
|
-
surname
|
10376
|
+
firstname: string;
|
10377
|
+
surname: string;
|
10358
10378
|
middlename?: string | null | undefined;
|
10359
10379
|
} | {
|
10360
10380
|
country: string;
|
@@ -10408,8 +10428,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10408
10428
|
street?: string | null | undefined;
|
10409
10429
|
zipCode?: string | null | undefined;
|
10410
10430
|
} | {
|
10411
|
-
firstname
|
10412
|
-
surname
|
10431
|
+
firstname: string;
|
10432
|
+
surname: string;
|
10413
10433
|
middlename?: string | null | undefined;
|
10414
10434
|
} | {
|
10415
10435
|
country: string;
|
@@ -10456,8 +10476,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10456
10476
|
street?: string | null | undefined;
|
10457
10477
|
zipCode?: string | null | undefined;
|
10458
10478
|
} | {
|
10459
|
-
firstname
|
10460
|
-
surname
|
10479
|
+
firstname: string;
|
10480
|
+
surname: string;
|
10461
10481
|
middlename?: string | null | undefined;
|
10462
10482
|
} | {
|
10463
10483
|
country: string;
|
@@ -10490,6 +10510,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10490
10510
|
type: "REJECT_CORRECTION";
|
10491
10511
|
id: string & import("zod").BRAND<"UUID">;
|
10492
10512
|
status: "Rejected" | "Requested" | "Accepted";
|
10513
|
+
reason: {
|
10514
|
+
message: string;
|
10515
|
+
isDuplicate?: boolean | undefined;
|
10516
|
+
};
|
10493
10517
|
transactionId: string;
|
10494
10518
|
createdByUserType: "system" | "user";
|
10495
10519
|
createdAt: string;
|
@@ -10511,8 +10535,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10511
10535
|
street?: string | null | undefined;
|
10512
10536
|
zipCode?: string | null | undefined;
|
10513
10537
|
} | {
|
10514
|
-
firstname
|
10515
|
-
surname
|
10538
|
+
firstname: string;
|
10539
|
+
surname: string;
|
10516
10540
|
middlename?: string | null | undefined;
|
10517
10541
|
} | {
|
10518
10542
|
country: string;
|
@@ -10559,8 +10583,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10559
10583
|
street?: string | null | undefined;
|
10560
10584
|
zipCode?: string | null | undefined;
|
10561
10585
|
} | {
|
10562
|
-
firstname
|
10563
|
-
surname
|
10586
|
+
firstname: string;
|
10587
|
+
surname: string;
|
10564
10588
|
middlename?: string | null | undefined;
|
10565
10589
|
} | {
|
10566
10590
|
country: string;
|
@@ -10614,8 +10638,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10614
10638
|
street?: string | null | undefined;
|
10615
10639
|
zipCode?: string | null | undefined;
|
10616
10640
|
} | {
|
10617
|
-
firstname
|
10618
|
-
surname
|
10641
|
+
firstname: string;
|
10642
|
+
surname: string;
|
10619
10643
|
middlename?: string | null | undefined;
|
10620
10644
|
} | {
|
10621
10645
|
country: string;
|
@@ -10661,8 +10685,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10661
10685
|
street?: string | null | undefined;
|
10662
10686
|
zipCode?: string | null | undefined;
|
10663
10687
|
} | {
|
10664
|
-
firstname
|
10665
|
-
surname
|
10688
|
+
firstname: string;
|
10689
|
+
surname: string;
|
10666
10690
|
middlename?: string | null | undefined;
|
10667
10691
|
} | {
|
10668
10692
|
country: string;
|
@@ -10781,7 +10805,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10781
10805
|
set: import("@trpc/server").TRPCMutationProcedure<{
|
10782
10806
|
input: {
|
10783
10807
|
id: string;
|
10784
|
-
externalId: string | null;
|
10785
10808
|
name: string;
|
10786
10809
|
partOf: string | null;
|
10787
10810
|
}[];
|
@@ -10792,7 +10815,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10792
10815
|
input: void;
|
10793
10816
|
output: {
|
10794
10817
|
id: string & import("zod").BRAND<"UUID">;
|
10795
|
-
externalId: string | null;
|
10796
10818
|
name: string;
|
10797
10819
|
partOf: (string & import("zod").BRAND<"UUID">) | null;
|
10798
10820
|
}[];
|
@@ -10854,10 +10876,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10854
10876
|
clauses: {
|
10855
10877
|
status?: {
|
10856
10878
|
type: "exact";
|
10857
|
-
term: "ARCHIVED" | "
|
10879
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
10858
10880
|
} | {
|
10859
10881
|
type: "anyOf";
|
10860
|
-
terms: ("ARCHIVED" | "
|
10882
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
10861
10883
|
} | undefined;
|
10862
10884
|
data?: any;
|
10863
10885
|
createdByUserType?: {
|
@@ -10963,10 +10985,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10963
10985
|
clauses: {
|
10964
10986
|
status?: {
|
10965
10987
|
type: "exact";
|
10966
|
-
term: "ARCHIVED" | "
|
10988
|
+
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
10967
10989
|
} | {
|
10968
10990
|
type: "anyOf";
|
10969
|
-
terms: ("ARCHIVED" | "
|
10991
|
+
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
10970
10992
|
} | undefined;
|
10971
10993
|
data?: any;
|
10972
10994
|
createdByUserType?: {
|
@@ -11076,6 +11098,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
11076
11098
|
label: import("../commons").TranslationConfig;
|
11077
11099
|
}[];
|
11078
11100
|
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";
|
11101
|
+
emptyMessage?: import("../commons").TranslationConfig | undefined;
|
11079
11102
|
}[];
|
11080
11103
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
11081
11104
|
}>;
|