@opencrvs/toolkit 1.8.1-rc.4fba37a → 1.8.1-rc.5130256
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 +395 -412
- package/dist/commons/conditionals/conditionals.test.d.ts +2 -0
- package/dist/commons/conditionals/validate-address.test.d.ts +2 -0
- package/dist/commons/conditionals/validate.d.ts +2 -11
- package/dist/commons/conditionals/validate.test.d.ts +2 -0
- package/dist/commons/events/ActionConfig.d.ts +9396 -8676
- package/dist/commons/events/ActionDocument.d.ts +716 -1252
- package/dist/commons/events/ActionInput.d.ts +600 -626
- package/dist/commons/events/AdvancedSearchConfig.d.ts +65 -83
- 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 +56 -56
- package/dist/commons/events/EventConfig.d.ts +2213 -1443
- package/dist/commons/events/EventDocument.d.ts +432 -451
- package/dist/commons/events/EventIndex.d.ts +62 -184
- package/dist/commons/events/EventMetadata.d.ts +9 -9
- package/dist/commons/events/FieldConfig.d.ts +251 -944
- package/dist/commons/events/FieldType.d.ts +2 -6
- package/dist/commons/events/FieldTypeMapping.d.ts +25 -18
- package/dist/commons/events/FieldValue.d.ts +12 -12
- package/dist/commons/events/FormConfig.d.ts +3874 -3574
- package/dist/commons/events/PageConfig.d.ts +544 -524
- package/dist/commons/events/WorkqueueConfig.d.ts +164 -288
- package/dist/commons/events/defineConfig.d.ts +327 -183
- package/dist/commons/events/event.d.ts +6 -68
- package/dist/commons/events/field.d.ts +0 -14
- package/dist/commons/events/test.utils.d.ts +13 -14
- package/dist/commons/events/utils.d.ts +701 -351
- package/dist/commons/events/utils.test.d.ts +2 -0
- package/dist/conditionals/index.js +2 -3
- package/dist/events/index.js +881 -1101
- package/package.json +1 -1
- package/tsconfig.json +1 -1
@@ -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 | null | undefined;
|
106
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
154
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
209
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
256
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
311
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
358
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
414
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
461
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
516
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
563
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
622
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
669
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
724
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
771
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
830
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
877
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
932
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
979
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
1034
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
1081
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
1136
|
+
surname?: string | null | undefined;
|
1137
1137
|
middlename?: string | null | undefined;
|
1138
1138
|
} | {
|
1139
1139
|
country: string;
|
@@ -1161,9 +1161,6 @@ 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;
|
1167
1164
|
createdBySignature?: string | null | undefined;
|
1168
1165
|
createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
1169
1166
|
annotation?: Record<string, string | number | boolean | {
|
@@ -1182,8 +1179,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1182
1179
|
street?: string | null | undefined;
|
1183
1180
|
zipCode?: string | null | undefined;
|
1184
1181
|
} | {
|
1185
|
-
firstname
|
1186
|
-
surname
|
1182
|
+
firstname?: string | null | undefined;
|
1183
|
+
surname?: string | null | undefined;
|
1187
1184
|
middlename?: string | null | undefined;
|
1188
1185
|
} | {
|
1189
1186
|
country: string;
|
@@ -1237,8 +1234,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1237
1234
|
street?: string | null | undefined;
|
1238
1235
|
zipCode?: string | null | undefined;
|
1239
1236
|
} | {
|
1240
|
-
firstname
|
1241
|
-
surname
|
1237
|
+
firstname?: string | null | undefined;
|
1238
|
+
surname?: string | null | undefined;
|
1242
1239
|
middlename?: string | null | undefined;
|
1243
1240
|
} | {
|
1244
1241
|
country: string;
|
@@ -1284,8 +1281,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1284
1281
|
street?: string | null | undefined;
|
1285
1282
|
zipCode?: string | null | undefined;
|
1286
1283
|
} | {
|
1287
|
-
firstname
|
1288
|
-
surname
|
1284
|
+
firstname?: string | null | undefined;
|
1285
|
+
surname?: string | null | undefined;
|
1289
1286
|
middlename?: string | null | undefined;
|
1290
1287
|
} | {
|
1291
1288
|
country: string;
|
@@ -1339,8 +1336,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1339
1336
|
street?: string | null | undefined;
|
1340
1337
|
zipCode?: string | null | undefined;
|
1341
1338
|
} | {
|
1342
|
-
firstname
|
1343
|
-
surname
|
1339
|
+
firstname?: string | null | undefined;
|
1340
|
+
surname?: string | null | undefined;
|
1344
1341
|
middlename?: string | null | undefined;
|
1345
1342
|
} | {
|
1346
1343
|
country: string;
|
@@ -1387,8 +1384,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1387
1384
|
street?: string | null | undefined;
|
1388
1385
|
zipCode?: string | null | undefined;
|
1389
1386
|
} | {
|
1390
|
-
firstname
|
1391
|
-
surname
|
1387
|
+
firstname?: string | null | undefined;
|
1388
|
+
surname?: string | null | undefined;
|
1392
1389
|
middlename?: string | null | undefined;
|
1393
1390
|
} | {
|
1394
1391
|
country: string;
|
@@ -1446,8 +1443,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1446
1443
|
street?: string | null | undefined;
|
1447
1444
|
zipCode?: string | null | undefined;
|
1448
1445
|
} | {
|
1449
|
-
firstname
|
1450
|
-
surname
|
1446
|
+
firstname?: string | null | undefined;
|
1447
|
+
surname?: string | null | undefined;
|
1451
1448
|
middlename?: string | null | undefined;
|
1452
1449
|
} | {
|
1453
1450
|
country: string;
|
@@ -1494,8 +1491,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1494
1491
|
street?: string | null | undefined;
|
1495
1492
|
zipCode?: string | null | undefined;
|
1496
1493
|
} | {
|
1497
|
-
firstname
|
1498
|
-
surname
|
1494
|
+
firstname?: string | null | undefined;
|
1495
|
+
surname?: string | null | undefined;
|
1499
1496
|
middlename?: string | null | undefined;
|
1500
1497
|
} | {
|
1501
1498
|
country: string;
|
@@ -1549,8 +1546,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1549
1546
|
street?: string | null | undefined;
|
1550
1547
|
zipCode?: string | null | undefined;
|
1551
1548
|
} | {
|
1552
|
-
firstname
|
1553
|
-
surname
|
1549
|
+
firstname?: string | null | undefined;
|
1550
|
+
surname?: string | null | undefined;
|
1554
1551
|
middlename?: string | null | undefined;
|
1555
1552
|
} | {
|
1556
1553
|
country: string;
|
@@ -1596,8 +1593,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1596
1593
|
street?: string | null | undefined;
|
1597
1594
|
zipCode?: string | null | undefined;
|
1598
1595
|
} | {
|
1599
|
-
firstname
|
1600
|
-
surname
|
1596
|
+
firstname?: string | null | undefined;
|
1597
|
+
surname?: string | null | undefined;
|
1601
1598
|
middlename?: string | null | undefined;
|
1602
1599
|
} | {
|
1603
1600
|
country: string;
|
@@ -1675,8 +1672,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1675
1672
|
street?: string | null | undefined;
|
1676
1673
|
zipCode?: string | null | undefined;
|
1677
1674
|
} | {
|
1678
|
-
firstname
|
1679
|
-
surname
|
1675
|
+
firstname?: string | null | undefined;
|
1676
|
+
surname?: string | null | undefined;
|
1680
1677
|
middlename?: string | null | undefined;
|
1681
1678
|
} | {
|
1682
1679
|
country: string;
|
@@ -1723,8 +1720,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1723
1720
|
street?: string | null | undefined;
|
1724
1721
|
zipCode?: string | null | undefined;
|
1725
1722
|
} | {
|
1726
|
-
firstname
|
1727
|
-
surname
|
1723
|
+
firstname?: string | null | undefined;
|
1724
|
+
surname?: string | null | undefined;
|
1728
1725
|
middlename?: string | null | undefined;
|
1729
1726
|
} | {
|
1730
1727
|
country: string;
|
@@ -1778,8 +1775,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1778
1775
|
street?: string | null | undefined;
|
1779
1776
|
zipCode?: string | null | undefined;
|
1780
1777
|
} | {
|
1781
|
-
firstname
|
1782
|
-
surname
|
1778
|
+
firstname?: string | null | undefined;
|
1779
|
+
surname?: string | null | undefined;
|
1783
1780
|
middlename?: string | null | undefined;
|
1784
1781
|
} | {
|
1785
1782
|
country: string;
|
@@ -1825,8 +1822,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1825
1822
|
street?: string | null | undefined;
|
1826
1823
|
zipCode?: string | null | undefined;
|
1827
1824
|
} | {
|
1828
|
-
firstname
|
1829
|
-
surname
|
1825
|
+
firstname?: string | null | undefined;
|
1826
|
+
surname?: string | null | undefined;
|
1830
1827
|
middlename?: string | null | undefined;
|
1831
1828
|
} | {
|
1832
1829
|
country: string;
|
@@ -1880,8 +1877,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1880
1877
|
street?: string | null | undefined;
|
1881
1878
|
zipCode?: string | null | undefined;
|
1882
1879
|
} | {
|
1883
|
-
firstname
|
1884
|
-
surname
|
1880
|
+
firstname?: string | null | undefined;
|
1881
|
+
surname?: string | null | undefined;
|
1885
1882
|
middlename?: string | null | undefined;
|
1886
1883
|
} | {
|
1887
1884
|
country: string;
|
@@ -1927,8 +1924,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1927
1924
|
street?: string | null | undefined;
|
1928
1925
|
zipCode?: string | null | undefined;
|
1929
1926
|
} | {
|
1930
|
-
firstname
|
1931
|
-
surname
|
1927
|
+
firstname?: string | null | undefined;
|
1928
|
+
surname?: string | null | undefined;
|
1932
1929
|
middlename?: string | null | undefined;
|
1933
1930
|
} | {
|
1934
1931
|
country: string;
|
@@ -1983,8 +1980,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
1983
1980
|
street?: string | null | undefined;
|
1984
1981
|
zipCode?: string | null | undefined;
|
1985
1982
|
} | {
|
1986
|
-
firstname
|
1987
|
-
surname
|
1983
|
+
firstname?: string | null | undefined;
|
1984
|
+
surname?: string | null | undefined;
|
1988
1985
|
middlename?: string | null | undefined;
|
1989
1986
|
} | {
|
1990
1987
|
country: string;
|
@@ -2030,8 +2027,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2030
2027
|
street?: string | null | undefined;
|
2031
2028
|
zipCode?: string | null | undefined;
|
2032
2029
|
} | {
|
2033
|
-
firstname
|
2034
|
-
surname
|
2030
|
+
firstname?: string | null | undefined;
|
2031
|
+
surname?: string | null | undefined;
|
2035
2032
|
middlename?: string | null | undefined;
|
2036
2033
|
} | {
|
2037
2034
|
country: string;
|
@@ -2085,8 +2082,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2085
2082
|
street?: string | null | undefined;
|
2086
2083
|
zipCode?: string | null | undefined;
|
2087
2084
|
} | {
|
2088
|
-
firstname
|
2089
|
-
surname
|
2085
|
+
firstname?: string | null | undefined;
|
2086
|
+
surname?: string | null | undefined;
|
2090
2087
|
middlename?: string | null | undefined;
|
2091
2088
|
} | {
|
2092
2089
|
country: string;
|
@@ -2132,8 +2129,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2132
2129
|
street?: string | null | undefined;
|
2133
2130
|
zipCode?: string | null | undefined;
|
2134
2131
|
} | {
|
2135
|
-
firstname
|
2136
|
-
surname
|
2132
|
+
firstname?: string | null | undefined;
|
2133
|
+
surname?: string | null | undefined;
|
2137
2134
|
middlename?: string | null | undefined;
|
2138
2135
|
} | {
|
2139
2136
|
country: string;
|
@@ -2191,8 +2188,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2191
2188
|
street?: string | null | undefined;
|
2192
2189
|
zipCode?: string | null | undefined;
|
2193
2190
|
} | {
|
2194
|
-
firstname
|
2195
|
-
surname
|
2191
|
+
firstname?: string | null | undefined;
|
2192
|
+
surname?: string | null | undefined;
|
2196
2193
|
middlename?: string | null | undefined;
|
2197
2194
|
} | {
|
2198
2195
|
country: string;
|
@@ -2238,8 +2235,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2238
2235
|
street?: string | null | undefined;
|
2239
2236
|
zipCode?: string | null | undefined;
|
2240
2237
|
} | {
|
2241
|
-
firstname
|
2242
|
-
surname
|
2238
|
+
firstname?: string | null | undefined;
|
2239
|
+
surname?: string | null | undefined;
|
2243
2240
|
middlename?: string | null | undefined;
|
2244
2241
|
} | {
|
2245
2242
|
country: string;
|
@@ -2293,8 +2290,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2293
2290
|
street?: string | null | undefined;
|
2294
2291
|
zipCode?: string | null | undefined;
|
2295
2292
|
} | {
|
2296
|
-
firstname
|
2297
|
-
surname
|
2293
|
+
firstname?: string | null | undefined;
|
2294
|
+
surname?: string | null | undefined;
|
2298
2295
|
middlename?: string | null | undefined;
|
2299
2296
|
} | {
|
2300
2297
|
country: string;
|
@@ -2340,8 +2337,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2340
2337
|
street?: string | null | undefined;
|
2341
2338
|
zipCode?: string | null | undefined;
|
2342
2339
|
} | {
|
2343
|
-
firstname
|
2344
|
-
surname
|
2340
|
+
firstname?: string | null | undefined;
|
2341
|
+
surname?: string | null | undefined;
|
2345
2342
|
middlename?: string | null | undefined;
|
2346
2343
|
} | {
|
2347
2344
|
country: string;
|
@@ -2399,8 +2396,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2399
2396
|
street?: string | null | undefined;
|
2400
2397
|
zipCode?: string | null | undefined;
|
2401
2398
|
} | {
|
2402
|
-
firstname
|
2403
|
-
surname
|
2399
|
+
firstname?: string | null | undefined;
|
2400
|
+
surname?: string | null | undefined;
|
2404
2401
|
middlename?: string | null | undefined;
|
2405
2402
|
} | {
|
2406
2403
|
country: string;
|
@@ -2446,8 +2443,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2446
2443
|
street?: string | null | undefined;
|
2447
2444
|
zipCode?: string | null | undefined;
|
2448
2445
|
} | {
|
2449
|
-
firstname
|
2450
|
-
surname
|
2446
|
+
firstname?: string | null | undefined;
|
2447
|
+
surname?: string | null | undefined;
|
2451
2448
|
middlename?: string | null | undefined;
|
2452
2449
|
} | {
|
2453
2450
|
country: string;
|
@@ -2501,8 +2498,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2501
2498
|
street?: string | null | undefined;
|
2502
2499
|
zipCode?: string | null | undefined;
|
2503
2500
|
} | {
|
2504
|
-
firstname
|
2505
|
-
surname
|
2501
|
+
firstname?: string | null | undefined;
|
2502
|
+
surname?: string | null | undefined;
|
2506
2503
|
middlename?: string | null | undefined;
|
2507
2504
|
} | {
|
2508
2505
|
country: string;
|
@@ -2548,8 +2545,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2548
2545
|
street?: string | null | undefined;
|
2549
2546
|
zipCode?: string | null | undefined;
|
2550
2547
|
} | {
|
2551
|
-
firstname
|
2552
|
-
surname
|
2548
|
+
firstname?: string | null | undefined;
|
2549
|
+
surname?: string | null | undefined;
|
2553
2550
|
middlename?: string | null | undefined;
|
2554
2551
|
} | {
|
2555
2552
|
country: string;
|
@@ -2603,8 +2600,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2603
2600
|
street?: string | null | undefined;
|
2604
2601
|
zipCode?: string | null | undefined;
|
2605
2602
|
} | {
|
2606
|
-
firstname
|
2607
|
-
surname
|
2603
|
+
firstname?: string | null | undefined;
|
2604
|
+
surname?: string | null | undefined;
|
2608
2605
|
middlename?: string | null | undefined;
|
2609
2606
|
} | {
|
2610
2607
|
country: string;
|
@@ -2650,8 +2647,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2650
2647
|
street?: string | null | undefined;
|
2651
2648
|
zipCode?: string | null | undefined;
|
2652
2649
|
} | {
|
2653
|
-
firstname
|
2654
|
-
surname
|
2650
|
+
firstname?: string | null | undefined;
|
2651
|
+
surname?: string | null | undefined;
|
2655
2652
|
middlename?: string | null | undefined;
|
2656
2653
|
} | {
|
2657
2654
|
country: string;
|
@@ -2705,8 +2702,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2705
2702
|
street?: string | null | undefined;
|
2706
2703
|
zipCode?: string | null | undefined;
|
2707
2704
|
} | {
|
2708
|
-
firstname
|
2709
|
-
surname
|
2705
|
+
firstname?: string | null | undefined;
|
2706
|
+
surname?: string | null | undefined;
|
2710
2707
|
middlename?: string | null | undefined;
|
2711
2708
|
} | {
|
2712
2709
|
country: string;
|
@@ -2734,9 +2731,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2734
2731
|
start: string;
|
2735
2732
|
end: string;
|
2736
2733
|
} | null | undefined>;
|
2737
|
-
content?: {
|
2738
|
-
templateId?: string | undefined;
|
2739
|
-
} | null | undefined;
|
2740
2734
|
createdBySignature?: string | null | undefined;
|
2741
2735
|
createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
2742
2736
|
annotation?: Record<string, string | number | boolean | {
|
@@ -2755,8 +2749,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2755
2749
|
street?: string | null | undefined;
|
2756
2750
|
zipCode?: string | null | undefined;
|
2757
2751
|
} | {
|
2758
|
-
firstname
|
2759
|
-
surname
|
2752
|
+
firstname?: string | null | undefined;
|
2753
|
+
surname?: string | null | undefined;
|
2760
2754
|
middlename?: string | null | undefined;
|
2761
2755
|
} | {
|
2762
2756
|
country: string;
|
@@ -2810,8 +2804,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2810
2804
|
street?: string | null | undefined;
|
2811
2805
|
zipCode?: string | null | undefined;
|
2812
2806
|
} | {
|
2813
|
-
firstname
|
2814
|
-
surname
|
2807
|
+
firstname?: string | null | undefined;
|
2808
|
+
surname?: string | null | undefined;
|
2815
2809
|
middlename?: string | null | undefined;
|
2816
2810
|
} | {
|
2817
2811
|
country: string;
|
@@ -2857,8 +2851,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2857
2851
|
street?: string | null | undefined;
|
2858
2852
|
zipCode?: string | null | undefined;
|
2859
2853
|
} | {
|
2860
|
-
firstname
|
2861
|
-
surname
|
2854
|
+
firstname?: string | null | undefined;
|
2855
|
+
surname?: string | null | undefined;
|
2862
2856
|
middlename?: string | null | undefined;
|
2863
2857
|
} | {
|
2864
2858
|
country: string;
|
@@ -2912,8 +2906,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2912
2906
|
street?: string | null | undefined;
|
2913
2907
|
zipCode?: string | null | undefined;
|
2914
2908
|
} | {
|
2915
|
-
firstname
|
2916
|
-
surname
|
2909
|
+
firstname?: string | null | undefined;
|
2910
|
+
surname?: string | null | undefined;
|
2917
2911
|
middlename?: string | null | undefined;
|
2918
2912
|
} | {
|
2919
2913
|
country: string;
|
@@ -2960,8 +2954,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2960
2954
|
street?: string | null | undefined;
|
2961
2955
|
zipCode?: string | null | undefined;
|
2962
2956
|
} | {
|
2963
|
-
firstname
|
2964
|
-
surname
|
2957
|
+
firstname?: string | null | undefined;
|
2958
|
+
surname?: string | null | undefined;
|
2965
2959
|
middlename?: string | null | undefined;
|
2966
2960
|
} | {
|
2967
2961
|
country: string;
|
@@ -3019,8 +3013,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3019
3013
|
street?: string | null | undefined;
|
3020
3014
|
zipCode?: string | null | undefined;
|
3021
3015
|
} | {
|
3022
|
-
firstname
|
3023
|
-
surname
|
3016
|
+
firstname?: string | null | undefined;
|
3017
|
+
surname?: string | null | undefined;
|
3024
3018
|
middlename?: string | null | undefined;
|
3025
3019
|
} | {
|
3026
3020
|
country: string;
|
@@ -3067,8 +3061,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3067
3061
|
street?: string | null | undefined;
|
3068
3062
|
zipCode?: string | null | undefined;
|
3069
3063
|
} | {
|
3070
|
-
firstname
|
3071
|
-
surname
|
3064
|
+
firstname?: string | null | undefined;
|
3065
|
+
surname?: string | null | undefined;
|
3072
3066
|
middlename?: string | null | undefined;
|
3073
3067
|
} | {
|
3074
3068
|
country: string;
|
@@ -3122,8 +3116,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3122
3116
|
street?: string | null | undefined;
|
3123
3117
|
zipCode?: string | null | undefined;
|
3124
3118
|
} | {
|
3125
|
-
firstname
|
3126
|
-
surname
|
3119
|
+
firstname?: string | null | undefined;
|
3120
|
+
surname?: string | null | undefined;
|
3127
3121
|
middlename?: string | null | undefined;
|
3128
3122
|
} | {
|
3129
3123
|
country: string;
|
@@ -3169,8 +3163,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3169
3163
|
street?: string | null | undefined;
|
3170
3164
|
zipCode?: string | null | undefined;
|
3171
3165
|
} | {
|
3172
|
-
firstname
|
3173
|
-
surname
|
3166
|
+
firstname?: string | null | undefined;
|
3167
|
+
surname?: string | null | undefined;
|
3174
3168
|
middlename?: string | null | undefined;
|
3175
3169
|
} | {
|
3176
3170
|
country: string;
|
@@ -3254,7 +3248,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3254
3248
|
createdAt: string;
|
3255
3249
|
eventId: string & import("zod").BRAND<"UUID">;
|
3256
3250
|
action: {
|
3257
|
-
type: "CREATE" | "NOTIFY" | "DECLARE" | "VALIDATE" | "REGISTER" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
3251
|
+
type: "DELETE" | "CREATE" | "NOTIFY" | "DECLARE" | "VALIDATE" | "REGISTER" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
3258
3252
|
status: "Rejected" | "Requested" | "Accepted";
|
3259
3253
|
transactionId: string;
|
3260
3254
|
createdByUserType: "system" | "user";
|
@@ -3277,8 +3271,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3277
3271
|
street?: string | null | undefined;
|
3278
3272
|
zipCode?: string | null | undefined;
|
3279
3273
|
} | {
|
3280
|
-
firstname
|
3281
|
-
surname
|
3274
|
+
firstname?: string | null | undefined;
|
3275
|
+
surname?: string | null | undefined;
|
3282
3276
|
middlename?: string | null | undefined;
|
3283
3277
|
} | {
|
3284
3278
|
country: string;
|
@@ -3324,8 +3318,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3324
3318
|
street?: string | null | undefined;
|
3325
3319
|
zipCode?: string | null | undefined;
|
3326
3320
|
} | {
|
3327
|
-
firstname
|
3328
|
-
surname
|
3321
|
+
firstname?: string | null | undefined;
|
3322
|
+
surname?: string | null | undefined;
|
3329
3323
|
middlename?: string | null | undefined;
|
3330
3324
|
} | {
|
3331
3325
|
country: string;
|
@@ -3360,7 +3354,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3360
3354
|
}>;
|
3361
3355
|
create: import("@trpc/server").TRPCMutationProcedure<{
|
3362
3356
|
input: {
|
3363
|
-
type: "CREATE" | "NOTIFY" | "DECLARE" | "VALIDATE" | "REGISTER" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
3357
|
+
type: "DELETE" | "CREATE" | "NOTIFY" | "DECLARE" | "VALIDATE" | "REGISTER" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
3364
3358
|
status: "Rejected" | "Requested" | "Accepted";
|
3365
3359
|
transactionId: string;
|
3366
3360
|
eventId: string;
|
@@ -3380,8 +3374,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3380
3374
|
street?: string | null | undefined;
|
3381
3375
|
zipCode?: string | null | undefined;
|
3382
3376
|
} | {
|
3383
|
-
firstname
|
3384
|
-
surname
|
3377
|
+
firstname?: string | null | undefined;
|
3378
|
+
surname?: string | null | undefined;
|
3385
3379
|
middlename?: string | null | undefined;
|
3386
3380
|
} | {
|
3387
3381
|
country: string;
|
@@ -3425,8 +3419,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3425
3419
|
street?: string | null | undefined;
|
3426
3420
|
zipCode?: string | null | undefined;
|
3427
3421
|
} | {
|
3428
|
-
firstname
|
3429
|
-
surname
|
3422
|
+
firstname?: string | null | undefined;
|
3423
|
+
surname?: string | null | undefined;
|
3430
3424
|
middlename?: string | null | undefined;
|
3431
3425
|
} | {
|
3432
3426
|
country: string;
|
@@ -3463,7 +3457,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3463
3457
|
createdAt: string;
|
3464
3458
|
eventId: string & import("zod").BRAND<"UUID">;
|
3465
3459
|
action: {
|
3466
|
-
type: "CREATE" | "NOTIFY" | "DECLARE" | "VALIDATE" | "REGISTER" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
3460
|
+
type: "DELETE" | "CREATE" | "NOTIFY" | "DECLARE" | "VALIDATE" | "REGISTER" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
3467
3461
|
status: "Rejected" | "Requested" | "Accepted";
|
3468
3462
|
transactionId: string;
|
3469
3463
|
createdByUserType: "system" | "user";
|
@@ -3486,8 +3480,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3486
3480
|
street?: string | null | undefined;
|
3487
3481
|
zipCode?: string | null | undefined;
|
3488
3482
|
} | {
|
3489
|
-
firstname
|
3490
|
-
surname
|
3483
|
+
firstname?: string | null | undefined;
|
3484
|
+
surname?: string | null | undefined;
|
3491
3485
|
middlename?: string | null | undefined;
|
3492
3486
|
} | {
|
3493
3487
|
country: string;
|
@@ -3533,8 +3527,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3533
3527
|
street?: string | null | undefined;
|
3534
3528
|
zipCode?: string | null | undefined;
|
3535
3529
|
} | {
|
3536
|
-
firstname
|
3537
|
-
surname
|
3530
|
+
firstname?: string | null | undefined;
|
3531
|
+
surname?: string | null | undefined;
|
3538
3532
|
middlename?: string | null | undefined;
|
3539
3533
|
} | {
|
3540
3534
|
country: string;
|
@@ -3933,8 +3927,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3933
3927
|
street?: string | null | undefined;
|
3934
3928
|
zipCode?: string | null | undefined;
|
3935
3929
|
} | {
|
3936
|
-
firstname
|
3937
|
-
surname
|
3930
|
+
firstname?: string | null | undefined;
|
3931
|
+
surname?: string | null | undefined;
|
3938
3932
|
middlename?: string | null | undefined;
|
3939
3933
|
} | {
|
3940
3934
|
country: string;
|
@@ -3978,8 +3972,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
3978
3972
|
street?: string | null | undefined;
|
3979
3973
|
zipCode?: string | null | undefined;
|
3980
3974
|
} | {
|
3981
|
-
firstname
|
3982
|
-
surname
|
3975
|
+
firstname?: string | null | undefined;
|
3976
|
+
surname?: string | null | undefined;
|
3983
3977
|
middlename?: string | null | undefined;
|
3984
3978
|
} | {
|
3985
3979
|
country: string;
|
@@ -4040,8 +4034,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4040
4034
|
street?: string | null | undefined;
|
4041
4035
|
zipCode?: string | null | undefined;
|
4042
4036
|
} | {
|
4043
|
-
firstname
|
4044
|
-
surname
|
4037
|
+
firstname?: string | null | undefined;
|
4038
|
+
surname?: string | null | undefined;
|
4045
4039
|
middlename?: string | null | undefined;
|
4046
4040
|
} | {
|
4047
4041
|
country: string;
|
@@ -4088,8 +4082,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4088
4082
|
street?: string | null | undefined;
|
4089
4083
|
zipCode?: string | null | undefined;
|
4090
4084
|
} | {
|
4091
|
-
firstname
|
4092
|
-
surname
|
4085
|
+
firstname?: string | null | undefined;
|
4086
|
+
surname?: string | null | undefined;
|
4093
4087
|
middlename?: string | null | undefined;
|
4094
4088
|
} | {
|
4095
4089
|
country: string;
|
@@ -4143,8 +4137,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4143
4137
|
street?: string | null | undefined;
|
4144
4138
|
zipCode?: string | null | undefined;
|
4145
4139
|
} | {
|
4146
|
-
firstname
|
4147
|
-
surname
|
4140
|
+
firstname?: string | null | undefined;
|
4141
|
+
surname?: string | null | undefined;
|
4148
4142
|
middlename?: string | null | undefined;
|
4149
4143
|
} | {
|
4150
4144
|
country: string;
|
@@ -4190,8 +4184,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4190
4184
|
street?: string | null | undefined;
|
4191
4185
|
zipCode?: string | null | undefined;
|
4192
4186
|
} | {
|
4193
|
-
firstname
|
4194
|
-
surname
|
4187
|
+
firstname?: string | null | undefined;
|
4188
|
+
surname?: string | null | undefined;
|
4195
4189
|
middlename?: string | null | undefined;
|
4196
4190
|
} | {
|
4197
4191
|
country: string;
|
@@ -4245,8 +4239,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4245
4239
|
street?: string | null | undefined;
|
4246
4240
|
zipCode?: string | null | undefined;
|
4247
4241
|
} | {
|
4248
|
-
firstname
|
4249
|
-
surname
|
4242
|
+
firstname?: string | null | undefined;
|
4243
|
+
surname?: string | null | undefined;
|
4250
4244
|
middlename?: string | null | undefined;
|
4251
4245
|
} | {
|
4252
4246
|
country: string;
|
@@ -4292,8 +4286,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4292
4286
|
street?: string | null | undefined;
|
4293
4287
|
zipCode?: string | null | undefined;
|
4294
4288
|
} | {
|
4295
|
-
firstname
|
4296
|
-
surname
|
4289
|
+
firstname?: string | null | undefined;
|
4290
|
+
surname?: string | null | undefined;
|
4297
4291
|
middlename?: string | null | undefined;
|
4298
4292
|
} | {
|
4299
4293
|
country: string;
|
@@ -4348,8 +4342,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4348
4342
|
street?: string | null | undefined;
|
4349
4343
|
zipCode?: string | null | undefined;
|
4350
4344
|
} | {
|
4351
|
-
firstname
|
4352
|
-
surname
|
4345
|
+
firstname?: string | null | undefined;
|
4346
|
+
surname?: string | null | undefined;
|
4353
4347
|
middlename?: string | null | undefined;
|
4354
4348
|
} | {
|
4355
4349
|
country: string;
|
@@ -4395,8 +4389,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4395
4389
|
street?: string | null | undefined;
|
4396
4390
|
zipCode?: string | null | undefined;
|
4397
4391
|
} | {
|
4398
|
-
firstname
|
4399
|
-
surname
|
4392
|
+
firstname?: string | null | undefined;
|
4393
|
+
surname?: string | null | undefined;
|
4400
4394
|
middlename?: string | null | undefined;
|
4401
4395
|
} | {
|
4402
4396
|
country: string;
|
@@ -4450,8 +4444,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4450
4444
|
street?: string | null | undefined;
|
4451
4445
|
zipCode?: string | null | undefined;
|
4452
4446
|
} | {
|
4453
|
-
firstname
|
4454
|
-
surname
|
4447
|
+
firstname?: string | null | undefined;
|
4448
|
+
surname?: string | null | undefined;
|
4455
4449
|
middlename?: string | null | undefined;
|
4456
4450
|
} | {
|
4457
4451
|
country: string;
|
@@ -4497,8 +4491,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4497
4491
|
street?: string | null | undefined;
|
4498
4492
|
zipCode?: string | null | undefined;
|
4499
4493
|
} | {
|
4500
|
-
firstname
|
4501
|
-
surname
|
4494
|
+
firstname?: string | null | undefined;
|
4495
|
+
surname?: string | null | undefined;
|
4502
4496
|
middlename?: string | null | undefined;
|
4503
4497
|
} | {
|
4504
4498
|
country: string;
|
@@ -4556,8 +4550,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4556
4550
|
street?: string | null | undefined;
|
4557
4551
|
zipCode?: string | null | undefined;
|
4558
4552
|
} | {
|
4559
|
-
firstname
|
4560
|
-
surname
|
4553
|
+
firstname?: string | null | undefined;
|
4554
|
+
surname?: string | null | undefined;
|
4561
4555
|
middlename?: string | null | undefined;
|
4562
4556
|
} | {
|
4563
4557
|
country: string;
|
@@ -4603,8 +4597,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4603
4597
|
street?: string | null | undefined;
|
4604
4598
|
zipCode?: string | null | undefined;
|
4605
4599
|
} | {
|
4606
|
-
firstname
|
4607
|
-
surname
|
4600
|
+
firstname?: string | null | undefined;
|
4601
|
+
surname?: string | null | undefined;
|
4608
4602
|
middlename?: string | null | undefined;
|
4609
4603
|
} | {
|
4610
4604
|
country: string;
|
@@ -4658,8 +4652,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4658
4652
|
street?: string | null | undefined;
|
4659
4653
|
zipCode?: string | null | undefined;
|
4660
4654
|
} | {
|
4661
|
-
firstname
|
4662
|
-
surname
|
4655
|
+
firstname?: string | null | undefined;
|
4656
|
+
surname?: string | null | undefined;
|
4663
4657
|
middlename?: string | null | undefined;
|
4664
4658
|
} | {
|
4665
4659
|
country: string;
|
@@ -4705,8 +4699,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4705
4699
|
street?: string | null | undefined;
|
4706
4700
|
zipCode?: string | null | undefined;
|
4707
4701
|
} | {
|
4708
|
-
firstname
|
4709
|
-
surname
|
4702
|
+
firstname?: string | null | undefined;
|
4703
|
+
surname?: string | null | undefined;
|
4710
4704
|
middlename?: string | null | undefined;
|
4711
4705
|
} | {
|
4712
4706
|
country: string;
|
@@ -4764,8 +4758,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4764
4758
|
street?: string | null | undefined;
|
4765
4759
|
zipCode?: string | null | undefined;
|
4766
4760
|
} | {
|
4767
|
-
firstname
|
4768
|
-
surname
|
4761
|
+
firstname?: string | null | undefined;
|
4762
|
+
surname?: string | null | undefined;
|
4769
4763
|
middlename?: string | null | undefined;
|
4770
4764
|
} | {
|
4771
4765
|
country: string;
|
@@ -4811,8 +4805,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4811
4805
|
street?: string | null | undefined;
|
4812
4806
|
zipCode?: string | null | undefined;
|
4813
4807
|
} | {
|
4814
|
-
firstname
|
4815
|
-
surname
|
4808
|
+
firstname?: string | null | undefined;
|
4809
|
+
surname?: string | null | undefined;
|
4816
4810
|
middlename?: string | null | undefined;
|
4817
4811
|
} | {
|
4818
4812
|
country: string;
|
@@ -4866,8 +4860,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4866
4860
|
street?: string | null | undefined;
|
4867
4861
|
zipCode?: string | null | undefined;
|
4868
4862
|
} | {
|
4869
|
-
firstname
|
4870
|
-
surname
|
4863
|
+
firstname?: string | null | undefined;
|
4864
|
+
surname?: string | null | undefined;
|
4871
4865
|
middlename?: string | null | undefined;
|
4872
4866
|
} | {
|
4873
4867
|
country: string;
|
@@ -4913,8 +4907,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4913
4907
|
street?: string | null | undefined;
|
4914
4908
|
zipCode?: string | null | undefined;
|
4915
4909
|
} | {
|
4916
|
-
firstname
|
4917
|
-
surname
|
4910
|
+
firstname?: string | null | undefined;
|
4911
|
+
surname?: string | null | undefined;
|
4918
4912
|
middlename?: string | null | undefined;
|
4919
4913
|
} | {
|
4920
4914
|
country: string;
|
@@ -4968,8 +4962,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
4968
4962
|
street?: string | null | undefined;
|
4969
4963
|
zipCode?: string | null | undefined;
|
4970
4964
|
} | {
|
4971
|
-
firstname
|
4972
|
-
surname
|
4965
|
+
firstname?: string | null | undefined;
|
4966
|
+
surname?: string | null | undefined;
|
4973
4967
|
middlename?: string | null | undefined;
|
4974
4968
|
} | {
|
4975
4969
|
country: string;
|
@@ -5015,8 +5009,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5015
5009
|
street?: string | null | undefined;
|
5016
5010
|
zipCode?: string | null | undefined;
|
5017
5011
|
} | {
|
5018
|
-
firstname
|
5019
|
-
surname
|
5012
|
+
firstname?: string | null | undefined;
|
5013
|
+
surname?: string | null | undefined;
|
5020
5014
|
middlename?: string | null | undefined;
|
5021
5015
|
} | {
|
5022
5016
|
country: string;
|
@@ -5070,8 +5064,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5070
5064
|
street?: string | null | undefined;
|
5071
5065
|
zipCode?: string | null | undefined;
|
5072
5066
|
} | {
|
5073
|
-
firstname
|
5074
|
-
surname
|
5067
|
+
firstname?: string | null | undefined;
|
5068
|
+
surname?: string | null | undefined;
|
5075
5069
|
middlename?: string | null | undefined;
|
5076
5070
|
} | {
|
5077
5071
|
country: string;
|
@@ -5099,9 +5093,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5099
5093
|
start: string;
|
5100
5094
|
end: string;
|
5101
5095
|
} | null | undefined>;
|
5102
|
-
content?: {
|
5103
|
-
templateId?: string | undefined;
|
5104
|
-
} | null | undefined;
|
5105
5096
|
createdBySignature?: string | null | undefined;
|
5106
5097
|
createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
5107
5098
|
annotation?: Record<string, string | number | boolean | {
|
@@ -5120,8 +5111,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5120
5111
|
street?: string | null | undefined;
|
5121
5112
|
zipCode?: string | null | undefined;
|
5122
5113
|
} | {
|
5123
|
-
firstname
|
5124
|
-
surname
|
5114
|
+
firstname?: string | null | undefined;
|
5115
|
+
surname?: string | null | undefined;
|
5125
5116
|
middlename?: string | null | undefined;
|
5126
5117
|
} | {
|
5127
5118
|
country: string;
|
@@ -5175,8 +5166,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5175
5166
|
street?: string | null | undefined;
|
5176
5167
|
zipCode?: string | null | undefined;
|
5177
5168
|
} | {
|
5178
|
-
firstname
|
5179
|
-
surname
|
5169
|
+
firstname?: string | null | undefined;
|
5170
|
+
surname?: string | null | undefined;
|
5180
5171
|
middlename?: string | null | undefined;
|
5181
5172
|
} | {
|
5182
5173
|
country: string;
|
@@ -5222,8 +5213,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5222
5213
|
street?: string | null | undefined;
|
5223
5214
|
zipCode?: string | null | undefined;
|
5224
5215
|
} | {
|
5225
|
-
firstname
|
5226
|
-
surname
|
5216
|
+
firstname?: string | null | undefined;
|
5217
|
+
surname?: string | null | undefined;
|
5227
5218
|
middlename?: string | null | undefined;
|
5228
5219
|
} | {
|
5229
5220
|
country: string;
|
@@ -5277,8 +5268,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5277
5268
|
street?: string | null | undefined;
|
5278
5269
|
zipCode?: string | null | undefined;
|
5279
5270
|
} | {
|
5280
|
-
firstname
|
5281
|
-
surname
|
5271
|
+
firstname?: string | null | undefined;
|
5272
|
+
surname?: string | null | undefined;
|
5282
5273
|
middlename?: string | null | undefined;
|
5283
5274
|
} | {
|
5284
5275
|
country: string;
|
@@ -5325,8 +5316,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5325
5316
|
street?: string | null | undefined;
|
5326
5317
|
zipCode?: string | null | undefined;
|
5327
5318
|
} | {
|
5328
|
-
firstname
|
5329
|
-
surname
|
5319
|
+
firstname?: string | null | undefined;
|
5320
|
+
surname?: string | null | undefined;
|
5330
5321
|
middlename?: string | null | undefined;
|
5331
5322
|
} | {
|
5332
5323
|
country: string;
|
@@ -5384,8 +5375,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5384
5375
|
street?: string | null | undefined;
|
5385
5376
|
zipCode?: string | null | undefined;
|
5386
5377
|
} | {
|
5387
|
-
firstname
|
5388
|
-
surname
|
5378
|
+
firstname?: string | null | undefined;
|
5379
|
+
surname?: string | null | undefined;
|
5389
5380
|
middlename?: string | null | undefined;
|
5390
5381
|
} | {
|
5391
5382
|
country: string;
|
@@ -5432,8 +5423,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5432
5423
|
street?: string | null | undefined;
|
5433
5424
|
zipCode?: string | null | undefined;
|
5434
5425
|
} | {
|
5435
|
-
firstname
|
5436
|
-
surname
|
5426
|
+
firstname?: string | null | undefined;
|
5427
|
+
surname?: string | null | undefined;
|
5437
5428
|
middlename?: string | null | undefined;
|
5438
5429
|
} | {
|
5439
5430
|
country: string;
|
@@ -5487,8 +5478,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5487
5478
|
street?: string | null | undefined;
|
5488
5479
|
zipCode?: string | null | undefined;
|
5489
5480
|
} | {
|
5490
|
-
firstname
|
5491
|
-
surname
|
5481
|
+
firstname?: string | null | undefined;
|
5482
|
+
surname?: string | null | undefined;
|
5492
5483
|
middlename?: string | null | undefined;
|
5493
5484
|
} | {
|
5494
5485
|
country: string;
|
@@ -5534,8 +5525,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5534
5525
|
street?: string | null | undefined;
|
5535
5526
|
zipCode?: string | null | undefined;
|
5536
5527
|
} | {
|
5537
|
-
firstname
|
5538
|
-
surname
|
5528
|
+
firstname?: string | null | undefined;
|
5529
|
+
surname?: string | null | undefined;
|
5539
5530
|
middlename?: string | null | undefined;
|
5540
5531
|
} | {
|
5541
5532
|
country: string;
|
@@ -5602,8 +5593,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5602
5593
|
street?: string | null | undefined;
|
5603
5594
|
zipCode?: string | null | undefined;
|
5604
5595
|
} | {
|
5605
|
-
firstname
|
5606
|
-
surname
|
5596
|
+
firstname?: string | null | undefined;
|
5597
|
+
surname?: string | null | undefined;
|
5607
5598
|
middlename?: string | null | undefined;
|
5608
5599
|
} | {
|
5609
5600
|
country: string;
|
@@ -5647,8 +5638,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5647
5638
|
street?: string | null | undefined;
|
5648
5639
|
zipCode?: string | null | undefined;
|
5649
5640
|
} | {
|
5650
|
-
firstname
|
5651
|
-
surname
|
5641
|
+
firstname?: string | null | undefined;
|
5642
|
+
surname?: string | null | undefined;
|
5652
5643
|
middlename?: string | null | undefined;
|
5653
5644
|
} | {
|
5654
5645
|
country: string;
|
@@ -5710,8 +5701,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5710
5701
|
street?: string | null | undefined;
|
5711
5702
|
zipCode?: string | null | undefined;
|
5712
5703
|
} | {
|
5713
|
-
firstname
|
5714
|
-
surname
|
5704
|
+
firstname?: string | null | undefined;
|
5705
|
+
surname?: string | null | undefined;
|
5715
5706
|
middlename?: string | null | undefined;
|
5716
5707
|
} | {
|
5717
5708
|
country: string;
|
@@ -5758,8 +5749,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5758
5749
|
street?: string | null | undefined;
|
5759
5750
|
zipCode?: string | null | undefined;
|
5760
5751
|
} | {
|
5761
|
-
firstname
|
5762
|
-
surname
|
5752
|
+
firstname?: string | null | undefined;
|
5753
|
+
surname?: string | null | undefined;
|
5763
5754
|
middlename?: string | null | undefined;
|
5764
5755
|
} | {
|
5765
5756
|
country: string;
|
@@ -5813,8 +5804,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5813
5804
|
street?: string | null | undefined;
|
5814
5805
|
zipCode?: string | null | undefined;
|
5815
5806
|
} | {
|
5816
|
-
firstname
|
5817
|
-
surname
|
5807
|
+
firstname?: string | null | undefined;
|
5808
|
+
surname?: string | null | undefined;
|
5818
5809
|
middlename?: string | null | undefined;
|
5819
5810
|
} | {
|
5820
5811
|
country: string;
|
@@ -5860,8 +5851,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5860
5851
|
street?: string | null | undefined;
|
5861
5852
|
zipCode?: string | null | undefined;
|
5862
5853
|
} | {
|
5863
|
-
firstname
|
5864
|
-
surname
|
5854
|
+
firstname?: string | null | undefined;
|
5855
|
+
surname?: string | null | undefined;
|
5865
5856
|
middlename?: string | null | undefined;
|
5866
5857
|
} | {
|
5867
5858
|
country: string;
|
@@ -5915,8 +5906,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5915
5906
|
street?: string | null | undefined;
|
5916
5907
|
zipCode?: string | null | undefined;
|
5917
5908
|
} | {
|
5918
|
-
firstname
|
5919
|
-
surname
|
5909
|
+
firstname?: string | null | undefined;
|
5910
|
+
surname?: string | null | undefined;
|
5920
5911
|
middlename?: string | null | undefined;
|
5921
5912
|
} | {
|
5922
5913
|
country: string;
|
@@ -5962,8 +5953,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
5962
5953
|
street?: string | null | undefined;
|
5963
5954
|
zipCode?: string | null | undefined;
|
5964
5955
|
} | {
|
5965
|
-
firstname
|
5966
|
-
surname
|
5956
|
+
firstname?: string | null | undefined;
|
5957
|
+
surname?: string | null | undefined;
|
5967
5958
|
middlename?: string | null | undefined;
|
5968
5959
|
} | {
|
5969
5960
|
country: string;
|
@@ -6018,8 +6009,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6018
6009
|
street?: string | null | undefined;
|
6019
6010
|
zipCode?: string | null | undefined;
|
6020
6011
|
} | {
|
6021
|
-
firstname
|
6022
|
-
surname
|
6012
|
+
firstname?: string | null | undefined;
|
6013
|
+
surname?: string | null | undefined;
|
6023
6014
|
middlename?: string | null | undefined;
|
6024
6015
|
} | {
|
6025
6016
|
country: string;
|
@@ -6065,8 +6056,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6065
6056
|
street?: string | null | undefined;
|
6066
6057
|
zipCode?: string | null | undefined;
|
6067
6058
|
} | {
|
6068
|
-
firstname
|
6069
|
-
surname
|
6059
|
+
firstname?: string | null | undefined;
|
6060
|
+
surname?: string | null | undefined;
|
6070
6061
|
middlename?: string | null | undefined;
|
6071
6062
|
} | {
|
6072
6063
|
country: string;
|
@@ -6120,8 +6111,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6120
6111
|
street?: string | null | undefined;
|
6121
6112
|
zipCode?: string | null | undefined;
|
6122
6113
|
} | {
|
6123
|
-
firstname
|
6124
|
-
surname
|
6114
|
+
firstname?: string | null | undefined;
|
6115
|
+
surname?: string | null | undefined;
|
6125
6116
|
middlename?: string | null | undefined;
|
6126
6117
|
} | {
|
6127
6118
|
country: string;
|
@@ -6167,8 +6158,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6167
6158
|
street?: string | null | undefined;
|
6168
6159
|
zipCode?: string | null | undefined;
|
6169
6160
|
} | {
|
6170
|
-
firstname
|
6171
|
-
surname
|
6161
|
+
firstname?: string | null | undefined;
|
6162
|
+
surname?: string | null | undefined;
|
6172
6163
|
middlename?: string | null | undefined;
|
6173
6164
|
} | {
|
6174
6165
|
country: string;
|
@@ -6226,8 +6217,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6226
6217
|
street?: string | null | undefined;
|
6227
6218
|
zipCode?: string | null | undefined;
|
6228
6219
|
} | {
|
6229
|
-
firstname
|
6230
|
-
surname
|
6220
|
+
firstname?: string | null | undefined;
|
6221
|
+
surname?: string | null | undefined;
|
6231
6222
|
middlename?: string | null | undefined;
|
6232
6223
|
} | {
|
6233
6224
|
country: string;
|
@@ -6273,8 +6264,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6273
6264
|
street?: string | null | undefined;
|
6274
6265
|
zipCode?: string | null | undefined;
|
6275
6266
|
} | {
|
6276
|
-
firstname
|
6277
|
-
surname
|
6267
|
+
firstname?: string | null | undefined;
|
6268
|
+
surname?: string | null | undefined;
|
6278
6269
|
middlename?: string | null | undefined;
|
6279
6270
|
} | {
|
6280
6271
|
country: string;
|
@@ -6328,8 +6319,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6328
6319
|
street?: string | null | undefined;
|
6329
6320
|
zipCode?: string | null | undefined;
|
6330
6321
|
} | {
|
6331
|
-
firstname
|
6332
|
-
surname
|
6322
|
+
firstname?: string | null | undefined;
|
6323
|
+
surname?: string | null | undefined;
|
6333
6324
|
middlename?: string | null | undefined;
|
6334
6325
|
} | {
|
6335
6326
|
country: string;
|
@@ -6375,8 +6366,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6375
6366
|
street?: string | null | undefined;
|
6376
6367
|
zipCode?: string | null | undefined;
|
6377
6368
|
} | {
|
6378
|
-
firstname
|
6379
|
-
surname
|
6369
|
+
firstname?: string | null | undefined;
|
6370
|
+
surname?: string | null | undefined;
|
6380
6371
|
middlename?: string | null | undefined;
|
6381
6372
|
} | {
|
6382
6373
|
country: string;
|
@@ -6434,8 +6425,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6434
6425
|
street?: string | null | undefined;
|
6435
6426
|
zipCode?: string | null | undefined;
|
6436
6427
|
} | {
|
6437
|
-
firstname
|
6438
|
-
surname
|
6428
|
+
firstname?: string | null | undefined;
|
6429
|
+
surname?: string | null | undefined;
|
6439
6430
|
middlename?: string | null | undefined;
|
6440
6431
|
} | {
|
6441
6432
|
country: string;
|
@@ -6481,8 +6472,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6481
6472
|
street?: string | null | undefined;
|
6482
6473
|
zipCode?: string | null | undefined;
|
6483
6474
|
} | {
|
6484
|
-
firstname
|
6485
|
-
surname
|
6475
|
+
firstname?: string | null | undefined;
|
6476
|
+
surname?: string | null | undefined;
|
6486
6477
|
middlename?: string | null | undefined;
|
6487
6478
|
} | {
|
6488
6479
|
country: string;
|
@@ -6536,8 +6527,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6536
6527
|
street?: string | null | undefined;
|
6537
6528
|
zipCode?: string | null | undefined;
|
6538
6529
|
} | {
|
6539
|
-
firstname
|
6540
|
-
surname
|
6530
|
+
firstname?: string | null | undefined;
|
6531
|
+
surname?: string | null | undefined;
|
6541
6532
|
middlename?: string | null | undefined;
|
6542
6533
|
} | {
|
6543
6534
|
country: string;
|
@@ -6583,8 +6574,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6583
6574
|
street?: string | null | undefined;
|
6584
6575
|
zipCode?: string | null | undefined;
|
6585
6576
|
} | {
|
6586
|
-
firstname
|
6587
|
-
surname
|
6577
|
+
firstname?: string | null | undefined;
|
6578
|
+
surname?: string | null | undefined;
|
6588
6579
|
middlename?: string | null | undefined;
|
6589
6580
|
} | {
|
6590
6581
|
country: string;
|
@@ -6638,8 +6629,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6638
6629
|
street?: string | null | undefined;
|
6639
6630
|
zipCode?: string | null | undefined;
|
6640
6631
|
} | {
|
6641
|
-
firstname
|
6642
|
-
surname
|
6632
|
+
firstname?: string | null | undefined;
|
6633
|
+
surname?: string | null | undefined;
|
6643
6634
|
middlename?: string | null | undefined;
|
6644
6635
|
} | {
|
6645
6636
|
country: string;
|
@@ -6685,8 +6676,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6685
6676
|
street?: string | null | undefined;
|
6686
6677
|
zipCode?: string | null | undefined;
|
6687
6678
|
} | {
|
6688
|
-
firstname
|
6689
|
-
surname
|
6679
|
+
firstname?: string | null | undefined;
|
6680
|
+
surname?: string | null | undefined;
|
6690
6681
|
middlename?: string | null | undefined;
|
6691
6682
|
} | {
|
6692
6683
|
country: string;
|
@@ -6740,8 +6731,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6740
6731
|
street?: string | null | undefined;
|
6741
6732
|
zipCode?: string | null | undefined;
|
6742
6733
|
} | {
|
6743
|
-
firstname
|
6744
|
-
surname
|
6734
|
+
firstname?: string | null | undefined;
|
6735
|
+
surname?: string | null | undefined;
|
6745
6736
|
middlename?: string | null | undefined;
|
6746
6737
|
} | {
|
6747
6738
|
country: string;
|
@@ -6769,9 +6760,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6769
6760
|
start: string;
|
6770
6761
|
end: string;
|
6771
6762
|
} | null | undefined>;
|
6772
|
-
content?: {
|
6773
|
-
templateId?: string | undefined;
|
6774
|
-
} | null | undefined;
|
6775
6763
|
createdBySignature?: string | null | undefined;
|
6776
6764
|
createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
6777
6765
|
annotation?: Record<string, string | number | boolean | {
|
@@ -6790,8 +6778,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6790
6778
|
street?: string | null | undefined;
|
6791
6779
|
zipCode?: string | null | undefined;
|
6792
6780
|
} | {
|
6793
|
-
firstname
|
6794
|
-
surname
|
6781
|
+
firstname?: string | null | undefined;
|
6782
|
+
surname?: string | null | undefined;
|
6795
6783
|
middlename?: string | null | undefined;
|
6796
6784
|
} | {
|
6797
6785
|
country: string;
|
@@ -6845,8 +6833,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6845
6833
|
street?: string | null | undefined;
|
6846
6834
|
zipCode?: string | null | undefined;
|
6847
6835
|
} | {
|
6848
|
-
firstname
|
6849
|
-
surname
|
6836
|
+
firstname?: string | null | undefined;
|
6837
|
+
surname?: string | null | undefined;
|
6850
6838
|
middlename?: string | null | undefined;
|
6851
6839
|
} | {
|
6852
6840
|
country: string;
|
@@ -6892,8 +6880,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6892
6880
|
street?: string | null | undefined;
|
6893
6881
|
zipCode?: string | null | undefined;
|
6894
6882
|
} | {
|
6895
|
-
firstname
|
6896
|
-
surname
|
6883
|
+
firstname?: string | null | undefined;
|
6884
|
+
surname?: string | null | undefined;
|
6897
6885
|
middlename?: string | null | undefined;
|
6898
6886
|
} | {
|
6899
6887
|
country: string;
|
@@ -6947,8 +6935,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6947
6935
|
street?: string | null | undefined;
|
6948
6936
|
zipCode?: string | null | undefined;
|
6949
6937
|
} | {
|
6950
|
-
firstname
|
6951
|
-
surname
|
6938
|
+
firstname?: string | null | undefined;
|
6939
|
+
surname?: string | null | undefined;
|
6952
6940
|
middlename?: string | null | undefined;
|
6953
6941
|
} | {
|
6954
6942
|
country: string;
|
@@ -6995,8 +6983,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
6995
6983
|
street?: string | null | undefined;
|
6996
6984
|
zipCode?: string | null | undefined;
|
6997
6985
|
} | {
|
6998
|
-
firstname
|
6999
|
-
surname
|
6986
|
+
firstname?: string | null | undefined;
|
6987
|
+
surname?: string | null | undefined;
|
7000
6988
|
middlename?: string | null | undefined;
|
7001
6989
|
} | {
|
7002
6990
|
country: string;
|
@@ -7054,8 +7042,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7054
7042
|
street?: string | null | undefined;
|
7055
7043
|
zipCode?: string | null | undefined;
|
7056
7044
|
} | {
|
7057
|
-
firstname
|
7058
|
-
surname
|
7045
|
+
firstname?: string | null | undefined;
|
7046
|
+
surname?: string | null | undefined;
|
7059
7047
|
middlename?: string | null | undefined;
|
7060
7048
|
} | {
|
7061
7049
|
country: string;
|
@@ -7102,8 +7090,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7102
7090
|
street?: string | null | undefined;
|
7103
7091
|
zipCode?: string | null | undefined;
|
7104
7092
|
} | {
|
7105
|
-
firstname
|
7106
|
-
surname
|
7093
|
+
firstname?: string | null | undefined;
|
7094
|
+
surname?: string | null | undefined;
|
7107
7095
|
middlename?: string | null | undefined;
|
7108
7096
|
} | {
|
7109
7097
|
country: string;
|
@@ -7157,8 +7145,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7157
7145
|
street?: string | null | undefined;
|
7158
7146
|
zipCode?: string | null | undefined;
|
7159
7147
|
} | {
|
7160
|
-
firstname
|
7161
|
-
surname
|
7148
|
+
firstname?: string | null | undefined;
|
7149
|
+
surname?: string | null | undefined;
|
7162
7150
|
middlename?: string | null | undefined;
|
7163
7151
|
} | {
|
7164
7152
|
country: string;
|
@@ -7204,8 +7192,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7204
7192
|
street?: string | null | undefined;
|
7205
7193
|
zipCode?: string | null | undefined;
|
7206
7194
|
} | {
|
7207
|
-
firstname
|
7208
|
-
surname
|
7195
|
+
firstname?: string | null | undefined;
|
7196
|
+
surname?: string | null | undefined;
|
7209
7197
|
middlename?: string | null | undefined;
|
7210
7198
|
} | {
|
7211
7199
|
country: string;
|
@@ -7409,7 +7397,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7409
7397
|
output: {
|
7410
7398
|
type: string;
|
7411
7399
|
id: string & import("zod").BRAND<"UUID">;
|
7412
|
-
status: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7400
|
+
status: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7413
7401
|
createdAt: string;
|
7414
7402
|
createdBy: string;
|
7415
7403
|
declaration: Record<string, string | number | boolean | {
|
@@ -7439,8 +7427,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7439
7427
|
surname: string;
|
7440
7428
|
middlename?: string | undefined;
|
7441
7429
|
} | {
|
7442
|
-
firstname
|
7443
|
-
surname
|
7430
|
+
firstname?: string | null | undefined;
|
7431
|
+
surname?: string | null | undefined;
|
7444
7432
|
middlename?: string | null | undefined;
|
7445
7433
|
} | {
|
7446
7434
|
country: string;
|
@@ -7504,7 +7492,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7504
7492
|
output: {
|
7505
7493
|
type: string;
|
7506
7494
|
id: string & import("zod").BRAND<"UUID">;
|
7507
|
-
status: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7495
|
+
status: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
7508
7496
|
createdAt: string;
|
7509
7497
|
createdBy: string;
|
7510
7498
|
declaration: Record<string, string | number | boolean | {
|
@@ -7534,8 +7522,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7534
7522
|
surname: string;
|
7535
7523
|
middlename?: string | undefined;
|
7536
7524
|
} | {
|
7537
|
-
firstname
|
7538
|
-
surname
|
7525
|
+
firstname?: string | null | undefined;
|
7526
|
+
surname?: string | null | undefined;
|
7539
7527
|
middlename?: string | null | undefined;
|
7540
7528
|
} | {
|
7541
7529
|
country: string;
|
@@ -7622,8 +7610,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7622
7610
|
street?: string | null | undefined;
|
7623
7611
|
zipCode?: string | null | undefined;
|
7624
7612
|
} | {
|
7625
|
-
firstname
|
7626
|
-
surname
|
7613
|
+
firstname?: string | null | undefined;
|
7614
|
+
surname?: string | null | undefined;
|
7627
7615
|
middlename?: string | null | undefined;
|
7628
7616
|
} | {
|
7629
7617
|
country: string;
|
@@ -7670,8 +7658,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7670
7658
|
street?: string | null | undefined;
|
7671
7659
|
zipCode?: string | null | undefined;
|
7672
7660
|
} | {
|
7673
|
-
firstname
|
7674
|
-
surname
|
7661
|
+
firstname?: string | null | undefined;
|
7662
|
+
surname?: string | null | undefined;
|
7675
7663
|
middlename?: string | null | undefined;
|
7676
7664
|
} | {
|
7677
7665
|
country: string;
|
@@ -7725,8 +7713,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7725
7713
|
street?: string | null | undefined;
|
7726
7714
|
zipCode?: string | null | undefined;
|
7727
7715
|
} | {
|
7728
|
-
firstname
|
7729
|
-
surname
|
7716
|
+
firstname?: string | null | undefined;
|
7717
|
+
surname?: string | null | undefined;
|
7730
7718
|
middlename?: string | null | undefined;
|
7731
7719
|
} | {
|
7732
7720
|
country: string;
|
@@ -7772,8 +7760,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7772
7760
|
street?: string | null | undefined;
|
7773
7761
|
zipCode?: string | null | undefined;
|
7774
7762
|
} | {
|
7775
|
-
firstname
|
7776
|
-
surname
|
7763
|
+
firstname?: string | null | undefined;
|
7764
|
+
surname?: string | null | undefined;
|
7777
7765
|
middlename?: string | null | undefined;
|
7778
7766
|
} | {
|
7779
7767
|
country: string;
|
@@ -7827,8 +7815,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7827
7815
|
street?: string | null | undefined;
|
7828
7816
|
zipCode?: string | null | undefined;
|
7829
7817
|
} | {
|
7830
|
-
firstname
|
7831
|
-
surname
|
7818
|
+
firstname?: string | null | undefined;
|
7819
|
+
surname?: string | null | undefined;
|
7832
7820
|
middlename?: string | null | undefined;
|
7833
7821
|
} | {
|
7834
7822
|
country: string;
|
@@ -7874,8 +7862,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7874
7862
|
street?: string | null | undefined;
|
7875
7863
|
zipCode?: string | null | undefined;
|
7876
7864
|
} | {
|
7877
|
-
firstname
|
7878
|
-
surname
|
7865
|
+
firstname?: string | null | undefined;
|
7866
|
+
surname?: string | null | undefined;
|
7879
7867
|
middlename?: string | null | undefined;
|
7880
7868
|
} | {
|
7881
7869
|
country: string;
|
@@ -7930,8 +7918,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7930
7918
|
street?: string | null | undefined;
|
7931
7919
|
zipCode?: string | null | undefined;
|
7932
7920
|
} | {
|
7933
|
-
firstname
|
7934
|
-
surname
|
7921
|
+
firstname?: string | null | undefined;
|
7922
|
+
surname?: string | null | undefined;
|
7935
7923
|
middlename?: string | null | undefined;
|
7936
7924
|
} | {
|
7937
7925
|
country: string;
|
@@ -7977,8 +7965,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
7977
7965
|
street?: string | null | undefined;
|
7978
7966
|
zipCode?: string | null | undefined;
|
7979
7967
|
} | {
|
7980
|
-
firstname
|
7981
|
-
surname
|
7968
|
+
firstname?: string | null | undefined;
|
7969
|
+
surname?: string | null | undefined;
|
7982
7970
|
middlename?: string | null | undefined;
|
7983
7971
|
} | {
|
7984
7972
|
country: string;
|
@@ -8032,8 +8020,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8032
8020
|
street?: string | null | undefined;
|
8033
8021
|
zipCode?: string | null | undefined;
|
8034
8022
|
} | {
|
8035
|
-
firstname
|
8036
|
-
surname
|
8023
|
+
firstname?: string | null | undefined;
|
8024
|
+
surname?: string | null | undefined;
|
8037
8025
|
middlename?: string | null | undefined;
|
8038
8026
|
} | {
|
8039
8027
|
country: string;
|
@@ -8079,8 +8067,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8079
8067
|
street?: string | null | undefined;
|
8080
8068
|
zipCode?: string | null | undefined;
|
8081
8069
|
} | {
|
8082
|
-
firstname
|
8083
|
-
surname
|
8070
|
+
firstname?: string | null | undefined;
|
8071
|
+
surname?: string | null | undefined;
|
8084
8072
|
middlename?: string | null | undefined;
|
8085
8073
|
} | {
|
8086
8074
|
country: string;
|
@@ -8138,8 +8126,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8138
8126
|
street?: string | null | undefined;
|
8139
8127
|
zipCode?: string | null | undefined;
|
8140
8128
|
} | {
|
8141
|
-
firstname
|
8142
|
-
surname
|
8129
|
+
firstname?: string | null | undefined;
|
8130
|
+
surname?: string | null | undefined;
|
8143
8131
|
middlename?: string | null | undefined;
|
8144
8132
|
} | {
|
8145
8133
|
country: string;
|
@@ -8185,8 +8173,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8185
8173
|
street?: string | null | undefined;
|
8186
8174
|
zipCode?: string | null | undefined;
|
8187
8175
|
} | {
|
8188
|
-
firstname
|
8189
|
-
surname
|
8176
|
+
firstname?: string | null | undefined;
|
8177
|
+
surname?: string | null | undefined;
|
8190
8178
|
middlename?: string | null | undefined;
|
8191
8179
|
} | {
|
8192
8180
|
country: string;
|
@@ -8240,8 +8228,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8240
8228
|
street?: string | null | undefined;
|
8241
8229
|
zipCode?: string | null | undefined;
|
8242
8230
|
} | {
|
8243
|
-
firstname
|
8244
|
-
surname
|
8231
|
+
firstname?: string | null | undefined;
|
8232
|
+
surname?: string | null | undefined;
|
8245
8233
|
middlename?: string | null | undefined;
|
8246
8234
|
} | {
|
8247
8235
|
country: string;
|
@@ -8287,8 +8275,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8287
8275
|
street?: string | null | undefined;
|
8288
8276
|
zipCode?: string | null | undefined;
|
8289
8277
|
} | {
|
8290
|
-
firstname
|
8291
|
-
surname
|
8278
|
+
firstname?: string | null | undefined;
|
8279
|
+
surname?: string | null | undefined;
|
8292
8280
|
middlename?: string | null | undefined;
|
8293
8281
|
} | {
|
8294
8282
|
country: string;
|
@@ -8346,8 +8334,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8346
8334
|
street?: string | null | undefined;
|
8347
8335
|
zipCode?: string | null | undefined;
|
8348
8336
|
} | {
|
8349
|
-
firstname
|
8350
|
-
surname
|
8337
|
+
firstname?: string | null | undefined;
|
8338
|
+
surname?: string | null | undefined;
|
8351
8339
|
middlename?: string | null | undefined;
|
8352
8340
|
} | {
|
8353
8341
|
country: string;
|
@@ -8393,8 +8381,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8393
8381
|
street?: string | null | undefined;
|
8394
8382
|
zipCode?: string | null | undefined;
|
8395
8383
|
} | {
|
8396
|
-
firstname
|
8397
|
-
surname
|
8384
|
+
firstname?: string | null | undefined;
|
8385
|
+
surname?: string | null | undefined;
|
8398
8386
|
middlename?: string | null | undefined;
|
8399
8387
|
} | {
|
8400
8388
|
country: string;
|
@@ -8448,8 +8436,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8448
8436
|
street?: string | null | undefined;
|
8449
8437
|
zipCode?: string | null | undefined;
|
8450
8438
|
} | {
|
8451
|
-
firstname
|
8452
|
-
surname
|
8439
|
+
firstname?: string | null | undefined;
|
8440
|
+
surname?: string | null | undefined;
|
8453
8441
|
middlename?: string | null | undefined;
|
8454
8442
|
} | {
|
8455
8443
|
country: string;
|
@@ -8495,8 +8483,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8495
8483
|
street?: string | null | undefined;
|
8496
8484
|
zipCode?: string | null | undefined;
|
8497
8485
|
} | {
|
8498
|
-
firstname
|
8499
|
-
surname
|
8486
|
+
firstname?: string | null | undefined;
|
8487
|
+
surname?: string | null | undefined;
|
8500
8488
|
middlename?: string | null | undefined;
|
8501
8489
|
} | {
|
8502
8490
|
country: string;
|
@@ -8550,8 +8538,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8550
8538
|
street?: string | null | undefined;
|
8551
8539
|
zipCode?: string | null | undefined;
|
8552
8540
|
} | {
|
8553
|
-
firstname
|
8554
|
-
surname
|
8541
|
+
firstname?: string | null | undefined;
|
8542
|
+
surname?: string | null | undefined;
|
8555
8543
|
middlename?: string | null | undefined;
|
8556
8544
|
} | {
|
8557
8545
|
country: string;
|
@@ -8597,8 +8585,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8597
8585
|
street?: string | null | undefined;
|
8598
8586
|
zipCode?: string | null | undefined;
|
8599
8587
|
} | {
|
8600
|
-
firstname
|
8601
|
-
surname
|
8588
|
+
firstname?: string | null | undefined;
|
8589
|
+
surname?: string | null | undefined;
|
8602
8590
|
middlename?: string | null | undefined;
|
8603
8591
|
} | {
|
8604
8592
|
country: string;
|
@@ -8652,8 +8640,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8652
8640
|
street?: string | null | undefined;
|
8653
8641
|
zipCode?: string | null | undefined;
|
8654
8642
|
} | {
|
8655
|
-
firstname
|
8656
|
-
surname
|
8643
|
+
firstname?: string | null | undefined;
|
8644
|
+
surname?: string | null | undefined;
|
8657
8645
|
middlename?: string | null | undefined;
|
8658
8646
|
} | {
|
8659
8647
|
country: string;
|
@@ -8681,9 +8669,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8681
8669
|
start: string;
|
8682
8670
|
end: string;
|
8683
8671
|
} | null | undefined>;
|
8684
|
-
content?: {
|
8685
|
-
templateId?: string | undefined;
|
8686
|
-
} | null | undefined;
|
8687
8672
|
createdBySignature?: string | null | undefined;
|
8688
8673
|
createdAtLocation?: string | null | undefined;
|
8689
8674
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8702,8 +8687,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8702
8687
|
street?: string | null | undefined;
|
8703
8688
|
zipCode?: string | null | undefined;
|
8704
8689
|
} | {
|
8705
|
-
firstname
|
8706
|
-
surname
|
8690
|
+
firstname?: string | null | undefined;
|
8691
|
+
surname?: string | null | undefined;
|
8707
8692
|
middlename?: string | null | undefined;
|
8708
8693
|
} | {
|
8709
8694
|
country: string;
|
@@ -8757,8 +8742,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8757
8742
|
street?: string | null | undefined;
|
8758
8743
|
zipCode?: string | null | undefined;
|
8759
8744
|
} | {
|
8760
|
-
firstname
|
8761
|
-
surname
|
8745
|
+
firstname?: string | null | undefined;
|
8746
|
+
surname?: string | null | undefined;
|
8762
8747
|
middlename?: string | null | undefined;
|
8763
8748
|
} | {
|
8764
8749
|
country: string;
|
@@ -8804,8 +8789,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8804
8789
|
street?: string | null | undefined;
|
8805
8790
|
zipCode?: string | null | undefined;
|
8806
8791
|
} | {
|
8807
|
-
firstname
|
8808
|
-
surname
|
8792
|
+
firstname?: string | null | undefined;
|
8793
|
+
surname?: string | null | undefined;
|
8809
8794
|
middlename?: string | null | undefined;
|
8810
8795
|
} | {
|
8811
8796
|
country: string;
|
@@ -8859,8 +8844,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8859
8844
|
street?: string | null | undefined;
|
8860
8845
|
zipCode?: string | null | undefined;
|
8861
8846
|
} | {
|
8862
|
-
firstname
|
8863
|
-
surname
|
8847
|
+
firstname?: string | null | undefined;
|
8848
|
+
surname?: string | null | undefined;
|
8864
8849
|
middlename?: string | null | undefined;
|
8865
8850
|
} | {
|
8866
8851
|
country: string;
|
@@ -8907,8 +8892,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8907
8892
|
street?: string | null | undefined;
|
8908
8893
|
zipCode?: string | null | undefined;
|
8909
8894
|
} | {
|
8910
|
-
firstname
|
8911
|
-
surname
|
8895
|
+
firstname?: string | null | undefined;
|
8896
|
+
surname?: string | null | undefined;
|
8912
8897
|
middlename?: string | null | undefined;
|
8913
8898
|
} | {
|
8914
8899
|
country: string;
|
@@ -8966,8 +8951,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
8966
8951
|
street?: string | null | undefined;
|
8967
8952
|
zipCode?: string | null | undefined;
|
8968
8953
|
} | {
|
8969
|
-
firstname
|
8970
|
-
surname
|
8954
|
+
firstname?: string | null | undefined;
|
8955
|
+
surname?: string | null | undefined;
|
8971
8956
|
middlename?: string | null | undefined;
|
8972
8957
|
} | {
|
8973
8958
|
country: string;
|
@@ -9014,8 +8999,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9014
8999
|
street?: string | null | undefined;
|
9015
9000
|
zipCode?: string | null | undefined;
|
9016
9001
|
} | {
|
9017
|
-
firstname
|
9018
|
-
surname
|
9002
|
+
firstname?: string | null | undefined;
|
9003
|
+
surname?: string | null | undefined;
|
9019
9004
|
middlename?: string | null | undefined;
|
9020
9005
|
} | {
|
9021
9006
|
country: string;
|
@@ -9069,8 +9054,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9069
9054
|
street?: string | null | undefined;
|
9070
9055
|
zipCode?: string | null | undefined;
|
9071
9056
|
} | {
|
9072
|
-
firstname
|
9073
|
-
surname
|
9057
|
+
firstname?: string | null | undefined;
|
9058
|
+
surname?: string | null | undefined;
|
9074
9059
|
middlename?: string | null | undefined;
|
9075
9060
|
} | {
|
9076
9061
|
country: string;
|
@@ -9116,8 +9101,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9116
9101
|
street?: string | null | undefined;
|
9117
9102
|
zipCode?: string | null | undefined;
|
9118
9103
|
} | {
|
9119
|
-
firstname
|
9120
|
-
surname
|
9104
|
+
firstname?: string | null | undefined;
|
9105
|
+
surname?: string | null | undefined;
|
9121
9106
|
middlename?: string | null | undefined;
|
9122
9107
|
} | {
|
9123
9108
|
country: string;
|
@@ -9191,8 +9176,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9191
9176
|
street?: string | null | undefined;
|
9192
9177
|
zipCode?: string | null | undefined;
|
9193
9178
|
} | {
|
9194
|
-
firstname
|
9195
|
-
surname
|
9179
|
+
firstname?: string | null | undefined;
|
9180
|
+
surname?: string | null | undefined;
|
9196
9181
|
middlename?: string | null | undefined;
|
9197
9182
|
} | {
|
9198
9183
|
country: string;
|
@@ -9239,8 +9224,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9239
9224
|
street?: string | null | undefined;
|
9240
9225
|
zipCode?: string | null | undefined;
|
9241
9226
|
} | {
|
9242
|
-
firstname
|
9243
|
-
surname
|
9227
|
+
firstname?: string | null | undefined;
|
9228
|
+
surname?: string | null | undefined;
|
9244
9229
|
middlename?: string | null | undefined;
|
9245
9230
|
} | {
|
9246
9231
|
country: string;
|
@@ -9294,8 +9279,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9294
9279
|
street?: string | null | undefined;
|
9295
9280
|
zipCode?: string | null | undefined;
|
9296
9281
|
} | {
|
9297
|
-
firstname
|
9298
|
-
surname
|
9282
|
+
firstname?: string | null | undefined;
|
9283
|
+
surname?: string | null | undefined;
|
9299
9284
|
middlename?: string | null | undefined;
|
9300
9285
|
} | {
|
9301
9286
|
country: string;
|
@@ -9341,8 +9326,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9341
9326
|
street?: string | null | undefined;
|
9342
9327
|
zipCode?: string | null | undefined;
|
9343
9328
|
} | {
|
9344
|
-
firstname
|
9345
|
-
surname
|
9329
|
+
firstname?: string | null | undefined;
|
9330
|
+
surname?: string | null | undefined;
|
9346
9331
|
middlename?: string | null | undefined;
|
9347
9332
|
} | {
|
9348
9333
|
country: string;
|
@@ -9396,8 +9381,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9396
9381
|
street?: string | null | undefined;
|
9397
9382
|
zipCode?: string | null | undefined;
|
9398
9383
|
} | {
|
9399
|
-
firstname
|
9400
|
-
surname
|
9384
|
+
firstname?: string | null | undefined;
|
9385
|
+
surname?: string | null | undefined;
|
9401
9386
|
middlename?: string | null | undefined;
|
9402
9387
|
} | {
|
9403
9388
|
country: string;
|
@@ -9443,8 +9428,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9443
9428
|
street?: string | null | undefined;
|
9444
9429
|
zipCode?: string | null | undefined;
|
9445
9430
|
} | {
|
9446
|
-
firstname
|
9447
|
-
surname
|
9431
|
+
firstname?: string | null | undefined;
|
9432
|
+
surname?: string | null | undefined;
|
9448
9433
|
middlename?: string | null | undefined;
|
9449
9434
|
} | {
|
9450
9435
|
country: string;
|
@@ -9499,8 +9484,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9499
9484
|
street?: string | null | undefined;
|
9500
9485
|
zipCode?: string | null | undefined;
|
9501
9486
|
} | {
|
9502
|
-
firstname
|
9503
|
-
surname
|
9487
|
+
firstname?: string | null | undefined;
|
9488
|
+
surname?: string | null | undefined;
|
9504
9489
|
middlename?: string | null | undefined;
|
9505
9490
|
} | {
|
9506
9491
|
country: string;
|
@@ -9546,8 +9531,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9546
9531
|
street?: string | null | undefined;
|
9547
9532
|
zipCode?: string | null | undefined;
|
9548
9533
|
} | {
|
9549
|
-
firstname
|
9550
|
-
surname
|
9534
|
+
firstname?: string | null | undefined;
|
9535
|
+
surname?: string | null | undefined;
|
9551
9536
|
middlename?: string | null | undefined;
|
9552
9537
|
} | {
|
9553
9538
|
country: string;
|
@@ -9601,8 +9586,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9601
9586
|
street?: string | null | undefined;
|
9602
9587
|
zipCode?: string | null | undefined;
|
9603
9588
|
} | {
|
9604
|
-
firstname
|
9605
|
-
surname
|
9589
|
+
firstname?: string | null | undefined;
|
9590
|
+
surname?: string | null | undefined;
|
9606
9591
|
middlename?: string | null | undefined;
|
9607
9592
|
} | {
|
9608
9593
|
country: string;
|
@@ -9648,8 +9633,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9648
9633
|
street?: string | null | undefined;
|
9649
9634
|
zipCode?: string | null | undefined;
|
9650
9635
|
} | {
|
9651
|
-
firstname
|
9652
|
-
surname
|
9636
|
+
firstname?: string | null | undefined;
|
9637
|
+
surname?: string | null | undefined;
|
9653
9638
|
middlename?: string | null | undefined;
|
9654
9639
|
} | {
|
9655
9640
|
country: string;
|
@@ -9707,8 +9692,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9707
9692
|
street?: string | null | undefined;
|
9708
9693
|
zipCode?: string | null | undefined;
|
9709
9694
|
} | {
|
9710
|
-
firstname
|
9711
|
-
surname
|
9695
|
+
firstname?: string | null | undefined;
|
9696
|
+
surname?: string | null | undefined;
|
9712
9697
|
middlename?: string | null | undefined;
|
9713
9698
|
} | {
|
9714
9699
|
country: string;
|
@@ -9754,8 +9739,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9754
9739
|
street?: string | null | undefined;
|
9755
9740
|
zipCode?: string | null | undefined;
|
9756
9741
|
} | {
|
9757
|
-
firstname
|
9758
|
-
surname
|
9742
|
+
firstname?: string | null | undefined;
|
9743
|
+
surname?: string | null | undefined;
|
9759
9744
|
middlename?: string | null | undefined;
|
9760
9745
|
} | {
|
9761
9746
|
country: string;
|
@@ -9809,8 +9794,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9809
9794
|
street?: string | null | undefined;
|
9810
9795
|
zipCode?: string | null | undefined;
|
9811
9796
|
} | {
|
9812
|
-
firstname
|
9813
|
-
surname
|
9797
|
+
firstname?: string | null | undefined;
|
9798
|
+
surname?: string | null | undefined;
|
9814
9799
|
middlename?: string | null | undefined;
|
9815
9800
|
} | {
|
9816
9801
|
country: string;
|
@@ -9856,8 +9841,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9856
9841
|
street?: string | null | undefined;
|
9857
9842
|
zipCode?: string | null | undefined;
|
9858
9843
|
} | {
|
9859
|
-
firstname
|
9860
|
-
surname
|
9844
|
+
firstname?: string | null | undefined;
|
9845
|
+
surname?: string | null | undefined;
|
9861
9846
|
middlename?: string | null | undefined;
|
9862
9847
|
} | {
|
9863
9848
|
country: string;
|
@@ -9915,8 +9900,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9915
9900
|
street?: string | null | undefined;
|
9916
9901
|
zipCode?: string | null | undefined;
|
9917
9902
|
} | {
|
9918
|
-
firstname
|
9919
|
-
surname
|
9903
|
+
firstname?: string | null | undefined;
|
9904
|
+
surname?: string | null | undefined;
|
9920
9905
|
middlename?: string | null | undefined;
|
9921
9906
|
} | {
|
9922
9907
|
country: string;
|
@@ -9962,8 +9947,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
9962
9947
|
street?: string | null | undefined;
|
9963
9948
|
zipCode?: string | null | undefined;
|
9964
9949
|
} | {
|
9965
|
-
firstname
|
9966
|
-
surname
|
9950
|
+
firstname?: string | null | undefined;
|
9951
|
+
surname?: string | null | undefined;
|
9967
9952
|
middlename?: string | null | undefined;
|
9968
9953
|
} | {
|
9969
9954
|
country: string;
|
@@ -10017,8 +10002,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10017
10002
|
street?: string | null | undefined;
|
10018
10003
|
zipCode?: string | null | undefined;
|
10019
10004
|
} | {
|
10020
|
-
firstname
|
10021
|
-
surname
|
10005
|
+
firstname?: string | null | undefined;
|
10006
|
+
surname?: string | null | undefined;
|
10022
10007
|
middlename?: string | null | undefined;
|
10023
10008
|
} | {
|
10024
10009
|
country: string;
|
@@ -10064,8 +10049,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10064
10049
|
street?: string | null | undefined;
|
10065
10050
|
zipCode?: string | null | undefined;
|
10066
10051
|
} | {
|
10067
|
-
firstname
|
10068
|
-
surname
|
10052
|
+
firstname?: string | null | undefined;
|
10053
|
+
surname?: string | null | undefined;
|
10069
10054
|
middlename?: string | null | undefined;
|
10070
10055
|
} | {
|
10071
10056
|
country: string;
|
@@ -10119,8 +10104,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10119
10104
|
street?: string | null | undefined;
|
10120
10105
|
zipCode?: string | null | undefined;
|
10121
10106
|
} | {
|
10122
|
-
firstname
|
10123
|
-
surname
|
10107
|
+
firstname?: string | null | undefined;
|
10108
|
+
surname?: string | null | undefined;
|
10124
10109
|
middlename?: string | null | undefined;
|
10125
10110
|
} | {
|
10126
10111
|
country: string;
|
@@ -10166,8 +10151,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10166
10151
|
street?: string | null | undefined;
|
10167
10152
|
zipCode?: string | null | undefined;
|
10168
10153
|
} | {
|
10169
|
-
firstname
|
10170
|
-
surname
|
10154
|
+
firstname?: string | null | undefined;
|
10155
|
+
surname?: string | null | undefined;
|
10171
10156
|
middlename?: string | null | undefined;
|
10172
10157
|
} | {
|
10173
10158
|
country: string;
|
@@ -10221,8 +10206,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10221
10206
|
street?: string | null | undefined;
|
10222
10207
|
zipCode?: string | null | undefined;
|
10223
10208
|
} | {
|
10224
|
-
firstname
|
10225
|
-
surname
|
10209
|
+
firstname?: string | null | undefined;
|
10210
|
+
surname?: string | null | undefined;
|
10226
10211
|
middlename?: string | null | undefined;
|
10227
10212
|
} | {
|
10228
10213
|
country: string;
|
@@ -10250,9 +10235,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10250
10235
|
start: string;
|
10251
10236
|
end: string;
|
10252
10237
|
} | null | undefined>;
|
10253
|
-
content?: {
|
10254
|
-
templateId?: string | undefined;
|
10255
|
-
} | null | undefined;
|
10256
10238
|
createdBySignature?: string | null | undefined;
|
10257
10239
|
createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
10258
10240
|
annotation?: Record<string, string | number | boolean | {
|
@@ -10271,8 +10253,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10271
10253
|
street?: string | null | undefined;
|
10272
10254
|
zipCode?: string | null | undefined;
|
10273
10255
|
} | {
|
10274
|
-
firstname
|
10275
|
-
surname
|
10256
|
+
firstname?: string | null | undefined;
|
10257
|
+
surname?: string | null | undefined;
|
10276
10258
|
middlename?: string | null | undefined;
|
10277
10259
|
} | {
|
10278
10260
|
country: string;
|
@@ -10326,8 +10308,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10326
10308
|
street?: string | null | undefined;
|
10327
10309
|
zipCode?: string | null | undefined;
|
10328
10310
|
} | {
|
10329
|
-
firstname
|
10330
|
-
surname
|
10311
|
+
firstname?: string | null | undefined;
|
10312
|
+
surname?: string | null | undefined;
|
10331
10313
|
middlename?: string | null | undefined;
|
10332
10314
|
} | {
|
10333
10315
|
country: string;
|
@@ -10373,8 +10355,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10373
10355
|
street?: string | null | undefined;
|
10374
10356
|
zipCode?: string | null | undefined;
|
10375
10357
|
} | {
|
10376
|
-
firstname
|
10377
|
-
surname
|
10358
|
+
firstname?: string | null | undefined;
|
10359
|
+
surname?: string | null | undefined;
|
10378
10360
|
middlename?: string | null | undefined;
|
10379
10361
|
} | {
|
10380
10362
|
country: string;
|
@@ -10428,8 +10410,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10428
10410
|
street?: string | null | undefined;
|
10429
10411
|
zipCode?: string | null | undefined;
|
10430
10412
|
} | {
|
10431
|
-
firstname
|
10432
|
-
surname
|
10413
|
+
firstname?: string | null | undefined;
|
10414
|
+
surname?: string | null | undefined;
|
10433
10415
|
middlename?: string | null | undefined;
|
10434
10416
|
} | {
|
10435
10417
|
country: string;
|
@@ -10476,8 +10458,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10476
10458
|
street?: string | null | undefined;
|
10477
10459
|
zipCode?: string | null | undefined;
|
10478
10460
|
} | {
|
10479
|
-
firstname
|
10480
|
-
surname
|
10461
|
+
firstname?: string | null | undefined;
|
10462
|
+
surname?: string | null | undefined;
|
10481
10463
|
middlename?: string | null | undefined;
|
10482
10464
|
} | {
|
10483
10465
|
country: string;
|
@@ -10535,8 +10517,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10535
10517
|
street?: string | null | undefined;
|
10536
10518
|
zipCode?: string | null | undefined;
|
10537
10519
|
} | {
|
10538
|
-
firstname
|
10539
|
-
surname
|
10520
|
+
firstname?: string | null | undefined;
|
10521
|
+
surname?: string | null | undefined;
|
10540
10522
|
middlename?: string | null | undefined;
|
10541
10523
|
} | {
|
10542
10524
|
country: string;
|
@@ -10583,8 +10565,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10583
10565
|
street?: string | null | undefined;
|
10584
10566
|
zipCode?: string | null | undefined;
|
10585
10567
|
} | {
|
10586
|
-
firstname
|
10587
|
-
surname
|
10568
|
+
firstname?: string | null | undefined;
|
10569
|
+
surname?: string | null | undefined;
|
10588
10570
|
middlename?: string | null | undefined;
|
10589
10571
|
} | {
|
10590
10572
|
country: string;
|
@@ -10638,8 +10620,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10638
10620
|
street?: string | null | undefined;
|
10639
10621
|
zipCode?: string | null | undefined;
|
10640
10622
|
} | {
|
10641
|
-
firstname
|
10642
|
-
surname
|
10623
|
+
firstname?: string | null | undefined;
|
10624
|
+
surname?: string | null | undefined;
|
10643
10625
|
middlename?: string | null | undefined;
|
10644
10626
|
} | {
|
10645
10627
|
country: string;
|
@@ -10685,8 +10667,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10685
10667
|
street?: string | null | undefined;
|
10686
10668
|
zipCode?: string | null | undefined;
|
10687
10669
|
} | {
|
10688
|
-
firstname
|
10689
|
-
surname
|
10670
|
+
firstname?: string | null | undefined;
|
10671
|
+
surname?: string | null | undefined;
|
10690
10672
|
middlename?: string | null | undefined;
|
10691
10673
|
} | {
|
10692
10674
|
country: string;
|
@@ -10805,6 +10787,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10805
10787
|
set: import("@trpc/server").TRPCMutationProcedure<{
|
10806
10788
|
input: {
|
10807
10789
|
id: string;
|
10790
|
+
externalId: string | null;
|
10808
10791
|
name: string;
|
10809
10792
|
partOf: string | null;
|
10810
10793
|
}[];
|
@@ -10815,6 +10798,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10815
10798
|
input: void;
|
10816
10799
|
output: {
|
10817
10800
|
id: string & import("zod").BRAND<"UUID">;
|
10801
|
+
externalId: string | null;
|
10818
10802
|
name: string;
|
10819
10803
|
partOf: (string & import("zod").BRAND<"UUID">) | null;
|
10820
10804
|
}[];
|
@@ -10876,10 +10860,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10876
10860
|
clauses: {
|
10877
10861
|
status?: {
|
10878
10862
|
type: "exact";
|
10879
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
10863
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
10880
10864
|
} | {
|
10881
10865
|
type: "anyOf";
|
10882
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
10866
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
10883
10867
|
} | undefined;
|
10884
10868
|
data?: any;
|
10885
10869
|
createdByUserType?: {
|
@@ -10985,10 +10969,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
10985
10969
|
clauses: {
|
10986
10970
|
status?: {
|
10987
10971
|
type: "exact";
|
10988
|
-
term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
10972
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
10989
10973
|
} | {
|
10990
10974
|
type: "anyOf";
|
10991
|
-
terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
10975
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
10992
10976
|
} | undefined;
|
10993
10977
|
data?: any;
|
10994
10978
|
createdByUserType?: {
|
@@ -11098,7 +11082,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
11098
11082
|
label: import("../commons").TranslationConfig;
|
11099
11083
|
}[];
|
11100
11084
|
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;
|
11102
11085
|
}[];
|
11103
11086
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
11104
11087
|
}>;
|