@opencrvs/toolkit 1.8.0-rc.feef45c → 1.8.0-rc.ff0a1b5
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 +679 -332
- package/dist/commons/events/ActionConfig.d.ts +4879 -1232
- package/dist/commons/events/ActionDocument.d.ts +433 -413
- package/dist/commons/events/ActionInput.d.ts +180 -180
- package/dist/commons/events/AdvancedSearchConfig.d.ts +34 -36
- package/dist/commons/events/Draft.d.ts +24 -26
- package/dist/commons/events/EventConfig.d.ts +2711 -967
- package/dist/commons/events/EventDocument.d.ts +241 -312
- package/dist/commons/events/EventIndex.d.ts +817 -279
- package/dist/commons/events/EventMetadata.d.ts +263 -11
- package/dist/commons/events/FieldConfig.d.ts +267 -3
- package/dist/commons/events/FieldType.d.ts +3 -2
- package/dist/commons/events/FieldTypeMapping.d.ts +11 -4
- package/dist/commons/events/FieldValue.d.ts +6 -3
- package/dist/commons/events/FormConfig.d.ts +2279 -629
- package/dist/commons/events/PageConfig.d.ts +406 -0
- package/dist/commons/events/SummaryConfig.d.ts +17 -0
- package/dist/commons/events/WorkqueueConfig.d.ts +1222 -8
- package/dist/commons/events/defineConfig.d.ts +283 -2
- package/dist/commons/events/event.d.ts +3 -1
- package/dist/commons/events/field.d.ts +3 -3
- package/dist/commons/events/test.utils.d.ts +7 -7
- package/dist/commons/events/utils.d.ts +193 -21
- package/dist/events/index.js +1141 -774
- package/dist/scopes/index.d.ts +70 -1
- package/dist/scopes/index.js +130 -0
- package/package.json +1 -1
@@ -232,6 +232,34 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
232
232
|
configuration?: {
|
233
233
|
notice?: import("../commons").TranslationConfig | undefined;
|
234
234
|
} | undefined;
|
235
|
+
} | {
|
236
|
+
type: "DATE_RANGE";
|
237
|
+
id: string;
|
238
|
+
label: import("../commons").TranslationConfig;
|
239
|
+
parent?: {
|
240
|
+
_fieldId?: string | undefined;
|
241
|
+
} | undefined;
|
242
|
+
validation?: {
|
243
|
+
message: import("../commons").TranslationConfig;
|
244
|
+
validator: import("../commons").JSONSchema;
|
245
|
+
}[] | undefined;
|
246
|
+
required?: boolean | undefined;
|
247
|
+
defaultValue?: string | [string, string] | undefined;
|
248
|
+
conditionals?: ({
|
249
|
+
type: "SHOW";
|
250
|
+
conditional: import("../commons").JSONSchema;
|
251
|
+
} | {
|
252
|
+
type: "ENABLE";
|
253
|
+
conditional: import("../commons").JSONSchema;
|
254
|
+
} | {
|
255
|
+
type: "DISPLAY_ON_REVIEW";
|
256
|
+
conditional: import("../commons").JSONSchema;
|
257
|
+
})[] | undefined;
|
258
|
+
placeholder?: import("../commons").TranslationConfig | undefined;
|
259
|
+
hideLabel?: boolean | undefined;
|
260
|
+
configuration?: {
|
261
|
+
notice?: import("../commons").TranslationConfig | undefined;
|
262
|
+
} | undefined;
|
235
263
|
} | {
|
236
264
|
type: "PARAGRAPH";
|
237
265
|
id: string;
|
@@ -911,6 +939,34 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
911
939
|
configuration?: {
|
912
940
|
notice?: import("../commons").TranslationConfig | undefined;
|
913
941
|
} | undefined;
|
942
|
+
} | {
|
943
|
+
type: "DATE_RANGE";
|
944
|
+
id: string;
|
945
|
+
label: import("../commons").TranslationConfig;
|
946
|
+
parent?: {
|
947
|
+
_fieldId?: string | undefined;
|
948
|
+
} | undefined;
|
949
|
+
validation?: {
|
950
|
+
message: import("../commons").TranslationConfig;
|
951
|
+
validator: import("../commons").JSONSchema;
|
952
|
+
}[] | undefined;
|
953
|
+
required?: boolean | undefined;
|
954
|
+
defaultValue?: string | [string, string] | undefined;
|
955
|
+
conditionals?: ({
|
956
|
+
type: "SHOW";
|
957
|
+
conditional: import("../commons").JSONSchema;
|
958
|
+
} | {
|
959
|
+
type: "ENABLE";
|
960
|
+
conditional: import("../commons").JSONSchema;
|
961
|
+
} | {
|
962
|
+
type: "DISPLAY_ON_REVIEW";
|
963
|
+
conditional: import("../commons").JSONSchema;
|
964
|
+
})[] | undefined;
|
965
|
+
placeholder?: import("../commons").TranslationConfig | undefined;
|
966
|
+
hideLabel?: boolean | undefined;
|
967
|
+
configuration?: {
|
968
|
+
notice?: import("../commons").TranslationConfig | undefined;
|
969
|
+
} | undefined;
|
914
970
|
} | {
|
915
971
|
type: "PARAGRAPH";
|
916
972
|
id: string;
|
@@ -1589,6 +1645,34 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
1589
1645
|
configuration?: {
|
1590
1646
|
notice?: import("../commons").TranslationConfig | undefined;
|
1591
1647
|
} | undefined;
|
1648
|
+
} | {
|
1649
|
+
type: "DATE_RANGE";
|
1650
|
+
id: string;
|
1651
|
+
label: import("../commons").TranslationConfig;
|
1652
|
+
parent?: {
|
1653
|
+
_fieldId?: string | undefined;
|
1654
|
+
} | undefined;
|
1655
|
+
validation?: {
|
1656
|
+
message: import("../commons").TranslationConfig;
|
1657
|
+
validator: import("../commons").JSONSchema;
|
1658
|
+
}[] | undefined;
|
1659
|
+
required?: boolean | undefined;
|
1660
|
+
defaultValue?: string | [string, string] | undefined;
|
1661
|
+
conditionals?: ({
|
1662
|
+
type: "SHOW";
|
1663
|
+
conditional: import("../commons").JSONSchema;
|
1664
|
+
} | {
|
1665
|
+
type: "ENABLE";
|
1666
|
+
conditional: import("../commons").JSONSchema;
|
1667
|
+
} | {
|
1668
|
+
type: "DISPLAY_ON_REVIEW";
|
1669
|
+
conditional: import("../commons").JSONSchema;
|
1670
|
+
})[] | undefined;
|
1671
|
+
placeholder?: import("../commons").TranslationConfig | undefined;
|
1672
|
+
hideLabel?: boolean | undefined;
|
1673
|
+
configuration?: {
|
1674
|
+
notice?: import("../commons").TranslationConfig | undefined;
|
1675
|
+
} | undefined;
|
1592
1676
|
} | {
|
1593
1677
|
type: "PARAGRAPH";
|
1594
1678
|
id: string;
|
@@ -2267,6 +2351,34 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
2267
2351
|
configuration?: {
|
2268
2352
|
notice?: import("../commons").TranslationConfig | undefined;
|
2269
2353
|
} | undefined;
|
2354
|
+
} | {
|
2355
|
+
type: "DATE_RANGE";
|
2356
|
+
id: string;
|
2357
|
+
label: import("../commons").TranslationConfig;
|
2358
|
+
parent?: {
|
2359
|
+
_fieldId?: string | undefined;
|
2360
|
+
} | undefined;
|
2361
|
+
validation?: {
|
2362
|
+
message: import("../commons").TranslationConfig;
|
2363
|
+
validator: import("../commons").JSONSchema;
|
2364
|
+
}[] | undefined;
|
2365
|
+
required?: boolean | undefined;
|
2366
|
+
defaultValue?: string | [string, string] | undefined;
|
2367
|
+
conditionals?: ({
|
2368
|
+
type: "SHOW";
|
2369
|
+
conditional: import("../commons").JSONSchema;
|
2370
|
+
} | {
|
2371
|
+
type: "ENABLE";
|
2372
|
+
conditional: import("../commons").JSONSchema;
|
2373
|
+
} | {
|
2374
|
+
type: "DISPLAY_ON_REVIEW";
|
2375
|
+
conditional: import("../commons").JSONSchema;
|
2376
|
+
})[] | undefined;
|
2377
|
+
placeholder?: import("../commons").TranslationConfig | undefined;
|
2378
|
+
hideLabel?: boolean | undefined;
|
2379
|
+
configuration?: {
|
2380
|
+
notice?: import("../commons").TranslationConfig | undefined;
|
2381
|
+
} | undefined;
|
2270
2382
|
} | {
|
2271
2383
|
type: "PARAGRAPH";
|
2272
2384
|
id: string;
|
@@ -2993,6 +3105,34 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
2993
3105
|
configuration?: {
|
2994
3106
|
notice?: import("../commons").TranslationConfig | undefined;
|
2995
3107
|
} | undefined;
|
3108
|
+
} | {
|
3109
|
+
type: "DATE_RANGE";
|
3110
|
+
id: string;
|
3111
|
+
label: import("../commons").TranslationConfig;
|
3112
|
+
parent?: {
|
3113
|
+
_fieldId?: string | undefined;
|
3114
|
+
} | undefined;
|
3115
|
+
validation?: {
|
3116
|
+
message: import("../commons").TranslationConfig;
|
3117
|
+
validator: import("../commons").JSONSchema;
|
3118
|
+
}[] | undefined;
|
3119
|
+
required?: boolean | undefined;
|
3120
|
+
defaultValue?: string | [string, string] | undefined;
|
3121
|
+
conditionals?: ({
|
3122
|
+
type: "SHOW";
|
3123
|
+
conditional: import("../commons").JSONSchema;
|
3124
|
+
} | {
|
3125
|
+
type: "ENABLE";
|
3126
|
+
conditional: import("../commons").JSONSchema;
|
3127
|
+
} | {
|
3128
|
+
type: "DISPLAY_ON_REVIEW";
|
3129
|
+
conditional: import("../commons").JSONSchema;
|
3130
|
+
})[] | undefined;
|
3131
|
+
placeholder?: import("../commons").TranslationConfig | undefined;
|
3132
|
+
hideLabel?: boolean | undefined;
|
3133
|
+
configuration?: {
|
3134
|
+
notice?: import("../commons").TranslationConfig | undefined;
|
3135
|
+
} | undefined;
|
2996
3136
|
} | {
|
2997
3137
|
type: "PARAGRAPH";
|
2998
3138
|
id: string;
|
@@ -3674,6 +3814,34 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
3674
3814
|
configuration?: {
|
3675
3815
|
notice?: import("../commons").TranslationConfig | undefined;
|
3676
3816
|
} | undefined;
|
3817
|
+
} | {
|
3818
|
+
type: "DATE_RANGE";
|
3819
|
+
id: string;
|
3820
|
+
label: import("../commons").TranslationConfig;
|
3821
|
+
parent?: {
|
3822
|
+
_fieldId?: string | undefined;
|
3823
|
+
} | undefined;
|
3824
|
+
validation?: {
|
3825
|
+
message: import("../commons").TranslationConfig;
|
3826
|
+
validator: import("../commons").JSONSchema;
|
3827
|
+
}[] | undefined;
|
3828
|
+
required?: boolean | undefined;
|
3829
|
+
defaultValue?: string | [string, string] | undefined;
|
3830
|
+
conditionals?: ({
|
3831
|
+
type: "SHOW";
|
3832
|
+
conditional: import("../commons").JSONSchema;
|
3833
|
+
} | {
|
3834
|
+
type: "ENABLE";
|
3835
|
+
conditional: import("../commons").JSONSchema;
|
3836
|
+
} | {
|
3837
|
+
type: "DISPLAY_ON_REVIEW";
|
3838
|
+
conditional: import("../commons").JSONSchema;
|
3839
|
+
})[] | undefined;
|
3840
|
+
placeholder?: import("../commons").TranslationConfig | undefined;
|
3841
|
+
hideLabel?: boolean | undefined;
|
3842
|
+
configuration?: {
|
3843
|
+
notice?: import("../commons").TranslationConfig | undefined;
|
3844
|
+
} | undefined;
|
3677
3845
|
} | {
|
3678
3846
|
type: "PARAGRAPH";
|
3679
3847
|
id: string;
|
@@ -4356,6 +4524,34 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
4356
4524
|
configuration?: {
|
4357
4525
|
notice?: import("../commons").TranslationConfig | undefined;
|
4358
4526
|
} | undefined;
|
4527
|
+
} | {
|
4528
|
+
type: "DATE_RANGE";
|
4529
|
+
id: string;
|
4530
|
+
label: import("../commons").TranslationConfig;
|
4531
|
+
parent?: {
|
4532
|
+
_fieldId?: string | undefined;
|
4533
|
+
} | undefined;
|
4534
|
+
validation?: {
|
4535
|
+
message: import("../commons").TranslationConfig;
|
4536
|
+
validator: import("../commons").JSONSchema;
|
4537
|
+
}[] | undefined;
|
4538
|
+
required?: boolean | undefined;
|
4539
|
+
defaultValue?: string | [string, string] | undefined;
|
4540
|
+
conditionals?: ({
|
4541
|
+
type: "SHOW";
|
4542
|
+
conditional: import("../commons").JSONSchema;
|
4543
|
+
} | {
|
4544
|
+
type: "ENABLE";
|
4545
|
+
conditional: import("../commons").JSONSchema;
|
4546
|
+
} | {
|
4547
|
+
type: "DISPLAY_ON_REVIEW";
|
4548
|
+
conditional: import("../commons").JSONSchema;
|
4549
|
+
})[] | undefined;
|
4550
|
+
placeholder?: import("../commons").TranslationConfig | undefined;
|
4551
|
+
hideLabel?: boolean | undefined;
|
4552
|
+
configuration?: {
|
4553
|
+
notice?: import("../commons").TranslationConfig | undefined;
|
4554
|
+
} | undefined;
|
4359
4555
|
} | {
|
4360
4556
|
type: "PARAGRAPH";
|
4361
4557
|
id: string;
|
@@ -5037,6 +5233,34 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
5037
5233
|
configuration?: {
|
5038
5234
|
notice?: import("../commons").TranslationConfig | undefined;
|
5039
5235
|
} | undefined;
|
5236
|
+
} | {
|
5237
|
+
type: "DATE_RANGE";
|
5238
|
+
id: string;
|
5239
|
+
label: import("../commons").TranslationConfig;
|
5240
|
+
parent?: {
|
5241
|
+
_fieldId?: string | undefined;
|
5242
|
+
} | undefined;
|
5243
|
+
validation?: {
|
5244
|
+
message: import("../commons").TranslationConfig;
|
5245
|
+
validator: import("../commons").JSONSchema;
|
5246
|
+
}[] | undefined;
|
5247
|
+
required?: boolean | undefined;
|
5248
|
+
defaultValue?: string | [string, string] | undefined;
|
5249
|
+
conditionals?: ({
|
5250
|
+
type: "SHOW";
|
5251
|
+
conditional: import("../commons").JSONSchema;
|
5252
|
+
} | {
|
5253
|
+
type: "ENABLE";
|
5254
|
+
conditional: import("../commons").JSONSchema;
|
5255
|
+
} | {
|
5256
|
+
type: "DISPLAY_ON_REVIEW";
|
5257
|
+
conditional: import("../commons").JSONSchema;
|
5258
|
+
})[] | undefined;
|
5259
|
+
placeholder?: import("../commons").TranslationConfig | undefined;
|
5260
|
+
hideLabel?: boolean | undefined;
|
5261
|
+
configuration?: {
|
5262
|
+
notice?: import("../commons").TranslationConfig | undefined;
|
5263
|
+
} | undefined;
|
5040
5264
|
} | {
|
5041
5265
|
type: "PARAGRAPH";
|
5042
5266
|
id: string;
|
@@ -5707,6 +5931,34 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
5707
5931
|
configuration?: {
|
5708
5932
|
notice?: import("../commons").TranslationConfig | undefined;
|
5709
5933
|
} | undefined;
|
5934
|
+
} | {
|
5935
|
+
type: "DATE_RANGE";
|
5936
|
+
id: string;
|
5937
|
+
label: import("../commons").TranslationConfig;
|
5938
|
+
parent?: {
|
5939
|
+
_fieldId?: string | undefined;
|
5940
|
+
} | undefined;
|
5941
|
+
validation?: {
|
5942
|
+
message: import("../commons").TranslationConfig;
|
5943
|
+
validator: import("../commons").JSONSchema;
|
5944
|
+
}[] | undefined;
|
5945
|
+
required?: boolean | undefined;
|
5946
|
+
defaultValue?: string | [string, string] | undefined;
|
5947
|
+
conditionals?: ({
|
5948
|
+
type: "SHOW";
|
5949
|
+
conditional: import("../commons").JSONSchema;
|
5950
|
+
} | {
|
5951
|
+
type: "ENABLE";
|
5952
|
+
conditional: import("../commons").JSONSchema;
|
5953
|
+
} | {
|
5954
|
+
type: "DISPLAY_ON_REVIEW";
|
5955
|
+
conditional: import("../commons").JSONSchema;
|
5956
|
+
})[] | undefined;
|
5957
|
+
placeholder?: import("../commons").TranslationConfig | undefined;
|
5958
|
+
hideLabel?: boolean | undefined;
|
5959
|
+
configuration?: {
|
5960
|
+
notice?: import("../commons").TranslationConfig | undefined;
|
5961
|
+
} | undefined;
|
5710
5962
|
} | {
|
5711
5963
|
type: "PARAGRAPH";
|
5712
5964
|
id: string;
|
@@ -6388,6 +6640,34 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
6388
6640
|
configuration?: {
|
6389
6641
|
notice?: import("../commons").TranslationConfig | undefined;
|
6390
6642
|
} | undefined;
|
6643
|
+
} | {
|
6644
|
+
type: "DATE_RANGE";
|
6645
|
+
id: string;
|
6646
|
+
label: import("../commons").TranslationConfig;
|
6647
|
+
parent?: {
|
6648
|
+
_fieldId?: string | undefined;
|
6649
|
+
} | undefined;
|
6650
|
+
validation?: {
|
6651
|
+
message: import("../commons").TranslationConfig;
|
6652
|
+
validator: import("../commons").JSONSchema;
|
6653
|
+
}[] | undefined;
|
6654
|
+
required?: boolean | undefined;
|
6655
|
+
defaultValue?: string | [string, string] | undefined;
|
6656
|
+
conditionals?: ({
|
6657
|
+
type: "SHOW";
|
6658
|
+
conditional: import("../commons").JSONSchema;
|
6659
|
+
} | {
|
6660
|
+
type: "ENABLE";
|
6661
|
+
conditional: import("../commons").JSONSchema;
|
6662
|
+
} | {
|
6663
|
+
type: "DISPLAY_ON_REVIEW";
|
6664
|
+
conditional: import("../commons").JSONSchema;
|
6665
|
+
})[] | undefined;
|
6666
|
+
placeholder?: import("../commons").TranslationConfig | undefined;
|
6667
|
+
hideLabel?: boolean | undefined;
|
6668
|
+
configuration?: {
|
6669
|
+
notice?: import("../commons").TranslationConfig | undefined;
|
6670
|
+
} | undefined;
|
6391
6671
|
} | {
|
6392
6672
|
type: "PARAGRAPH";
|
6393
6673
|
id: string;
|
@@ -6881,6 +7161,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
6881
7161
|
type: "SHOW";
|
6882
7162
|
conditional: import("../commons").JSONSchema;
|
6883
7163
|
}[] | undefined;
|
7164
|
+
label?: import("../commons").TranslationConfig | undefined;
|
6884
7165
|
emptyValueMessage?: import("../commons").TranslationConfig | undefined;
|
6885
7166
|
} | {
|
6886
7167
|
id: string;
|
@@ -6902,7 +7183,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
6902
7183
|
title: import("../commons").TranslationConfig;
|
6903
7184
|
fields: ({
|
6904
7185
|
config: {
|
6905
|
-
type: "
|
7186
|
+
type: "exact" | "fuzzy" | "range";
|
6906
7187
|
};
|
6907
7188
|
fieldId: string;
|
6908
7189
|
fieldType: "field";
|
@@ -6912,7 +7193,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
6912
7193
|
}[] | undefined;
|
6913
7194
|
} | {
|
6914
7195
|
config: {
|
6915
|
-
type: "
|
7196
|
+
type: "exact" | "fuzzy" | "range";
|
6916
7197
|
};
|
6917
7198
|
fieldId: "status" | "trackingId";
|
6918
7199
|
fieldType: "event";
|
@@ -6941,7 +7222,6 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
6941
7222
|
type: string;
|
6942
7223
|
id: string;
|
6943
7224
|
createdAt: string;
|
6944
|
-
updatedAtLocation: string;
|
6945
7225
|
updatedAt: string;
|
6946
7226
|
actions: ({
|
6947
7227
|
type: "ASSIGN";
|
@@ -6988,7 +7268,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
6988
7268
|
option: string;
|
6989
7269
|
filename: string;
|
6990
7270
|
originalFilename: string;
|
6991
|
-
}[] | undefined>;
|
7271
|
+
}[] | [string, string] | undefined>;
|
7272
|
+
createdAtLocation: string;
|
6992
7273
|
assignedTo: string;
|
6993
7274
|
annotation?: Record<string, string | number | boolean | {
|
6994
7275
|
type: string;
|
@@ -7027,9 +7308,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7027
7308
|
option: string;
|
7028
7309
|
filename: string;
|
7029
7310
|
originalFilename: string;
|
7030
|
-
}[] | undefined> | undefined;
|
7031
|
-
createdAtLocation?: string | undefined;
|
7032
|
-
updatedAtLocation?: string | undefined;
|
7311
|
+
}[] | [string, string] | undefined> | undefined;
|
7033
7312
|
originalActionId?: string | undefined;
|
7034
7313
|
} | {
|
7035
7314
|
type: "UNASSIGN";
|
@@ -7076,7 +7355,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7076
7355
|
option: string;
|
7077
7356
|
filename: string;
|
7078
7357
|
originalFilename: string;
|
7079
|
-
}[] | undefined>;
|
7358
|
+
}[] | [string, string] | undefined>;
|
7359
|
+
createdAtLocation: string;
|
7080
7360
|
assignedTo: null;
|
7081
7361
|
annotation?: Record<string, string | number | boolean | {
|
7082
7362
|
type: string;
|
@@ -7115,9 +7395,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7115
7395
|
option: string;
|
7116
7396
|
filename: string;
|
7117
7397
|
originalFilename: string;
|
7118
|
-
}[] | undefined> | undefined;
|
7119
|
-
createdAtLocation?: string | undefined;
|
7120
|
-
updatedAtLocation?: string | undefined;
|
7398
|
+
}[] | [string, string] | undefined> | undefined;
|
7121
7399
|
originalActionId?: string | undefined;
|
7122
7400
|
} | {
|
7123
7401
|
type: "REGISTER";
|
@@ -7164,7 +7442,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7164
7442
|
option: string;
|
7165
7443
|
filename: string;
|
7166
7444
|
originalFilename: string;
|
7167
|
-
}[] | undefined>;
|
7445
|
+
}[] | [string, string] | undefined>;
|
7446
|
+
createdAtLocation: string;
|
7168
7447
|
annotation?: Record<string, string | number | boolean | {
|
7169
7448
|
type: string;
|
7170
7449
|
filename: string;
|
@@ -7202,9 +7481,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7202
7481
|
option: string;
|
7203
7482
|
filename: string;
|
7204
7483
|
originalFilename: string;
|
7205
|
-
}[] | undefined> | undefined;
|
7206
|
-
createdAtLocation?: string | undefined;
|
7207
|
-
updatedAtLocation?: string | undefined;
|
7484
|
+
}[] | [string, string] | undefined> | undefined;
|
7208
7485
|
originalActionId?: string | undefined;
|
7209
7486
|
registrationNumber?: string | undefined;
|
7210
7487
|
} | {
|
@@ -7252,7 +7529,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7252
7529
|
option: string;
|
7253
7530
|
filename: string;
|
7254
7531
|
originalFilename: string;
|
7255
|
-
}[] | undefined>;
|
7532
|
+
}[] | [string, string] | undefined>;
|
7533
|
+
createdAtLocation: string;
|
7256
7534
|
annotation?: Record<string, string | number | boolean | {
|
7257
7535
|
type: string;
|
7258
7536
|
filename: string;
|
@@ -7290,9 +7568,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7290
7568
|
option: string;
|
7291
7569
|
filename: string;
|
7292
7570
|
originalFilename: string;
|
7293
|
-
}[] | undefined> | undefined;
|
7294
|
-
createdAtLocation?: string | undefined;
|
7295
|
-
updatedAtLocation?: string | undefined;
|
7571
|
+
}[] | [string, string] | undefined> | undefined;
|
7296
7572
|
originalActionId?: string | undefined;
|
7297
7573
|
} | {
|
7298
7574
|
type: "VALIDATE";
|
@@ -7339,7 +7615,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7339
7615
|
option: string;
|
7340
7616
|
filename: string;
|
7341
7617
|
originalFilename: string;
|
7342
|
-
}[] | undefined>;
|
7618
|
+
}[] | [string, string] | undefined>;
|
7619
|
+
createdAtLocation: string;
|
7343
7620
|
annotation?: Record<string, string | number | boolean | {
|
7344
7621
|
type: string;
|
7345
7622
|
filename: string;
|
@@ -7377,9 +7654,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7377
7654
|
option: string;
|
7378
7655
|
filename: string;
|
7379
7656
|
originalFilename: string;
|
7380
|
-
}[] | undefined> | undefined;
|
7381
|
-
createdAtLocation?: string | undefined;
|
7382
|
-
updatedAtLocation?: string | undefined;
|
7657
|
+
}[] | [string, string] | undefined> | undefined;
|
7383
7658
|
originalActionId?: string | undefined;
|
7384
7659
|
} | {
|
7385
7660
|
type: "REJECT";
|
@@ -7426,7 +7701,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7426
7701
|
option: string;
|
7427
7702
|
filename: string;
|
7428
7703
|
originalFilename: string;
|
7429
|
-
}[] | undefined>;
|
7704
|
+
}[] | [string, string] | undefined>;
|
7705
|
+
createdAtLocation: string;
|
7430
7706
|
annotation?: Record<string, string | number | boolean | {
|
7431
7707
|
type: string;
|
7432
7708
|
filename: string;
|
@@ -7464,9 +7740,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7464
7740
|
option: string;
|
7465
7741
|
filename: string;
|
7466
7742
|
originalFilename: string;
|
7467
|
-
}[] | undefined> | undefined;
|
7468
|
-
createdAtLocation?: string | undefined;
|
7469
|
-
updatedAtLocation?: string | undefined;
|
7743
|
+
}[] | [string, string] | undefined> | undefined;
|
7470
7744
|
originalActionId?: string | undefined;
|
7471
7745
|
} | {
|
7472
7746
|
type: "MARKED_AS_DUPLICATE";
|
@@ -7513,7 +7787,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7513
7787
|
option: string;
|
7514
7788
|
filename: string;
|
7515
7789
|
originalFilename: string;
|
7516
|
-
}[] | undefined>;
|
7790
|
+
}[] | [string, string] | undefined>;
|
7791
|
+
createdAtLocation: string;
|
7517
7792
|
annotation?: Record<string, string | number | boolean | {
|
7518
7793
|
type: string;
|
7519
7794
|
filename: string;
|
@@ -7551,9 +7826,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7551
7826
|
option: string;
|
7552
7827
|
filename: string;
|
7553
7828
|
originalFilename: string;
|
7554
|
-
}[] | undefined> | undefined;
|
7555
|
-
createdAtLocation?: string | undefined;
|
7556
|
-
updatedAtLocation?: string | undefined;
|
7829
|
+
}[] | [string, string] | undefined> | undefined;
|
7557
7830
|
originalActionId?: string | undefined;
|
7558
7831
|
} | {
|
7559
7832
|
type: "ARCHIVE";
|
@@ -7600,7 +7873,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7600
7873
|
option: string;
|
7601
7874
|
filename: string;
|
7602
7875
|
originalFilename: string;
|
7603
|
-
}[] | undefined>;
|
7876
|
+
}[] | [string, string] | undefined>;
|
7877
|
+
createdAtLocation: string;
|
7604
7878
|
annotation?: Record<string, string | number | boolean | {
|
7605
7879
|
type: string;
|
7606
7880
|
filename: string;
|
@@ -7638,9 +7912,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7638
7912
|
option: string;
|
7639
7913
|
filename: string;
|
7640
7914
|
originalFilename: string;
|
7641
|
-
}[] | undefined> | undefined;
|
7642
|
-
createdAtLocation?: string | undefined;
|
7643
|
-
updatedAtLocation?: string | undefined;
|
7915
|
+
}[] | [string, string] | undefined> | undefined;
|
7644
7916
|
originalActionId?: string | undefined;
|
7645
7917
|
} | {
|
7646
7918
|
type: "CREATE";
|
@@ -7687,7 +7959,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7687
7959
|
option: string;
|
7688
7960
|
filename: string;
|
7689
7961
|
originalFilename: string;
|
7690
|
-
}[] | undefined>;
|
7962
|
+
}[] | [string, string] | undefined>;
|
7963
|
+
createdAtLocation: string;
|
7691
7964
|
annotation?: Record<string, string | number | boolean | {
|
7692
7965
|
type: string;
|
7693
7966
|
filename: string;
|
@@ -7725,9 +7998,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7725
7998
|
option: string;
|
7726
7999
|
filename: string;
|
7727
8000
|
originalFilename: string;
|
7728
|
-
}[] | undefined> | undefined;
|
7729
|
-
createdAtLocation?: string | undefined;
|
7730
|
-
updatedAtLocation?: string | undefined;
|
8001
|
+
}[] | [string, string] | undefined> | undefined;
|
7731
8002
|
originalActionId?: string | undefined;
|
7732
8003
|
} | {
|
7733
8004
|
type: "NOTIFY";
|
@@ -7774,7 +8045,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7774
8045
|
option: string;
|
7775
8046
|
filename: string;
|
7776
8047
|
originalFilename: string;
|
7777
|
-
}[] | undefined>;
|
8048
|
+
}[] | [string, string] | undefined>;
|
8049
|
+
createdAtLocation: string;
|
7778
8050
|
annotation?: Record<string, string | number | boolean | {
|
7779
8051
|
type: string;
|
7780
8052
|
filename: string;
|
@@ -7812,9 +8084,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7812
8084
|
option: string;
|
7813
8085
|
filename: string;
|
7814
8086
|
originalFilename: string;
|
7815
|
-
}[] | undefined> | undefined;
|
7816
|
-
createdAtLocation?: string | undefined;
|
7817
|
-
updatedAtLocation?: string | undefined;
|
8087
|
+
}[] | [string, string] | undefined> | undefined;
|
7818
8088
|
originalActionId?: string | undefined;
|
7819
8089
|
} | {
|
7820
8090
|
type: "PRINT_CERTIFICATE";
|
@@ -7861,7 +8131,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7861
8131
|
option: string;
|
7862
8132
|
filename: string;
|
7863
8133
|
originalFilename: string;
|
7864
|
-
}[] | undefined>;
|
8134
|
+
}[] | [string, string] | undefined>;
|
8135
|
+
createdAtLocation: string;
|
7865
8136
|
annotation?: Record<string, string | number | boolean | {
|
7866
8137
|
type: string;
|
7867
8138
|
filename: string;
|
@@ -7899,9 +8170,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7899
8170
|
option: string;
|
7900
8171
|
filename: string;
|
7901
8172
|
originalFilename: string;
|
7902
|
-
}[] | undefined> | undefined;
|
7903
|
-
createdAtLocation?: string | undefined;
|
7904
|
-
updatedAtLocation?: string | undefined;
|
8173
|
+
}[] | [string, string] | undefined> | undefined;
|
7905
8174
|
originalActionId?: string | undefined;
|
7906
8175
|
} | {
|
7907
8176
|
type: "REQUEST_CORRECTION";
|
@@ -7948,7 +8217,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7948
8217
|
option: string;
|
7949
8218
|
filename: string;
|
7950
8219
|
originalFilename: string;
|
7951
|
-
}[] | undefined>;
|
8220
|
+
}[] | [string, string] | undefined>;
|
8221
|
+
createdAtLocation: string;
|
7952
8222
|
annotation?: Record<string, string | number | boolean | {
|
7953
8223
|
type: string;
|
7954
8224
|
filename: string;
|
@@ -7986,9 +8256,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
7986
8256
|
option: string;
|
7987
8257
|
filename: string;
|
7988
8258
|
originalFilename: string;
|
7989
|
-
}[] | undefined> | undefined;
|
7990
|
-
createdAtLocation?: string | undefined;
|
7991
|
-
updatedAtLocation?: string | undefined;
|
8259
|
+
}[] | [string, string] | undefined> | undefined;
|
7992
8260
|
originalActionId?: string | undefined;
|
7993
8261
|
} | {
|
7994
8262
|
type: "APPROVE_CORRECTION";
|
@@ -8035,7 +8303,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8035
8303
|
option: string;
|
8036
8304
|
filename: string;
|
8037
8305
|
originalFilename: string;
|
8038
|
-
}[] | undefined>;
|
8306
|
+
}[] | [string, string] | undefined>;
|
8307
|
+
createdAtLocation: string;
|
8039
8308
|
requestId: string;
|
8040
8309
|
annotation?: Record<string, string | number | boolean | {
|
8041
8310
|
type: string;
|
@@ -8074,9 +8343,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8074
8343
|
option: string;
|
8075
8344
|
filename: string;
|
8076
8345
|
originalFilename: string;
|
8077
|
-
}[] | undefined> | undefined;
|
8078
|
-
createdAtLocation?: string | undefined;
|
8079
|
-
updatedAtLocation?: string | undefined;
|
8346
|
+
}[] | [string, string] | undefined> | undefined;
|
8080
8347
|
originalActionId?: string | undefined;
|
8081
8348
|
} | {
|
8082
8349
|
type: "REJECT_CORRECTION";
|
@@ -8123,7 +8390,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8123
8390
|
option: string;
|
8124
8391
|
filename: string;
|
8125
8392
|
originalFilename: string;
|
8126
|
-
}[] | undefined>;
|
8393
|
+
}[] | [string, string] | undefined>;
|
8394
|
+
createdAtLocation: string;
|
8127
8395
|
requestId: string;
|
8128
8396
|
annotation?: Record<string, string | number | boolean | {
|
8129
8397
|
type: string;
|
@@ -8162,9 +8430,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8162
8430
|
option: string;
|
8163
8431
|
filename: string;
|
8164
8432
|
originalFilename: string;
|
8165
|
-
}[] | undefined> | undefined;
|
8166
|
-
createdAtLocation?: string | undefined;
|
8167
|
-
updatedAtLocation?: string | undefined;
|
8433
|
+
}[] | [string, string] | undefined> | undefined;
|
8168
8434
|
originalActionId?: string | undefined;
|
8169
8435
|
} | {
|
8170
8436
|
type: "READ";
|
@@ -8211,7 +8477,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8211
8477
|
option: string;
|
8212
8478
|
filename: string;
|
8213
8479
|
originalFilename: string;
|
8214
|
-
}[] | undefined>;
|
8480
|
+
}[] | [string, string] | undefined>;
|
8481
|
+
createdAtLocation: string;
|
8215
8482
|
annotation?: Record<string, string | number | boolean | {
|
8216
8483
|
type: string;
|
8217
8484
|
filename: string;
|
@@ -8249,9 +8516,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8249
8516
|
option: string;
|
8250
8517
|
filename: string;
|
8251
8518
|
originalFilename: string;
|
8252
|
-
}[] | undefined> | undefined;
|
8253
|
-
createdAtLocation?: string | undefined;
|
8254
|
-
updatedAtLocation?: string | undefined;
|
8519
|
+
}[] | [string, string] | undefined> | undefined;
|
8255
8520
|
originalActionId?: string | undefined;
|
8256
8521
|
} | {
|
8257
8522
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -8259,7 +8524,9 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8259
8524
|
status: "Rejected";
|
8260
8525
|
transactionId: string;
|
8261
8526
|
createdAt: string;
|
8262
|
-
|
8527
|
+
createdBy: string;
|
8528
|
+
createdByRole: string;
|
8529
|
+
createdAtLocation: string;
|
8263
8530
|
originalActionId?: string | undefined;
|
8264
8531
|
})[];
|
8265
8532
|
trackingId: string;
|
@@ -8274,7 +8541,6 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8274
8541
|
type: string;
|
8275
8542
|
id: string;
|
8276
8543
|
createdAt: string;
|
8277
|
-
updatedAtLocation: string;
|
8278
8544
|
updatedAt: string;
|
8279
8545
|
actions: ({
|
8280
8546
|
type: "ASSIGN";
|
@@ -8321,7 +8587,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8321
8587
|
option: string;
|
8322
8588
|
filename: string;
|
8323
8589
|
originalFilename: string;
|
8324
|
-
}[] | undefined>;
|
8590
|
+
}[] | [string, string] | undefined>;
|
8591
|
+
createdAtLocation: string;
|
8325
8592
|
assignedTo: string;
|
8326
8593
|
annotation?: Record<string, string | number | boolean | {
|
8327
8594
|
type: string;
|
@@ -8360,9 +8627,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8360
8627
|
option: string;
|
8361
8628
|
filename: string;
|
8362
8629
|
originalFilename: string;
|
8363
|
-
}[] | undefined> | undefined;
|
8364
|
-
createdAtLocation?: string | undefined;
|
8365
|
-
updatedAtLocation?: string | undefined;
|
8630
|
+
}[] | [string, string] | undefined> | undefined;
|
8366
8631
|
originalActionId?: string | undefined;
|
8367
8632
|
} | {
|
8368
8633
|
type: "UNASSIGN";
|
@@ -8409,7 +8674,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8409
8674
|
option: string;
|
8410
8675
|
filename: string;
|
8411
8676
|
originalFilename: string;
|
8412
|
-
}[] | undefined>;
|
8677
|
+
}[] | [string, string] | undefined>;
|
8678
|
+
createdAtLocation: string;
|
8413
8679
|
assignedTo: null;
|
8414
8680
|
annotation?: Record<string, string | number | boolean | {
|
8415
8681
|
type: string;
|
@@ -8448,9 +8714,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8448
8714
|
option: string;
|
8449
8715
|
filename: string;
|
8450
8716
|
originalFilename: string;
|
8451
|
-
}[] | undefined> | undefined;
|
8452
|
-
createdAtLocation?: string | undefined;
|
8453
|
-
updatedAtLocation?: string | undefined;
|
8717
|
+
}[] | [string, string] | undefined> | undefined;
|
8454
8718
|
originalActionId?: string | undefined;
|
8455
8719
|
} | {
|
8456
8720
|
type: "REGISTER";
|
@@ -8497,7 +8761,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8497
8761
|
option: string;
|
8498
8762
|
filename: string;
|
8499
8763
|
originalFilename: string;
|
8500
|
-
}[] | undefined>;
|
8764
|
+
}[] | [string, string] | undefined>;
|
8765
|
+
createdAtLocation: string;
|
8501
8766
|
annotation?: Record<string, string | number | boolean | {
|
8502
8767
|
type: string;
|
8503
8768
|
filename: string;
|
@@ -8535,9 +8800,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8535
8800
|
option: string;
|
8536
8801
|
filename: string;
|
8537
8802
|
originalFilename: string;
|
8538
|
-
}[] | undefined> | undefined;
|
8539
|
-
createdAtLocation?: string | undefined;
|
8540
|
-
updatedAtLocation?: string | undefined;
|
8803
|
+
}[] | [string, string] | undefined> | undefined;
|
8541
8804
|
originalActionId?: string | undefined;
|
8542
8805
|
registrationNumber?: string | undefined;
|
8543
8806
|
} | {
|
@@ -8585,7 +8848,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8585
8848
|
option: string;
|
8586
8849
|
filename: string;
|
8587
8850
|
originalFilename: string;
|
8588
|
-
}[] | undefined>;
|
8851
|
+
}[] | [string, string] | undefined>;
|
8852
|
+
createdAtLocation: string;
|
8589
8853
|
annotation?: Record<string, string | number | boolean | {
|
8590
8854
|
type: string;
|
8591
8855
|
filename: string;
|
@@ -8623,9 +8887,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8623
8887
|
option: string;
|
8624
8888
|
filename: string;
|
8625
8889
|
originalFilename: string;
|
8626
|
-
}[] | undefined> | undefined;
|
8627
|
-
createdAtLocation?: string | undefined;
|
8628
|
-
updatedAtLocation?: string | undefined;
|
8890
|
+
}[] | [string, string] | undefined> | undefined;
|
8629
8891
|
originalActionId?: string | undefined;
|
8630
8892
|
} | {
|
8631
8893
|
type: "VALIDATE";
|
@@ -8672,7 +8934,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8672
8934
|
option: string;
|
8673
8935
|
filename: string;
|
8674
8936
|
originalFilename: string;
|
8675
|
-
}[] | undefined>;
|
8937
|
+
}[] | [string, string] | undefined>;
|
8938
|
+
createdAtLocation: string;
|
8676
8939
|
annotation?: Record<string, string | number | boolean | {
|
8677
8940
|
type: string;
|
8678
8941
|
filename: string;
|
@@ -8710,9 +8973,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8710
8973
|
option: string;
|
8711
8974
|
filename: string;
|
8712
8975
|
originalFilename: string;
|
8713
|
-
}[] | undefined> | undefined;
|
8714
|
-
createdAtLocation?: string | undefined;
|
8715
|
-
updatedAtLocation?: string | undefined;
|
8976
|
+
}[] | [string, string] | undefined> | undefined;
|
8716
8977
|
originalActionId?: string | undefined;
|
8717
8978
|
} | {
|
8718
8979
|
type: "REJECT";
|
@@ -8759,7 +9020,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8759
9020
|
option: string;
|
8760
9021
|
filename: string;
|
8761
9022
|
originalFilename: string;
|
8762
|
-
}[] | undefined>;
|
9023
|
+
}[] | [string, string] | undefined>;
|
9024
|
+
createdAtLocation: string;
|
8763
9025
|
annotation?: Record<string, string | number | boolean | {
|
8764
9026
|
type: string;
|
8765
9027
|
filename: string;
|
@@ -8797,9 +9059,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8797
9059
|
option: string;
|
8798
9060
|
filename: string;
|
8799
9061
|
originalFilename: string;
|
8800
|
-
}[] | undefined> | undefined;
|
8801
|
-
createdAtLocation?: string | undefined;
|
8802
|
-
updatedAtLocation?: string | undefined;
|
9062
|
+
}[] | [string, string] | undefined> | undefined;
|
8803
9063
|
originalActionId?: string | undefined;
|
8804
9064
|
} | {
|
8805
9065
|
type: "MARKED_AS_DUPLICATE";
|
@@ -8846,7 +9106,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8846
9106
|
option: string;
|
8847
9107
|
filename: string;
|
8848
9108
|
originalFilename: string;
|
8849
|
-
}[] | undefined>;
|
9109
|
+
}[] | [string, string] | undefined>;
|
9110
|
+
createdAtLocation: string;
|
8850
9111
|
annotation?: Record<string, string | number | boolean | {
|
8851
9112
|
type: string;
|
8852
9113
|
filename: string;
|
@@ -8884,9 +9145,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8884
9145
|
option: string;
|
8885
9146
|
filename: string;
|
8886
9147
|
originalFilename: string;
|
8887
|
-
}[] | undefined> | undefined;
|
8888
|
-
createdAtLocation?: string | undefined;
|
8889
|
-
updatedAtLocation?: string | undefined;
|
9148
|
+
}[] | [string, string] | undefined> | undefined;
|
8890
9149
|
originalActionId?: string | undefined;
|
8891
9150
|
} | {
|
8892
9151
|
type: "ARCHIVE";
|
@@ -8933,7 +9192,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8933
9192
|
option: string;
|
8934
9193
|
filename: string;
|
8935
9194
|
originalFilename: string;
|
8936
|
-
}[] | undefined>;
|
9195
|
+
}[] | [string, string] | undefined>;
|
9196
|
+
createdAtLocation: string;
|
8937
9197
|
annotation?: Record<string, string | number | boolean | {
|
8938
9198
|
type: string;
|
8939
9199
|
filename: string;
|
@@ -8971,9 +9231,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
8971
9231
|
option: string;
|
8972
9232
|
filename: string;
|
8973
9233
|
originalFilename: string;
|
8974
|
-
}[] | undefined> | undefined;
|
8975
|
-
createdAtLocation?: string | undefined;
|
8976
|
-
updatedAtLocation?: string | undefined;
|
9234
|
+
}[] | [string, string] | undefined> | undefined;
|
8977
9235
|
originalActionId?: string | undefined;
|
8978
9236
|
} | {
|
8979
9237
|
type: "CREATE";
|
@@ -9020,7 +9278,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9020
9278
|
option: string;
|
9021
9279
|
filename: string;
|
9022
9280
|
originalFilename: string;
|
9023
|
-
}[] | undefined>;
|
9281
|
+
}[] | [string, string] | undefined>;
|
9282
|
+
createdAtLocation: string;
|
9024
9283
|
annotation?: Record<string, string | number | boolean | {
|
9025
9284
|
type: string;
|
9026
9285
|
filename: string;
|
@@ -9058,9 +9317,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9058
9317
|
option: string;
|
9059
9318
|
filename: string;
|
9060
9319
|
originalFilename: string;
|
9061
|
-
}[] | undefined> | undefined;
|
9062
|
-
createdAtLocation?: string | undefined;
|
9063
|
-
updatedAtLocation?: string | undefined;
|
9320
|
+
}[] | [string, string] | undefined> | undefined;
|
9064
9321
|
originalActionId?: string | undefined;
|
9065
9322
|
} | {
|
9066
9323
|
type: "NOTIFY";
|
@@ -9107,7 +9364,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9107
9364
|
option: string;
|
9108
9365
|
filename: string;
|
9109
9366
|
originalFilename: string;
|
9110
|
-
}[] | undefined>;
|
9367
|
+
}[] | [string, string] | undefined>;
|
9368
|
+
createdAtLocation: string;
|
9111
9369
|
annotation?: Record<string, string | number | boolean | {
|
9112
9370
|
type: string;
|
9113
9371
|
filename: string;
|
@@ -9145,9 +9403,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9145
9403
|
option: string;
|
9146
9404
|
filename: string;
|
9147
9405
|
originalFilename: string;
|
9148
|
-
}[] | undefined> | undefined;
|
9149
|
-
createdAtLocation?: string | undefined;
|
9150
|
-
updatedAtLocation?: string | undefined;
|
9406
|
+
}[] | [string, string] | undefined> | undefined;
|
9151
9407
|
originalActionId?: string | undefined;
|
9152
9408
|
} | {
|
9153
9409
|
type: "PRINT_CERTIFICATE";
|
@@ -9194,7 +9450,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9194
9450
|
option: string;
|
9195
9451
|
filename: string;
|
9196
9452
|
originalFilename: string;
|
9197
|
-
}[] | undefined>;
|
9453
|
+
}[] | [string, string] | undefined>;
|
9454
|
+
createdAtLocation: string;
|
9198
9455
|
annotation?: Record<string, string | number | boolean | {
|
9199
9456
|
type: string;
|
9200
9457
|
filename: string;
|
@@ -9232,9 +9489,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9232
9489
|
option: string;
|
9233
9490
|
filename: string;
|
9234
9491
|
originalFilename: string;
|
9235
|
-
}[] | undefined> | undefined;
|
9236
|
-
createdAtLocation?: string | undefined;
|
9237
|
-
updatedAtLocation?: string | undefined;
|
9492
|
+
}[] | [string, string] | undefined> | undefined;
|
9238
9493
|
originalActionId?: string | undefined;
|
9239
9494
|
} | {
|
9240
9495
|
type: "REQUEST_CORRECTION";
|
@@ -9281,7 +9536,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9281
9536
|
option: string;
|
9282
9537
|
filename: string;
|
9283
9538
|
originalFilename: string;
|
9284
|
-
}[] | undefined>;
|
9539
|
+
}[] | [string, string] | undefined>;
|
9540
|
+
createdAtLocation: string;
|
9285
9541
|
annotation?: Record<string, string | number | boolean | {
|
9286
9542
|
type: string;
|
9287
9543
|
filename: string;
|
@@ -9319,9 +9575,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9319
9575
|
option: string;
|
9320
9576
|
filename: string;
|
9321
9577
|
originalFilename: string;
|
9322
|
-
}[] | undefined> | undefined;
|
9323
|
-
createdAtLocation?: string | undefined;
|
9324
|
-
updatedAtLocation?: string | undefined;
|
9578
|
+
}[] | [string, string] | undefined> | undefined;
|
9325
9579
|
originalActionId?: string | undefined;
|
9326
9580
|
} | {
|
9327
9581
|
type: "APPROVE_CORRECTION";
|
@@ -9368,7 +9622,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9368
9622
|
option: string;
|
9369
9623
|
filename: string;
|
9370
9624
|
originalFilename: string;
|
9371
|
-
}[] | undefined>;
|
9625
|
+
}[] | [string, string] | undefined>;
|
9626
|
+
createdAtLocation: string;
|
9372
9627
|
requestId: string;
|
9373
9628
|
annotation?: Record<string, string | number | boolean | {
|
9374
9629
|
type: string;
|
@@ -9407,9 +9662,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9407
9662
|
option: string;
|
9408
9663
|
filename: string;
|
9409
9664
|
originalFilename: string;
|
9410
|
-
}[] | undefined> | undefined;
|
9411
|
-
createdAtLocation?: string | undefined;
|
9412
|
-
updatedAtLocation?: string | undefined;
|
9665
|
+
}[] | [string, string] | undefined> | undefined;
|
9413
9666
|
originalActionId?: string | undefined;
|
9414
9667
|
} | {
|
9415
9668
|
type: "REJECT_CORRECTION";
|
@@ -9456,7 +9709,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9456
9709
|
option: string;
|
9457
9710
|
filename: string;
|
9458
9711
|
originalFilename: string;
|
9459
|
-
}[] | undefined>;
|
9712
|
+
}[] | [string, string] | undefined>;
|
9713
|
+
createdAtLocation: string;
|
9460
9714
|
requestId: string;
|
9461
9715
|
annotation?: Record<string, string | number | boolean | {
|
9462
9716
|
type: string;
|
@@ -9495,9 +9749,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9495
9749
|
option: string;
|
9496
9750
|
filename: string;
|
9497
9751
|
originalFilename: string;
|
9498
|
-
}[] | undefined> | undefined;
|
9499
|
-
createdAtLocation?: string | undefined;
|
9500
|
-
updatedAtLocation?: string | undefined;
|
9752
|
+
}[] | [string, string] | undefined> | undefined;
|
9501
9753
|
originalActionId?: string | undefined;
|
9502
9754
|
} | {
|
9503
9755
|
type: "READ";
|
@@ -9544,7 +9796,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9544
9796
|
option: string;
|
9545
9797
|
filename: string;
|
9546
9798
|
originalFilename: string;
|
9547
|
-
}[] | undefined>;
|
9799
|
+
}[] | [string, string] | undefined>;
|
9800
|
+
createdAtLocation: string;
|
9548
9801
|
annotation?: Record<string, string | number | boolean | {
|
9549
9802
|
type: string;
|
9550
9803
|
filename: string;
|
@@ -9582,9 +9835,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9582
9835
|
option: string;
|
9583
9836
|
filename: string;
|
9584
9837
|
originalFilename: string;
|
9585
|
-
}[] | undefined> | undefined;
|
9586
|
-
createdAtLocation?: string | undefined;
|
9587
|
-
updatedAtLocation?: string | undefined;
|
9838
|
+
}[] | [string, string] | undefined> | undefined;
|
9588
9839
|
originalActionId?: string | undefined;
|
9589
9840
|
} | {
|
9590
9841
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -9592,7 +9843,9 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9592
9843
|
status: "Rejected";
|
9593
9844
|
transactionId: string;
|
9594
9845
|
createdAt: string;
|
9595
|
-
|
9846
|
+
createdBy: string;
|
9847
|
+
createdByRole: string;
|
9848
|
+
createdAtLocation: string;
|
9596
9849
|
originalActionId?: string | undefined;
|
9597
9850
|
})[];
|
9598
9851
|
trackingId: string;
|
@@ -9666,7 +9919,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9666
9919
|
option: string;
|
9667
9920
|
filename: string;
|
9668
9921
|
originalFilename: string;
|
9669
|
-
}[] | undefined>;
|
9922
|
+
}[] | [string, string] | undefined>;
|
9923
|
+
createdAtLocation: string;
|
9670
9924
|
annotation?: Record<string, string | number | boolean | {
|
9671
9925
|
type: string;
|
9672
9926
|
filename: string;
|
@@ -9704,9 +9958,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9704
9958
|
option: string;
|
9705
9959
|
filename: string;
|
9706
9960
|
originalFilename: string;
|
9707
|
-
}[] | undefined> | undefined;
|
9708
|
-
createdAtLocation?: string | undefined;
|
9709
|
-
updatedAtLocation?: string | undefined;
|
9961
|
+
}[] | [string, string] | undefined> | undefined;
|
9710
9962
|
originalActionId?: string | undefined;
|
9711
9963
|
};
|
9712
9964
|
}[];
|
@@ -9714,6 +9966,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9714
9966
|
create: import("@trpc/server").TRPCMutationProcedure<{
|
9715
9967
|
input: {
|
9716
9968
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "DELETE" | "CREATE" | "NOTIFY" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
9969
|
+
status: "Rejected" | "Requested" | "Accepted";
|
9717
9970
|
transactionId: string;
|
9718
9971
|
eventId: string;
|
9719
9972
|
declaration?: Record<string, string | number | boolean | {
|
@@ -9753,7 +10006,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9753
10006
|
option: string;
|
9754
10007
|
filename: string;
|
9755
10008
|
originalFilename: string;
|
9756
|
-
}[] | undefined> | undefined;
|
10009
|
+
}[] | [string, string] | undefined> | undefined;
|
9757
10010
|
annotation?: Record<string, string | number | boolean | {
|
9758
10011
|
type: string;
|
9759
10012
|
filename: string;
|
@@ -9791,7 +10044,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9791
10044
|
option: string;
|
9792
10045
|
filename: string;
|
9793
10046
|
originalFilename: string;
|
9794
|
-
}[] | undefined> | undefined;
|
10047
|
+
}[] | [string, string] | undefined> | undefined;
|
9795
10048
|
originalActionId?: string | undefined;
|
9796
10049
|
keepAssignment?: boolean | undefined;
|
9797
10050
|
};
|
@@ -9844,7 +10097,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9844
10097
|
option: string;
|
9845
10098
|
filename: string;
|
9846
10099
|
originalFilename: string;
|
9847
|
-
}[] | undefined>;
|
10100
|
+
}[] | [string, string] | undefined>;
|
10101
|
+
createdAtLocation: string;
|
9848
10102
|
annotation?: Record<string, string | number | boolean | {
|
9849
10103
|
type: string;
|
9850
10104
|
filename: string;
|
@@ -9882,9 +10136,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
9882
10136
|
option: string;
|
9883
10137
|
filename: string;
|
9884
10138
|
originalFilename: string;
|
9885
|
-
}[] | undefined> | undefined;
|
9886
|
-
createdAtLocation?: string | undefined;
|
9887
|
-
updatedAtLocation?: string | undefined;
|
10139
|
+
}[] | [string, string] | undefined> | undefined;
|
9888
10140
|
originalActionId?: string | undefined;
|
9889
10141
|
};
|
9890
10142
|
};
|
@@ -10120,7 +10372,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10120
10372
|
option: string;
|
10121
10373
|
filename: string;
|
10122
10374
|
originalFilename: string;
|
10123
|
-
}[] | undefined> | undefined;
|
10375
|
+
}[] | [string, string] | undefined> | undefined;
|
10124
10376
|
annotation?: Record<string, string | number | boolean | {
|
10125
10377
|
type: string;
|
10126
10378
|
filename: string;
|
@@ -10158,7 +10410,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10158
10410
|
option: string;
|
10159
10411
|
filename: string;
|
10160
10412
|
originalFilename: string;
|
10161
|
-
}[] | undefined> | undefined;
|
10413
|
+
}[] | [string, string] | undefined> | undefined;
|
10162
10414
|
originalActionId?: string | undefined;
|
10163
10415
|
keepAssignment?: boolean | undefined;
|
10164
10416
|
};
|
@@ -10166,7 +10418,6 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10166
10418
|
type: string;
|
10167
10419
|
id: string;
|
10168
10420
|
createdAt: string;
|
10169
|
-
updatedAtLocation: string;
|
10170
10421
|
updatedAt: string;
|
10171
10422
|
actions: ({
|
10172
10423
|
type: "ASSIGN";
|
@@ -10213,7 +10464,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10213
10464
|
option: string;
|
10214
10465
|
filename: string;
|
10215
10466
|
originalFilename: string;
|
10216
|
-
}[] | undefined>;
|
10467
|
+
}[] | [string, string] | undefined>;
|
10468
|
+
createdAtLocation: string;
|
10217
10469
|
assignedTo: string;
|
10218
10470
|
annotation?: Record<string, string | number | boolean | {
|
10219
10471
|
type: string;
|
@@ -10252,9 +10504,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10252
10504
|
option: string;
|
10253
10505
|
filename: string;
|
10254
10506
|
originalFilename: string;
|
10255
|
-
}[] | undefined> | undefined;
|
10256
|
-
createdAtLocation?: string | undefined;
|
10257
|
-
updatedAtLocation?: string | undefined;
|
10507
|
+
}[] | [string, string] | undefined> | undefined;
|
10258
10508
|
originalActionId?: string | undefined;
|
10259
10509
|
} | {
|
10260
10510
|
type: "UNASSIGN";
|
@@ -10301,7 +10551,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10301
10551
|
option: string;
|
10302
10552
|
filename: string;
|
10303
10553
|
originalFilename: string;
|
10304
|
-
}[] | undefined>;
|
10554
|
+
}[] | [string, string] | undefined>;
|
10555
|
+
createdAtLocation: string;
|
10305
10556
|
assignedTo: null;
|
10306
10557
|
annotation?: Record<string, string | number | boolean | {
|
10307
10558
|
type: string;
|
@@ -10340,9 +10591,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10340
10591
|
option: string;
|
10341
10592
|
filename: string;
|
10342
10593
|
originalFilename: string;
|
10343
|
-
}[] | undefined> | undefined;
|
10344
|
-
createdAtLocation?: string | undefined;
|
10345
|
-
updatedAtLocation?: string | undefined;
|
10594
|
+
}[] | [string, string] | undefined> | undefined;
|
10346
10595
|
originalActionId?: string | undefined;
|
10347
10596
|
} | {
|
10348
10597
|
type: "REGISTER";
|
@@ -10389,7 +10638,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10389
10638
|
option: string;
|
10390
10639
|
filename: string;
|
10391
10640
|
originalFilename: string;
|
10392
|
-
}[] | undefined>;
|
10641
|
+
}[] | [string, string] | undefined>;
|
10642
|
+
createdAtLocation: string;
|
10393
10643
|
annotation?: Record<string, string | number | boolean | {
|
10394
10644
|
type: string;
|
10395
10645
|
filename: string;
|
@@ -10427,9 +10677,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10427
10677
|
option: string;
|
10428
10678
|
filename: string;
|
10429
10679
|
originalFilename: string;
|
10430
|
-
}[] | undefined> | undefined;
|
10431
|
-
createdAtLocation?: string | undefined;
|
10432
|
-
updatedAtLocation?: string | undefined;
|
10680
|
+
}[] | [string, string] | undefined> | undefined;
|
10433
10681
|
originalActionId?: string | undefined;
|
10434
10682
|
registrationNumber?: string | undefined;
|
10435
10683
|
} | {
|
@@ -10477,7 +10725,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10477
10725
|
option: string;
|
10478
10726
|
filename: string;
|
10479
10727
|
originalFilename: string;
|
10480
|
-
}[] | undefined>;
|
10728
|
+
}[] | [string, string] | undefined>;
|
10729
|
+
createdAtLocation: string;
|
10481
10730
|
annotation?: Record<string, string | number | boolean | {
|
10482
10731
|
type: string;
|
10483
10732
|
filename: string;
|
@@ -10515,9 +10764,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10515
10764
|
option: string;
|
10516
10765
|
filename: string;
|
10517
10766
|
originalFilename: string;
|
10518
|
-
}[] | undefined> | undefined;
|
10519
|
-
createdAtLocation?: string | undefined;
|
10520
|
-
updatedAtLocation?: string | undefined;
|
10767
|
+
}[] | [string, string] | undefined> | undefined;
|
10521
10768
|
originalActionId?: string | undefined;
|
10522
10769
|
} | {
|
10523
10770
|
type: "VALIDATE";
|
@@ -10564,7 +10811,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10564
10811
|
option: string;
|
10565
10812
|
filename: string;
|
10566
10813
|
originalFilename: string;
|
10567
|
-
}[] | undefined>;
|
10814
|
+
}[] | [string, string] | undefined>;
|
10815
|
+
createdAtLocation: string;
|
10568
10816
|
annotation?: Record<string, string | number | boolean | {
|
10569
10817
|
type: string;
|
10570
10818
|
filename: string;
|
@@ -10602,9 +10850,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10602
10850
|
option: string;
|
10603
10851
|
filename: string;
|
10604
10852
|
originalFilename: string;
|
10605
|
-
}[] | undefined> | undefined;
|
10606
|
-
createdAtLocation?: string | undefined;
|
10607
|
-
updatedAtLocation?: string | undefined;
|
10853
|
+
}[] | [string, string] | undefined> | undefined;
|
10608
10854
|
originalActionId?: string | undefined;
|
10609
10855
|
} | {
|
10610
10856
|
type: "REJECT";
|
@@ -10651,7 +10897,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10651
10897
|
option: string;
|
10652
10898
|
filename: string;
|
10653
10899
|
originalFilename: string;
|
10654
|
-
}[] | undefined>;
|
10900
|
+
}[] | [string, string] | undefined>;
|
10901
|
+
createdAtLocation: string;
|
10655
10902
|
annotation?: Record<string, string | number | boolean | {
|
10656
10903
|
type: string;
|
10657
10904
|
filename: string;
|
@@ -10689,9 +10936,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10689
10936
|
option: string;
|
10690
10937
|
filename: string;
|
10691
10938
|
originalFilename: string;
|
10692
|
-
}[] | undefined> | undefined;
|
10693
|
-
createdAtLocation?: string | undefined;
|
10694
|
-
updatedAtLocation?: string | undefined;
|
10939
|
+
}[] | [string, string] | undefined> | undefined;
|
10695
10940
|
originalActionId?: string | undefined;
|
10696
10941
|
} | {
|
10697
10942
|
type: "MARKED_AS_DUPLICATE";
|
@@ -10738,7 +10983,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10738
10983
|
option: string;
|
10739
10984
|
filename: string;
|
10740
10985
|
originalFilename: string;
|
10741
|
-
}[] | undefined>;
|
10986
|
+
}[] | [string, string] | undefined>;
|
10987
|
+
createdAtLocation: string;
|
10742
10988
|
annotation?: Record<string, string | number | boolean | {
|
10743
10989
|
type: string;
|
10744
10990
|
filename: string;
|
@@ -10776,9 +11022,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10776
11022
|
option: string;
|
10777
11023
|
filename: string;
|
10778
11024
|
originalFilename: string;
|
10779
|
-
}[] | undefined> | undefined;
|
10780
|
-
createdAtLocation?: string | undefined;
|
10781
|
-
updatedAtLocation?: string | undefined;
|
11025
|
+
}[] | [string, string] | undefined> | undefined;
|
10782
11026
|
originalActionId?: string | undefined;
|
10783
11027
|
} | {
|
10784
11028
|
type: "ARCHIVE";
|
@@ -10825,7 +11069,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10825
11069
|
option: string;
|
10826
11070
|
filename: string;
|
10827
11071
|
originalFilename: string;
|
10828
|
-
}[] | undefined>;
|
11072
|
+
}[] | [string, string] | undefined>;
|
11073
|
+
createdAtLocation: string;
|
10829
11074
|
annotation?: Record<string, string | number | boolean | {
|
10830
11075
|
type: string;
|
10831
11076
|
filename: string;
|
@@ -10863,9 +11108,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10863
11108
|
option: string;
|
10864
11109
|
filename: string;
|
10865
11110
|
originalFilename: string;
|
10866
|
-
}[] | undefined> | undefined;
|
10867
|
-
createdAtLocation?: string | undefined;
|
10868
|
-
updatedAtLocation?: string | undefined;
|
11111
|
+
}[] | [string, string] | undefined> | undefined;
|
10869
11112
|
originalActionId?: string | undefined;
|
10870
11113
|
} | {
|
10871
11114
|
type: "CREATE";
|
@@ -10912,7 +11155,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10912
11155
|
option: string;
|
10913
11156
|
filename: string;
|
10914
11157
|
originalFilename: string;
|
10915
|
-
}[] | undefined>;
|
11158
|
+
}[] | [string, string] | undefined>;
|
11159
|
+
createdAtLocation: string;
|
10916
11160
|
annotation?: Record<string, string | number | boolean | {
|
10917
11161
|
type: string;
|
10918
11162
|
filename: string;
|
@@ -10950,9 +11194,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10950
11194
|
option: string;
|
10951
11195
|
filename: string;
|
10952
11196
|
originalFilename: string;
|
10953
|
-
}[] | undefined> | undefined;
|
10954
|
-
createdAtLocation?: string | undefined;
|
10955
|
-
updatedAtLocation?: string | undefined;
|
11197
|
+
}[] | [string, string] | undefined> | undefined;
|
10956
11198
|
originalActionId?: string | undefined;
|
10957
11199
|
} | {
|
10958
11200
|
type: "NOTIFY";
|
@@ -10999,7 +11241,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
10999
11241
|
option: string;
|
11000
11242
|
filename: string;
|
11001
11243
|
originalFilename: string;
|
11002
|
-
}[] | undefined>;
|
11244
|
+
}[] | [string, string] | undefined>;
|
11245
|
+
createdAtLocation: string;
|
11003
11246
|
annotation?: Record<string, string | number | boolean | {
|
11004
11247
|
type: string;
|
11005
11248
|
filename: string;
|
@@ -11037,9 +11280,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11037
11280
|
option: string;
|
11038
11281
|
filename: string;
|
11039
11282
|
originalFilename: string;
|
11040
|
-
}[] | undefined> | undefined;
|
11041
|
-
createdAtLocation?: string | undefined;
|
11042
|
-
updatedAtLocation?: string | undefined;
|
11283
|
+
}[] | [string, string] | undefined> | undefined;
|
11043
11284
|
originalActionId?: string | undefined;
|
11044
11285
|
} | {
|
11045
11286
|
type: "PRINT_CERTIFICATE";
|
@@ -11086,7 +11327,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11086
11327
|
option: string;
|
11087
11328
|
filename: string;
|
11088
11329
|
originalFilename: string;
|
11089
|
-
}[] | undefined>;
|
11330
|
+
}[] | [string, string] | undefined>;
|
11331
|
+
createdAtLocation: string;
|
11090
11332
|
annotation?: Record<string, string | number | boolean | {
|
11091
11333
|
type: string;
|
11092
11334
|
filename: string;
|
@@ -11124,9 +11366,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11124
11366
|
option: string;
|
11125
11367
|
filename: string;
|
11126
11368
|
originalFilename: string;
|
11127
|
-
}[] | undefined> | undefined;
|
11128
|
-
createdAtLocation?: string | undefined;
|
11129
|
-
updatedAtLocation?: string | undefined;
|
11369
|
+
}[] | [string, string] | undefined> | undefined;
|
11130
11370
|
originalActionId?: string | undefined;
|
11131
11371
|
} | {
|
11132
11372
|
type: "REQUEST_CORRECTION";
|
@@ -11173,7 +11413,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11173
11413
|
option: string;
|
11174
11414
|
filename: string;
|
11175
11415
|
originalFilename: string;
|
11176
|
-
}[] | undefined>;
|
11416
|
+
}[] | [string, string] | undefined>;
|
11417
|
+
createdAtLocation: string;
|
11177
11418
|
annotation?: Record<string, string | number | boolean | {
|
11178
11419
|
type: string;
|
11179
11420
|
filename: string;
|
@@ -11211,9 +11452,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11211
11452
|
option: string;
|
11212
11453
|
filename: string;
|
11213
11454
|
originalFilename: string;
|
11214
|
-
}[] | undefined> | undefined;
|
11215
|
-
createdAtLocation?: string | undefined;
|
11216
|
-
updatedAtLocation?: string | undefined;
|
11455
|
+
}[] | [string, string] | undefined> | undefined;
|
11217
11456
|
originalActionId?: string | undefined;
|
11218
11457
|
} | {
|
11219
11458
|
type: "APPROVE_CORRECTION";
|
@@ -11260,7 +11499,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11260
11499
|
option: string;
|
11261
11500
|
filename: string;
|
11262
11501
|
originalFilename: string;
|
11263
|
-
}[] | undefined>;
|
11502
|
+
}[] | [string, string] | undefined>;
|
11503
|
+
createdAtLocation: string;
|
11264
11504
|
requestId: string;
|
11265
11505
|
annotation?: Record<string, string | number | boolean | {
|
11266
11506
|
type: string;
|
@@ -11299,9 +11539,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11299
11539
|
option: string;
|
11300
11540
|
filename: string;
|
11301
11541
|
originalFilename: string;
|
11302
|
-
}[] | undefined> | undefined;
|
11303
|
-
createdAtLocation?: string | undefined;
|
11304
|
-
updatedAtLocation?: string | undefined;
|
11542
|
+
}[] | [string, string] | undefined> | undefined;
|
11305
11543
|
originalActionId?: string | undefined;
|
11306
11544
|
} | {
|
11307
11545
|
type: "REJECT_CORRECTION";
|
@@ -11348,7 +11586,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11348
11586
|
option: string;
|
11349
11587
|
filename: string;
|
11350
11588
|
originalFilename: string;
|
11351
|
-
}[] | undefined>;
|
11589
|
+
}[] | [string, string] | undefined>;
|
11590
|
+
createdAtLocation: string;
|
11352
11591
|
requestId: string;
|
11353
11592
|
annotation?: Record<string, string | number | boolean | {
|
11354
11593
|
type: string;
|
@@ -11387,9 +11626,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11387
11626
|
option: string;
|
11388
11627
|
filename: string;
|
11389
11628
|
originalFilename: string;
|
11390
|
-
}[] | undefined> | undefined;
|
11391
|
-
createdAtLocation?: string | undefined;
|
11392
|
-
updatedAtLocation?: string | undefined;
|
11629
|
+
}[] | [string, string] | undefined> | undefined;
|
11393
11630
|
originalActionId?: string | undefined;
|
11394
11631
|
} | {
|
11395
11632
|
type: "READ";
|
@@ -11436,7 +11673,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11436
11673
|
option: string;
|
11437
11674
|
filename: string;
|
11438
11675
|
originalFilename: string;
|
11439
|
-
}[] | undefined>;
|
11676
|
+
}[] | [string, string] | undefined>;
|
11677
|
+
createdAtLocation: string;
|
11440
11678
|
annotation?: Record<string, string | number | boolean | {
|
11441
11679
|
type: string;
|
11442
11680
|
filename: string;
|
@@ -11474,9 +11712,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11474
11712
|
option: string;
|
11475
11713
|
filename: string;
|
11476
11714
|
originalFilename: string;
|
11477
|
-
}[] | undefined> | undefined;
|
11478
|
-
createdAtLocation?: string | undefined;
|
11479
|
-
updatedAtLocation?: string | undefined;
|
11715
|
+
}[] | [string, string] | undefined> | undefined;
|
11480
11716
|
originalActionId?: string | undefined;
|
11481
11717
|
} | {
|
11482
11718
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -11484,7 +11720,9 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11484
11720
|
status: "Rejected";
|
11485
11721
|
transactionId: string;
|
11486
11722
|
createdAt: string;
|
11487
|
-
|
11723
|
+
createdBy: string;
|
11724
|
+
createdByRole: string;
|
11725
|
+
createdAtLocation: string;
|
11488
11726
|
originalActionId?: string | undefined;
|
11489
11727
|
})[];
|
11490
11728
|
trackingId: string;
|
@@ -11535,7 +11773,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11535
11773
|
option: string;
|
11536
11774
|
filename: string;
|
11537
11775
|
originalFilename: string;
|
11538
|
-
}[] | undefined> | undefined;
|
11776
|
+
}[] | [string, string] | undefined> | undefined;
|
11539
11777
|
annotation?: Record<string, string | number | boolean | {
|
11540
11778
|
type: string;
|
11541
11779
|
filename: string;
|
@@ -11573,7 +11811,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11573
11811
|
option: string;
|
11574
11812
|
filename: string;
|
11575
11813
|
originalFilename: string;
|
11576
|
-
}[] | undefined> | undefined;
|
11814
|
+
}[] | [string, string] | undefined> | undefined;
|
11577
11815
|
originalActionId?: string | undefined;
|
11578
11816
|
assignedTo?: null | undefined;
|
11579
11817
|
keepAssignment?: boolean | undefined;
|
@@ -11582,7 +11820,6 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11582
11820
|
type: string;
|
11583
11821
|
id: string;
|
11584
11822
|
createdAt: string;
|
11585
|
-
updatedAtLocation: string;
|
11586
11823
|
updatedAt: string;
|
11587
11824
|
actions: ({
|
11588
11825
|
type: "ASSIGN";
|
@@ -11629,7 +11866,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11629
11866
|
option: string;
|
11630
11867
|
filename: string;
|
11631
11868
|
originalFilename: string;
|
11632
|
-
}[] | undefined>;
|
11869
|
+
}[] | [string, string] | undefined>;
|
11870
|
+
createdAtLocation: string;
|
11633
11871
|
assignedTo: string;
|
11634
11872
|
annotation?: Record<string, string | number | boolean | {
|
11635
11873
|
type: string;
|
@@ -11668,9 +11906,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11668
11906
|
option: string;
|
11669
11907
|
filename: string;
|
11670
11908
|
originalFilename: string;
|
11671
|
-
}[] | undefined> | undefined;
|
11672
|
-
createdAtLocation?: string | undefined;
|
11673
|
-
updatedAtLocation?: string | undefined;
|
11909
|
+
}[] | [string, string] | undefined> | undefined;
|
11674
11910
|
originalActionId?: string | undefined;
|
11675
11911
|
} | {
|
11676
11912
|
type: "UNASSIGN";
|
@@ -11717,7 +11953,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11717
11953
|
option: string;
|
11718
11954
|
filename: string;
|
11719
11955
|
originalFilename: string;
|
11720
|
-
}[] | undefined>;
|
11956
|
+
}[] | [string, string] | undefined>;
|
11957
|
+
createdAtLocation: string;
|
11721
11958
|
assignedTo: null;
|
11722
11959
|
annotation?: Record<string, string | number | boolean | {
|
11723
11960
|
type: string;
|
@@ -11756,9 +11993,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11756
11993
|
option: string;
|
11757
11994
|
filename: string;
|
11758
11995
|
originalFilename: string;
|
11759
|
-
}[] | undefined> | undefined;
|
11760
|
-
createdAtLocation?: string | undefined;
|
11761
|
-
updatedAtLocation?: string | undefined;
|
11996
|
+
}[] | [string, string] | undefined> | undefined;
|
11762
11997
|
originalActionId?: string | undefined;
|
11763
11998
|
} | {
|
11764
11999
|
type: "REGISTER";
|
@@ -11805,7 +12040,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11805
12040
|
option: string;
|
11806
12041
|
filename: string;
|
11807
12042
|
originalFilename: string;
|
11808
|
-
}[] | undefined>;
|
12043
|
+
}[] | [string, string] | undefined>;
|
12044
|
+
createdAtLocation: string;
|
11809
12045
|
annotation?: Record<string, string | number | boolean | {
|
11810
12046
|
type: string;
|
11811
12047
|
filename: string;
|
@@ -11843,9 +12079,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11843
12079
|
option: string;
|
11844
12080
|
filename: string;
|
11845
12081
|
originalFilename: string;
|
11846
|
-
}[] | undefined> | undefined;
|
11847
|
-
createdAtLocation?: string | undefined;
|
11848
|
-
updatedAtLocation?: string | undefined;
|
12082
|
+
}[] | [string, string] | undefined> | undefined;
|
11849
12083
|
originalActionId?: string | undefined;
|
11850
12084
|
registrationNumber?: string | undefined;
|
11851
12085
|
} | {
|
@@ -11893,7 +12127,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11893
12127
|
option: string;
|
11894
12128
|
filename: string;
|
11895
12129
|
originalFilename: string;
|
11896
|
-
}[] | undefined>;
|
12130
|
+
}[] | [string, string] | undefined>;
|
12131
|
+
createdAtLocation: string;
|
11897
12132
|
annotation?: Record<string, string | number | boolean | {
|
11898
12133
|
type: string;
|
11899
12134
|
filename: string;
|
@@ -11931,9 +12166,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11931
12166
|
option: string;
|
11932
12167
|
filename: string;
|
11933
12168
|
originalFilename: string;
|
11934
|
-
}[] | undefined> | undefined;
|
11935
|
-
createdAtLocation?: string | undefined;
|
11936
|
-
updatedAtLocation?: string | undefined;
|
12169
|
+
}[] | [string, string] | undefined> | undefined;
|
11937
12170
|
originalActionId?: string | undefined;
|
11938
12171
|
} | {
|
11939
12172
|
type: "VALIDATE";
|
@@ -11980,7 +12213,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
11980
12213
|
option: string;
|
11981
12214
|
filename: string;
|
11982
12215
|
originalFilename: string;
|
11983
|
-
}[] | undefined>;
|
12216
|
+
}[] | [string, string] | undefined>;
|
12217
|
+
createdAtLocation: string;
|
11984
12218
|
annotation?: Record<string, string | number | boolean | {
|
11985
12219
|
type: string;
|
11986
12220
|
filename: string;
|
@@ -12018,9 +12252,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12018
12252
|
option: string;
|
12019
12253
|
filename: string;
|
12020
12254
|
originalFilename: string;
|
12021
|
-
}[] | undefined> | undefined;
|
12022
|
-
createdAtLocation?: string | undefined;
|
12023
|
-
updatedAtLocation?: string | undefined;
|
12255
|
+
}[] | [string, string] | undefined> | undefined;
|
12024
12256
|
originalActionId?: string | undefined;
|
12025
12257
|
} | {
|
12026
12258
|
type: "REJECT";
|
@@ -12067,7 +12299,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12067
12299
|
option: string;
|
12068
12300
|
filename: string;
|
12069
12301
|
originalFilename: string;
|
12070
|
-
}[] | undefined>;
|
12302
|
+
}[] | [string, string] | undefined>;
|
12303
|
+
createdAtLocation: string;
|
12071
12304
|
annotation?: Record<string, string | number | boolean | {
|
12072
12305
|
type: string;
|
12073
12306
|
filename: string;
|
@@ -12105,9 +12338,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12105
12338
|
option: string;
|
12106
12339
|
filename: string;
|
12107
12340
|
originalFilename: string;
|
12108
|
-
}[] | undefined> | undefined;
|
12109
|
-
createdAtLocation?: string | undefined;
|
12110
|
-
updatedAtLocation?: string | undefined;
|
12341
|
+
}[] | [string, string] | undefined> | undefined;
|
12111
12342
|
originalActionId?: string | undefined;
|
12112
12343
|
} | {
|
12113
12344
|
type: "MARKED_AS_DUPLICATE";
|
@@ -12154,7 +12385,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12154
12385
|
option: string;
|
12155
12386
|
filename: string;
|
12156
12387
|
originalFilename: string;
|
12157
|
-
}[] | undefined>;
|
12388
|
+
}[] | [string, string] | undefined>;
|
12389
|
+
createdAtLocation: string;
|
12158
12390
|
annotation?: Record<string, string | number | boolean | {
|
12159
12391
|
type: string;
|
12160
12392
|
filename: string;
|
@@ -12192,9 +12424,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12192
12424
|
option: string;
|
12193
12425
|
filename: string;
|
12194
12426
|
originalFilename: string;
|
12195
|
-
}[] | undefined> | undefined;
|
12196
|
-
createdAtLocation?: string | undefined;
|
12197
|
-
updatedAtLocation?: string | undefined;
|
12427
|
+
}[] | [string, string] | undefined> | undefined;
|
12198
12428
|
originalActionId?: string | undefined;
|
12199
12429
|
} | {
|
12200
12430
|
type: "ARCHIVE";
|
@@ -12241,7 +12471,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12241
12471
|
option: string;
|
12242
12472
|
filename: string;
|
12243
12473
|
originalFilename: string;
|
12244
|
-
}[] | undefined>;
|
12474
|
+
}[] | [string, string] | undefined>;
|
12475
|
+
createdAtLocation: string;
|
12245
12476
|
annotation?: Record<string, string | number | boolean | {
|
12246
12477
|
type: string;
|
12247
12478
|
filename: string;
|
@@ -12279,9 +12510,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12279
12510
|
option: string;
|
12280
12511
|
filename: string;
|
12281
12512
|
originalFilename: string;
|
12282
|
-
}[] | undefined> | undefined;
|
12283
|
-
createdAtLocation?: string | undefined;
|
12284
|
-
updatedAtLocation?: string | undefined;
|
12513
|
+
}[] | [string, string] | undefined> | undefined;
|
12285
12514
|
originalActionId?: string | undefined;
|
12286
12515
|
} | {
|
12287
12516
|
type: "CREATE";
|
@@ -12328,7 +12557,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12328
12557
|
option: string;
|
12329
12558
|
filename: string;
|
12330
12559
|
originalFilename: string;
|
12331
|
-
}[] | undefined>;
|
12560
|
+
}[] | [string, string] | undefined>;
|
12561
|
+
createdAtLocation: string;
|
12332
12562
|
annotation?: Record<string, string | number | boolean | {
|
12333
12563
|
type: string;
|
12334
12564
|
filename: string;
|
@@ -12366,9 +12596,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12366
12596
|
option: string;
|
12367
12597
|
filename: string;
|
12368
12598
|
originalFilename: string;
|
12369
|
-
}[] | undefined> | undefined;
|
12370
|
-
createdAtLocation?: string | undefined;
|
12371
|
-
updatedAtLocation?: string | undefined;
|
12599
|
+
}[] | [string, string] | undefined> | undefined;
|
12372
12600
|
originalActionId?: string | undefined;
|
12373
12601
|
} | {
|
12374
12602
|
type: "NOTIFY";
|
@@ -12415,7 +12643,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12415
12643
|
option: string;
|
12416
12644
|
filename: string;
|
12417
12645
|
originalFilename: string;
|
12418
|
-
}[] | undefined>;
|
12646
|
+
}[] | [string, string] | undefined>;
|
12647
|
+
createdAtLocation: string;
|
12419
12648
|
annotation?: Record<string, string | number | boolean | {
|
12420
12649
|
type: string;
|
12421
12650
|
filename: string;
|
@@ -12453,9 +12682,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12453
12682
|
option: string;
|
12454
12683
|
filename: string;
|
12455
12684
|
originalFilename: string;
|
12456
|
-
}[] | undefined> | undefined;
|
12457
|
-
createdAtLocation?: string | undefined;
|
12458
|
-
updatedAtLocation?: string | undefined;
|
12685
|
+
}[] | [string, string] | undefined> | undefined;
|
12459
12686
|
originalActionId?: string | undefined;
|
12460
12687
|
} | {
|
12461
12688
|
type: "PRINT_CERTIFICATE";
|
@@ -12502,7 +12729,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12502
12729
|
option: string;
|
12503
12730
|
filename: string;
|
12504
12731
|
originalFilename: string;
|
12505
|
-
}[] | undefined>;
|
12732
|
+
}[] | [string, string] | undefined>;
|
12733
|
+
createdAtLocation: string;
|
12506
12734
|
annotation?: Record<string, string | number | boolean | {
|
12507
12735
|
type: string;
|
12508
12736
|
filename: string;
|
@@ -12540,9 +12768,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12540
12768
|
option: string;
|
12541
12769
|
filename: string;
|
12542
12770
|
originalFilename: string;
|
12543
|
-
}[] | undefined> | undefined;
|
12544
|
-
createdAtLocation?: string | undefined;
|
12545
|
-
updatedAtLocation?: string | undefined;
|
12771
|
+
}[] | [string, string] | undefined> | undefined;
|
12546
12772
|
originalActionId?: string | undefined;
|
12547
12773
|
} | {
|
12548
12774
|
type: "REQUEST_CORRECTION";
|
@@ -12589,7 +12815,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12589
12815
|
option: string;
|
12590
12816
|
filename: string;
|
12591
12817
|
originalFilename: string;
|
12592
|
-
}[] | undefined>;
|
12818
|
+
}[] | [string, string] | undefined>;
|
12819
|
+
createdAtLocation: string;
|
12593
12820
|
annotation?: Record<string, string | number | boolean | {
|
12594
12821
|
type: string;
|
12595
12822
|
filename: string;
|
@@ -12627,9 +12854,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12627
12854
|
option: string;
|
12628
12855
|
filename: string;
|
12629
12856
|
originalFilename: string;
|
12630
|
-
}[] | undefined> | undefined;
|
12631
|
-
createdAtLocation?: string | undefined;
|
12632
|
-
updatedAtLocation?: string | undefined;
|
12857
|
+
}[] | [string, string] | undefined> | undefined;
|
12633
12858
|
originalActionId?: string | undefined;
|
12634
12859
|
} | {
|
12635
12860
|
type: "APPROVE_CORRECTION";
|
@@ -12676,7 +12901,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12676
12901
|
option: string;
|
12677
12902
|
filename: string;
|
12678
12903
|
originalFilename: string;
|
12679
|
-
}[] | undefined>;
|
12904
|
+
}[] | [string, string] | undefined>;
|
12905
|
+
createdAtLocation: string;
|
12680
12906
|
requestId: string;
|
12681
12907
|
annotation?: Record<string, string | number | boolean | {
|
12682
12908
|
type: string;
|
@@ -12715,9 +12941,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12715
12941
|
option: string;
|
12716
12942
|
filename: string;
|
12717
12943
|
originalFilename: string;
|
12718
|
-
}[] | undefined> | undefined;
|
12719
|
-
createdAtLocation?: string | undefined;
|
12720
|
-
updatedAtLocation?: string | undefined;
|
12944
|
+
}[] | [string, string] | undefined> | undefined;
|
12721
12945
|
originalActionId?: string | undefined;
|
12722
12946
|
} | {
|
12723
12947
|
type: "REJECT_CORRECTION";
|
@@ -12764,7 +12988,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12764
12988
|
option: string;
|
12765
12989
|
filename: string;
|
12766
12990
|
originalFilename: string;
|
12767
|
-
}[] | undefined>;
|
12991
|
+
}[] | [string, string] | undefined>;
|
12992
|
+
createdAtLocation: string;
|
12768
12993
|
requestId: string;
|
12769
12994
|
annotation?: Record<string, string | number | boolean | {
|
12770
12995
|
type: string;
|
@@ -12803,9 +13028,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12803
13028
|
option: string;
|
12804
13029
|
filename: string;
|
12805
13030
|
originalFilename: string;
|
12806
|
-
}[] | undefined> | undefined;
|
12807
|
-
createdAtLocation?: string | undefined;
|
12808
|
-
updatedAtLocation?: string | undefined;
|
13031
|
+
}[] | [string, string] | undefined> | undefined;
|
12809
13032
|
originalActionId?: string | undefined;
|
12810
13033
|
} | {
|
12811
13034
|
type: "READ";
|
@@ -12852,7 +13075,8 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12852
13075
|
option: string;
|
12853
13076
|
filename: string;
|
12854
13077
|
originalFilename: string;
|
12855
|
-
}[] | undefined>;
|
13078
|
+
}[] | [string, string] | undefined>;
|
13079
|
+
createdAtLocation: string;
|
12856
13080
|
annotation?: Record<string, string | number | boolean | {
|
12857
13081
|
type: string;
|
12858
13082
|
filename: string;
|
@@ -12890,9 +13114,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12890
13114
|
option: string;
|
12891
13115
|
filename: string;
|
12892
13116
|
originalFilename: string;
|
12893
|
-
}[] | undefined> | undefined;
|
12894
|
-
createdAtLocation?: string | undefined;
|
12895
|
-
updatedAtLocation?: string | undefined;
|
13117
|
+
}[] | [string, string] | undefined> | undefined;
|
12896
13118
|
originalActionId?: string | undefined;
|
12897
13119
|
} | {
|
12898
13120
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -12900,7 +13122,9 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12900
13122
|
status: "Rejected";
|
12901
13123
|
transactionId: string;
|
12902
13124
|
createdAt: string;
|
12903
|
-
|
13125
|
+
createdBy: string;
|
13126
|
+
createdByRole: string;
|
13127
|
+
createdAtLocation: string;
|
12904
13128
|
originalActionId?: string | undefined;
|
12905
13129
|
})[];
|
12906
13130
|
trackingId: string;
|
@@ -12958,7 +13182,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12958
13182
|
option: string;
|
12959
13183
|
filename: string;
|
12960
13184
|
originalFilename: string;
|
12961
|
-
}[] | undefined> | undefined;
|
13185
|
+
}[] | [string, string] | undefined> | undefined;
|
12962
13186
|
annotation?: Record<string, string | number | boolean | {
|
12963
13187
|
type: string;
|
12964
13188
|
filename: string;
|
@@ -12996,7 +13220,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
12996
13220
|
option: string;
|
12997
13221
|
filename: string;
|
12998
13222
|
originalFilename: string;
|
12999
|
-
}[] | undefined> | undefined;
|
13223
|
+
}[] | [string, string] | undefined> | undefined;
|
13000
13224
|
originalActionId?: string | undefined;
|
13001
13225
|
keepAssignment?: boolean | undefined;
|
13002
13226
|
};
|
@@ -13045,7 +13269,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
13045
13269
|
option: string;
|
13046
13270
|
filename: string;
|
13047
13271
|
originalFilename: string;
|
13048
|
-
}[] | undefined> | undefined;
|
13272
|
+
}[] | [string, string] | undefined> | undefined;
|
13049
13273
|
annotation?: Record<string, string | number | boolean | {
|
13050
13274
|
type: string;
|
13051
13275
|
filename: string;
|
@@ -13083,7 +13307,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
13083
13307
|
option: string;
|
13084
13308
|
filename: string;
|
13085
13309
|
originalFilename: string;
|
13086
|
-
}[] | undefined> | undefined;
|
13310
|
+
}[] | [string, string] | undefined> | undefined;
|
13087
13311
|
originalActionId?: string | undefined;
|
13088
13312
|
keepAssignment?: boolean | undefined;
|
13089
13313
|
};
|
@@ -13132,7 +13356,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
13132
13356
|
option: string;
|
13133
13357
|
filename: string;
|
13134
13358
|
originalFilename: string;
|
13135
|
-
}[] | undefined> | undefined;
|
13359
|
+
}[] | [string, string] | undefined> | undefined;
|
13136
13360
|
annotation?: Record<string, string | number | boolean | {
|
13137
13361
|
type: string;
|
13138
13362
|
filename: string;
|
@@ -13170,7 +13394,7 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
13170
13394
|
option: string;
|
13171
13395
|
filename: string;
|
13172
13396
|
originalFilename: string;
|
13173
|
-
}[] | undefined> | undefined;
|
13397
|
+
}[] | [string, string] | undefined> | undefined;
|
13174
13398
|
originalActionId?: string | undefined;
|
13175
13399
|
keepAssignment?: boolean | undefined;
|
13176
13400
|
};
|
@@ -13186,76 +13410,76 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
13186
13410
|
status: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "REJECTED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
13187
13411
|
createdAt: string;
|
13188
13412
|
createdBy: string;
|
13189
|
-
declaration: Record<string,
|
13413
|
+
declaration: Record<string, string | number | boolean | {
|
13414
|
+
type: string;
|
13415
|
+
filename: string;
|
13416
|
+
originalFilename: string;
|
13417
|
+
} | {
|
13418
|
+
country: string;
|
13419
|
+
district: string;
|
13420
|
+
addressType: "DOMESTIC";
|
13421
|
+
province: string;
|
13422
|
+
urbanOrRural: "URBAN";
|
13423
|
+
number?: string | undefined;
|
13424
|
+
town?: string | undefined;
|
13425
|
+
residentialArea?: string | undefined;
|
13426
|
+
street?: string | undefined;
|
13427
|
+
zipCode?: string | undefined;
|
13428
|
+
} | {
|
13429
|
+
country: string;
|
13430
|
+
district: string;
|
13431
|
+
addressType: "DOMESTIC";
|
13432
|
+
province: string;
|
13433
|
+
urbanOrRural: "RURAL";
|
13434
|
+
village?: string | undefined;
|
13435
|
+
} | {
|
13436
|
+
country: string;
|
13437
|
+
state: string;
|
13438
|
+
addressType: "INTERNATIONAL";
|
13439
|
+
district2: string;
|
13440
|
+
cityOrTown?: string | undefined;
|
13441
|
+
addressLine1?: string | undefined;
|
13442
|
+
addressLine2?: string | undefined;
|
13443
|
+
addressLine3?: string | undefined;
|
13444
|
+
postcodeOrZip?: string | undefined;
|
13445
|
+
} | {
|
13446
|
+
type: string;
|
13447
|
+
option: string;
|
13448
|
+
filename: string;
|
13449
|
+
originalFilename: string;
|
13450
|
+
}[] | [string, string] | undefined>;
|
13190
13451
|
createdAtLocation: string;
|
13191
|
-
updatedAtLocation: string;
|
13192
13452
|
updatedAt: string;
|
13193
13453
|
trackingId: string;
|
13454
|
+
legalStatuses: {
|
13455
|
+
DECLARED?: {
|
13456
|
+
createdAt: string;
|
13457
|
+
createdBy: string;
|
13458
|
+
createdByRole: string;
|
13459
|
+
createdAtLocation: string;
|
13460
|
+
acceptedAt: string;
|
13461
|
+
} | null | undefined;
|
13462
|
+
REGISTERED?: {
|
13463
|
+
createdAt: string;
|
13464
|
+
createdBy: string;
|
13465
|
+
createdByRole: string;
|
13466
|
+
createdAtLocation: string;
|
13467
|
+
registrationNumber: string;
|
13468
|
+
acceptedAt: string;
|
13469
|
+
} | null | undefined;
|
13470
|
+
};
|
13194
13471
|
updatedByUserRole: string;
|
13195
|
-
|
13472
|
+
flags: string[];
|
13196
13473
|
assignedTo?: string | null | undefined;
|
13197
|
-
registrationNumber?: string | null | undefined;
|
13198
13474
|
dateOfEvent?: string | null | undefined;
|
13475
|
+
updatedAtLocation?: string | null | undefined;
|
13476
|
+
updatedBy?: string | null | undefined;
|
13199
13477
|
}[];
|
13200
13478
|
}>;
|
13201
13479
|
search: import("@trpc/server").TRPCQueryProcedure<{
|
13202
13480
|
input: {
|
13203
|
-
type?: "and" | undefined;
|
13204
|
-
status?: {
|
13205
|
-
type: "exact";
|
13206
|
-
term: string;
|
13207
|
-
} | {
|
13208
|
-
type: "anyOf";
|
13209
|
-
terms: string[];
|
13210
|
-
} | undefined;
|
13211
|
-
data?: any;
|
13212
|
-
createdAt?: {
|
13213
|
-
type: "exact";
|
13214
|
-
term: string;
|
13215
|
-
} | {
|
13216
|
-
type: "range";
|
13217
|
-
gte: string;
|
13218
|
-
lte: string;
|
13219
|
-
} | undefined;
|
13220
|
-
createdBy?: {
|
13221
|
-
type: "exact";
|
13222
|
-
term: string;
|
13223
|
-
} | undefined;
|
13224
|
-
updatedAtLocation?: {
|
13225
|
-
type: "exact";
|
13226
|
-
term: string;
|
13227
|
-
} | {
|
13228
|
-
type: "within";
|
13229
|
-
location: string;
|
13230
|
-
} | undefined;
|
13231
|
-
updatedAt?: {
|
13232
|
-
type: "exact";
|
13233
|
-
term: string;
|
13234
|
-
} | {
|
13235
|
-
type: "range";
|
13236
|
-
gte: string;
|
13237
|
-
lte: string;
|
13238
|
-
} | undefined;
|
13239
|
-
trackingId?: {
|
13240
|
-
type: "exact";
|
13241
|
-
term: string;
|
13242
|
-
} | undefined;
|
13243
|
-
updatedBy?: {
|
13244
|
-
type: "exact";
|
13245
|
-
term: string;
|
13246
|
-
} | undefined;
|
13247
|
-
eventType?: string | undefined;
|
13248
|
-
createAtLocation?: {
|
13249
|
-
type: "exact";
|
13250
|
-
term: string;
|
13251
|
-
} | {
|
13252
|
-
type: "within";
|
13253
|
-
location: string;
|
13254
|
-
} | undefined;
|
13255
|
-
} | {
|
13256
13481
|
type: "or";
|
13257
13482
|
clauses: {
|
13258
|
-
type?: "and" | undefined;
|
13259
13483
|
status?: {
|
13260
13484
|
type: "exact";
|
13261
13485
|
term: string;
|
@@ -13276,6 +13500,18 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
13276
13500
|
type: "exact";
|
13277
13501
|
term: string;
|
13278
13502
|
} | undefined;
|
13503
|
+
updatedAt?: {
|
13504
|
+
type: "exact";
|
13505
|
+
term: string;
|
13506
|
+
} | {
|
13507
|
+
type: "range";
|
13508
|
+
gte: string;
|
13509
|
+
lte: string;
|
13510
|
+
} | undefined;
|
13511
|
+
trackingId?: {
|
13512
|
+
type: "exact";
|
13513
|
+
term: string;
|
13514
|
+
} | undefined;
|
13279
13515
|
updatedAtLocation?: {
|
13280
13516
|
type: "exact";
|
13281
13517
|
term: string;
|
@@ -13283,6 +13519,49 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
13283
13519
|
type: "within";
|
13284
13520
|
location: string;
|
13285
13521
|
} | undefined;
|
13522
|
+
updatedBy?: {
|
13523
|
+
type: "exact";
|
13524
|
+
term: string;
|
13525
|
+
} | undefined;
|
13526
|
+
flags?: ({
|
13527
|
+
type: "anyOf";
|
13528
|
+
terms: string[];
|
13529
|
+
} | {
|
13530
|
+
type: "not";
|
13531
|
+
term: string;
|
13532
|
+
})[] | undefined;
|
13533
|
+
eventType?: string | undefined;
|
13534
|
+
createAtLocation?: {
|
13535
|
+
type: "exact";
|
13536
|
+
term: string;
|
13537
|
+
} | {
|
13538
|
+
type: "within";
|
13539
|
+
location: string;
|
13540
|
+
} | undefined;
|
13541
|
+
}[];
|
13542
|
+
} | {
|
13543
|
+
type: "and";
|
13544
|
+
clauses: {
|
13545
|
+
status?: {
|
13546
|
+
type: "exact";
|
13547
|
+
term: string;
|
13548
|
+
} | {
|
13549
|
+
type: "anyOf";
|
13550
|
+
terms: string[];
|
13551
|
+
} | undefined;
|
13552
|
+
data?: any;
|
13553
|
+
createdAt?: {
|
13554
|
+
type: "exact";
|
13555
|
+
term: string;
|
13556
|
+
} | {
|
13557
|
+
type: "range";
|
13558
|
+
gte: string;
|
13559
|
+
lte: string;
|
13560
|
+
} | undefined;
|
13561
|
+
createdBy?: {
|
13562
|
+
type: "exact";
|
13563
|
+
term: string;
|
13564
|
+
} | undefined;
|
13286
13565
|
updatedAt?: {
|
13287
13566
|
type: "exact";
|
13288
13567
|
term: string;
|
@@ -13295,10 +13574,24 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
13295
13574
|
type: "exact";
|
13296
13575
|
term: string;
|
13297
13576
|
} | undefined;
|
13577
|
+
updatedAtLocation?: {
|
13578
|
+
type: "exact";
|
13579
|
+
term: string;
|
13580
|
+
} | {
|
13581
|
+
type: "within";
|
13582
|
+
location: string;
|
13583
|
+
} | undefined;
|
13298
13584
|
updatedBy?: {
|
13299
13585
|
type: "exact";
|
13300
13586
|
term: string;
|
13301
13587
|
} | undefined;
|
13588
|
+
flags?: ({
|
13589
|
+
type: "anyOf";
|
13590
|
+
terms: string[];
|
13591
|
+
} | {
|
13592
|
+
type: "not";
|
13593
|
+
term: string;
|
13594
|
+
})[] | undefined;
|
13302
13595
|
eventType?: string | undefined;
|
13303
13596
|
createAtLocation?: {
|
13304
13597
|
type: "exact";
|
@@ -13315,16 +13608,70 @@ export declare const appRouter: import("@trpc/server/unstable-core-do-not-import
|
|
13315
13608
|
status: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "REJECTED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
13316
13609
|
createdAt: string;
|
13317
13610
|
createdBy: string;
|
13318
|
-
declaration: Record<string,
|
13611
|
+
declaration: Record<string, string | number | boolean | {
|
13612
|
+
type: string;
|
13613
|
+
filename: string;
|
13614
|
+
originalFilename: string;
|
13615
|
+
} | {
|
13616
|
+
country: string;
|
13617
|
+
district: string;
|
13618
|
+
addressType: "DOMESTIC";
|
13619
|
+
province: string;
|
13620
|
+
urbanOrRural: "URBAN";
|
13621
|
+
number?: string | undefined;
|
13622
|
+
town?: string | undefined;
|
13623
|
+
residentialArea?: string | undefined;
|
13624
|
+
street?: string | undefined;
|
13625
|
+
zipCode?: string | undefined;
|
13626
|
+
} | {
|
13627
|
+
country: string;
|
13628
|
+
district: string;
|
13629
|
+
addressType: "DOMESTIC";
|
13630
|
+
province: string;
|
13631
|
+
urbanOrRural: "RURAL";
|
13632
|
+
village?: string | undefined;
|
13633
|
+
} | {
|
13634
|
+
country: string;
|
13635
|
+
state: string;
|
13636
|
+
addressType: "INTERNATIONAL";
|
13637
|
+
district2: string;
|
13638
|
+
cityOrTown?: string | undefined;
|
13639
|
+
addressLine1?: string | undefined;
|
13640
|
+
addressLine2?: string | undefined;
|
13641
|
+
addressLine3?: string | undefined;
|
13642
|
+
postcodeOrZip?: string | undefined;
|
13643
|
+
} | {
|
13644
|
+
type: string;
|
13645
|
+
option: string;
|
13646
|
+
filename: string;
|
13647
|
+
originalFilename: string;
|
13648
|
+
}[] | [string, string] | undefined>;
|
13319
13649
|
createdAtLocation: string;
|
13320
|
-
updatedAtLocation: string;
|
13321
13650
|
updatedAt: string;
|
13322
13651
|
trackingId: string;
|
13652
|
+
legalStatuses: {
|
13653
|
+
DECLARED?: {
|
13654
|
+
createdAt: string;
|
13655
|
+
createdBy: string;
|
13656
|
+
createdByRole: string;
|
13657
|
+
createdAtLocation: string;
|
13658
|
+
acceptedAt: string;
|
13659
|
+
} | null | undefined;
|
13660
|
+
REGISTERED?: {
|
13661
|
+
createdAt: string;
|
13662
|
+
createdBy: string;
|
13663
|
+
createdByRole: string;
|
13664
|
+
createdAtLocation: string;
|
13665
|
+
registrationNumber: string;
|
13666
|
+
acceptedAt: string;
|
13667
|
+
} | null | undefined;
|
13668
|
+
};
|
13323
13669
|
updatedByUserRole: string;
|
13324
|
-
|
13670
|
+
flags: string[];
|
13325
13671
|
assignedTo?: string | null | undefined;
|
13326
|
-
registrationNumber?: string | null | undefined;
|
13327
13672
|
dateOfEvent?: string | null | undefined;
|
13673
|
+
updatedAtLocation?: string | null | undefined;
|
13674
|
+
updatedBy?: string | null | undefined;
|
13328
13675
|
}[];
|
13329
13676
|
}>;
|
13330
13677
|
}>>;
|