@opencrvs/toolkit 1.9.2-rc.c76ff3e → 1.9.2-rc.f1d7235
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 +504 -51
- package/dist/commons/events/ActionConfig.d.ts +1807 -13
- package/dist/commons/events/AdvancedSearchConfig.d.ts +11 -0
- package/dist/commons/events/EventConfig.d.ts +1191 -8
- package/dist/commons/events/EventIndex.d.ts +1 -0
- package/dist/commons/events/EventMetadata.d.ts +3 -1
- package/dist/commons/events/FieldConfig.d.ts +80 -0
- package/dist/commons/events/FieldType.d.ts +2 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +8 -1
- package/dist/commons/events/FieldValue.d.ts +2 -1
- package/dist/commons/events/Flag.d.ts +7 -1
- package/dist/commons/events/FormConfig.d.ts +234 -0
- package/dist/commons/events/PageConfig.d.ts +156 -0
- package/dist/commons/events/TemplateConfig.d.ts +3 -3
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +5 -2
- package/dist/commons/events/WorkqueueConfig.d.ts +10 -5
- package/dist/commons/events/defineConfig.d.ts +455 -3
- package/dist/commons/events/event.d.ts +4 -4
- package/dist/commons/events/state/index.d.ts +6 -0
- package/dist/commons/events/utils.d.ts +896 -3
- package/dist/events/index.js +346 -246
- package/dist/notification/index.js +286 -244
- package/dist/scopes/index.d.ts +26 -0
- package/dist/scopes/index.js +6 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
2
|
-
ctx: {
|
|
2
|
+
ctx: Partial<{
|
|
3
3
|
token: `Bearer ${string}`;
|
|
4
4
|
user: {
|
|
5
5
|
type: "user";
|
|
@@ -14,13 +14,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
14
14
|
signature?: undefined;
|
|
15
15
|
primaryOfficeId?: undefined;
|
|
16
16
|
};
|
|
17
|
-
}
|
|
17
|
+
}>;
|
|
18
18
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
19
19
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
20
20
|
transformer: true;
|
|
21
21
|
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
22
22
|
event: import("@trpc/server").TRPCBuiltRouter<{
|
|
23
|
-
ctx: {
|
|
23
|
+
ctx: Partial<{
|
|
24
24
|
token: `Bearer ${string}`;
|
|
25
25
|
user: {
|
|
26
26
|
type: "user";
|
|
@@ -35,13 +35,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
35
35
|
signature?: undefined;
|
|
36
36
|
primaryOfficeId?: undefined;
|
|
37
37
|
};
|
|
38
|
-
}
|
|
38
|
+
}>;
|
|
39
39
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
40
40
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
41
41
|
transformer: true;
|
|
42
42
|
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
43
43
|
config: import("@trpc/server").TRPCBuiltRouter<{
|
|
44
|
-
ctx: {
|
|
44
|
+
ctx: Partial<{
|
|
45
45
|
token: `Bearer ${string}`;
|
|
46
46
|
user: {
|
|
47
47
|
type: "user";
|
|
@@ -56,7 +56,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
56
56
|
signature?: undefined;
|
|
57
57
|
primaryOfficeId?: undefined;
|
|
58
58
|
};
|
|
59
|
-
}
|
|
59
|
+
}>;
|
|
60
60
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
61
61
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
62
62
|
transformer: true;
|
|
@@ -3158,6 +3158,61 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3158
3158
|
message: string;
|
|
3159
3159
|
} | null | undefined;
|
|
3160
3160
|
} | undefined;
|
|
3161
|
+
} | {
|
|
3162
|
+
id: string;
|
|
3163
|
+
label: {
|
|
3164
|
+
id: string;
|
|
3165
|
+
defaultMessage: string;
|
|
3166
|
+
description: string;
|
|
3167
|
+
};
|
|
3168
|
+
type: "HIDDEN";
|
|
3169
|
+
parent?: {
|
|
3170
|
+
$$field: string;
|
|
3171
|
+
$$subfield?: string[] | undefined;
|
|
3172
|
+
} | {
|
|
3173
|
+
$$field: string;
|
|
3174
|
+
$$subfield?: string[] | undefined;
|
|
3175
|
+
}[] | undefined;
|
|
3176
|
+
conditionals?: ({
|
|
3177
|
+
type: "SHOW";
|
|
3178
|
+
conditional: any;
|
|
3179
|
+
} | {
|
|
3180
|
+
type: "ENABLE";
|
|
3181
|
+
conditional: any;
|
|
3182
|
+
} | {
|
|
3183
|
+
type: "DISPLAY_ON_REVIEW";
|
|
3184
|
+
conditional: any;
|
|
3185
|
+
})[] | undefined;
|
|
3186
|
+
secured?: boolean | undefined;
|
|
3187
|
+
placeholder?: {
|
|
3188
|
+
id: string;
|
|
3189
|
+
defaultMessage: string;
|
|
3190
|
+
description: string;
|
|
3191
|
+
} | undefined;
|
|
3192
|
+
validation?: {
|
|
3193
|
+
validator: any;
|
|
3194
|
+
message: {
|
|
3195
|
+
id: string;
|
|
3196
|
+
defaultMessage: string;
|
|
3197
|
+
description: string;
|
|
3198
|
+
};
|
|
3199
|
+
}[] | undefined;
|
|
3200
|
+
helperText?: {
|
|
3201
|
+
id: string;
|
|
3202
|
+
defaultMessage: string;
|
|
3203
|
+
description: string;
|
|
3204
|
+
} | undefined;
|
|
3205
|
+
hideLabel?: boolean | undefined;
|
|
3206
|
+
uncorrectable?: boolean | undefined;
|
|
3207
|
+
value?: {
|
|
3208
|
+
$$field: string;
|
|
3209
|
+
$$subfield?: string[] | undefined;
|
|
3210
|
+
} | {
|
|
3211
|
+
$$field: string;
|
|
3212
|
+
$$subfield?: string[] | undefined;
|
|
3213
|
+
}[] | undefined;
|
|
3214
|
+
analytics?: boolean | undefined;
|
|
3215
|
+
required?: false | undefined;
|
|
3161
3216
|
})[];
|
|
3162
3217
|
};
|
|
3163
3218
|
auditHistoryLabel?: {
|
|
@@ -3170,6 +3225,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3170
3225
|
defaultMessage: string;
|
|
3171
3226
|
description: string;
|
|
3172
3227
|
} | undefined;
|
|
3228
|
+
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" | "Stamp" | "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" | undefined;
|
|
3173
3229
|
conditionals?: undefined;
|
|
3174
3230
|
} | {
|
|
3175
3231
|
label: {
|
|
@@ -6214,6 +6270,61 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
6214
6270
|
message: string;
|
|
6215
6271
|
} | null | undefined;
|
|
6216
6272
|
} | undefined;
|
|
6273
|
+
} | {
|
|
6274
|
+
id: string;
|
|
6275
|
+
label: {
|
|
6276
|
+
id: string;
|
|
6277
|
+
defaultMessage: string;
|
|
6278
|
+
description: string;
|
|
6279
|
+
};
|
|
6280
|
+
type: "HIDDEN";
|
|
6281
|
+
parent?: {
|
|
6282
|
+
$$field: string;
|
|
6283
|
+
$$subfield?: string[] | undefined;
|
|
6284
|
+
} | {
|
|
6285
|
+
$$field: string;
|
|
6286
|
+
$$subfield?: string[] | undefined;
|
|
6287
|
+
}[] | undefined;
|
|
6288
|
+
conditionals?: ({
|
|
6289
|
+
type: "SHOW";
|
|
6290
|
+
conditional: any;
|
|
6291
|
+
} | {
|
|
6292
|
+
type: "ENABLE";
|
|
6293
|
+
conditional: any;
|
|
6294
|
+
} | {
|
|
6295
|
+
type: "DISPLAY_ON_REVIEW";
|
|
6296
|
+
conditional: any;
|
|
6297
|
+
})[] | undefined;
|
|
6298
|
+
secured?: boolean | undefined;
|
|
6299
|
+
placeholder?: {
|
|
6300
|
+
id: string;
|
|
6301
|
+
defaultMessage: string;
|
|
6302
|
+
description: string;
|
|
6303
|
+
} | undefined;
|
|
6304
|
+
validation?: {
|
|
6305
|
+
validator: any;
|
|
6306
|
+
message: {
|
|
6307
|
+
id: string;
|
|
6308
|
+
defaultMessage: string;
|
|
6309
|
+
description: string;
|
|
6310
|
+
};
|
|
6311
|
+
}[] | undefined;
|
|
6312
|
+
helperText?: {
|
|
6313
|
+
id: string;
|
|
6314
|
+
defaultMessage: string;
|
|
6315
|
+
description: string;
|
|
6316
|
+
} | undefined;
|
|
6317
|
+
hideLabel?: boolean | undefined;
|
|
6318
|
+
uncorrectable?: boolean | undefined;
|
|
6319
|
+
value?: {
|
|
6320
|
+
$$field: string;
|
|
6321
|
+
$$subfield?: string[] | undefined;
|
|
6322
|
+
} | {
|
|
6323
|
+
$$field: string;
|
|
6324
|
+
$$subfield?: string[] | undefined;
|
|
6325
|
+
}[] | undefined;
|
|
6326
|
+
analytics?: boolean | undefined;
|
|
6327
|
+
required?: false | undefined;
|
|
6217
6328
|
})[];
|
|
6218
6329
|
};
|
|
6219
6330
|
auditHistoryLabel?: {
|
|
@@ -6226,6 +6337,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
6226
6337
|
defaultMessage: string;
|
|
6227
6338
|
description: string;
|
|
6228
6339
|
} | undefined;
|
|
6340
|
+
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" | "Stamp" | "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" | undefined;
|
|
6229
6341
|
conditionals?: ({
|
|
6230
6342
|
type: "SHOW";
|
|
6231
6343
|
conditional: any;
|
|
@@ -6264,6 +6376,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
6264
6376
|
defaultMessage: string;
|
|
6265
6377
|
description: string;
|
|
6266
6378
|
} | undefined;
|
|
6379
|
+
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" | "Stamp" | "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" | undefined;
|
|
6267
6380
|
conditionals?: ({
|
|
6268
6381
|
type: "SHOW";
|
|
6269
6382
|
conditional: any;
|
|
@@ -6293,6 +6406,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
6293
6406
|
defaultMessage: string;
|
|
6294
6407
|
description: string;
|
|
6295
6408
|
} | undefined;
|
|
6409
|
+
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" | "Stamp" | "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" | undefined;
|
|
6296
6410
|
conditionals?: ({
|
|
6297
6411
|
type: "SHOW";
|
|
6298
6412
|
conditional: any;
|
|
@@ -6331,6 +6445,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
6331
6445
|
defaultMessage: string;
|
|
6332
6446
|
description: string;
|
|
6333
6447
|
} | undefined;
|
|
6448
|
+
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" | "Stamp" | "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" | undefined;
|
|
6334
6449
|
conditionals?: ({
|
|
6335
6450
|
type: "SHOW";
|
|
6336
6451
|
conditional: any;
|
|
@@ -9397,6 +9512,61 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
9397
9512
|
message: string;
|
|
9398
9513
|
} | null | undefined;
|
|
9399
9514
|
} | undefined;
|
|
9515
|
+
} | {
|
|
9516
|
+
id: string;
|
|
9517
|
+
label: {
|
|
9518
|
+
id: string;
|
|
9519
|
+
defaultMessage: string;
|
|
9520
|
+
description: string;
|
|
9521
|
+
};
|
|
9522
|
+
type: "HIDDEN";
|
|
9523
|
+
parent?: {
|
|
9524
|
+
$$field: string;
|
|
9525
|
+
$$subfield?: string[] | undefined;
|
|
9526
|
+
} | {
|
|
9527
|
+
$$field: string;
|
|
9528
|
+
$$subfield?: string[] | undefined;
|
|
9529
|
+
}[] | undefined;
|
|
9530
|
+
conditionals?: ({
|
|
9531
|
+
type: "SHOW";
|
|
9532
|
+
conditional: any;
|
|
9533
|
+
} | {
|
|
9534
|
+
type: "ENABLE";
|
|
9535
|
+
conditional: any;
|
|
9536
|
+
} | {
|
|
9537
|
+
type: "DISPLAY_ON_REVIEW";
|
|
9538
|
+
conditional: any;
|
|
9539
|
+
})[] | undefined;
|
|
9540
|
+
secured?: boolean | undefined;
|
|
9541
|
+
placeholder?: {
|
|
9542
|
+
id: string;
|
|
9543
|
+
defaultMessage: string;
|
|
9544
|
+
description: string;
|
|
9545
|
+
} | undefined;
|
|
9546
|
+
validation?: {
|
|
9547
|
+
validator: any;
|
|
9548
|
+
message: {
|
|
9549
|
+
id: string;
|
|
9550
|
+
defaultMessage: string;
|
|
9551
|
+
description: string;
|
|
9552
|
+
};
|
|
9553
|
+
}[] | undefined;
|
|
9554
|
+
helperText?: {
|
|
9555
|
+
id: string;
|
|
9556
|
+
defaultMessage: string;
|
|
9557
|
+
description: string;
|
|
9558
|
+
} | undefined;
|
|
9559
|
+
hideLabel?: boolean | undefined;
|
|
9560
|
+
uncorrectable?: boolean | undefined;
|
|
9561
|
+
value?: {
|
|
9562
|
+
$$field: string;
|
|
9563
|
+
$$subfield?: string[] | undefined;
|
|
9564
|
+
} | {
|
|
9565
|
+
$$field: string;
|
|
9566
|
+
$$subfield?: string[] | undefined;
|
|
9567
|
+
}[] | undefined;
|
|
9568
|
+
analytics?: boolean | undefined;
|
|
9569
|
+
required?: false | undefined;
|
|
9400
9570
|
})[];
|
|
9401
9571
|
type: "FORM";
|
|
9402
9572
|
conditional?: any;
|
|
@@ -12432,6 +12602,61 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
12432
12602
|
message: string;
|
|
12433
12603
|
} | null | undefined;
|
|
12434
12604
|
} | undefined;
|
|
12605
|
+
} | {
|
|
12606
|
+
id: string;
|
|
12607
|
+
label: {
|
|
12608
|
+
id: string;
|
|
12609
|
+
defaultMessage: string;
|
|
12610
|
+
description: string;
|
|
12611
|
+
};
|
|
12612
|
+
type: "HIDDEN";
|
|
12613
|
+
parent?: {
|
|
12614
|
+
$$field: string;
|
|
12615
|
+
$$subfield?: string[] | undefined;
|
|
12616
|
+
} | {
|
|
12617
|
+
$$field: string;
|
|
12618
|
+
$$subfield?: string[] | undefined;
|
|
12619
|
+
}[] | undefined;
|
|
12620
|
+
conditionals?: ({
|
|
12621
|
+
type: "SHOW";
|
|
12622
|
+
conditional: any;
|
|
12623
|
+
} | {
|
|
12624
|
+
type: "ENABLE";
|
|
12625
|
+
conditional: any;
|
|
12626
|
+
} | {
|
|
12627
|
+
type: "DISPLAY_ON_REVIEW";
|
|
12628
|
+
conditional: any;
|
|
12629
|
+
})[] | undefined;
|
|
12630
|
+
secured?: boolean | undefined;
|
|
12631
|
+
placeholder?: {
|
|
12632
|
+
id: string;
|
|
12633
|
+
defaultMessage: string;
|
|
12634
|
+
description: string;
|
|
12635
|
+
} | undefined;
|
|
12636
|
+
validation?: {
|
|
12637
|
+
validator: any;
|
|
12638
|
+
message: {
|
|
12639
|
+
id: string;
|
|
12640
|
+
defaultMessage: string;
|
|
12641
|
+
description: string;
|
|
12642
|
+
};
|
|
12643
|
+
}[] | undefined;
|
|
12644
|
+
helperText?: {
|
|
12645
|
+
id: string;
|
|
12646
|
+
defaultMessage: string;
|
|
12647
|
+
description: string;
|
|
12648
|
+
} | undefined;
|
|
12649
|
+
hideLabel?: boolean | undefined;
|
|
12650
|
+
uncorrectable?: boolean | undefined;
|
|
12651
|
+
value?: {
|
|
12652
|
+
$$field: string;
|
|
12653
|
+
$$subfield?: string[] | undefined;
|
|
12654
|
+
} | {
|
|
12655
|
+
$$field: string;
|
|
12656
|
+
$$subfield?: string[] | undefined;
|
|
12657
|
+
}[] | undefined;
|
|
12658
|
+
analytics?: boolean | undefined;
|
|
12659
|
+
required?: false | undefined;
|
|
12435
12660
|
})[];
|
|
12436
12661
|
type: "VERIFICATION";
|
|
12437
12662
|
actions: {
|
|
@@ -12475,6 +12700,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
12475
12700
|
defaultMessage: string;
|
|
12476
12701
|
description: string;
|
|
12477
12702
|
} | undefined;
|
|
12703
|
+
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" | "Stamp" | "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" | undefined;
|
|
12478
12704
|
conditionals?: ({
|
|
12479
12705
|
type: "SHOW";
|
|
12480
12706
|
conditional: any;
|
|
@@ -15532,6 +15758,61 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
15532
15758
|
message: string;
|
|
15533
15759
|
} | null | undefined;
|
|
15534
15760
|
} | undefined;
|
|
15761
|
+
} | {
|
|
15762
|
+
id: string;
|
|
15763
|
+
label: {
|
|
15764
|
+
id: string;
|
|
15765
|
+
defaultMessage: string;
|
|
15766
|
+
description: string;
|
|
15767
|
+
};
|
|
15768
|
+
type: "HIDDEN";
|
|
15769
|
+
parent?: {
|
|
15770
|
+
$$field: string;
|
|
15771
|
+
$$subfield?: string[] | undefined;
|
|
15772
|
+
} | {
|
|
15773
|
+
$$field: string;
|
|
15774
|
+
$$subfield?: string[] | undefined;
|
|
15775
|
+
}[] | undefined;
|
|
15776
|
+
conditionals?: ({
|
|
15777
|
+
type: "SHOW";
|
|
15778
|
+
conditional: any;
|
|
15779
|
+
} | {
|
|
15780
|
+
type: "ENABLE";
|
|
15781
|
+
conditional: any;
|
|
15782
|
+
} | {
|
|
15783
|
+
type: "DISPLAY_ON_REVIEW";
|
|
15784
|
+
conditional: any;
|
|
15785
|
+
})[] | undefined;
|
|
15786
|
+
secured?: boolean | undefined;
|
|
15787
|
+
placeholder?: {
|
|
15788
|
+
id: string;
|
|
15789
|
+
defaultMessage: string;
|
|
15790
|
+
description: string;
|
|
15791
|
+
} | undefined;
|
|
15792
|
+
validation?: {
|
|
15793
|
+
validator: any;
|
|
15794
|
+
message: {
|
|
15795
|
+
id: string;
|
|
15796
|
+
defaultMessage: string;
|
|
15797
|
+
description: string;
|
|
15798
|
+
};
|
|
15799
|
+
}[] | undefined;
|
|
15800
|
+
helperText?: {
|
|
15801
|
+
id: string;
|
|
15802
|
+
defaultMessage: string;
|
|
15803
|
+
description: string;
|
|
15804
|
+
} | undefined;
|
|
15805
|
+
hideLabel?: boolean | undefined;
|
|
15806
|
+
uncorrectable?: boolean | undefined;
|
|
15807
|
+
value?: {
|
|
15808
|
+
$$field: string;
|
|
15809
|
+
$$subfield?: string[] | undefined;
|
|
15810
|
+
} | {
|
|
15811
|
+
$$field: string;
|
|
15812
|
+
$$subfield?: string[] | undefined;
|
|
15813
|
+
}[] | undefined;
|
|
15814
|
+
analytics?: boolean | undefined;
|
|
15815
|
+
required?: false | undefined;
|
|
15535
15816
|
})[];
|
|
15536
15817
|
type: "FORM";
|
|
15537
15818
|
conditional?: any;
|
|
@@ -18567,6 +18848,61 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
18567
18848
|
message: string;
|
|
18568
18849
|
} | null | undefined;
|
|
18569
18850
|
} | undefined;
|
|
18851
|
+
} | {
|
|
18852
|
+
id: string;
|
|
18853
|
+
label: {
|
|
18854
|
+
id: string;
|
|
18855
|
+
defaultMessage: string;
|
|
18856
|
+
description: string;
|
|
18857
|
+
};
|
|
18858
|
+
type: "HIDDEN";
|
|
18859
|
+
parent?: {
|
|
18860
|
+
$$field: string;
|
|
18861
|
+
$$subfield?: string[] | undefined;
|
|
18862
|
+
} | {
|
|
18863
|
+
$$field: string;
|
|
18864
|
+
$$subfield?: string[] | undefined;
|
|
18865
|
+
}[] | undefined;
|
|
18866
|
+
conditionals?: ({
|
|
18867
|
+
type: "SHOW";
|
|
18868
|
+
conditional: any;
|
|
18869
|
+
} | {
|
|
18870
|
+
type: "ENABLE";
|
|
18871
|
+
conditional: any;
|
|
18872
|
+
} | {
|
|
18873
|
+
type: "DISPLAY_ON_REVIEW";
|
|
18874
|
+
conditional: any;
|
|
18875
|
+
})[] | undefined;
|
|
18876
|
+
secured?: boolean | undefined;
|
|
18877
|
+
placeholder?: {
|
|
18878
|
+
id: string;
|
|
18879
|
+
defaultMessage: string;
|
|
18880
|
+
description: string;
|
|
18881
|
+
} | undefined;
|
|
18882
|
+
validation?: {
|
|
18883
|
+
validator: any;
|
|
18884
|
+
message: {
|
|
18885
|
+
id: string;
|
|
18886
|
+
defaultMessage: string;
|
|
18887
|
+
description: string;
|
|
18888
|
+
};
|
|
18889
|
+
}[] | undefined;
|
|
18890
|
+
helperText?: {
|
|
18891
|
+
id: string;
|
|
18892
|
+
defaultMessage: string;
|
|
18893
|
+
description: string;
|
|
18894
|
+
} | undefined;
|
|
18895
|
+
hideLabel?: boolean | undefined;
|
|
18896
|
+
uncorrectable?: boolean | undefined;
|
|
18897
|
+
value?: {
|
|
18898
|
+
$$field: string;
|
|
18899
|
+
$$subfield?: string[] | undefined;
|
|
18900
|
+
} | {
|
|
18901
|
+
$$field: string;
|
|
18902
|
+
$$subfield?: string[] | undefined;
|
|
18903
|
+
}[] | undefined;
|
|
18904
|
+
analytics?: boolean | undefined;
|
|
18905
|
+
required?: false | undefined;
|
|
18570
18906
|
})[];
|
|
18571
18907
|
type: "VERIFICATION";
|
|
18572
18908
|
actions: {
|
|
@@ -18610,6 +18946,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
18610
18946
|
defaultMessage: string;
|
|
18611
18947
|
description: string;
|
|
18612
18948
|
} | undefined;
|
|
18949
|
+
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" | "Stamp" | "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" | undefined;
|
|
18613
18950
|
conditionals?: ({
|
|
18614
18951
|
type: "SHOW";
|
|
18615
18952
|
conditional: any;
|
|
@@ -21655,6 +21992,61 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
21655
21992
|
message: string;
|
|
21656
21993
|
} | null | undefined;
|
|
21657
21994
|
} | undefined;
|
|
21995
|
+
} | {
|
|
21996
|
+
id: string;
|
|
21997
|
+
label: {
|
|
21998
|
+
id: string;
|
|
21999
|
+
defaultMessage: string;
|
|
22000
|
+
description: string;
|
|
22001
|
+
};
|
|
22002
|
+
type: "HIDDEN";
|
|
22003
|
+
parent?: {
|
|
22004
|
+
$$field: string;
|
|
22005
|
+
$$subfield?: string[] | undefined;
|
|
22006
|
+
} | {
|
|
22007
|
+
$$field: string;
|
|
22008
|
+
$$subfield?: string[] | undefined;
|
|
22009
|
+
}[] | undefined;
|
|
22010
|
+
conditionals?: ({
|
|
22011
|
+
type: "SHOW";
|
|
22012
|
+
conditional: any;
|
|
22013
|
+
} | {
|
|
22014
|
+
type: "ENABLE";
|
|
22015
|
+
conditional: any;
|
|
22016
|
+
} | {
|
|
22017
|
+
type: "DISPLAY_ON_REVIEW";
|
|
22018
|
+
conditional: any;
|
|
22019
|
+
})[] | undefined;
|
|
22020
|
+
secured?: boolean | undefined;
|
|
22021
|
+
placeholder?: {
|
|
22022
|
+
id: string;
|
|
22023
|
+
defaultMessage: string;
|
|
22024
|
+
description: string;
|
|
22025
|
+
} | undefined;
|
|
22026
|
+
validation?: {
|
|
22027
|
+
validator: any;
|
|
22028
|
+
message: {
|
|
22029
|
+
id: string;
|
|
22030
|
+
defaultMessage: string;
|
|
22031
|
+
description: string;
|
|
22032
|
+
};
|
|
22033
|
+
}[] | undefined;
|
|
22034
|
+
helperText?: {
|
|
22035
|
+
id: string;
|
|
22036
|
+
defaultMessage: string;
|
|
22037
|
+
description: string;
|
|
22038
|
+
} | undefined;
|
|
22039
|
+
hideLabel?: boolean | undefined;
|
|
22040
|
+
uncorrectable?: boolean | undefined;
|
|
22041
|
+
value?: {
|
|
22042
|
+
$$field: string;
|
|
22043
|
+
$$subfield?: string[] | undefined;
|
|
22044
|
+
} | {
|
|
22045
|
+
$$field: string;
|
|
22046
|
+
$$subfield?: string[] | undefined;
|
|
22047
|
+
}[] | undefined;
|
|
22048
|
+
analytics?: boolean | undefined;
|
|
22049
|
+
required?: false | undefined;
|
|
21658
22050
|
})[];
|
|
21659
22051
|
auditHistoryLabel?: {
|
|
21660
22052
|
id: string;
|
|
@@ -21666,6 +22058,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
21666
22058
|
defaultMessage: string;
|
|
21667
22059
|
description: string;
|
|
21668
22060
|
} | undefined;
|
|
22061
|
+
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" | "Stamp" | "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" | undefined;
|
|
21669
22062
|
conditionals?: ({
|
|
21670
22063
|
type: "SHOW";
|
|
21671
22064
|
conditional: any;
|
|
@@ -24712,6 +25105,61 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
24712
25105
|
message: string;
|
|
24713
25106
|
} | null | undefined;
|
|
24714
25107
|
} | undefined;
|
|
25108
|
+
} | {
|
|
25109
|
+
id: string;
|
|
25110
|
+
label: {
|
|
25111
|
+
id: string;
|
|
25112
|
+
defaultMessage: string;
|
|
25113
|
+
description: string;
|
|
25114
|
+
};
|
|
25115
|
+
type: "HIDDEN";
|
|
25116
|
+
parent?: {
|
|
25117
|
+
$$field: string;
|
|
25118
|
+
$$subfield?: string[] | undefined;
|
|
25119
|
+
} | {
|
|
25120
|
+
$$field: string;
|
|
25121
|
+
$$subfield?: string[] | undefined;
|
|
25122
|
+
}[] | undefined;
|
|
25123
|
+
conditionals?: ({
|
|
25124
|
+
type: "SHOW";
|
|
25125
|
+
conditional: any;
|
|
25126
|
+
} | {
|
|
25127
|
+
type: "ENABLE";
|
|
25128
|
+
conditional: any;
|
|
25129
|
+
} | {
|
|
25130
|
+
type: "DISPLAY_ON_REVIEW";
|
|
25131
|
+
conditional: any;
|
|
25132
|
+
})[] | undefined;
|
|
25133
|
+
secured?: boolean | undefined;
|
|
25134
|
+
placeholder?: {
|
|
25135
|
+
id: string;
|
|
25136
|
+
defaultMessage: string;
|
|
25137
|
+
description: string;
|
|
25138
|
+
} | undefined;
|
|
25139
|
+
validation?: {
|
|
25140
|
+
validator: any;
|
|
25141
|
+
message: {
|
|
25142
|
+
id: string;
|
|
25143
|
+
defaultMessage: string;
|
|
25144
|
+
description: string;
|
|
25145
|
+
};
|
|
25146
|
+
}[] | undefined;
|
|
25147
|
+
helperText?: {
|
|
25148
|
+
id: string;
|
|
25149
|
+
defaultMessage: string;
|
|
25150
|
+
description: string;
|
|
25151
|
+
} | undefined;
|
|
25152
|
+
hideLabel?: boolean | undefined;
|
|
25153
|
+
uncorrectable?: boolean | undefined;
|
|
25154
|
+
value?: {
|
|
25155
|
+
$$field: string;
|
|
25156
|
+
$$subfield?: string[] | undefined;
|
|
25157
|
+
} | {
|
|
25158
|
+
$$field: string;
|
|
25159
|
+
$$subfield?: string[] | undefined;
|
|
25160
|
+
}[] | undefined;
|
|
25161
|
+
analytics?: boolean | undefined;
|
|
25162
|
+
required?: false | undefined;
|
|
24715
25163
|
})[];
|
|
24716
25164
|
type: "FORM";
|
|
24717
25165
|
conditional?: any;
|
|
@@ -24730,7 +25178,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
24730
25178
|
};
|
|
24731
25179
|
fieldId: string;
|
|
24732
25180
|
fieldType: "field";
|
|
24733
|
-
type?: "ADDRESS" | "TEXT" | "NUMBER" | "TEXTAREA" | "AGE" | "DATE" | "TIME" | "DATE_RANGE" | "SELECT_DATE_RANGE" | "PARAGRAPH" | "RADIO_GROUP" | "BULLET_LIST" | "PAGE_HEADER" | "SELECT" | "NAME" | "PHONE" | "ID" | "CHECKBOX" | "FILE" | "COUNTRY" | "ADMINISTRATIVE_AREA" | "DIVIDER" | "LOCATION" | "FACILITY" | "OFFICE" | "SIGNATURE" | "EMAIL" | "FILE_WITH_OPTIONS" | "DATA" | "BUTTON" | "ALPHA_PRINT_BUTTON" | "HTTP" | "LINK_BUTTON" | "VERIFICATION_STATUS" | "QR_READER" | "ID_READER" | "QUERY_PARAM_READER" | "LOADER" | "SEARCH" | undefined;
|
|
25181
|
+
type?: "ADDRESS" | "TEXT" | "NUMBER" | "TEXTAREA" | "AGE" | "DATE" | "TIME" | "DATE_RANGE" | "SELECT_DATE_RANGE" | "PARAGRAPH" | "RADIO_GROUP" | "BULLET_LIST" | "PAGE_HEADER" | "SELECT" | "NAME" | "PHONE" | "ID" | "CHECKBOX" | "FILE" | "COUNTRY" | "ADMINISTRATIVE_AREA" | "DIVIDER" | "LOCATION" | "FACILITY" | "OFFICE" | "SIGNATURE" | "EMAIL" | "FILE_WITH_OPTIONS" | "DATA" | "BUTTON" | "ALPHA_PRINT_BUTTON" | "HTTP" | "LINK_BUTTON" | "VERIFICATION_STATUS" | "QR_READER" | "ID_READER" | "QUERY_PARAM_READER" | "LOADER" | "SEARCH" | "HIDDEN" | undefined;
|
|
24734
25182
|
label?: {
|
|
24735
25183
|
id: string;
|
|
24736
25184
|
defaultMessage: string;
|
|
@@ -24772,9 +25220,9 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
24772
25220
|
type: "fuzzy" | "exact" | "range" | "within";
|
|
24773
25221
|
searchFields?: string[] | undefined;
|
|
24774
25222
|
};
|
|
24775
|
-
fieldId: "event.status" | "event.trackingId" | "event.updatedAt" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
|
25223
|
+
fieldId: "event.status" | "event.trackingId" | "event.updatedAt" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation" | "event.legalStatuses.REGISTERED.registrationNumber";
|
|
24776
25224
|
fieldType: "event";
|
|
24777
|
-
type?: "ADDRESS" | "TEXT" | "NUMBER" | "TEXTAREA" | "AGE" | "DATE" | "TIME" | "DATE_RANGE" | "SELECT_DATE_RANGE" | "PARAGRAPH" | "RADIO_GROUP" | "BULLET_LIST" | "PAGE_HEADER" | "SELECT" | "NAME" | "PHONE" | "ID" | "CHECKBOX" | "FILE" | "COUNTRY" | "ADMINISTRATIVE_AREA" | "DIVIDER" | "LOCATION" | "FACILITY" | "OFFICE" | "SIGNATURE" | "EMAIL" | "FILE_WITH_OPTIONS" | "DATA" | "BUTTON" | "ALPHA_PRINT_BUTTON" | "HTTP" | "LINK_BUTTON" | "VERIFICATION_STATUS" | "QR_READER" | "ID_READER" | "QUERY_PARAM_READER" | "LOADER" | "SEARCH" | undefined;
|
|
25225
|
+
type?: "ADDRESS" | "TEXT" | "NUMBER" | "TEXTAREA" | "AGE" | "DATE" | "TIME" | "DATE_RANGE" | "SELECT_DATE_RANGE" | "PARAGRAPH" | "RADIO_GROUP" | "BULLET_LIST" | "PAGE_HEADER" | "SELECT" | "NAME" | "PHONE" | "ID" | "CHECKBOX" | "FILE" | "COUNTRY" | "ADMINISTRATIVE_AREA" | "DIVIDER" | "LOCATION" | "FACILITY" | "OFFICE" | "SIGNATURE" | "EMAIL" | "FILE_WITH_OPTIONS" | "DATA" | "BUTTON" | "ALPHA_PRINT_BUTTON" | "HTTP" | "LINK_BUTTON" | "VERIFICATION_STATUS" | "QR_READER" | "ID_READER" | "QUERY_PARAM_READER" | "LOADER" | "SEARCH" | "HIDDEN" | undefined;
|
|
24778
25226
|
label?: {
|
|
24779
25227
|
id: string;
|
|
24780
25228
|
defaultMessage: string;
|
|
@@ -24826,6 +25274,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
24826
25274
|
$$field: string;
|
|
24827
25275
|
$$subfield?: string[] | undefined;
|
|
24828
25276
|
} | undefined;
|
|
25277
|
+
placeOfEvent?: {
|
|
25278
|
+
$$field: string;
|
|
25279
|
+
$$subfield?: string[] | undefined;
|
|
25280
|
+
} | undefined;
|
|
24829
25281
|
fallbackTitle?: {
|
|
24830
25282
|
id: string;
|
|
24831
25283
|
defaultMessage: string;
|
|
@@ -25756,7 +26208,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25756
26208
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
25757
26209
|
}>;
|
|
25758
26210
|
draft: import("@trpc/server").TRPCBuiltRouter<{
|
|
25759
|
-
ctx: {
|
|
26211
|
+
ctx: Partial<{
|
|
25760
26212
|
token: `Bearer ${string}`;
|
|
25761
26213
|
user: {
|
|
25762
26214
|
type: "user";
|
|
@@ -25771,7 +26223,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25771
26223
|
signature?: undefined;
|
|
25772
26224
|
primaryOfficeId?: undefined;
|
|
25773
26225
|
};
|
|
25774
|
-
}
|
|
26226
|
+
}>;
|
|
25775
26227
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
25776
26228
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
25777
26229
|
transformer: true;
|
|
@@ -25834,7 +26286,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25834
26286
|
}>;
|
|
25835
26287
|
}>>;
|
|
25836
26288
|
actions: import("@trpc/server").TRPCBuiltRouter<{
|
|
25837
|
-
ctx: {
|
|
26289
|
+
ctx: Partial<{
|
|
25838
26290
|
token: `Bearer ${string}`;
|
|
25839
26291
|
user: {
|
|
25840
26292
|
type: "user";
|
|
@@ -25849,13 +26301,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25849
26301
|
signature?: undefined;
|
|
25850
26302
|
primaryOfficeId?: undefined;
|
|
25851
26303
|
};
|
|
25852
|
-
}
|
|
26304
|
+
}>;
|
|
25853
26305
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
25854
26306
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
25855
26307
|
transformer: true;
|
|
25856
26308
|
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
25857
26309
|
notify: import("@trpc/server").TRPCBuiltRouter<{
|
|
25858
|
-
ctx: {
|
|
26310
|
+
ctx: Partial<{
|
|
25859
26311
|
token: `Bearer ${string}`;
|
|
25860
26312
|
user: {
|
|
25861
26313
|
type: "user";
|
|
@@ -25870,7 +26322,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25870
26322
|
signature?: undefined;
|
|
25871
26323
|
primaryOfficeId?: undefined;
|
|
25872
26324
|
};
|
|
25873
|
-
}
|
|
26325
|
+
}>;
|
|
25874
26326
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
25875
26327
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
25876
26328
|
transformer: true;
|
|
@@ -25898,7 +26350,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25898
26350
|
}>;
|
|
25899
26351
|
}>>;
|
|
25900
26352
|
declare: import("@trpc/server").TRPCBuiltRouter<{
|
|
25901
|
-
ctx: {
|
|
26353
|
+
ctx: Partial<{
|
|
25902
26354
|
token: `Bearer ${string}`;
|
|
25903
26355
|
user: {
|
|
25904
26356
|
type: "user";
|
|
@@ -25913,7 +26365,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25913
26365
|
signature?: undefined;
|
|
25914
26366
|
primaryOfficeId?: undefined;
|
|
25915
26367
|
};
|
|
25916
|
-
}
|
|
26368
|
+
}>;
|
|
25917
26369
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
25918
26370
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
25919
26371
|
transformer: true;
|
|
@@ -26247,7 +26699,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26247
26699
|
}>;
|
|
26248
26700
|
}>>;
|
|
26249
26701
|
validate: import("@trpc/server").TRPCBuiltRouter<{
|
|
26250
|
-
ctx: {
|
|
26702
|
+
ctx: Partial<{
|
|
26251
26703
|
token: `Bearer ${string}`;
|
|
26252
26704
|
user: {
|
|
26253
26705
|
type: "user";
|
|
@@ -26262,7 +26714,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26262
26714
|
signature?: undefined;
|
|
26263
26715
|
primaryOfficeId?: undefined;
|
|
26264
26716
|
};
|
|
26265
|
-
}
|
|
26717
|
+
}>;
|
|
26266
26718
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
26267
26719
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
26268
26720
|
transformer: true;
|
|
@@ -26290,7 +26742,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26290
26742
|
}>;
|
|
26291
26743
|
}>>;
|
|
26292
26744
|
reject: import("@trpc/server").TRPCBuiltRouter<{
|
|
26293
|
-
ctx: {
|
|
26745
|
+
ctx: Partial<{
|
|
26294
26746
|
token: `Bearer ${string}`;
|
|
26295
26747
|
user: {
|
|
26296
26748
|
type: "user";
|
|
@@ -26305,7 +26757,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26305
26757
|
signature?: undefined;
|
|
26306
26758
|
primaryOfficeId?: undefined;
|
|
26307
26759
|
};
|
|
26308
|
-
}
|
|
26760
|
+
}>;
|
|
26309
26761
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
26310
26762
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
26311
26763
|
transformer: true;
|
|
@@ -26333,7 +26785,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26333
26785
|
}>;
|
|
26334
26786
|
}>>;
|
|
26335
26787
|
archive: import("@trpc/server").TRPCBuiltRouter<{
|
|
26336
|
-
ctx: {
|
|
26788
|
+
ctx: Partial<{
|
|
26337
26789
|
token: `Bearer ${string}`;
|
|
26338
26790
|
user: {
|
|
26339
26791
|
type: "user";
|
|
@@ -26348,7 +26800,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26348
26800
|
signature?: undefined;
|
|
26349
26801
|
primaryOfficeId?: undefined;
|
|
26350
26802
|
};
|
|
26351
|
-
}
|
|
26803
|
+
}>;
|
|
26352
26804
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
26353
26805
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
26354
26806
|
transformer: true;
|
|
@@ -26376,7 +26828,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26376
26828
|
}>;
|
|
26377
26829
|
}>>;
|
|
26378
26830
|
register: import("@trpc/server").TRPCBuiltRouter<{
|
|
26379
|
-
ctx: {
|
|
26831
|
+
ctx: Partial<{
|
|
26380
26832
|
token: `Bearer ${string}`;
|
|
26381
26833
|
user: {
|
|
26382
26834
|
type: "user";
|
|
@@ -26391,7 +26843,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26391
26843
|
signature?: undefined;
|
|
26392
26844
|
primaryOfficeId?: undefined;
|
|
26393
26845
|
};
|
|
26394
|
-
}
|
|
26846
|
+
}>;
|
|
26395
26847
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
26396
26848
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
26397
26849
|
transformer: true;
|
|
@@ -26419,7 +26871,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26419
26871
|
}>;
|
|
26420
26872
|
}>>;
|
|
26421
26873
|
printCertificate: import("@trpc/server").TRPCBuiltRouter<{
|
|
26422
|
-
ctx: {
|
|
26874
|
+
ctx: Partial<{
|
|
26423
26875
|
token: `Bearer ${string}`;
|
|
26424
26876
|
user: {
|
|
26425
26877
|
type: "user";
|
|
@@ -26434,7 +26886,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26434
26886
|
signature?: undefined;
|
|
26435
26887
|
primaryOfficeId?: undefined;
|
|
26436
26888
|
};
|
|
26437
|
-
}
|
|
26889
|
+
}>;
|
|
26438
26890
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
26439
26891
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
26440
26892
|
transformer: true;
|
|
@@ -26462,7 +26914,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26462
26914
|
}>;
|
|
26463
26915
|
}>>;
|
|
26464
26916
|
custom: import("@trpc/server").TRPCBuiltRouter<{
|
|
26465
|
-
ctx: {
|
|
26917
|
+
ctx: Partial<{
|
|
26466
26918
|
token: `Bearer ${string}`;
|
|
26467
26919
|
user: {
|
|
26468
26920
|
type: "user";
|
|
@@ -26477,7 +26929,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26477
26929
|
signature?: undefined;
|
|
26478
26930
|
primaryOfficeId?: undefined;
|
|
26479
26931
|
};
|
|
26480
|
-
}
|
|
26932
|
+
}>;
|
|
26481
26933
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
26482
26934
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
26483
26935
|
transformer: true;
|
|
@@ -26812,7 +27264,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26812
27264
|
}>;
|
|
26813
27265
|
}>>;
|
|
26814
27266
|
assignment: import("@trpc/server").TRPCBuiltRouter<{
|
|
26815
|
-
ctx: {
|
|
27267
|
+
ctx: Partial<{
|
|
26816
27268
|
token: `Bearer ${string}`;
|
|
26817
27269
|
user: {
|
|
26818
27270
|
type: "user";
|
|
@@ -26827,7 +27279,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26827
27279
|
signature?: undefined;
|
|
26828
27280
|
primaryOfficeId?: undefined;
|
|
26829
27281
|
};
|
|
26830
|
-
}
|
|
27282
|
+
}>;
|
|
26831
27283
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
26832
27284
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
26833
27285
|
transformer: true;
|
|
@@ -27458,7 +27910,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27458
27910
|
}>;
|
|
27459
27911
|
}>>;
|
|
27460
27912
|
correction: import("@trpc/server").TRPCBuiltRouter<{
|
|
27461
|
-
ctx: {
|
|
27913
|
+
ctx: Partial<{
|
|
27462
27914
|
token: `Bearer ${string}`;
|
|
27463
27915
|
user: {
|
|
27464
27916
|
type: "user";
|
|
@@ -27473,13 +27925,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27473
27925
|
signature?: undefined;
|
|
27474
27926
|
primaryOfficeId?: undefined;
|
|
27475
27927
|
};
|
|
27476
|
-
}
|
|
27928
|
+
}>;
|
|
27477
27929
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
27478
27930
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
27479
27931
|
transformer: true;
|
|
27480
27932
|
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
27481
27933
|
request: import("@trpc/server").TRPCBuiltRouter<{
|
|
27482
|
-
ctx: {
|
|
27934
|
+
ctx: Partial<{
|
|
27483
27935
|
token: `Bearer ${string}`;
|
|
27484
27936
|
user: {
|
|
27485
27937
|
type: "user";
|
|
@@ -27494,7 +27946,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27494
27946
|
signature?: undefined;
|
|
27495
27947
|
primaryOfficeId?: undefined;
|
|
27496
27948
|
};
|
|
27497
|
-
}
|
|
27949
|
+
}>;
|
|
27498
27950
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
27499
27951
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
27500
27952
|
transformer: true;
|
|
@@ -27522,7 +27974,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27522
27974
|
}>;
|
|
27523
27975
|
}>>;
|
|
27524
27976
|
approve: import("@trpc/server").TRPCBuiltRouter<{
|
|
27525
|
-
ctx: {
|
|
27977
|
+
ctx: Partial<{
|
|
27526
27978
|
token: `Bearer ${string}`;
|
|
27527
27979
|
user: {
|
|
27528
27980
|
type: "user";
|
|
@@ -27537,7 +27989,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27537
27989
|
signature?: undefined;
|
|
27538
27990
|
primaryOfficeId?: undefined;
|
|
27539
27991
|
};
|
|
27540
|
-
}
|
|
27992
|
+
}>;
|
|
27541
27993
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
27542
27994
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
27543
27995
|
transformer: true;
|
|
@@ -27565,7 +28017,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27565
28017
|
}>;
|
|
27566
28018
|
}>>;
|
|
27567
28019
|
reject: import("@trpc/server").TRPCBuiltRouter<{
|
|
27568
|
-
ctx: {
|
|
28020
|
+
ctx: Partial<{
|
|
27569
28021
|
token: `Bearer ${string}`;
|
|
27570
28022
|
user: {
|
|
27571
28023
|
type: "user";
|
|
@@ -27580,7 +28032,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27580
28032
|
signature?: undefined;
|
|
27581
28033
|
primaryOfficeId?: undefined;
|
|
27582
28034
|
};
|
|
27583
|
-
}
|
|
28035
|
+
}>;
|
|
27584
28036
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
27585
28037
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
27586
28038
|
transformer: true;
|
|
@@ -27609,7 +28061,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27609
28061
|
}>>;
|
|
27610
28062
|
}>>;
|
|
27611
28063
|
duplicate: import("@trpc/server").TRPCBuiltRouter<{
|
|
27612
|
-
ctx: {
|
|
28064
|
+
ctx: Partial<{
|
|
27613
28065
|
token: `Bearer ${string}`;
|
|
27614
28066
|
user: {
|
|
27615
28067
|
type: "user";
|
|
@@ -27624,7 +28076,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27624
28076
|
signature?: undefined;
|
|
27625
28077
|
primaryOfficeId?: undefined;
|
|
27626
28078
|
};
|
|
27627
|
-
}
|
|
28079
|
+
}>;
|
|
27628
28080
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
27629
28081
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
27630
28082
|
transformer: true;
|
|
@@ -28301,6 +28753,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28301
28753
|
flags: string[];
|
|
28302
28754
|
declaration: Record<string, import("../commons").FieldValue>;
|
|
28303
28755
|
dateOfEvent?: string | null | undefined;
|
|
28756
|
+
placeOfEvent?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28304
28757
|
createdByUserType?: "user" | "system" | null | undefined;
|
|
28305
28758
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28306
28759
|
createdBySignature?: string | null | undefined;
|
|
@@ -28621,7 +29074,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28621
29074
|
}>;
|
|
28622
29075
|
}>>;
|
|
28623
29076
|
user: import("@trpc/server").TRPCBuiltRouter<{
|
|
28624
|
-
ctx: {
|
|
29077
|
+
ctx: Partial<{
|
|
28625
29078
|
token: `Bearer ${string}`;
|
|
28626
29079
|
user: {
|
|
28627
29080
|
type: "user";
|
|
@@ -28636,7 +29089,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28636
29089
|
signature?: undefined;
|
|
28637
29090
|
primaryOfficeId?: undefined;
|
|
28638
29091
|
};
|
|
28639
|
-
}
|
|
29092
|
+
}>;
|
|
28640
29093
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
28641
29094
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
28642
29095
|
transformer: true;
|
|
@@ -28735,7 +29188,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28735
29188
|
}>;
|
|
28736
29189
|
}>>;
|
|
28737
29190
|
locations: import("@trpc/server").TRPCBuiltRouter<{
|
|
28738
|
-
ctx: {
|
|
29191
|
+
ctx: Partial<{
|
|
28739
29192
|
token: `Bearer ${string}`;
|
|
28740
29193
|
user: {
|
|
28741
29194
|
type: "user";
|
|
@@ -28750,7 +29203,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28750
29203
|
signature?: undefined;
|
|
28751
29204
|
primaryOfficeId?: undefined;
|
|
28752
29205
|
};
|
|
28753
|
-
}
|
|
29206
|
+
}>;
|
|
28754
29207
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
28755
29208
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
28756
29209
|
transformer: true;
|
|
@@ -28788,7 +29241,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28788
29241
|
}>;
|
|
28789
29242
|
}>>;
|
|
28790
29243
|
workqueue: import("@trpc/server").TRPCBuiltRouter<{
|
|
28791
|
-
ctx: {
|
|
29244
|
+
ctx: Partial<{
|
|
28792
29245
|
token: `Bearer ${string}`;
|
|
28793
29246
|
user: {
|
|
28794
29247
|
type: "user";
|
|
@@ -28803,13 +29256,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28803
29256
|
signature?: undefined;
|
|
28804
29257
|
primaryOfficeId?: undefined;
|
|
28805
29258
|
};
|
|
28806
|
-
}
|
|
29259
|
+
}>;
|
|
28807
29260
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
28808
29261
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
28809
29262
|
transformer: true;
|
|
28810
29263
|
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
28811
29264
|
config: import("@trpc/server").TRPCBuiltRouter<{
|
|
28812
|
-
ctx: {
|
|
29265
|
+
ctx: Partial<{
|
|
28813
29266
|
token: `Bearer ${string}`;
|
|
28814
29267
|
user: {
|
|
28815
29268
|
type: "user";
|
|
@@ -28824,7 +29277,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28824
29277
|
signature?: undefined;
|
|
28825
29278
|
primaryOfficeId?: undefined;
|
|
28826
29279
|
};
|
|
28827
|
-
}
|
|
29280
|
+
}>;
|
|
28828
29281
|
meta: import("trpc-to-openapi").OpenApiMeta;
|
|
28829
29282
|
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
28830
29283
|
transformer: true;
|
|
@@ -29082,10 +29535,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
29082
29535
|
description: string;
|
|
29083
29536
|
};
|
|
29084
29537
|
value: {
|
|
29085
|
-
$event: "type" | "id" | "dateOfEvent" | "title" | "flags" | "status" | "createdAt" | "updatedAt" | "trackingId" | "createdBy" | "createdByUserType" | "createdAtLocation" | "assignedTo" | "legalStatuses" | "updatedByUserRole" | "updatedAtLocation" | "updatedBy" | "outbox";
|
|
29538
|
+
$event: "type" | "id" | "dateOfEvent" | "placeOfEvent" | "title" | "flags" | "status" | "createdAt" | "updatedAt" | "trackingId" | "createdBy" | "createdByUserType" | "createdAtLocation" | "assignedTo" | "legalStatuses" | "updatedByUserRole" | "updatedAtLocation" | "updatedBy" | "outbox";
|
|
29086
29539
|
};
|
|
29087
29540
|
}[];
|
|
29088
|
-
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";
|
|
29541
|
+
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" | "Stamp" | "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";
|
|
29089
29542
|
emptyMessage?: {
|
|
29090
29543
|
id: string;
|
|
29091
29544
|
defaultMessage: string;
|