@opencrvs/toolkit 1.9.2-rc.ebb7011 → 1.9.2-rc.f3e8041
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 +361 -420
- package/dist/commons/events/ActionConfig.d.ts +30 -70
- package/dist/commons/events/ActionDocument.d.ts +91 -90
- package/dist/commons/events/ActionInput.d.ts +72 -72
- package/dist/commons/events/AdvancedSearchConfig.d.ts +8 -7
- package/dist/commons/events/CompositeFieldValue.d.ts +0 -2
- package/dist/commons/events/Draft.d.ts +4 -4
- package/dist/commons/events/EventConfig.d.ts +30 -58
- package/dist/commons/events/EventDocument.d.ts +36 -36
- package/dist/commons/events/EventIndex.d.ts +2 -1
- package/dist/commons/events/EventMetadata.d.ts +3 -1
- package/dist/commons/events/FieldConfig.d.ts +14 -22
- package/dist/commons/events/FieldType.d.ts +3 -3
- package/dist/commons/events/FieldTypeMapping.d.ts +8 -8
- package/dist/commons/events/FieldValue.d.ts +6 -5
- package/dist/commons/events/FormConfig.d.ts +18 -42
- package/dist/commons/events/PageConfig.d.ts +12 -28
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +5 -2
- package/dist/commons/events/WorkqueueConfig.d.ts +5 -3
- package/dist/commons/events/defineConfig.d.ts +94 -154
- package/dist/commons/events/state/index.d.ts +7 -1
- package/dist/commons/events/state/utils.d.ts +36 -36
- package/dist/commons/events/test.utils.d.ts +8 -8
- package/dist/commons/events/utils.d.ts +326 -344
- package/dist/events/index.js +83 -23
- package/dist/notification/index.js +32 -13
- package/package.json +1 -1
|
@@ -3171,8 +3171,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3171
3171
|
defaultMessage: string;
|
|
3172
3172
|
description: string;
|
|
3173
3173
|
};
|
|
3174
|
-
type: "
|
|
3175
|
-
src: string;
|
|
3174
|
+
type: "ALPHA_HIDDEN";
|
|
3176
3175
|
parent?: {
|
|
3177
3176
|
$$field: string;
|
|
3178
3177
|
$$subfield?: string[] | undefined;
|
|
@@ -3180,13 +3179,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3180
3179
|
$$field: string;
|
|
3181
3180
|
$$subfield?: string[] | undefined;
|
|
3182
3181
|
}[] | undefined;
|
|
3183
|
-
required?: boolean | {
|
|
3184
|
-
message: {
|
|
3185
|
-
id: string;
|
|
3186
|
-
defaultMessage: string;
|
|
3187
|
-
description: string;
|
|
3188
|
-
};
|
|
3189
|
-
} | undefined;
|
|
3190
3182
|
conditionals?: ({
|
|
3191
3183
|
type: "SHOW";
|
|
3192
3184
|
conditional: any;
|
|
@@ -3226,8 +3218,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3226
3218
|
$$subfield?: string[] | undefined;
|
|
3227
3219
|
}[] | undefined;
|
|
3228
3220
|
analytics?: boolean | undefined;
|
|
3229
|
-
|
|
3230
|
-
|
|
3221
|
+
required?: boolean | undefined;
|
|
3222
|
+
defaultValue?: string | undefined;
|
|
3231
3223
|
})[];
|
|
3232
3224
|
};
|
|
3233
3225
|
auditHistoryLabel?: {
|
|
@@ -6292,8 +6284,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
6292
6284
|
defaultMessage: string;
|
|
6293
6285
|
description: string;
|
|
6294
6286
|
};
|
|
6295
|
-
type: "
|
|
6296
|
-
src: string;
|
|
6287
|
+
type: "ALPHA_HIDDEN";
|
|
6297
6288
|
parent?: {
|
|
6298
6289
|
$$field: string;
|
|
6299
6290
|
$$subfield?: string[] | undefined;
|
|
@@ -6301,13 +6292,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
6301
6292
|
$$field: string;
|
|
6302
6293
|
$$subfield?: string[] | undefined;
|
|
6303
6294
|
}[] | undefined;
|
|
6304
|
-
required?: boolean | {
|
|
6305
|
-
message: {
|
|
6306
|
-
id: string;
|
|
6307
|
-
defaultMessage: string;
|
|
6308
|
-
description: string;
|
|
6309
|
-
};
|
|
6310
|
-
} | undefined;
|
|
6311
6295
|
conditionals?: ({
|
|
6312
6296
|
type: "SHOW";
|
|
6313
6297
|
conditional: any;
|
|
@@ -6347,8 +6331,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
6347
6331
|
$$subfield?: string[] | undefined;
|
|
6348
6332
|
}[] | undefined;
|
|
6349
6333
|
analytics?: boolean | undefined;
|
|
6350
|
-
|
|
6351
|
-
|
|
6334
|
+
required?: boolean | undefined;
|
|
6335
|
+
defaultValue?: string | undefined;
|
|
6352
6336
|
})[];
|
|
6353
6337
|
};
|
|
6354
6338
|
auditHistoryLabel?: {
|
|
@@ -9543,8 +9527,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
9543
9527
|
defaultMessage: string;
|
|
9544
9528
|
description: string;
|
|
9545
9529
|
};
|
|
9546
|
-
type: "
|
|
9547
|
-
src: string;
|
|
9530
|
+
type: "ALPHA_HIDDEN";
|
|
9548
9531
|
parent?: {
|
|
9549
9532
|
$$field: string;
|
|
9550
9533
|
$$subfield?: string[] | undefined;
|
|
@@ -9552,13 +9535,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
9552
9535
|
$$field: string;
|
|
9553
9536
|
$$subfield?: string[] | undefined;
|
|
9554
9537
|
}[] | undefined;
|
|
9555
|
-
required?: boolean | {
|
|
9556
|
-
message: {
|
|
9557
|
-
id: string;
|
|
9558
|
-
defaultMessage: string;
|
|
9559
|
-
description: string;
|
|
9560
|
-
};
|
|
9561
|
-
} | undefined;
|
|
9562
9538
|
conditionals?: ({
|
|
9563
9539
|
type: "SHOW";
|
|
9564
9540
|
conditional: any;
|
|
@@ -9598,8 +9574,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
9598
9574
|
$$subfield?: string[] | undefined;
|
|
9599
9575
|
}[] | undefined;
|
|
9600
9576
|
analytics?: boolean | undefined;
|
|
9601
|
-
|
|
9602
|
-
|
|
9577
|
+
required?: boolean | undefined;
|
|
9578
|
+
defaultValue?: string | undefined;
|
|
9603
9579
|
})[];
|
|
9604
9580
|
type: "FORM";
|
|
9605
9581
|
conditional?: any;
|
|
@@ -12642,8 +12618,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
12642
12618
|
defaultMessage: string;
|
|
12643
12619
|
description: string;
|
|
12644
12620
|
};
|
|
12645
|
-
type: "
|
|
12646
|
-
src: string;
|
|
12621
|
+
type: "ALPHA_HIDDEN";
|
|
12647
12622
|
parent?: {
|
|
12648
12623
|
$$field: string;
|
|
12649
12624
|
$$subfield?: string[] | undefined;
|
|
@@ -12651,13 +12626,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
12651
12626
|
$$field: string;
|
|
12652
12627
|
$$subfield?: string[] | undefined;
|
|
12653
12628
|
}[] | undefined;
|
|
12654
|
-
required?: boolean | {
|
|
12655
|
-
message: {
|
|
12656
|
-
id: string;
|
|
12657
|
-
defaultMessage: string;
|
|
12658
|
-
description: string;
|
|
12659
|
-
};
|
|
12660
|
-
} | undefined;
|
|
12661
12629
|
conditionals?: ({
|
|
12662
12630
|
type: "SHOW";
|
|
12663
12631
|
conditional: any;
|
|
@@ -12697,8 +12665,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
12697
12665
|
$$subfield?: string[] | undefined;
|
|
12698
12666
|
}[] | undefined;
|
|
12699
12667
|
analytics?: boolean | undefined;
|
|
12700
|
-
|
|
12701
|
-
|
|
12668
|
+
required?: boolean | undefined;
|
|
12669
|
+
defaultValue?: string | undefined;
|
|
12702
12670
|
})[];
|
|
12703
12671
|
type: "VERIFICATION";
|
|
12704
12672
|
actions: {
|
|
@@ -15807,8 +15775,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
15807
15775
|
defaultMessage: string;
|
|
15808
15776
|
description: string;
|
|
15809
15777
|
};
|
|
15810
|
-
type: "
|
|
15811
|
-
src: string;
|
|
15778
|
+
type: "ALPHA_HIDDEN";
|
|
15812
15779
|
parent?: {
|
|
15813
15780
|
$$field: string;
|
|
15814
15781
|
$$subfield?: string[] | undefined;
|
|
@@ -15816,13 +15783,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
15816
15783
|
$$field: string;
|
|
15817
15784
|
$$subfield?: string[] | undefined;
|
|
15818
15785
|
}[] | undefined;
|
|
15819
|
-
required?: boolean | {
|
|
15820
|
-
message: {
|
|
15821
|
-
id: string;
|
|
15822
|
-
defaultMessage: string;
|
|
15823
|
-
description: string;
|
|
15824
|
-
};
|
|
15825
|
-
} | undefined;
|
|
15826
15786
|
conditionals?: ({
|
|
15827
15787
|
type: "SHOW";
|
|
15828
15788
|
conditional: any;
|
|
@@ -15862,8 +15822,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
15862
15822
|
$$subfield?: string[] | undefined;
|
|
15863
15823
|
}[] | undefined;
|
|
15864
15824
|
analytics?: boolean | undefined;
|
|
15865
|
-
|
|
15866
|
-
|
|
15825
|
+
required?: boolean | undefined;
|
|
15826
|
+
defaultValue?: string | undefined;
|
|
15867
15827
|
})[];
|
|
15868
15828
|
type: "FORM";
|
|
15869
15829
|
conditional?: any;
|
|
@@ -18906,8 +18866,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
18906
18866
|
defaultMessage: string;
|
|
18907
18867
|
description: string;
|
|
18908
18868
|
};
|
|
18909
|
-
type: "
|
|
18910
|
-
src: string;
|
|
18869
|
+
type: "ALPHA_HIDDEN";
|
|
18911
18870
|
parent?: {
|
|
18912
18871
|
$$field: string;
|
|
18913
18872
|
$$subfield?: string[] | undefined;
|
|
@@ -18915,13 +18874,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
18915
18874
|
$$field: string;
|
|
18916
18875
|
$$subfield?: string[] | undefined;
|
|
18917
18876
|
}[] | undefined;
|
|
18918
|
-
required?: boolean | {
|
|
18919
|
-
message: {
|
|
18920
|
-
id: string;
|
|
18921
|
-
defaultMessage: string;
|
|
18922
|
-
description: string;
|
|
18923
|
-
};
|
|
18924
|
-
} | undefined;
|
|
18925
18877
|
conditionals?: ({
|
|
18926
18878
|
type: "SHOW";
|
|
18927
18879
|
conditional: any;
|
|
@@ -18961,8 +18913,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
18961
18913
|
$$subfield?: string[] | undefined;
|
|
18962
18914
|
}[] | undefined;
|
|
18963
18915
|
analytics?: boolean | undefined;
|
|
18964
|
-
|
|
18965
|
-
|
|
18916
|
+
required?: boolean | undefined;
|
|
18917
|
+
defaultValue?: string | undefined;
|
|
18966
18918
|
})[];
|
|
18967
18919
|
type: "VERIFICATION";
|
|
18968
18920
|
actions: {
|
|
@@ -22059,8 +22011,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
22059
22011
|
defaultMessage: string;
|
|
22060
22012
|
description: string;
|
|
22061
22013
|
};
|
|
22062
|
-
type: "
|
|
22063
|
-
src: string;
|
|
22014
|
+
type: "ALPHA_HIDDEN";
|
|
22064
22015
|
parent?: {
|
|
22065
22016
|
$$field: string;
|
|
22066
22017
|
$$subfield?: string[] | undefined;
|
|
@@ -22068,13 +22019,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
22068
22019
|
$$field: string;
|
|
22069
22020
|
$$subfield?: string[] | undefined;
|
|
22070
22021
|
}[] | undefined;
|
|
22071
|
-
required?: boolean | {
|
|
22072
|
-
message: {
|
|
22073
|
-
id: string;
|
|
22074
|
-
defaultMessage: string;
|
|
22075
|
-
description: string;
|
|
22076
|
-
};
|
|
22077
|
-
} | undefined;
|
|
22078
22022
|
conditionals?: ({
|
|
22079
22023
|
type: "SHOW";
|
|
22080
22024
|
conditional: any;
|
|
@@ -22114,8 +22058,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
22114
22058
|
$$subfield?: string[] | undefined;
|
|
22115
22059
|
}[] | undefined;
|
|
22116
22060
|
analytics?: boolean | undefined;
|
|
22117
|
-
|
|
22118
|
-
|
|
22061
|
+
required?: boolean | undefined;
|
|
22062
|
+
defaultValue?: string | undefined;
|
|
22119
22063
|
})[];
|
|
22120
22064
|
auditHistoryLabel?: {
|
|
22121
22065
|
id: string;
|
|
@@ -25181,8 +25125,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25181
25125
|
defaultMessage: string;
|
|
25182
25126
|
description: string;
|
|
25183
25127
|
};
|
|
25184
|
-
type: "
|
|
25185
|
-
src: string;
|
|
25128
|
+
type: "ALPHA_HIDDEN";
|
|
25186
25129
|
parent?: {
|
|
25187
25130
|
$$field: string;
|
|
25188
25131
|
$$subfield?: string[] | undefined;
|
|
@@ -25190,13 +25133,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25190
25133
|
$$field: string;
|
|
25191
25134
|
$$subfield?: string[] | undefined;
|
|
25192
25135
|
}[] | undefined;
|
|
25193
|
-
required?: boolean | {
|
|
25194
|
-
message: {
|
|
25195
|
-
id: string;
|
|
25196
|
-
defaultMessage: string;
|
|
25197
|
-
description: string;
|
|
25198
|
-
};
|
|
25199
|
-
} | undefined;
|
|
25200
25136
|
conditionals?: ({
|
|
25201
25137
|
type: "SHOW";
|
|
25202
25138
|
conditional: any;
|
|
@@ -25236,8 +25172,8 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25236
25172
|
$$subfield?: string[] | undefined;
|
|
25237
25173
|
}[] | undefined;
|
|
25238
25174
|
analytics?: boolean | undefined;
|
|
25239
|
-
|
|
25240
|
-
|
|
25175
|
+
required?: boolean | undefined;
|
|
25176
|
+
defaultValue?: string | undefined;
|
|
25241
25177
|
})[];
|
|
25242
25178
|
type: "FORM";
|
|
25243
25179
|
conditional?: any;
|
|
@@ -25256,7 +25192,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25256
25192
|
};
|
|
25257
25193
|
fieldId: string;
|
|
25258
25194
|
fieldType: "field";
|
|
25259
|
-
type?: "TEXT" | "DATE" | "TIME" | "
|
|
25195
|
+
type?: "TEXT" | "DATE" | "TIME" | "ADDRESS" | "NUMBER" | "TEXTAREA" | "AGE" | "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" | "ALPHA_HIDDEN" | undefined;
|
|
25260
25196
|
label?: {
|
|
25261
25197
|
id: string;
|
|
25262
25198
|
defaultMessage: string;
|
|
@@ -25300,7 +25236,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25300
25236
|
};
|
|
25301
25237
|
fieldId: "event.status" | "event.trackingId" | "event.updatedAt" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation" | "event.legalStatuses.REGISTERED.registrationNumber";
|
|
25302
25238
|
fieldType: "event";
|
|
25303
|
-
type?: "TEXT" | "DATE" | "TIME" | "
|
|
25239
|
+
type?: "TEXT" | "DATE" | "TIME" | "ADDRESS" | "NUMBER" | "TEXTAREA" | "AGE" | "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" | "ALPHA_HIDDEN" | undefined;
|
|
25304
25240
|
label?: {
|
|
25305
25241
|
id: string;
|
|
25306
25242
|
defaultMessage: string;
|
|
@@ -25352,6 +25288,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25352
25288
|
$$field: string;
|
|
25353
25289
|
$$subfield?: string[] | undefined;
|
|
25354
25290
|
} | undefined;
|
|
25291
|
+
placeOfEvent?: {
|
|
25292
|
+
$$field: string;
|
|
25293
|
+
$$subfield?: string[] | undefined;
|
|
25294
|
+
} | undefined;
|
|
25355
25295
|
fallbackTitle?: {
|
|
25356
25296
|
id: string;
|
|
25357
25297
|
defaultMessage: string;
|
|
@@ -25378,12 +25318,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25378
25318
|
createdAt: string;
|
|
25379
25319
|
createdBy: string;
|
|
25380
25320
|
createdByRole: string;
|
|
25381
|
-
declaration: Record<string,
|
|
25321
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25382
25322
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25383
25323
|
type: "CREATE";
|
|
25384
25324
|
createdBySignature?: string | null | undefined;
|
|
25385
25325
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25386
|
-
annotation?: Record<string,
|
|
25326
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25387
25327
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25388
25328
|
} | {
|
|
25389
25329
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25392,12 +25332,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25392
25332
|
createdAt: string;
|
|
25393
25333
|
createdBy: string;
|
|
25394
25334
|
createdByRole: string;
|
|
25395
|
-
declaration: Record<string,
|
|
25335
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25396
25336
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25397
25337
|
type: "VALIDATE";
|
|
25398
25338
|
createdBySignature?: string | null | undefined;
|
|
25399
25339
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25400
|
-
annotation?: Record<string,
|
|
25340
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25401
25341
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25402
25342
|
} | {
|
|
25403
25343
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25406,7 +25346,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25406
25346
|
createdAt: string;
|
|
25407
25347
|
createdBy: string;
|
|
25408
25348
|
createdByRole: string;
|
|
25409
|
-
declaration: Record<string,
|
|
25349
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25410
25350
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25411
25351
|
type: "REJECT";
|
|
25412
25352
|
content: {
|
|
@@ -25414,7 +25354,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25414
25354
|
};
|
|
25415
25355
|
createdBySignature?: string | null | undefined;
|
|
25416
25356
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25417
|
-
annotation?: Record<string,
|
|
25357
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25418
25358
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25419
25359
|
} | {
|
|
25420
25360
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25423,7 +25363,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25423
25363
|
createdAt: string;
|
|
25424
25364
|
createdBy: string;
|
|
25425
25365
|
createdByRole: string;
|
|
25426
|
-
declaration: Record<string,
|
|
25366
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25427
25367
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25428
25368
|
type: "DUPLICATE_DETECTED";
|
|
25429
25369
|
content: {
|
|
@@ -25434,7 +25374,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25434
25374
|
};
|
|
25435
25375
|
createdBySignature?: string | null | undefined;
|
|
25436
25376
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25437
|
-
annotation?: Record<string,
|
|
25377
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25438
25378
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25439
25379
|
} | {
|
|
25440
25380
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25443,12 +25383,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25443
25383
|
createdAt: string;
|
|
25444
25384
|
createdBy: string;
|
|
25445
25385
|
createdByRole: string;
|
|
25446
|
-
declaration: Record<string,
|
|
25386
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25447
25387
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25448
25388
|
type: "MARK_AS_NOT_DUPLICATE";
|
|
25449
25389
|
createdBySignature?: string | null | undefined;
|
|
25450
25390
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25451
|
-
annotation?: Record<string,
|
|
25391
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25452
25392
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25453
25393
|
} | {
|
|
25454
25394
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25457,12 +25397,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25457
25397
|
createdAt: string;
|
|
25458
25398
|
createdBy: string;
|
|
25459
25399
|
createdByRole: string;
|
|
25460
|
-
declaration: Record<string,
|
|
25400
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25461
25401
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25462
25402
|
type: "MARK_AS_DUPLICATE";
|
|
25463
25403
|
createdBySignature?: string | null | undefined;
|
|
25464
25404
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25465
|
-
annotation?: Record<string,
|
|
25405
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25466
25406
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25467
25407
|
content?: {
|
|
25468
25408
|
duplicateOf: string & import("zod").$brand<"UUID">;
|
|
@@ -25474,7 +25414,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25474
25414
|
createdAt: string;
|
|
25475
25415
|
createdBy: string;
|
|
25476
25416
|
createdByRole: string;
|
|
25477
|
-
declaration: Record<string,
|
|
25417
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25478
25418
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25479
25419
|
type: "ARCHIVE";
|
|
25480
25420
|
content: {
|
|
@@ -25482,7 +25422,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25482
25422
|
};
|
|
25483
25423
|
createdBySignature?: string | null | undefined;
|
|
25484
25424
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25485
|
-
annotation?: Record<string,
|
|
25425
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25486
25426
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25487
25427
|
} | {
|
|
25488
25428
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25491,12 +25431,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25491
25431
|
createdAt: string;
|
|
25492
25432
|
createdBy: string;
|
|
25493
25433
|
createdByRole: string;
|
|
25494
|
-
declaration: Record<string,
|
|
25434
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25495
25435
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25496
25436
|
type: "NOTIFY";
|
|
25497
25437
|
createdBySignature?: string | null | undefined;
|
|
25498
25438
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25499
|
-
annotation?: Record<string,
|
|
25439
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25500
25440
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25501
25441
|
} | {
|
|
25502
25442
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25505,12 +25445,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25505
25445
|
createdAt: string;
|
|
25506
25446
|
createdBy: string;
|
|
25507
25447
|
createdByRole: string;
|
|
25508
|
-
declaration: Record<string,
|
|
25448
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25509
25449
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25510
25450
|
type: "REGISTER";
|
|
25511
25451
|
createdBySignature?: string | null | undefined;
|
|
25512
25452
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25513
|
-
annotation?: Record<string,
|
|
25453
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25514
25454
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25515
25455
|
registrationNumber?: string | undefined;
|
|
25516
25456
|
} | {
|
|
@@ -25520,12 +25460,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25520
25460
|
createdAt: string;
|
|
25521
25461
|
createdBy: string;
|
|
25522
25462
|
createdByRole: string;
|
|
25523
|
-
declaration: Record<string,
|
|
25463
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25524
25464
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25525
25465
|
type: "DECLARE";
|
|
25526
25466
|
createdBySignature?: string | null | undefined;
|
|
25527
25467
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25528
|
-
annotation?: Record<string,
|
|
25468
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25529
25469
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25530
25470
|
} | {
|
|
25531
25471
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25534,13 +25474,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25534
25474
|
createdAt: string;
|
|
25535
25475
|
createdBy: string;
|
|
25536
25476
|
createdByRole: string;
|
|
25537
|
-
declaration: Record<string,
|
|
25477
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25538
25478
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25539
25479
|
type: "ASSIGN";
|
|
25540
25480
|
assignedTo: string;
|
|
25541
25481
|
createdBySignature?: string | null | undefined;
|
|
25542
25482
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25543
|
-
annotation?: Record<string,
|
|
25483
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25544
25484
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25545
25485
|
} | {
|
|
25546
25486
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25549,12 +25489,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25549
25489
|
createdAt: string;
|
|
25550
25490
|
createdBy: string;
|
|
25551
25491
|
createdByRole: string;
|
|
25552
|
-
declaration: Record<string,
|
|
25492
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25553
25493
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25554
25494
|
type: "REQUEST_CORRECTION";
|
|
25555
25495
|
createdBySignature?: string | null | undefined;
|
|
25556
25496
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25557
|
-
annotation?: Record<string,
|
|
25497
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25558
25498
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25559
25499
|
} | {
|
|
25560
25500
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25563,13 +25503,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25563
25503
|
createdAt: string;
|
|
25564
25504
|
createdBy: string;
|
|
25565
25505
|
createdByRole: string;
|
|
25566
|
-
declaration: Record<string,
|
|
25506
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25567
25507
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25568
25508
|
type: "APPROVE_CORRECTION";
|
|
25569
25509
|
requestId: string;
|
|
25570
25510
|
createdBySignature?: string | null | undefined;
|
|
25571
25511
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25572
|
-
annotation?: Record<string,
|
|
25512
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25573
25513
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25574
25514
|
} | {
|
|
25575
25515
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25578,7 +25518,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25578
25518
|
createdAt: string;
|
|
25579
25519
|
createdBy: string;
|
|
25580
25520
|
createdByRole: string;
|
|
25581
|
-
declaration: Record<string,
|
|
25521
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25582
25522
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25583
25523
|
type: "REJECT_CORRECTION";
|
|
25584
25524
|
requestId: string;
|
|
@@ -25587,7 +25527,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25587
25527
|
};
|
|
25588
25528
|
createdBySignature?: string | null | undefined;
|
|
25589
25529
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25590
|
-
annotation?: Record<string,
|
|
25530
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25591
25531
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25592
25532
|
} | {
|
|
25593
25533
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25596,12 +25536,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25596
25536
|
createdAt: string;
|
|
25597
25537
|
createdBy: string;
|
|
25598
25538
|
createdByRole: string;
|
|
25599
|
-
declaration: Record<string,
|
|
25539
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25600
25540
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25601
25541
|
type: "UNASSIGN";
|
|
25602
25542
|
createdBySignature?: string | null | undefined;
|
|
25603
25543
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25604
|
-
annotation?: Record<string,
|
|
25544
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25605
25545
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25606
25546
|
} | {
|
|
25607
25547
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25610,12 +25550,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25610
25550
|
createdAt: string;
|
|
25611
25551
|
createdBy: string;
|
|
25612
25552
|
createdByRole: string;
|
|
25613
|
-
declaration: Record<string,
|
|
25553
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25614
25554
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25615
25555
|
type: "PRINT_CERTIFICATE";
|
|
25616
25556
|
createdBySignature?: string | null | undefined;
|
|
25617
25557
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25618
|
-
annotation?: Record<string,
|
|
25558
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25619
25559
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25620
25560
|
content?: {
|
|
25621
25561
|
templateId?: string | undefined;
|
|
@@ -25627,12 +25567,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25627
25567
|
createdAt: string;
|
|
25628
25568
|
createdBy: string;
|
|
25629
25569
|
createdByRole: string;
|
|
25630
|
-
declaration: Record<string,
|
|
25570
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25631
25571
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25632
25572
|
type: "READ";
|
|
25633
25573
|
createdBySignature?: string | null | undefined;
|
|
25634
25574
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25635
|
-
annotation?: Record<string,
|
|
25575
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25636
25576
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25637
25577
|
} | {
|
|
25638
25578
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25641,13 +25581,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25641
25581
|
createdAt: string;
|
|
25642
25582
|
createdBy: string;
|
|
25643
25583
|
createdByRole: string;
|
|
25644
|
-
declaration: Record<string,
|
|
25584
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25645
25585
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25646
25586
|
type: "CUSTOM";
|
|
25647
25587
|
customActionType: string;
|
|
25648
25588
|
createdBySignature?: string | null | undefined;
|
|
25649
25589
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25650
|
-
annotation?: Record<string,
|
|
25590
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25651
25591
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25652
25592
|
} | {
|
|
25653
25593
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25680,12 +25620,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25680
25620
|
createdAt: string;
|
|
25681
25621
|
createdBy: string;
|
|
25682
25622
|
createdByRole: string;
|
|
25683
|
-
declaration: Record<string,
|
|
25623
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25684
25624
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25685
25625
|
type: "CREATE";
|
|
25686
25626
|
createdBySignature?: string | null | undefined;
|
|
25687
25627
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25688
|
-
annotation?: Record<string,
|
|
25628
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25689
25629
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25690
25630
|
} | {
|
|
25691
25631
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25694,12 +25634,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25694
25634
|
createdAt: string;
|
|
25695
25635
|
createdBy: string;
|
|
25696
25636
|
createdByRole: string;
|
|
25697
|
-
declaration: Record<string,
|
|
25637
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25698
25638
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25699
25639
|
type: "VALIDATE";
|
|
25700
25640
|
createdBySignature?: string | null | undefined;
|
|
25701
25641
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25702
|
-
annotation?: Record<string,
|
|
25642
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25703
25643
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25704
25644
|
} | {
|
|
25705
25645
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25708,7 +25648,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25708
25648
|
createdAt: string;
|
|
25709
25649
|
createdBy: string;
|
|
25710
25650
|
createdByRole: string;
|
|
25711
|
-
declaration: Record<string,
|
|
25651
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25712
25652
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25713
25653
|
type: "REJECT";
|
|
25714
25654
|
content: {
|
|
@@ -25716,7 +25656,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25716
25656
|
};
|
|
25717
25657
|
createdBySignature?: string | null | undefined;
|
|
25718
25658
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25719
|
-
annotation?: Record<string,
|
|
25659
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25720
25660
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25721
25661
|
} | {
|
|
25722
25662
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25725,7 +25665,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25725
25665
|
createdAt: string;
|
|
25726
25666
|
createdBy: string;
|
|
25727
25667
|
createdByRole: string;
|
|
25728
|
-
declaration: Record<string,
|
|
25668
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25729
25669
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25730
25670
|
type: "DUPLICATE_DETECTED";
|
|
25731
25671
|
content: {
|
|
@@ -25736,7 +25676,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25736
25676
|
};
|
|
25737
25677
|
createdBySignature?: string | null | undefined;
|
|
25738
25678
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25739
|
-
annotation?: Record<string,
|
|
25679
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25740
25680
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25741
25681
|
} | {
|
|
25742
25682
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25745,12 +25685,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25745
25685
|
createdAt: string;
|
|
25746
25686
|
createdBy: string;
|
|
25747
25687
|
createdByRole: string;
|
|
25748
|
-
declaration: Record<string,
|
|
25688
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25749
25689
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25750
25690
|
type: "MARK_AS_NOT_DUPLICATE";
|
|
25751
25691
|
createdBySignature?: string | null | undefined;
|
|
25752
25692
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25753
|
-
annotation?: Record<string,
|
|
25693
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25754
25694
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25755
25695
|
} | {
|
|
25756
25696
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25759,12 +25699,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25759
25699
|
createdAt: string;
|
|
25760
25700
|
createdBy: string;
|
|
25761
25701
|
createdByRole: string;
|
|
25762
|
-
declaration: Record<string,
|
|
25702
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25763
25703
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25764
25704
|
type: "MARK_AS_DUPLICATE";
|
|
25765
25705
|
createdBySignature?: string | null | undefined;
|
|
25766
25706
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25767
|
-
annotation?: Record<string,
|
|
25707
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25768
25708
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25769
25709
|
content?: {
|
|
25770
25710
|
duplicateOf: string & import("zod").$brand<"UUID">;
|
|
@@ -25776,7 +25716,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25776
25716
|
createdAt: string;
|
|
25777
25717
|
createdBy: string;
|
|
25778
25718
|
createdByRole: string;
|
|
25779
|
-
declaration: Record<string,
|
|
25719
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25780
25720
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25781
25721
|
type: "ARCHIVE";
|
|
25782
25722
|
content: {
|
|
@@ -25784,7 +25724,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25784
25724
|
};
|
|
25785
25725
|
createdBySignature?: string | null | undefined;
|
|
25786
25726
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25787
|
-
annotation?: Record<string,
|
|
25727
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25788
25728
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25789
25729
|
} | {
|
|
25790
25730
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25793,12 +25733,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25793
25733
|
createdAt: string;
|
|
25794
25734
|
createdBy: string;
|
|
25795
25735
|
createdByRole: string;
|
|
25796
|
-
declaration: Record<string,
|
|
25736
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25797
25737
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25798
25738
|
type: "NOTIFY";
|
|
25799
25739
|
createdBySignature?: string | null | undefined;
|
|
25800
25740
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25801
|
-
annotation?: Record<string,
|
|
25741
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25802
25742
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25803
25743
|
} | {
|
|
25804
25744
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25807,12 +25747,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25807
25747
|
createdAt: string;
|
|
25808
25748
|
createdBy: string;
|
|
25809
25749
|
createdByRole: string;
|
|
25810
|
-
declaration: Record<string,
|
|
25750
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25811
25751
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25812
25752
|
type: "REGISTER";
|
|
25813
25753
|
createdBySignature?: string | null | undefined;
|
|
25814
25754
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25815
|
-
annotation?: Record<string,
|
|
25755
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25816
25756
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25817
25757
|
registrationNumber?: string | undefined;
|
|
25818
25758
|
} | {
|
|
@@ -25822,12 +25762,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25822
25762
|
createdAt: string;
|
|
25823
25763
|
createdBy: string;
|
|
25824
25764
|
createdByRole: string;
|
|
25825
|
-
declaration: Record<string,
|
|
25765
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25826
25766
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25827
25767
|
type: "DECLARE";
|
|
25828
25768
|
createdBySignature?: string | null | undefined;
|
|
25829
25769
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25830
|
-
annotation?: Record<string,
|
|
25770
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25831
25771
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25832
25772
|
} | {
|
|
25833
25773
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25836,13 +25776,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25836
25776
|
createdAt: string;
|
|
25837
25777
|
createdBy: string;
|
|
25838
25778
|
createdByRole: string;
|
|
25839
|
-
declaration: Record<string,
|
|
25779
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25840
25780
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25841
25781
|
type: "ASSIGN";
|
|
25842
25782
|
assignedTo: string;
|
|
25843
25783
|
createdBySignature?: string | null | undefined;
|
|
25844
25784
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25845
|
-
annotation?: Record<string,
|
|
25785
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25846
25786
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25847
25787
|
} | {
|
|
25848
25788
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25851,12 +25791,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25851
25791
|
createdAt: string;
|
|
25852
25792
|
createdBy: string;
|
|
25853
25793
|
createdByRole: string;
|
|
25854
|
-
declaration: Record<string,
|
|
25794
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25855
25795
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25856
25796
|
type: "REQUEST_CORRECTION";
|
|
25857
25797
|
createdBySignature?: string | null | undefined;
|
|
25858
25798
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25859
|
-
annotation?: Record<string,
|
|
25799
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25860
25800
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25861
25801
|
} | {
|
|
25862
25802
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25865,13 +25805,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25865
25805
|
createdAt: string;
|
|
25866
25806
|
createdBy: string;
|
|
25867
25807
|
createdByRole: string;
|
|
25868
|
-
declaration: Record<string,
|
|
25808
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25869
25809
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25870
25810
|
type: "APPROVE_CORRECTION";
|
|
25871
25811
|
requestId: string;
|
|
25872
25812
|
createdBySignature?: string | null | undefined;
|
|
25873
25813
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25874
|
-
annotation?: Record<string,
|
|
25814
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25875
25815
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25876
25816
|
} | {
|
|
25877
25817
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25880,7 +25820,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25880
25820
|
createdAt: string;
|
|
25881
25821
|
createdBy: string;
|
|
25882
25822
|
createdByRole: string;
|
|
25883
|
-
declaration: Record<string,
|
|
25823
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25884
25824
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25885
25825
|
type: "REJECT_CORRECTION";
|
|
25886
25826
|
requestId: string;
|
|
@@ -25889,7 +25829,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25889
25829
|
};
|
|
25890
25830
|
createdBySignature?: string | null | undefined;
|
|
25891
25831
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25892
|
-
annotation?: Record<string,
|
|
25832
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25893
25833
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25894
25834
|
} | {
|
|
25895
25835
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25898,12 +25838,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25898
25838
|
createdAt: string;
|
|
25899
25839
|
createdBy: string;
|
|
25900
25840
|
createdByRole: string;
|
|
25901
|
-
declaration: Record<string,
|
|
25841
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25902
25842
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25903
25843
|
type: "UNASSIGN";
|
|
25904
25844
|
createdBySignature?: string | null | undefined;
|
|
25905
25845
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25906
|
-
annotation?: Record<string,
|
|
25846
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25907
25847
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25908
25848
|
} | {
|
|
25909
25849
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25912,12 +25852,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25912
25852
|
createdAt: string;
|
|
25913
25853
|
createdBy: string;
|
|
25914
25854
|
createdByRole: string;
|
|
25915
|
-
declaration: Record<string,
|
|
25855
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25916
25856
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25917
25857
|
type: "PRINT_CERTIFICATE";
|
|
25918
25858
|
createdBySignature?: string | null | undefined;
|
|
25919
25859
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25920
|
-
annotation?: Record<string,
|
|
25860
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25921
25861
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25922
25862
|
content?: {
|
|
25923
25863
|
templateId?: string | undefined;
|
|
@@ -25929,12 +25869,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25929
25869
|
createdAt: string;
|
|
25930
25870
|
createdBy: string;
|
|
25931
25871
|
createdByRole: string;
|
|
25932
|
-
declaration: Record<string,
|
|
25872
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25933
25873
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25934
25874
|
type: "READ";
|
|
25935
25875
|
createdBySignature?: string | null | undefined;
|
|
25936
25876
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25937
|
-
annotation?: Record<string,
|
|
25877
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25938
25878
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25939
25879
|
} | {
|
|
25940
25880
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25943,13 +25883,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25943
25883
|
createdAt: string;
|
|
25944
25884
|
createdBy: string;
|
|
25945
25885
|
createdByRole: string;
|
|
25946
|
-
declaration: Record<string,
|
|
25886
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25947
25887
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25948
25888
|
type: "CUSTOM";
|
|
25949
25889
|
customActionType: string;
|
|
25950
25890
|
createdBySignature?: string | null | undefined;
|
|
25951
25891
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25952
|
-
annotation?: Record<string,
|
|
25892
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25953
25893
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25954
25894
|
} | {
|
|
25955
25895
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25984,12 +25924,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25984
25924
|
createdAt: string;
|
|
25985
25925
|
createdBy: string;
|
|
25986
25926
|
createdByRole: string;
|
|
25987
|
-
declaration: Record<string,
|
|
25927
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
25988
25928
|
status: "Requested" | "Accepted" | "Rejected";
|
|
25989
25929
|
type: "CREATE";
|
|
25990
25930
|
createdBySignature?: string | null | undefined;
|
|
25991
25931
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25992
|
-
annotation?: Record<string,
|
|
25932
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
25993
25933
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
25994
25934
|
} | {
|
|
25995
25935
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -25998,12 +25938,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
25998
25938
|
createdAt: string;
|
|
25999
25939
|
createdBy: string;
|
|
26000
25940
|
createdByRole: string;
|
|
26001
|
-
declaration: Record<string,
|
|
25941
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26002
25942
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26003
25943
|
type: "VALIDATE";
|
|
26004
25944
|
createdBySignature?: string | null | undefined;
|
|
26005
25945
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26006
|
-
annotation?: Record<string,
|
|
25946
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26007
25947
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26008
25948
|
} | {
|
|
26009
25949
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26012,7 +25952,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26012
25952
|
createdAt: string;
|
|
26013
25953
|
createdBy: string;
|
|
26014
25954
|
createdByRole: string;
|
|
26015
|
-
declaration: Record<string,
|
|
25955
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26016
25956
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26017
25957
|
type: "REJECT";
|
|
26018
25958
|
content: {
|
|
@@ -26020,7 +25960,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26020
25960
|
};
|
|
26021
25961
|
createdBySignature?: string | null | undefined;
|
|
26022
25962
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26023
|
-
annotation?: Record<string,
|
|
25963
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26024
25964
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26025
25965
|
} | {
|
|
26026
25966
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26029,7 +25969,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26029
25969
|
createdAt: string;
|
|
26030
25970
|
createdBy: string;
|
|
26031
25971
|
createdByRole: string;
|
|
26032
|
-
declaration: Record<string,
|
|
25972
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26033
25973
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26034
25974
|
type: "DUPLICATE_DETECTED";
|
|
26035
25975
|
content: {
|
|
@@ -26040,7 +25980,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26040
25980
|
};
|
|
26041
25981
|
createdBySignature?: string | null | undefined;
|
|
26042
25982
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26043
|
-
annotation?: Record<string,
|
|
25983
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26044
25984
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26045
25985
|
} | {
|
|
26046
25986
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26049,12 +25989,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26049
25989
|
createdAt: string;
|
|
26050
25990
|
createdBy: string;
|
|
26051
25991
|
createdByRole: string;
|
|
26052
|
-
declaration: Record<string,
|
|
25992
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26053
25993
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26054
25994
|
type: "MARK_AS_NOT_DUPLICATE";
|
|
26055
25995
|
createdBySignature?: string | null | undefined;
|
|
26056
25996
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26057
|
-
annotation?: Record<string,
|
|
25997
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26058
25998
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26059
25999
|
} | {
|
|
26060
26000
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26063,12 +26003,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26063
26003
|
createdAt: string;
|
|
26064
26004
|
createdBy: string;
|
|
26065
26005
|
createdByRole: string;
|
|
26066
|
-
declaration: Record<string,
|
|
26006
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26067
26007
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26068
26008
|
type: "MARK_AS_DUPLICATE";
|
|
26069
26009
|
createdBySignature?: string | null | undefined;
|
|
26070
26010
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26071
|
-
annotation?: Record<string,
|
|
26011
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26072
26012
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26073
26013
|
content?: {
|
|
26074
26014
|
duplicateOf: string & import("zod").$brand<"UUID">;
|
|
@@ -26080,7 +26020,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26080
26020
|
createdAt: string;
|
|
26081
26021
|
createdBy: string;
|
|
26082
26022
|
createdByRole: string;
|
|
26083
|
-
declaration: Record<string,
|
|
26023
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26084
26024
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26085
26025
|
type: "ARCHIVE";
|
|
26086
26026
|
content: {
|
|
@@ -26088,7 +26028,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26088
26028
|
};
|
|
26089
26029
|
createdBySignature?: string | null | undefined;
|
|
26090
26030
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26091
|
-
annotation?: Record<string,
|
|
26031
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26092
26032
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26093
26033
|
} | {
|
|
26094
26034
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26097,12 +26037,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26097
26037
|
createdAt: string;
|
|
26098
26038
|
createdBy: string;
|
|
26099
26039
|
createdByRole: string;
|
|
26100
|
-
declaration: Record<string,
|
|
26040
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26101
26041
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26102
26042
|
type: "NOTIFY";
|
|
26103
26043
|
createdBySignature?: string | null | undefined;
|
|
26104
26044
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26105
|
-
annotation?: Record<string,
|
|
26045
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26106
26046
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26107
26047
|
} | {
|
|
26108
26048
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26111,12 +26051,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26111
26051
|
createdAt: string;
|
|
26112
26052
|
createdBy: string;
|
|
26113
26053
|
createdByRole: string;
|
|
26114
|
-
declaration: Record<string,
|
|
26054
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26115
26055
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26116
26056
|
type: "REGISTER";
|
|
26117
26057
|
createdBySignature?: string | null | undefined;
|
|
26118
26058
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26119
|
-
annotation?: Record<string,
|
|
26059
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26120
26060
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26121
26061
|
registrationNumber?: string | undefined;
|
|
26122
26062
|
} | {
|
|
@@ -26126,12 +26066,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26126
26066
|
createdAt: string;
|
|
26127
26067
|
createdBy: string;
|
|
26128
26068
|
createdByRole: string;
|
|
26129
|
-
declaration: Record<string,
|
|
26069
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26130
26070
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26131
26071
|
type: "DECLARE";
|
|
26132
26072
|
createdBySignature?: string | null | undefined;
|
|
26133
26073
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26134
|
-
annotation?: Record<string,
|
|
26074
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26135
26075
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26136
26076
|
} | {
|
|
26137
26077
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26140,13 +26080,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26140
26080
|
createdAt: string;
|
|
26141
26081
|
createdBy: string;
|
|
26142
26082
|
createdByRole: string;
|
|
26143
|
-
declaration: Record<string,
|
|
26083
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26144
26084
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26145
26085
|
type: "ASSIGN";
|
|
26146
26086
|
assignedTo: string;
|
|
26147
26087
|
createdBySignature?: string | null | undefined;
|
|
26148
26088
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26149
|
-
annotation?: Record<string,
|
|
26089
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26150
26090
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26151
26091
|
} | {
|
|
26152
26092
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26155,12 +26095,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26155
26095
|
createdAt: string;
|
|
26156
26096
|
createdBy: string;
|
|
26157
26097
|
createdByRole: string;
|
|
26158
|
-
declaration: Record<string,
|
|
26098
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26159
26099
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26160
26100
|
type: "REQUEST_CORRECTION";
|
|
26161
26101
|
createdBySignature?: string | null | undefined;
|
|
26162
26102
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26163
|
-
annotation?: Record<string,
|
|
26103
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26164
26104
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26165
26105
|
} | {
|
|
26166
26106
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26169,13 +26109,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26169
26109
|
createdAt: string;
|
|
26170
26110
|
createdBy: string;
|
|
26171
26111
|
createdByRole: string;
|
|
26172
|
-
declaration: Record<string,
|
|
26112
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26173
26113
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26174
26114
|
type: "APPROVE_CORRECTION";
|
|
26175
26115
|
requestId: string;
|
|
26176
26116
|
createdBySignature?: string | null | undefined;
|
|
26177
26117
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26178
|
-
annotation?: Record<string,
|
|
26118
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26179
26119
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26180
26120
|
} | {
|
|
26181
26121
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26184,7 +26124,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26184
26124
|
createdAt: string;
|
|
26185
26125
|
createdBy: string;
|
|
26186
26126
|
createdByRole: string;
|
|
26187
|
-
declaration: Record<string,
|
|
26127
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26188
26128
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26189
26129
|
type: "REJECT_CORRECTION";
|
|
26190
26130
|
requestId: string;
|
|
@@ -26193,7 +26133,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26193
26133
|
};
|
|
26194
26134
|
createdBySignature?: string | null | undefined;
|
|
26195
26135
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26196
|
-
annotation?: Record<string,
|
|
26136
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26197
26137
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26198
26138
|
} | {
|
|
26199
26139
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26202,12 +26142,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26202
26142
|
createdAt: string;
|
|
26203
26143
|
createdBy: string;
|
|
26204
26144
|
createdByRole: string;
|
|
26205
|
-
declaration: Record<string,
|
|
26145
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26206
26146
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26207
26147
|
type: "UNASSIGN";
|
|
26208
26148
|
createdBySignature?: string | null | undefined;
|
|
26209
26149
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26210
|
-
annotation?: Record<string,
|
|
26150
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26211
26151
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26212
26152
|
} | {
|
|
26213
26153
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26216,12 +26156,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26216
26156
|
createdAt: string;
|
|
26217
26157
|
createdBy: string;
|
|
26218
26158
|
createdByRole: string;
|
|
26219
|
-
declaration: Record<string,
|
|
26159
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26220
26160
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26221
26161
|
type: "PRINT_CERTIFICATE";
|
|
26222
26162
|
createdBySignature?: string | null | undefined;
|
|
26223
26163
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26224
|
-
annotation?: Record<string,
|
|
26164
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26225
26165
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26226
26166
|
content?: {
|
|
26227
26167
|
templateId?: string | undefined;
|
|
@@ -26233,12 +26173,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26233
26173
|
createdAt: string;
|
|
26234
26174
|
createdBy: string;
|
|
26235
26175
|
createdByRole: string;
|
|
26236
|
-
declaration: Record<string,
|
|
26176
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26237
26177
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26238
26178
|
type: "READ";
|
|
26239
26179
|
createdBySignature?: string | null | undefined;
|
|
26240
26180
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26241
|
-
annotation?: Record<string,
|
|
26181
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26242
26182
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26243
26183
|
} | {
|
|
26244
26184
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26247,13 +26187,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26247
26187
|
createdAt: string;
|
|
26248
26188
|
createdBy: string;
|
|
26249
26189
|
createdByRole: string;
|
|
26250
|
-
declaration: Record<string,
|
|
26190
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26251
26191
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26252
26192
|
type: "CUSTOM";
|
|
26253
26193
|
customActionType: string;
|
|
26254
26194
|
createdBySignature?: string | null | undefined;
|
|
26255
26195
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26256
|
-
annotation?: Record<string,
|
|
26196
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26257
26197
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26258
26198
|
} | {
|
|
26259
26199
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26319,9 +26259,9 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26319
26259
|
createdAt: string;
|
|
26320
26260
|
createdBy: string;
|
|
26321
26261
|
createdByRole: string;
|
|
26322
|
-
declaration: Record<string,
|
|
26262
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26323
26263
|
createdBySignature?: string | null | undefined;
|
|
26324
|
-
annotation?: Record<string,
|
|
26264
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26325
26265
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26326
26266
|
};
|
|
26327
26267
|
}[];
|
|
@@ -26352,9 +26292,9 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26352
26292
|
createdAt: string;
|
|
26353
26293
|
createdBy: string;
|
|
26354
26294
|
createdByRole: string;
|
|
26355
|
-
declaration: Record<string,
|
|
26295
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26356
26296
|
createdBySignature?: string | null | undefined;
|
|
26357
|
-
annotation?: Record<string,
|
|
26297
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26358
26298
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26359
26299
|
};
|
|
26360
26300
|
};
|
|
@@ -26475,12 +26415,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26475
26415
|
createdAt: string;
|
|
26476
26416
|
createdBy: string;
|
|
26477
26417
|
createdByRole: string;
|
|
26478
|
-
declaration: Record<string,
|
|
26418
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26479
26419
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26480
26420
|
type: "CREATE";
|
|
26481
26421
|
createdBySignature?: string | null | undefined;
|
|
26482
26422
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26483
|
-
annotation?: Record<string,
|
|
26423
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26484
26424
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26485
26425
|
} | {
|
|
26486
26426
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26489,12 +26429,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26489
26429
|
createdAt: string;
|
|
26490
26430
|
createdBy: string;
|
|
26491
26431
|
createdByRole: string;
|
|
26492
|
-
declaration: Record<string,
|
|
26432
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26493
26433
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26494
26434
|
type: "VALIDATE";
|
|
26495
26435
|
createdBySignature?: string | null | undefined;
|
|
26496
26436
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26497
|
-
annotation?: Record<string,
|
|
26437
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26498
26438
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26499
26439
|
} | {
|
|
26500
26440
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26503,7 +26443,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26503
26443
|
createdAt: string;
|
|
26504
26444
|
createdBy: string;
|
|
26505
26445
|
createdByRole: string;
|
|
26506
|
-
declaration: Record<string,
|
|
26446
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26507
26447
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26508
26448
|
type: "REJECT";
|
|
26509
26449
|
content: {
|
|
@@ -26511,7 +26451,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26511
26451
|
};
|
|
26512
26452
|
createdBySignature?: string | null | undefined;
|
|
26513
26453
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26514
|
-
annotation?: Record<string,
|
|
26454
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26515
26455
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26516
26456
|
} | {
|
|
26517
26457
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26520,7 +26460,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26520
26460
|
createdAt: string;
|
|
26521
26461
|
createdBy: string;
|
|
26522
26462
|
createdByRole: string;
|
|
26523
|
-
declaration: Record<string,
|
|
26463
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26524
26464
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26525
26465
|
type: "DUPLICATE_DETECTED";
|
|
26526
26466
|
content: {
|
|
@@ -26531,7 +26471,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26531
26471
|
};
|
|
26532
26472
|
createdBySignature?: string | null | undefined;
|
|
26533
26473
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26534
|
-
annotation?: Record<string,
|
|
26474
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26535
26475
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26536
26476
|
} | {
|
|
26537
26477
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26540,12 +26480,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26540
26480
|
createdAt: string;
|
|
26541
26481
|
createdBy: string;
|
|
26542
26482
|
createdByRole: string;
|
|
26543
|
-
declaration: Record<string,
|
|
26483
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26544
26484
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26545
26485
|
type: "MARK_AS_NOT_DUPLICATE";
|
|
26546
26486
|
createdBySignature?: string | null | undefined;
|
|
26547
26487
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26548
|
-
annotation?: Record<string,
|
|
26488
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26549
26489
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26550
26490
|
} | {
|
|
26551
26491
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26554,12 +26494,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26554
26494
|
createdAt: string;
|
|
26555
26495
|
createdBy: string;
|
|
26556
26496
|
createdByRole: string;
|
|
26557
|
-
declaration: Record<string,
|
|
26497
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26558
26498
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26559
26499
|
type: "MARK_AS_DUPLICATE";
|
|
26560
26500
|
createdBySignature?: string | null | undefined;
|
|
26561
26501
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26562
|
-
annotation?: Record<string,
|
|
26502
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26563
26503
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26564
26504
|
content?: {
|
|
26565
26505
|
duplicateOf: string & import("zod").$brand<"UUID">;
|
|
@@ -26571,7 +26511,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26571
26511
|
createdAt: string;
|
|
26572
26512
|
createdBy: string;
|
|
26573
26513
|
createdByRole: string;
|
|
26574
|
-
declaration: Record<string,
|
|
26514
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26575
26515
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26576
26516
|
type: "ARCHIVE";
|
|
26577
26517
|
content: {
|
|
@@ -26579,7 +26519,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26579
26519
|
};
|
|
26580
26520
|
createdBySignature?: string | null | undefined;
|
|
26581
26521
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26582
|
-
annotation?: Record<string,
|
|
26522
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26583
26523
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26584
26524
|
} | {
|
|
26585
26525
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26588,12 +26528,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26588
26528
|
createdAt: string;
|
|
26589
26529
|
createdBy: string;
|
|
26590
26530
|
createdByRole: string;
|
|
26591
|
-
declaration: Record<string,
|
|
26531
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26592
26532
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26593
26533
|
type: "NOTIFY";
|
|
26594
26534
|
createdBySignature?: string | null | undefined;
|
|
26595
26535
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26596
|
-
annotation?: Record<string,
|
|
26536
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26597
26537
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26598
26538
|
} | {
|
|
26599
26539
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26602,12 +26542,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26602
26542
|
createdAt: string;
|
|
26603
26543
|
createdBy: string;
|
|
26604
26544
|
createdByRole: string;
|
|
26605
|
-
declaration: Record<string,
|
|
26545
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26606
26546
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26607
26547
|
type: "REGISTER";
|
|
26608
26548
|
createdBySignature?: string | null | undefined;
|
|
26609
26549
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26610
|
-
annotation?: Record<string,
|
|
26550
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26611
26551
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26612
26552
|
registrationNumber?: string | undefined;
|
|
26613
26553
|
} | {
|
|
@@ -26617,12 +26557,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26617
26557
|
createdAt: string;
|
|
26618
26558
|
createdBy: string;
|
|
26619
26559
|
createdByRole: string;
|
|
26620
|
-
declaration: Record<string,
|
|
26560
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26621
26561
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26622
26562
|
type: "DECLARE";
|
|
26623
26563
|
createdBySignature?: string | null | undefined;
|
|
26624
26564
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26625
|
-
annotation?: Record<string,
|
|
26565
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26626
26566
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26627
26567
|
} | {
|
|
26628
26568
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26631,13 +26571,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26631
26571
|
createdAt: string;
|
|
26632
26572
|
createdBy: string;
|
|
26633
26573
|
createdByRole: string;
|
|
26634
|
-
declaration: Record<string,
|
|
26574
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26635
26575
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26636
26576
|
type: "ASSIGN";
|
|
26637
26577
|
assignedTo: string;
|
|
26638
26578
|
createdBySignature?: string | null | undefined;
|
|
26639
26579
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26640
|
-
annotation?: Record<string,
|
|
26580
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26641
26581
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26642
26582
|
} | {
|
|
26643
26583
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26646,12 +26586,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26646
26586
|
createdAt: string;
|
|
26647
26587
|
createdBy: string;
|
|
26648
26588
|
createdByRole: string;
|
|
26649
|
-
declaration: Record<string,
|
|
26589
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26650
26590
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26651
26591
|
type: "REQUEST_CORRECTION";
|
|
26652
26592
|
createdBySignature?: string | null | undefined;
|
|
26653
26593
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26654
|
-
annotation?: Record<string,
|
|
26594
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26655
26595
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26656
26596
|
} | {
|
|
26657
26597
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26660,13 +26600,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26660
26600
|
createdAt: string;
|
|
26661
26601
|
createdBy: string;
|
|
26662
26602
|
createdByRole: string;
|
|
26663
|
-
declaration: Record<string,
|
|
26603
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26664
26604
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26665
26605
|
type: "APPROVE_CORRECTION";
|
|
26666
26606
|
requestId: string;
|
|
26667
26607
|
createdBySignature?: string | null | undefined;
|
|
26668
26608
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26669
|
-
annotation?: Record<string,
|
|
26609
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26670
26610
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26671
26611
|
} | {
|
|
26672
26612
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26675,7 +26615,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26675
26615
|
createdAt: string;
|
|
26676
26616
|
createdBy: string;
|
|
26677
26617
|
createdByRole: string;
|
|
26678
|
-
declaration: Record<string,
|
|
26618
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26679
26619
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26680
26620
|
type: "REJECT_CORRECTION";
|
|
26681
26621
|
requestId: string;
|
|
@@ -26684,7 +26624,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26684
26624
|
};
|
|
26685
26625
|
createdBySignature?: string | null | undefined;
|
|
26686
26626
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26687
|
-
annotation?: Record<string,
|
|
26627
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26688
26628
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26689
26629
|
} | {
|
|
26690
26630
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26693,12 +26633,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26693
26633
|
createdAt: string;
|
|
26694
26634
|
createdBy: string;
|
|
26695
26635
|
createdByRole: string;
|
|
26696
|
-
declaration: Record<string,
|
|
26636
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26697
26637
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26698
26638
|
type: "UNASSIGN";
|
|
26699
26639
|
createdBySignature?: string | null | undefined;
|
|
26700
26640
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26701
|
-
annotation?: Record<string,
|
|
26641
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26702
26642
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26703
26643
|
} | {
|
|
26704
26644
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26707,12 +26647,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26707
26647
|
createdAt: string;
|
|
26708
26648
|
createdBy: string;
|
|
26709
26649
|
createdByRole: string;
|
|
26710
|
-
declaration: Record<string,
|
|
26650
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26711
26651
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26712
26652
|
type: "PRINT_CERTIFICATE";
|
|
26713
26653
|
createdBySignature?: string | null | undefined;
|
|
26714
26654
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26715
|
-
annotation?: Record<string,
|
|
26655
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26716
26656
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26717
26657
|
content?: {
|
|
26718
26658
|
templateId?: string | undefined;
|
|
@@ -26724,12 +26664,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26724
26664
|
createdAt: string;
|
|
26725
26665
|
createdBy: string;
|
|
26726
26666
|
createdByRole: string;
|
|
26727
|
-
declaration: Record<string,
|
|
26667
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26728
26668
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26729
26669
|
type: "READ";
|
|
26730
26670
|
createdBySignature?: string | null | undefined;
|
|
26731
26671
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26732
|
-
annotation?: Record<string,
|
|
26672
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26733
26673
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26734
26674
|
} | {
|
|
26735
26675
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -26738,13 +26678,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
26738
26678
|
createdAt: string;
|
|
26739
26679
|
createdBy: string;
|
|
26740
26680
|
createdByRole: string;
|
|
26741
|
-
declaration: Record<string,
|
|
26681
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
26742
26682
|
status: "Requested" | "Accepted" | "Rejected";
|
|
26743
26683
|
type: "CUSTOM";
|
|
26744
26684
|
customActionType: string;
|
|
26745
26685
|
createdBySignature?: string | null | undefined;
|
|
26746
26686
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26747
|
-
annotation?: Record<string,
|
|
26687
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
26748
26688
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
26749
26689
|
} | {
|
|
26750
26690
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27052,12 +26992,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27052
26992
|
createdAt: string;
|
|
27053
26993
|
createdBy: string;
|
|
27054
26994
|
createdByRole: string;
|
|
27055
|
-
declaration: Record<string,
|
|
26995
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27056
26996
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27057
26997
|
type: "CREATE";
|
|
27058
26998
|
createdBySignature?: string | null | undefined;
|
|
27059
26999
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27060
|
-
annotation?: Record<string,
|
|
27000
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27061
27001
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27062
27002
|
} | {
|
|
27063
27003
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27066,12 +27006,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27066
27006
|
createdAt: string;
|
|
27067
27007
|
createdBy: string;
|
|
27068
27008
|
createdByRole: string;
|
|
27069
|
-
declaration: Record<string,
|
|
27009
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27070
27010
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27071
27011
|
type: "VALIDATE";
|
|
27072
27012
|
createdBySignature?: string | null | undefined;
|
|
27073
27013
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27074
|
-
annotation?: Record<string,
|
|
27014
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27075
27015
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27076
27016
|
} | {
|
|
27077
27017
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27080,7 +27020,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27080
27020
|
createdAt: string;
|
|
27081
27021
|
createdBy: string;
|
|
27082
27022
|
createdByRole: string;
|
|
27083
|
-
declaration: Record<string,
|
|
27023
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27084
27024
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27085
27025
|
type: "REJECT";
|
|
27086
27026
|
content: {
|
|
@@ -27088,7 +27028,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27088
27028
|
};
|
|
27089
27029
|
createdBySignature?: string | null | undefined;
|
|
27090
27030
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27091
|
-
annotation?: Record<string,
|
|
27031
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27092
27032
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27093
27033
|
} | {
|
|
27094
27034
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27097,7 +27037,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27097
27037
|
createdAt: string;
|
|
27098
27038
|
createdBy: string;
|
|
27099
27039
|
createdByRole: string;
|
|
27100
|
-
declaration: Record<string,
|
|
27040
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27101
27041
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27102
27042
|
type: "DUPLICATE_DETECTED";
|
|
27103
27043
|
content: {
|
|
@@ -27108,7 +27048,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27108
27048
|
};
|
|
27109
27049
|
createdBySignature?: string | null | undefined;
|
|
27110
27050
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27111
|
-
annotation?: Record<string,
|
|
27051
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27112
27052
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27113
27053
|
} | {
|
|
27114
27054
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27117,12 +27057,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27117
27057
|
createdAt: string;
|
|
27118
27058
|
createdBy: string;
|
|
27119
27059
|
createdByRole: string;
|
|
27120
|
-
declaration: Record<string,
|
|
27060
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27121
27061
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27122
27062
|
type: "MARK_AS_NOT_DUPLICATE";
|
|
27123
27063
|
createdBySignature?: string | null | undefined;
|
|
27124
27064
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27125
|
-
annotation?: Record<string,
|
|
27065
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27126
27066
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27127
27067
|
} | {
|
|
27128
27068
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27131,12 +27071,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27131
27071
|
createdAt: string;
|
|
27132
27072
|
createdBy: string;
|
|
27133
27073
|
createdByRole: string;
|
|
27134
|
-
declaration: Record<string,
|
|
27074
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27135
27075
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27136
27076
|
type: "MARK_AS_DUPLICATE";
|
|
27137
27077
|
createdBySignature?: string | null | undefined;
|
|
27138
27078
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27139
|
-
annotation?: Record<string,
|
|
27079
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27140
27080
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27141
27081
|
content?: {
|
|
27142
27082
|
duplicateOf: string & import("zod").$brand<"UUID">;
|
|
@@ -27148,7 +27088,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27148
27088
|
createdAt: string;
|
|
27149
27089
|
createdBy: string;
|
|
27150
27090
|
createdByRole: string;
|
|
27151
|
-
declaration: Record<string,
|
|
27091
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27152
27092
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27153
27093
|
type: "ARCHIVE";
|
|
27154
27094
|
content: {
|
|
@@ -27156,7 +27096,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27156
27096
|
};
|
|
27157
27097
|
createdBySignature?: string | null | undefined;
|
|
27158
27098
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27159
|
-
annotation?: Record<string,
|
|
27099
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27160
27100
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27161
27101
|
} | {
|
|
27162
27102
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27165,12 +27105,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27165
27105
|
createdAt: string;
|
|
27166
27106
|
createdBy: string;
|
|
27167
27107
|
createdByRole: string;
|
|
27168
|
-
declaration: Record<string,
|
|
27108
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27169
27109
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27170
27110
|
type: "NOTIFY";
|
|
27171
27111
|
createdBySignature?: string | null | undefined;
|
|
27172
27112
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27173
|
-
annotation?: Record<string,
|
|
27113
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27174
27114
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27175
27115
|
} | {
|
|
27176
27116
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27179,12 +27119,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27179
27119
|
createdAt: string;
|
|
27180
27120
|
createdBy: string;
|
|
27181
27121
|
createdByRole: string;
|
|
27182
|
-
declaration: Record<string,
|
|
27122
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27183
27123
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27184
27124
|
type: "REGISTER";
|
|
27185
27125
|
createdBySignature?: string | null | undefined;
|
|
27186
27126
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27187
|
-
annotation?: Record<string,
|
|
27127
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27188
27128
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27189
27129
|
registrationNumber?: string | undefined;
|
|
27190
27130
|
} | {
|
|
@@ -27194,12 +27134,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27194
27134
|
createdAt: string;
|
|
27195
27135
|
createdBy: string;
|
|
27196
27136
|
createdByRole: string;
|
|
27197
|
-
declaration: Record<string,
|
|
27137
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27198
27138
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27199
27139
|
type: "DECLARE";
|
|
27200
27140
|
createdBySignature?: string | null | undefined;
|
|
27201
27141
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27202
|
-
annotation?: Record<string,
|
|
27142
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27203
27143
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27204
27144
|
} | {
|
|
27205
27145
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27208,13 +27148,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27208
27148
|
createdAt: string;
|
|
27209
27149
|
createdBy: string;
|
|
27210
27150
|
createdByRole: string;
|
|
27211
|
-
declaration: Record<string,
|
|
27151
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27212
27152
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27213
27153
|
type: "ASSIGN";
|
|
27214
27154
|
assignedTo: string;
|
|
27215
27155
|
createdBySignature?: string | null | undefined;
|
|
27216
27156
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27217
|
-
annotation?: Record<string,
|
|
27157
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27218
27158
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27219
27159
|
} | {
|
|
27220
27160
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27223,12 +27163,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27223
27163
|
createdAt: string;
|
|
27224
27164
|
createdBy: string;
|
|
27225
27165
|
createdByRole: string;
|
|
27226
|
-
declaration: Record<string,
|
|
27166
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27227
27167
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27228
27168
|
type: "REQUEST_CORRECTION";
|
|
27229
27169
|
createdBySignature?: string | null | undefined;
|
|
27230
27170
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27231
|
-
annotation?: Record<string,
|
|
27171
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27232
27172
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27233
27173
|
} | {
|
|
27234
27174
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27237,13 +27177,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27237
27177
|
createdAt: string;
|
|
27238
27178
|
createdBy: string;
|
|
27239
27179
|
createdByRole: string;
|
|
27240
|
-
declaration: Record<string,
|
|
27180
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27241
27181
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27242
27182
|
type: "APPROVE_CORRECTION";
|
|
27243
27183
|
requestId: string;
|
|
27244
27184
|
createdBySignature?: string | null | undefined;
|
|
27245
27185
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27246
|
-
annotation?: Record<string,
|
|
27186
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27247
27187
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27248
27188
|
} | {
|
|
27249
27189
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27252,7 +27192,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27252
27192
|
createdAt: string;
|
|
27253
27193
|
createdBy: string;
|
|
27254
27194
|
createdByRole: string;
|
|
27255
|
-
declaration: Record<string,
|
|
27195
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27256
27196
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27257
27197
|
type: "REJECT_CORRECTION";
|
|
27258
27198
|
requestId: string;
|
|
@@ -27261,7 +27201,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27261
27201
|
};
|
|
27262
27202
|
createdBySignature?: string | null | undefined;
|
|
27263
27203
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27264
|
-
annotation?: Record<string,
|
|
27204
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27265
27205
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27266
27206
|
} | {
|
|
27267
27207
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27270,12 +27210,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27270
27210
|
createdAt: string;
|
|
27271
27211
|
createdBy: string;
|
|
27272
27212
|
createdByRole: string;
|
|
27273
|
-
declaration: Record<string,
|
|
27213
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27274
27214
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27275
27215
|
type: "UNASSIGN";
|
|
27276
27216
|
createdBySignature?: string | null | undefined;
|
|
27277
27217
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27278
|
-
annotation?: Record<string,
|
|
27218
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27279
27219
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27280
27220
|
} | {
|
|
27281
27221
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27284,12 +27224,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27284
27224
|
createdAt: string;
|
|
27285
27225
|
createdBy: string;
|
|
27286
27226
|
createdByRole: string;
|
|
27287
|
-
declaration: Record<string,
|
|
27227
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27288
27228
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27289
27229
|
type: "PRINT_CERTIFICATE";
|
|
27290
27230
|
createdBySignature?: string | null | undefined;
|
|
27291
27231
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27292
|
-
annotation?: Record<string,
|
|
27232
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27293
27233
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27294
27234
|
content?: {
|
|
27295
27235
|
templateId?: string | undefined;
|
|
@@ -27301,12 +27241,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27301
27241
|
createdAt: string;
|
|
27302
27242
|
createdBy: string;
|
|
27303
27243
|
createdByRole: string;
|
|
27304
|
-
declaration: Record<string,
|
|
27244
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27305
27245
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27306
27246
|
type: "READ";
|
|
27307
27247
|
createdBySignature?: string | null | undefined;
|
|
27308
27248
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27309
|
-
annotation?: Record<string,
|
|
27249
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27310
27250
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27311
27251
|
} | {
|
|
27312
27252
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27315,13 +27255,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27315
27255
|
createdAt: string;
|
|
27316
27256
|
createdBy: string;
|
|
27317
27257
|
createdByRole: string;
|
|
27318
|
-
declaration: Record<string,
|
|
27258
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27319
27259
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27320
27260
|
type: "CUSTOM";
|
|
27321
27261
|
customActionType: string;
|
|
27322
27262
|
createdBySignature?: string | null | undefined;
|
|
27323
27263
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27324
|
-
annotation?: Record<string,
|
|
27264
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27325
27265
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27326
27266
|
} | {
|
|
27327
27267
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27404,12 +27344,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27404
27344
|
createdAt: string;
|
|
27405
27345
|
createdBy: string;
|
|
27406
27346
|
createdByRole: string;
|
|
27407
|
-
declaration: Record<string,
|
|
27347
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27408
27348
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27409
27349
|
type: "CREATE";
|
|
27410
27350
|
createdBySignature?: string | null | undefined;
|
|
27411
27351
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27412
|
-
annotation?: Record<string,
|
|
27352
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27413
27353
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27414
27354
|
} | {
|
|
27415
27355
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27418,12 +27358,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27418
27358
|
createdAt: string;
|
|
27419
27359
|
createdBy: string;
|
|
27420
27360
|
createdByRole: string;
|
|
27421
|
-
declaration: Record<string,
|
|
27361
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27422
27362
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27423
27363
|
type: "VALIDATE";
|
|
27424
27364
|
createdBySignature?: string | null | undefined;
|
|
27425
27365
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27426
|
-
annotation?: Record<string,
|
|
27366
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27427
27367
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27428
27368
|
} | {
|
|
27429
27369
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27432,7 +27372,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27432
27372
|
createdAt: string;
|
|
27433
27373
|
createdBy: string;
|
|
27434
27374
|
createdByRole: string;
|
|
27435
|
-
declaration: Record<string,
|
|
27375
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27436
27376
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27437
27377
|
type: "REJECT";
|
|
27438
27378
|
content: {
|
|
@@ -27440,7 +27380,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27440
27380
|
};
|
|
27441
27381
|
createdBySignature?: string | null | undefined;
|
|
27442
27382
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27443
|
-
annotation?: Record<string,
|
|
27383
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27444
27384
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27445
27385
|
} | {
|
|
27446
27386
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27449,7 +27389,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27449
27389
|
createdAt: string;
|
|
27450
27390
|
createdBy: string;
|
|
27451
27391
|
createdByRole: string;
|
|
27452
|
-
declaration: Record<string,
|
|
27392
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27453
27393
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27454
27394
|
type: "DUPLICATE_DETECTED";
|
|
27455
27395
|
content: {
|
|
@@ -27460,7 +27400,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27460
27400
|
};
|
|
27461
27401
|
createdBySignature?: string | null | undefined;
|
|
27462
27402
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27463
|
-
annotation?: Record<string,
|
|
27403
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27464
27404
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27465
27405
|
} | {
|
|
27466
27406
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27469,12 +27409,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27469
27409
|
createdAt: string;
|
|
27470
27410
|
createdBy: string;
|
|
27471
27411
|
createdByRole: string;
|
|
27472
|
-
declaration: Record<string,
|
|
27412
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27473
27413
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27474
27414
|
type: "MARK_AS_NOT_DUPLICATE";
|
|
27475
27415
|
createdBySignature?: string | null | undefined;
|
|
27476
27416
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27477
|
-
annotation?: Record<string,
|
|
27417
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27478
27418
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27479
27419
|
} | {
|
|
27480
27420
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27483,12 +27423,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27483
27423
|
createdAt: string;
|
|
27484
27424
|
createdBy: string;
|
|
27485
27425
|
createdByRole: string;
|
|
27486
|
-
declaration: Record<string,
|
|
27426
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27487
27427
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27488
27428
|
type: "MARK_AS_DUPLICATE";
|
|
27489
27429
|
createdBySignature?: string | null | undefined;
|
|
27490
27430
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27491
|
-
annotation?: Record<string,
|
|
27431
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27492
27432
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27493
27433
|
content?: {
|
|
27494
27434
|
duplicateOf: string & import("zod").$brand<"UUID">;
|
|
@@ -27500,7 +27440,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27500
27440
|
createdAt: string;
|
|
27501
27441
|
createdBy: string;
|
|
27502
27442
|
createdByRole: string;
|
|
27503
|
-
declaration: Record<string,
|
|
27443
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27504
27444
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27505
27445
|
type: "ARCHIVE";
|
|
27506
27446
|
content: {
|
|
@@ -27508,7 +27448,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27508
27448
|
};
|
|
27509
27449
|
createdBySignature?: string | null | undefined;
|
|
27510
27450
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27511
|
-
annotation?: Record<string,
|
|
27451
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27512
27452
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27513
27453
|
} | {
|
|
27514
27454
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27517,12 +27457,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27517
27457
|
createdAt: string;
|
|
27518
27458
|
createdBy: string;
|
|
27519
27459
|
createdByRole: string;
|
|
27520
|
-
declaration: Record<string,
|
|
27460
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27521
27461
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27522
27462
|
type: "NOTIFY";
|
|
27523
27463
|
createdBySignature?: string | null | undefined;
|
|
27524
27464
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27525
|
-
annotation?: Record<string,
|
|
27465
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27526
27466
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27527
27467
|
} | {
|
|
27528
27468
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27531,12 +27471,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27531
27471
|
createdAt: string;
|
|
27532
27472
|
createdBy: string;
|
|
27533
27473
|
createdByRole: string;
|
|
27534
|
-
declaration: Record<string,
|
|
27474
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27535
27475
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27536
27476
|
type: "REGISTER";
|
|
27537
27477
|
createdBySignature?: string | null | undefined;
|
|
27538
27478
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27539
|
-
annotation?: Record<string,
|
|
27479
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27540
27480
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27541
27481
|
registrationNumber?: string | undefined;
|
|
27542
27482
|
} | {
|
|
@@ -27546,12 +27486,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27546
27486
|
createdAt: string;
|
|
27547
27487
|
createdBy: string;
|
|
27548
27488
|
createdByRole: string;
|
|
27549
|
-
declaration: Record<string,
|
|
27489
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27550
27490
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27551
27491
|
type: "DECLARE";
|
|
27552
27492
|
createdBySignature?: string | null | undefined;
|
|
27553
27493
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27554
|
-
annotation?: Record<string,
|
|
27494
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27555
27495
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27556
27496
|
} | {
|
|
27557
27497
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27560,13 +27500,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27560
27500
|
createdAt: string;
|
|
27561
27501
|
createdBy: string;
|
|
27562
27502
|
createdByRole: string;
|
|
27563
|
-
declaration: Record<string,
|
|
27503
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27564
27504
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27565
27505
|
type: "ASSIGN";
|
|
27566
27506
|
assignedTo: string;
|
|
27567
27507
|
createdBySignature?: string | null | undefined;
|
|
27568
27508
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27569
|
-
annotation?: Record<string,
|
|
27509
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27570
27510
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27571
27511
|
} | {
|
|
27572
27512
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27575,12 +27515,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27575
27515
|
createdAt: string;
|
|
27576
27516
|
createdBy: string;
|
|
27577
27517
|
createdByRole: string;
|
|
27578
|
-
declaration: Record<string,
|
|
27518
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27579
27519
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27580
27520
|
type: "REQUEST_CORRECTION";
|
|
27581
27521
|
createdBySignature?: string | null | undefined;
|
|
27582
27522
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27583
|
-
annotation?: Record<string,
|
|
27523
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27584
27524
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27585
27525
|
} | {
|
|
27586
27526
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27589,13 +27529,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27589
27529
|
createdAt: string;
|
|
27590
27530
|
createdBy: string;
|
|
27591
27531
|
createdByRole: string;
|
|
27592
|
-
declaration: Record<string,
|
|
27532
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27593
27533
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27594
27534
|
type: "APPROVE_CORRECTION";
|
|
27595
27535
|
requestId: string;
|
|
27596
27536
|
createdBySignature?: string | null | undefined;
|
|
27597
27537
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27598
|
-
annotation?: Record<string,
|
|
27538
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27599
27539
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27600
27540
|
} | {
|
|
27601
27541
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27604,7 +27544,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27604
27544
|
createdAt: string;
|
|
27605
27545
|
createdBy: string;
|
|
27606
27546
|
createdByRole: string;
|
|
27607
|
-
declaration: Record<string,
|
|
27547
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27608
27548
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27609
27549
|
type: "REJECT_CORRECTION";
|
|
27610
27550
|
requestId: string;
|
|
@@ -27613,7 +27553,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27613
27553
|
};
|
|
27614
27554
|
createdBySignature?: string | null | undefined;
|
|
27615
27555
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27616
|
-
annotation?: Record<string,
|
|
27556
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27617
27557
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27618
27558
|
} | {
|
|
27619
27559
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27622,12 +27562,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27622
27562
|
createdAt: string;
|
|
27623
27563
|
createdBy: string;
|
|
27624
27564
|
createdByRole: string;
|
|
27625
|
-
declaration: Record<string,
|
|
27565
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27626
27566
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27627
27567
|
type: "UNASSIGN";
|
|
27628
27568
|
createdBySignature?: string | null | undefined;
|
|
27629
27569
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27630
|
-
annotation?: Record<string,
|
|
27570
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27631
27571
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27632
27572
|
} | {
|
|
27633
27573
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27636,12 +27576,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27636
27576
|
createdAt: string;
|
|
27637
27577
|
createdBy: string;
|
|
27638
27578
|
createdByRole: string;
|
|
27639
|
-
declaration: Record<string,
|
|
27579
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27640
27580
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27641
27581
|
type: "PRINT_CERTIFICATE";
|
|
27642
27582
|
createdBySignature?: string | null | undefined;
|
|
27643
27583
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27644
|
-
annotation?: Record<string,
|
|
27584
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27645
27585
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27646
27586
|
content?: {
|
|
27647
27587
|
templateId?: string | undefined;
|
|
@@ -27653,12 +27593,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27653
27593
|
createdAt: string;
|
|
27654
27594
|
createdBy: string;
|
|
27655
27595
|
createdByRole: string;
|
|
27656
|
-
declaration: Record<string,
|
|
27596
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27657
27597
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27658
27598
|
type: "READ";
|
|
27659
27599
|
createdBySignature?: string | null | undefined;
|
|
27660
27600
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27661
|
-
annotation?: Record<string,
|
|
27601
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27662
27602
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27663
27603
|
} | {
|
|
27664
27604
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27667,13 +27607,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27667
27607
|
createdAt: string;
|
|
27668
27608
|
createdBy: string;
|
|
27669
27609
|
createdByRole: string;
|
|
27670
|
-
declaration: Record<string,
|
|
27610
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27671
27611
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27672
27612
|
type: "CUSTOM";
|
|
27673
27613
|
customActionType: string;
|
|
27674
27614
|
createdBySignature?: string | null | undefined;
|
|
27675
27615
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27676
|
-
annotation?: Record<string,
|
|
27616
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27677
27617
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27678
27618
|
} | {
|
|
27679
27619
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27716,12 +27656,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27716
27656
|
createdAt: string;
|
|
27717
27657
|
createdBy: string;
|
|
27718
27658
|
createdByRole: string;
|
|
27719
|
-
declaration: Record<string,
|
|
27659
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27720
27660
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27721
27661
|
type: "CREATE";
|
|
27722
27662
|
createdBySignature?: string | null | undefined;
|
|
27723
27663
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27724
|
-
annotation?: Record<string,
|
|
27664
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27725
27665
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27726
27666
|
} | {
|
|
27727
27667
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27730,12 +27670,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27730
27670
|
createdAt: string;
|
|
27731
27671
|
createdBy: string;
|
|
27732
27672
|
createdByRole: string;
|
|
27733
|
-
declaration: Record<string,
|
|
27673
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27734
27674
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27735
27675
|
type: "VALIDATE";
|
|
27736
27676
|
createdBySignature?: string | null | undefined;
|
|
27737
27677
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27738
|
-
annotation?: Record<string,
|
|
27678
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27739
27679
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27740
27680
|
} | {
|
|
27741
27681
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27744,7 +27684,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27744
27684
|
createdAt: string;
|
|
27745
27685
|
createdBy: string;
|
|
27746
27686
|
createdByRole: string;
|
|
27747
|
-
declaration: Record<string,
|
|
27687
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27748
27688
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27749
27689
|
type: "REJECT";
|
|
27750
27690
|
content: {
|
|
@@ -27752,7 +27692,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27752
27692
|
};
|
|
27753
27693
|
createdBySignature?: string | null | undefined;
|
|
27754
27694
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27755
|
-
annotation?: Record<string,
|
|
27695
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27756
27696
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27757
27697
|
} | {
|
|
27758
27698
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27761,7 +27701,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27761
27701
|
createdAt: string;
|
|
27762
27702
|
createdBy: string;
|
|
27763
27703
|
createdByRole: string;
|
|
27764
|
-
declaration: Record<string,
|
|
27704
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27765
27705
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27766
27706
|
type: "DUPLICATE_DETECTED";
|
|
27767
27707
|
content: {
|
|
@@ -27772,7 +27712,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27772
27712
|
};
|
|
27773
27713
|
createdBySignature?: string | null | undefined;
|
|
27774
27714
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27775
|
-
annotation?: Record<string,
|
|
27715
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27776
27716
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27777
27717
|
} | {
|
|
27778
27718
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27781,12 +27721,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27781
27721
|
createdAt: string;
|
|
27782
27722
|
createdBy: string;
|
|
27783
27723
|
createdByRole: string;
|
|
27784
|
-
declaration: Record<string,
|
|
27724
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27785
27725
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27786
27726
|
type: "MARK_AS_NOT_DUPLICATE";
|
|
27787
27727
|
createdBySignature?: string | null | undefined;
|
|
27788
27728
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27789
|
-
annotation?: Record<string,
|
|
27729
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27790
27730
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27791
27731
|
} | {
|
|
27792
27732
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27795,12 +27735,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27795
27735
|
createdAt: string;
|
|
27796
27736
|
createdBy: string;
|
|
27797
27737
|
createdByRole: string;
|
|
27798
|
-
declaration: Record<string,
|
|
27738
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27799
27739
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27800
27740
|
type: "MARK_AS_DUPLICATE";
|
|
27801
27741
|
createdBySignature?: string | null | undefined;
|
|
27802
27742
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27803
|
-
annotation?: Record<string,
|
|
27743
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27804
27744
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27805
27745
|
content?: {
|
|
27806
27746
|
duplicateOf: string & import("zod").$brand<"UUID">;
|
|
@@ -27812,7 +27752,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27812
27752
|
createdAt: string;
|
|
27813
27753
|
createdBy: string;
|
|
27814
27754
|
createdByRole: string;
|
|
27815
|
-
declaration: Record<string,
|
|
27755
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27816
27756
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27817
27757
|
type: "ARCHIVE";
|
|
27818
27758
|
content: {
|
|
@@ -27820,7 +27760,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27820
27760
|
};
|
|
27821
27761
|
createdBySignature?: string | null | undefined;
|
|
27822
27762
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27823
|
-
annotation?: Record<string,
|
|
27763
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27824
27764
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27825
27765
|
} | {
|
|
27826
27766
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27829,12 +27769,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27829
27769
|
createdAt: string;
|
|
27830
27770
|
createdBy: string;
|
|
27831
27771
|
createdByRole: string;
|
|
27832
|
-
declaration: Record<string,
|
|
27772
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27833
27773
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27834
27774
|
type: "NOTIFY";
|
|
27835
27775
|
createdBySignature?: string | null | undefined;
|
|
27836
27776
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27837
|
-
annotation?: Record<string,
|
|
27777
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27838
27778
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27839
27779
|
} | {
|
|
27840
27780
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27843,12 +27783,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27843
27783
|
createdAt: string;
|
|
27844
27784
|
createdBy: string;
|
|
27845
27785
|
createdByRole: string;
|
|
27846
|
-
declaration: Record<string,
|
|
27786
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27847
27787
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27848
27788
|
type: "REGISTER";
|
|
27849
27789
|
createdBySignature?: string | null | undefined;
|
|
27850
27790
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27851
|
-
annotation?: Record<string,
|
|
27791
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27852
27792
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27853
27793
|
registrationNumber?: string | undefined;
|
|
27854
27794
|
} | {
|
|
@@ -27858,12 +27798,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27858
27798
|
createdAt: string;
|
|
27859
27799
|
createdBy: string;
|
|
27860
27800
|
createdByRole: string;
|
|
27861
|
-
declaration: Record<string,
|
|
27801
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27862
27802
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27863
27803
|
type: "DECLARE";
|
|
27864
27804
|
createdBySignature?: string | null | undefined;
|
|
27865
27805
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27866
|
-
annotation?: Record<string,
|
|
27806
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27867
27807
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27868
27808
|
} | {
|
|
27869
27809
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27872,13 +27812,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27872
27812
|
createdAt: string;
|
|
27873
27813
|
createdBy: string;
|
|
27874
27814
|
createdByRole: string;
|
|
27875
|
-
declaration: Record<string,
|
|
27815
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27876
27816
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27877
27817
|
type: "ASSIGN";
|
|
27878
27818
|
assignedTo: string;
|
|
27879
27819
|
createdBySignature?: string | null | undefined;
|
|
27880
27820
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27881
|
-
annotation?: Record<string,
|
|
27821
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27882
27822
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27883
27823
|
} | {
|
|
27884
27824
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27887,12 +27827,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27887
27827
|
createdAt: string;
|
|
27888
27828
|
createdBy: string;
|
|
27889
27829
|
createdByRole: string;
|
|
27890
|
-
declaration: Record<string,
|
|
27830
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27891
27831
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27892
27832
|
type: "REQUEST_CORRECTION";
|
|
27893
27833
|
createdBySignature?: string | null | undefined;
|
|
27894
27834
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27895
|
-
annotation?: Record<string,
|
|
27835
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27896
27836
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27897
27837
|
} | {
|
|
27898
27838
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27901,13 +27841,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27901
27841
|
createdAt: string;
|
|
27902
27842
|
createdBy: string;
|
|
27903
27843
|
createdByRole: string;
|
|
27904
|
-
declaration: Record<string,
|
|
27844
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27905
27845
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27906
27846
|
type: "APPROVE_CORRECTION";
|
|
27907
27847
|
requestId: string;
|
|
27908
27848
|
createdBySignature?: string | null | undefined;
|
|
27909
27849
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27910
|
-
annotation?: Record<string,
|
|
27850
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27911
27851
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27912
27852
|
} | {
|
|
27913
27853
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27916,7 +27856,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27916
27856
|
createdAt: string;
|
|
27917
27857
|
createdBy: string;
|
|
27918
27858
|
createdByRole: string;
|
|
27919
|
-
declaration: Record<string,
|
|
27859
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27920
27860
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27921
27861
|
type: "REJECT_CORRECTION";
|
|
27922
27862
|
requestId: string;
|
|
@@ -27925,7 +27865,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27925
27865
|
};
|
|
27926
27866
|
createdBySignature?: string | null | undefined;
|
|
27927
27867
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27928
|
-
annotation?: Record<string,
|
|
27868
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27929
27869
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27930
27870
|
} | {
|
|
27931
27871
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27934,12 +27874,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27934
27874
|
createdAt: string;
|
|
27935
27875
|
createdBy: string;
|
|
27936
27876
|
createdByRole: string;
|
|
27937
|
-
declaration: Record<string,
|
|
27877
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27938
27878
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27939
27879
|
type: "UNASSIGN";
|
|
27940
27880
|
createdBySignature?: string | null | undefined;
|
|
27941
27881
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27942
|
-
annotation?: Record<string,
|
|
27882
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27943
27883
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27944
27884
|
} | {
|
|
27945
27885
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27948,12 +27888,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27948
27888
|
createdAt: string;
|
|
27949
27889
|
createdBy: string;
|
|
27950
27890
|
createdByRole: string;
|
|
27951
|
-
declaration: Record<string,
|
|
27891
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27952
27892
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27953
27893
|
type: "PRINT_CERTIFICATE";
|
|
27954
27894
|
createdBySignature?: string | null | undefined;
|
|
27955
27895
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27956
|
-
annotation?: Record<string,
|
|
27896
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27957
27897
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27958
27898
|
content?: {
|
|
27959
27899
|
templateId?: string | undefined;
|
|
@@ -27965,12 +27905,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27965
27905
|
createdAt: string;
|
|
27966
27906
|
createdBy: string;
|
|
27967
27907
|
createdByRole: string;
|
|
27968
|
-
declaration: Record<string,
|
|
27908
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27969
27909
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27970
27910
|
type: "READ";
|
|
27971
27911
|
createdBySignature?: string | null | undefined;
|
|
27972
27912
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27973
|
-
annotation?: Record<string,
|
|
27913
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27974
27914
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27975
27915
|
} | {
|
|
27976
27916
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -27979,13 +27919,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
27979
27919
|
createdAt: string;
|
|
27980
27920
|
createdBy: string;
|
|
27981
27921
|
createdByRole: string;
|
|
27982
|
-
declaration: Record<string,
|
|
27922
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
27983
27923
|
status: "Requested" | "Accepted" | "Rejected";
|
|
27984
27924
|
type: "CUSTOM";
|
|
27985
27925
|
customActionType: string;
|
|
27986
27926
|
createdBySignature?: string | null | undefined;
|
|
27987
27927
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27988
|
-
annotation?: Record<string,
|
|
27928
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
27989
27929
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
27990
27930
|
} | {
|
|
27991
27931
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28213,12 +28153,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28213
28153
|
createdAt: string;
|
|
28214
28154
|
createdBy: string;
|
|
28215
28155
|
createdByRole: string;
|
|
28216
|
-
declaration: Record<string,
|
|
28156
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28217
28157
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28218
28158
|
type: "CREATE";
|
|
28219
28159
|
createdBySignature?: string | null | undefined;
|
|
28220
28160
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28221
|
-
annotation?: Record<string,
|
|
28161
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28222
28162
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28223
28163
|
} | {
|
|
28224
28164
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28227,12 +28167,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28227
28167
|
createdAt: string;
|
|
28228
28168
|
createdBy: string;
|
|
28229
28169
|
createdByRole: string;
|
|
28230
|
-
declaration: Record<string,
|
|
28170
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28231
28171
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28232
28172
|
type: "VALIDATE";
|
|
28233
28173
|
createdBySignature?: string | null | undefined;
|
|
28234
28174
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28235
|
-
annotation?: Record<string,
|
|
28175
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28236
28176
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28237
28177
|
} | {
|
|
28238
28178
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28241,7 +28181,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28241
28181
|
createdAt: string;
|
|
28242
28182
|
createdBy: string;
|
|
28243
28183
|
createdByRole: string;
|
|
28244
|
-
declaration: Record<string,
|
|
28184
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28245
28185
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28246
28186
|
type: "REJECT";
|
|
28247
28187
|
content: {
|
|
@@ -28249,7 +28189,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28249
28189
|
};
|
|
28250
28190
|
createdBySignature?: string | null | undefined;
|
|
28251
28191
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28252
|
-
annotation?: Record<string,
|
|
28192
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28253
28193
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28254
28194
|
} | {
|
|
28255
28195
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28258,7 +28198,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28258
28198
|
createdAt: string;
|
|
28259
28199
|
createdBy: string;
|
|
28260
28200
|
createdByRole: string;
|
|
28261
|
-
declaration: Record<string,
|
|
28201
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28262
28202
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28263
28203
|
type: "DUPLICATE_DETECTED";
|
|
28264
28204
|
content: {
|
|
@@ -28269,7 +28209,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28269
28209
|
};
|
|
28270
28210
|
createdBySignature?: string | null | undefined;
|
|
28271
28211
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28272
|
-
annotation?: Record<string,
|
|
28212
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28273
28213
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28274
28214
|
} | {
|
|
28275
28215
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28278,12 +28218,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28278
28218
|
createdAt: string;
|
|
28279
28219
|
createdBy: string;
|
|
28280
28220
|
createdByRole: string;
|
|
28281
|
-
declaration: Record<string,
|
|
28221
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28282
28222
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28283
28223
|
type: "MARK_AS_NOT_DUPLICATE";
|
|
28284
28224
|
createdBySignature?: string | null | undefined;
|
|
28285
28225
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28286
|
-
annotation?: Record<string,
|
|
28226
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28287
28227
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28288
28228
|
} | {
|
|
28289
28229
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28292,12 +28232,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28292
28232
|
createdAt: string;
|
|
28293
28233
|
createdBy: string;
|
|
28294
28234
|
createdByRole: string;
|
|
28295
|
-
declaration: Record<string,
|
|
28235
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28296
28236
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28297
28237
|
type: "MARK_AS_DUPLICATE";
|
|
28298
28238
|
createdBySignature?: string | null | undefined;
|
|
28299
28239
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28300
|
-
annotation?: Record<string,
|
|
28240
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28301
28241
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28302
28242
|
content?: {
|
|
28303
28243
|
duplicateOf: string & import("zod").$brand<"UUID">;
|
|
@@ -28309,7 +28249,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28309
28249
|
createdAt: string;
|
|
28310
28250
|
createdBy: string;
|
|
28311
28251
|
createdByRole: string;
|
|
28312
|
-
declaration: Record<string,
|
|
28252
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28313
28253
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28314
28254
|
type: "ARCHIVE";
|
|
28315
28255
|
content: {
|
|
@@ -28317,7 +28257,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28317
28257
|
};
|
|
28318
28258
|
createdBySignature?: string | null | undefined;
|
|
28319
28259
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28320
|
-
annotation?: Record<string,
|
|
28260
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28321
28261
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28322
28262
|
} | {
|
|
28323
28263
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28326,12 +28266,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28326
28266
|
createdAt: string;
|
|
28327
28267
|
createdBy: string;
|
|
28328
28268
|
createdByRole: string;
|
|
28329
|
-
declaration: Record<string,
|
|
28269
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28330
28270
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28331
28271
|
type: "NOTIFY";
|
|
28332
28272
|
createdBySignature?: string | null | undefined;
|
|
28333
28273
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28334
|
-
annotation?: Record<string,
|
|
28274
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28335
28275
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28336
28276
|
} | {
|
|
28337
28277
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28340,12 +28280,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28340
28280
|
createdAt: string;
|
|
28341
28281
|
createdBy: string;
|
|
28342
28282
|
createdByRole: string;
|
|
28343
|
-
declaration: Record<string,
|
|
28283
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28344
28284
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28345
28285
|
type: "REGISTER";
|
|
28346
28286
|
createdBySignature?: string | null | undefined;
|
|
28347
28287
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28348
|
-
annotation?: Record<string,
|
|
28288
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28349
28289
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28350
28290
|
registrationNumber?: string | undefined;
|
|
28351
28291
|
} | {
|
|
@@ -28355,12 +28295,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28355
28295
|
createdAt: string;
|
|
28356
28296
|
createdBy: string;
|
|
28357
28297
|
createdByRole: string;
|
|
28358
|
-
declaration: Record<string,
|
|
28298
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28359
28299
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28360
28300
|
type: "DECLARE";
|
|
28361
28301
|
createdBySignature?: string | null | undefined;
|
|
28362
28302
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28363
|
-
annotation?: Record<string,
|
|
28303
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28364
28304
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28365
28305
|
} | {
|
|
28366
28306
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28369,13 +28309,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28369
28309
|
createdAt: string;
|
|
28370
28310
|
createdBy: string;
|
|
28371
28311
|
createdByRole: string;
|
|
28372
|
-
declaration: Record<string,
|
|
28312
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28373
28313
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28374
28314
|
type: "ASSIGN";
|
|
28375
28315
|
assignedTo: string;
|
|
28376
28316
|
createdBySignature?: string | null | undefined;
|
|
28377
28317
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28378
|
-
annotation?: Record<string,
|
|
28318
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28379
28319
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28380
28320
|
} | {
|
|
28381
28321
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28384,12 +28324,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28384
28324
|
createdAt: string;
|
|
28385
28325
|
createdBy: string;
|
|
28386
28326
|
createdByRole: string;
|
|
28387
|
-
declaration: Record<string,
|
|
28327
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28388
28328
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28389
28329
|
type: "REQUEST_CORRECTION";
|
|
28390
28330
|
createdBySignature?: string | null | undefined;
|
|
28391
28331
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28392
|
-
annotation?: Record<string,
|
|
28332
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28393
28333
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28394
28334
|
} | {
|
|
28395
28335
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28398,13 +28338,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28398
28338
|
createdAt: string;
|
|
28399
28339
|
createdBy: string;
|
|
28400
28340
|
createdByRole: string;
|
|
28401
|
-
declaration: Record<string,
|
|
28341
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28402
28342
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28403
28343
|
type: "APPROVE_CORRECTION";
|
|
28404
28344
|
requestId: string;
|
|
28405
28345
|
createdBySignature?: string | null | undefined;
|
|
28406
28346
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28407
|
-
annotation?: Record<string,
|
|
28347
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28408
28348
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28409
28349
|
} | {
|
|
28410
28350
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28413,7 +28353,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28413
28353
|
createdAt: string;
|
|
28414
28354
|
createdBy: string;
|
|
28415
28355
|
createdByRole: string;
|
|
28416
|
-
declaration: Record<string,
|
|
28356
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28417
28357
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28418
28358
|
type: "REJECT_CORRECTION";
|
|
28419
28359
|
requestId: string;
|
|
@@ -28422,7 +28362,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28422
28362
|
};
|
|
28423
28363
|
createdBySignature?: string | null | undefined;
|
|
28424
28364
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28425
|
-
annotation?: Record<string,
|
|
28365
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28426
28366
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28427
28367
|
} | {
|
|
28428
28368
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28431,12 +28371,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28431
28371
|
createdAt: string;
|
|
28432
28372
|
createdBy: string;
|
|
28433
28373
|
createdByRole: string;
|
|
28434
|
-
declaration: Record<string,
|
|
28374
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28435
28375
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28436
28376
|
type: "UNASSIGN";
|
|
28437
28377
|
createdBySignature?: string | null | undefined;
|
|
28438
28378
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28439
|
-
annotation?: Record<string,
|
|
28379
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28440
28380
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28441
28381
|
} | {
|
|
28442
28382
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28445,12 +28385,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28445
28385
|
createdAt: string;
|
|
28446
28386
|
createdBy: string;
|
|
28447
28387
|
createdByRole: string;
|
|
28448
|
-
declaration: Record<string,
|
|
28388
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28449
28389
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28450
28390
|
type: "PRINT_CERTIFICATE";
|
|
28451
28391
|
createdBySignature?: string | null | undefined;
|
|
28452
28392
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28453
|
-
annotation?: Record<string,
|
|
28393
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28454
28394
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28455
28395
|
content?: {
|
|
28456
28396
|
templateId?: string | undefined;
|
|
@@ -28462,12 +28402,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28462
28402
|
createdAt: string;
|
|
28463
28403
|
createdBy: string;
|
|
28464
28404
|
createdByRole: string;
|
|
28465
|
-
declaration: Record<string,
|
|
28405
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28466
28406
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28467
28407
|
type: "READ";
|
|
28468
28408
|
createdBySignature?: string | null | undefined;
|
|
28469
28409
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28470
|
-
annotation?: Record<string,
|
|
28410
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28471
28411
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28472
28412
|
} | {
|
|
28473
28413
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28476,13 +28416,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28476
28416
|
createdAt: string;
|
|
28477
28417
|
createdBy: string;
|
|
28478
28418
|
createdByRole: string;
|
|
28479
|
-
declaration: Record<string,
|
|
28419
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28480
28420
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28481
28421
|
type: "CUSTOM";
|
|
28482
28422
|
customActionType: string;
|
|
28483
28423
|
createdBySignature?: string | null | undefined;
|
|
28484
28424
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28485
|
-
annotation?: Record<string,
|
|
28425
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28486
28426
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28487
28427
|
} | {
|
|
28488
28428
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28524,12 +28464,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28524
28464
|
createdAt: string;
|
|
28525
28465
|
createdBy: string;
|
|
28526
28466
|
createdByRole: string;
|
|
28527
|
-
declaration: Record<string,
|
|
28467
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28528
28468
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28529
28469
|
type: "CREATE";
|
|
28530
28470
|
createdBySignature?: string | null | undefined;
|
|
28531
28471
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28532
|
-
annotation?: Record<string,
|
|
28472
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28533
28473
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28534
28474
|
} | {
|
|
28535
28475
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28538,12 +28478,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28538
28478
|
createdAt: string;
|
|
28539
28479
|
createdBy: string;
|
|
28540
28480
|
createdByRole: string;
|
|
28541
|
-
declaration: Record<string,
|
|
28481
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28542
28482
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28543
28483
|
type: "VALIDATE";
|
|
28544
28484
|
createdBySignature?: string | null | undefined;
|
|
28545
28485
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28546
|
-
annotation?: Record<string,
|
|
28486
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28547
28487
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28548
28488
|
} | {
|
|
28549
28489
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28552,7 +28492,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28552
28492
|
createdAt: string;
|
|
28553
28493
|
createdBy: string;
|
|
28554
28494
|
createdByRole: string;
|
|
28555
|
-
declaration: Record<string,
|
|
28495
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28556
28496
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28557
28497
|
type: "REJECT";
|
|
28558
28498
|
content: {
|
|
@@ -28560,7 +28500,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28560
28500
|
};
|
|
28561
28501
|
createdBySignature?: string | null | undefined;
|
|
28562
28502
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28563
|
-
annotation?: Record<string,
|
|
28503
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28564
28504
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28565
28505
|
} | {
|
|
28566
28506
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28569,7 +28509,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28569
28509
|
createdAt: string;
|
|
28570
28510
|
createdBy: string;
|
|
28571
28511
|
createdByRole: string;
|
|
28572
|
-
declaration: Record<string,
|
|
28512
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28573
28513
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28574
28514
|
type: "DUPLICATE_DETECTED";
|
|
28575
28515
|
content: {
|
|
@@ -28580,7 +28520,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28580
28520
|
};
|
|
28581
28521
|
createdBySignature?: string | null | undefined;
|
|
28582
28522
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28583
|
-
annotation?: Record<string,
|
|
28523
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28584
28524
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28585
28525
|
} | {
|
|
28586
28526
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28589,12 +28529,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28589
28529
|
createdAt: string;
|
|
28590
28530
|
createdBy: string;
|
|
28591
28531
|
createdByRole: string;
|
|
28592
|
-
declaration: Record<string,
|
|
28532
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28593
28533
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28594
28534
|
type: "MARK_AS_NOT_DUPLICATE";
|
|
28595
28535
|
createdBySignature?: string | null | undefined;
|
|
28596
28536
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28597
|
-
annotation?: Record<string,
|
|
28537
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28598
28538
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28599
28539
|
} | {
|
|
28600
28540
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28603,12 +28543,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28603
28543
|
createdAt: string;
|
|
28604
28544
|
createdBy: string;
|
|
28605
28545
|
createdByRole: string;
|
|
28606
|
-
declaration: Record<string,
|
|
28546
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28607
28547
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28608
28548
|
type: "MARK_AS_DUPLICATE";
|
|
28609
28549
|
createdBySignature?: string | null | undefined;
|
|
28610
28550
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28611
|
-
annotation?: Record<string,
|
|
28551
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28612
28552
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28613
28553
|
content?: {
|
|
28614
28554
|
duplicateOf: string & import("zod").$brand<"UUID">;
|
|
@@ -28620,7 +28560,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28620
28560
|
createdAt: string;
|
|
28621
28561
|
createdBy: string;
|
|
28622
28562
|
createdByRole: string;
|
|
28623
|
-
declaration: Record<string,
|
|
28563
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28624
28564
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28625
28565
|
type: "ARCHIVE";
|
|
28626
28566
|
content: {
|
|
@@ -28628,7 +28568,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28628
28568
|
};
|
|
28629
28569
|
createdBySignature?: string | null | undefined;
|
|
28630
28570
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28631
|
-
annotation?: Record<string,
|
|
28571
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28632
28572
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28633
28573
|
} | {
|
|
28634
28574
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28637,12 +28577,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28637
28577
|
createdAt: string;
|
|
28638
28578
|
createdBy: string;
|
|
28639
28579
|
createdByRole: string;
|
|
28640
|
-
declaration: Record<string,
|
|
28580
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28641
28581
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28642
28582
|
type: "NOTIFY";
|
|
28643
28583
|
createdBySignature?: string | null | undefined;
|
|
28644
28584
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28645
|
-
annotation?: Record<string,
|
|
28585
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28646
28586
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28647
28587
|
} | {
|
|
28648
28588
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28651,12 +28591,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28651
28591
|
createdAt: string;
|
|
28652
28592
|
createdBy: string;
|
|
28653
28593
|
createdByRole: string;
|
|
28654
|
-
declaration: Record<string,
|
|
28594
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28655
28595
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28656
28596
|
type: "REGISTER";
|
|
28657
28597
|
createdBySignature?: string | null | undefined;
|
|
28658
28598
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28659
|
-
annotation?: Record<string,
|
|
28599
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28660
28600
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28661
28601
|
registrationNumber?: string | undefined;
|
|
28662
28602
|
} | {
|
|
@@ -28666,12 +28606,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28666
28606
|
createdAt: string;
|
|
28667
28607
|
createdBy: string;
|
|
28668
28608
|
createdByRole: string;
|
|
28669
|
-
declaration: Record<string,
|
|
28609
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28670
28610
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28671
28611
|
type: "DECLARE";
|
|
28672
28612
|
createdBySignature?: string | null | undefined;
|
|
28673
28613
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28674
|
-
annotation?: Record<string,
|
|
28614
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28675
28615
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28676
28616
|
} | {
|
|
28677
28617
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28680,13 +28620,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28680
28620
|
createdAt: string;
|
|
28681
28621
|
createdBy: string;
|
|
28682
28622
|
createdByRole: string;
|
|
28683
|
-
declaration: Record<string,
|
|
28623
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28684
28624
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28685
28625
|
type: "ASSIGN";
|
|
28686
28626
|
assignedTo: string;
|
|
28687
28627
|
createdBySignature?: string | null | undefined;
|
|
28688
28628
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28689
|
-
annotation?: Record<string,
|
|
28629
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28690
28630
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28691
28631
|
} | {
|
|
28692
28632
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28695,12 +28635,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28695
28635
|
createdAt: string;
|
|
28696
28636
|
createdBy: string;
|
|
28697
28637
|
createdByRole: string;
|
|
28698
|
-
declaration: Record<string,
|
|
28638
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28699
28639
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28700
28640
|
type: "REQUEST_CORRECTION";
|
|
28701
28641
|
createdBySignature?: string | null | undefined;
|
|
28702
28642
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28703
|
-
annotation?: Record<string,
|
|
28643
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28704
28644
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28705
28645
|
} | {
|
|
28706
28646
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28709,13 +28649,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28709
28649
|
createdAt: string;
|
|
28710
28650
|
createdBy: string;
|
|
28711
28651
|
createdByRole: string;
|
|
28712
|
-
declaration: Record<string,
|
|
28652
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28713
28653
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28714
28654
|
type: "APPROVE_CORRECTION";
|
|
28715
28655
|
requestId: string;
|
|
28716
28656
|
createdBySignature?: string | null | undefined;
|
|
28717
28657
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28718
|
-
annotation?: Record<string,
|
|
28658
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28719
28659
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28720
28660
|
} | {
|
|
28721
28661
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28724,7 +28664,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28724
28664
|
createdAt: string;
|
|
28725
28665
|
createdBy: string;
|
|
28726
28666
|
createdByRole: string;
|
|
28727
|
-
declaration: Record<string,
|
|
28667
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28728
28668
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28729
28669
|
type: "REJECT_CORRECTION";
|
|
28730
28670
|
requestId: string;
|
|
@@ -28733,7 +28673,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28733
28673
|
};
|
|
28734
28674
|
createdBySignature?: string | null | undefined;
|
|
28735
28675
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28736
|
-
annotation?: Record<string,
|
|
28676
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28737
28677
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28738
28678
|
} | {
|
|
28739
28679
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28742,12 +28682,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28742
28682
|
createdAt: string;
|
|
28743
28683
|
createdBy: string;
|
|
28744
28684
|
createdByRole: string;
|
|
28745
|
-
declaration: Record<string,
|
|
28685
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28746
28686
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28747
28687
|
type: "UNASSIGN";
|
|
28748
28688
|
createdBySignature?: string | null | undefined;
|
|
28749
28689
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28750
|
-
annotation?: Record<string,
|
|
28690
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28751
28691
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28752
28692
|
} | {
|
|
28753
28693
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28756,12 +28696,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28756
28696
|
createdAt: string;
|
|
28757
28697
|
createdBy: string;
|
|
28758
28698
|
createdByRole: string;
|
|
28759
|
-
declaration: Record<string,
|
|
28699
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28760
28700
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28761
28701
|
type: "PRINT_CERTIFICATE";
|
|
28762
28702
|
createdBySignature?: string | null | undefined;
|
|
28763
28703
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28764
|
-
annotation?: Record<string,
|
|
28704
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28765
28705
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28766
28706
|
content?: {
|
|
28767
28707
|
templateId?: string | undefined;
|
|
@@ -28773,12 +28713,12 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28773
28713
|
createdAt: string;
|
|
28774
28714
|
createdBy: string;
|
|
28775
28715
|
createdByRole: string;
|
|
28776
|
-
declaration: Record<string,
|
|
28716
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28777
28717
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28778
28718
|
type: "READ";
|
|
28779
28719
|
createdBySignature?: string | null | undefined;
|
|
28780
28720
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28781
|
-
annotation?: Record<string,
|
|
28721
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28782
28722
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28783
28723
|
} | {
|
|
28784
28724
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28787,13 +28727,13 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28787
28727
|
createdAt: string;
|
|
28788
28728
|
createdBy: string;
|
|
28789
28729
|
createdByRole: string;
|
|
28790
|
-
declaration: Record<string,
|
|
28730
|
+
declaration: Record<string, import("../commons").FieldUpdateValue>;
|
|
28791
28731
|
status: "Requested" | "Accepted" | "Rejected";
|
|
28792
28732
|
type: "CUSTOM";
|
|
28793
28733
|
customActionType: string;
|
|
28794
28734
|
createdBySignature?: string | null | undefined;
|
|
28795
28735
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28796
|
-
annotation?: Record<string,
|
|
28736
|
+
annotation?: Record<string, import("../commons").FieldUpdateValue> | null | undefined;
|
|
28797
28737
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28798
28738
|
} | {
|
|
28799
28739
|
id: string & import("zod").$brand<"UUID">;
|
|
@@ -28857,8 +28797,9 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
28857
28797
|
trackingId: string;
|
|
28858
28798
|
}[];
|
|
28859
28799
|
flags: string[];
|
|
28860
|
-
declaration: Record<string,
|
|
28800
|
+
declaration: Record<string, import("../commons").FieldValue>;
|
|
28861
28801
|
dateOfEvent?: string | null | undefined;
|
|
28802
|
+
placeOfEvent?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28862
28803
|
createdByUserType?: "user" | "system" | null | undefined;
|
|
28863
28804
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
28864
28805
|
createdBySignature?: string | null | undefined;
|
|
@@ -29652,7 +29593,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
29652
29593
|
description: string;
|
|
29653
29594
|
};
|
|
29654
29595
|
value: {
|
|
29655
|
-
$event: "type" | "id" | "createdBy" | "createdByUserType" | "createdAtLocation" | "createdAt" | "assignedTo" | "status" | "updatedAt" | "trackingId" | "dateOfEvent" | "title" | "flags" | "legalStatuses" | "updatedByUserRole" | "updatedAtLocation" | "updatedBy" | "outbox";
|
|
29596
|
+
$event: "type" | "id" | "createdBy" | "createdByUserType" | "createdAtLocation" | "createdAt" | "assignedTo" | "status" | "updatedAt" | "trackingId" | "dateOfEvent" | "placeOfEvent" | "title" | "flags" | "legalStatuses" | "updatedByUserRole" | "updatedAtLocation" | "updatedBy" | "outbox";
|
|
29656
29597
|
};
|
|
29657
29598
|
}[];
|
|
29658
29599
|
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";
|