@opencrvs/toolkit 1.9.2-rc.c76ff3e → 1.9.2-rc.f1d7235
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commons/api/router.d.ts +504 -51
- package/dist/commons/events/ActionConfig.d.ts +1807 -13
- package/dist/commons/events/AdvancedSearchConfig.d.ts +11 -0
- package/dist/commons/events/EventConfig.d.ts +1191 -8
- package/dist/commons/events/EventIndex.d.ts +1 -0
- package/dist/commons/events/EventMetadata.d.ts +3 -1
- package/dist/commons/events/FieldConfig.d.ts +80 -0
- package/dist/commons/events/FieldType.d.ts +2 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +8 -1
- package/dist/commons/events/FieldValue.d.ts +2 -1
- package/dist/commons/events/Flag.d.ts +7 -1
- package/dist/commons/events/FormConfig.d.ts +234 -0
- package/dist/commons/events/PageConfig.d.ts +156 -0
- package/dist/commons/events/TemplateConfig.d.ts +3 -3
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +5 -2
- package/dist/commons/events/WorkqueueConfig.d.ts +10 -5
- package/dist/commons/events/defineConfig.d.ts +455 -3
- package/dist/commons/events/event.d.ts +4 -4
- package/dist/commons/events/state/index.d.ts +6 -0
- package/dist/commons/events/utils.d.ts +896 -3
- package/dist/events/index.js +346 -246
- package/dist/notification/index.js +286 -244
- package/dist/scopes/index.d.ts +26 -0
- package/dist/scopes/index.js +6 -0
- package/package.json +1 -1
|
@@ -2104,6 +2104,45 @@ export declare const FormPageConfig: z.ZodObject<{
|
|
|
2104
2104
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
2105
2105
|
}, z.core.$strip>>;
|
|
2106
2106
|
}, z.core.$strip>;
|
|
2107
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2108
|
+
id: z.ZodString;
|
|
2109
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
2110
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2111
|
+
$$field: z.ZodString;
|
|
2112
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2113
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
2114
|
+
$$field: z.ZodString;
|
|
2115
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2116
|
+
}, z.core.$strip>>]>>;
|
|
2117
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2118
|
+
type: z.ZodLiteral<"SHOW">;
|
|
2119
|
+
conditional: z.ZodAny;
|
|
2120
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2121
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
2122
|
+
conditional: z.ZodAny;
|
|
2123
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2124
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
2125
|
+
conditional: z.ZodAny;
|
|
2126
|
+
}, z.core.$strip>], "type">>>>;
|
|
2127
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2128
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
2129
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2130
|
+
validator: z.ZodAny;
|
|
2131
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
2132
|
+
}, z.core.$strip>>>>;
|
|
2133
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
2134
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2135
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2136
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2137
|
+
$$field: z.ZodString;
|
|
2138
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2139
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
2140
|
+
$$field: z.ZodString;
|
|
2141
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2142
|
+
}, z.core.$strip>>]>>;
|
|
2143
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2144
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
2145
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
2107
2146
|
}, z.core.$strip>], "type">>;
|
|
2108
2147
|
conditional: z.ZodOptional<z.ZodAny>;
|
|
2109
2148
|
type: z.ZodDefault<z.ZodLiteral<"FORM">>;
|
|
@@ -4222,6 +4261,45 @@ export declare const VerificationPageConfig: z.ZodObject<{
|
|
|
4222
4261
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
4223
4262
|
}, z.core.$strip>>;
|
|
4224
4263
|
}, z.core.$strip>;
|
|
4264
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4265
|
+
id: z.ZodString;
|
|
4266
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
4267
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4268
|
+
$$field: z.ZodString;
|
|
4269
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4270
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
4271
|
+
$$field: z.ZodString;
|
|
4272
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4273
|
+
}, z.core.$strip>>]>>;
|
|
4274
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4275
|
+
type: z.ZodLiteral<"SHOW">;
|
|
4276
|
+
conditional: z.ZodAny;
|
|
4277
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4278
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
4279
|
+
conditional: z.ZodAny;
|
|
4280
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4281
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
4282
|
+
conditional: z.ZodAny;
|
|
4283
|
+
}, z.core.$strip>], "type">>>>;
|
|
4284
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4285
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
4286
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4287
|
+
validator: z.ZodAny;
|
|
4288
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
4289
|
+
}, z.core.$strip>>>>;
|
|
4290
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
4291
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4292
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4293
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4294
|
+
$$field: z.ZodString;
|
|
4295
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4296
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
4297
|
+
$$field: z.ZodString;
|
|
4298
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4299
|
+
}, z.core.$strip>>]>>;
|
|
4300
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4301
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
4302
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
4225
4303
|
}, z.core.$strip>], "type">>;
|
|
4226
4304
|
conditional: z.ZodOptional<z.ZodAny>;
|
|
4227
4305
|
type: z.ZodLiteral<"VERIFICATION">;
|
|
@@ -6339,6 +6417,45 @@ export declare const PageConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6339
6417
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
6340
6418
|
}, z.core.$strip>>;
|
|
6341
6419
|
}, z.core.$strip>;
|
|
6420
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6421
|
+
id: z.ZodString;
|
|
6422
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
6423
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6424
|
+
$$field: z.ZodString;
|
|
6425
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6426
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
6427
|
+
$$field: z.ZodString;
|
|
6428
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6429
|
+
}, z.core.$strip>>]>>;
|
|
6430
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6431
|
+
type: z.ZodLiteral<"SHOW">;
|
|
6432
|
+
conditional: z.ZodAny;
|
|
6433
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6434
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
6435
|
+
conditional: z.ZodAny;
|
|
6436
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6437
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
6438
|
+
conditional: z.ZodAny;
|
|
6439
|
+
}, z.core.$strip>], "type">>>>;
|
|
6440
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6441
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
6442
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
6443
|
+
validator: z.ZodAny;
|
|
6444
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
6445
|
+
}, z.core.$strip>>>>;
|
|
6446
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
6447
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6448
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6449
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6450
|
+
$$field: z.ZodString;
|
|
6451
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6452
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
6453
|
+
$$field: z.ZodString;
|
|
6454
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6455
|
+
}, z.core.$strip>>]>>;
|
|
6456
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6457
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
6458
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
6342
6459
|
}, z.core.$strip>], "type">>;
|
|
6343
6460
|
conditional: z.ZodOptional<z.ZodAny>;
|
|
6344
6461
|
type: z.ZodDefault<z.ZodLiteral<"FORM">>;
|
|
@@ -8442,6 +8559,45 @@ export declare const PageConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8442
8559
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
8443
8560
|
}, z.core.$strip>>;
|
|
8444
8561
|
}, z.core.$strip>;
|
|
8562
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8563
|
+
id: z.ZodString;
|
|
8564
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
8565
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
8566
|
+
$$field: z.ZodString;
|
|
8567
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8568
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
8569
|
+
$$field: z.ZodString;
|
|
8570
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8571
|
+
}, z.core.$strip>>]>>;
|
|
8572
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8573
|
+
type: z.ZodLiteral<"SHOW">;
|
|
8574
|
+
conditional: z.ZodAny;
|
|
8575
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8576
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
8577
|
+
conditional: z.ZodAny;
|
|
8578
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8579
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
8580
|
+
conditional: z.ZodAny;
|
|
8581
|
+
}, z.core.$strip>], "type">>>>;
|
|
8582
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
8583
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
8584
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8585
|
+
validator: z.ZodAny;
|
|
8586
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
8587
|
+
}, z.core.$strip>>>>;
|
|
8588
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
8589
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
8590
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
8591
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
8592
|
+
$$field: z.ZodString;
|
|
8593
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8594
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
8595
|
+
$$field: z.ZodString;
|
|
8596
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8597
|
+
}, z.core.$strip>>]>>;
|
|
8598
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
8599
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
8600
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
8445
8601
|
}, z.core.$strip>], "type">>;
|
|
8446
8602
|
conditional: z.ZodOptional<z.ZodAny>;
|
|
8447
8603
|
type: z.ZodLiteral<"VERIFICATION">;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* TemplateConfig defines configuration rules for system-based variables (e.g. $user.
|
|
2
|
+
* TemplateConfig defines configuration rules for system-based variables (e.g. $user.role).
|
|
3
3
|
* They are currently used for providing default values in FieldConfig.
|
|
4
4
|
*/
|
|
5
5
|
import { FieldValue } from './FieldValue';
|
|
@@ -8,8 +8,8 @@ import { FieldValue } from './FieldValue';
|
|
|
8
8
|
*/
|
|
9
9
|
export type SystemVariables = {
|
|
10
10
|
$user: {
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
name: string;
|
|
12
|
+
role: string;
|
|
13
13
|
};
|
|
14
14
|
$window: {
|
|
15
15
|
location: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as z from 'zod/v4';
|
|
2
|
-
export declare const WorkqueueColumnKeysArray: readonly ["id", "type", "status", "createdAt", "dateOfEvent", "createdBy", "createdByUserType", "updatedByUserRole", "createdAtLocation", "updatedAtLocation", "updatedAt", "assignedTo", "updatedBy", "trackingId", "legalStatuses", "flags", "title", "outbox"];
|
|
2
|
+
export declare const WorkqueueColumnKeysArray: readonly ["id", "type", "status", "createdAt", "dateOfEvent", "placeOfEvent", "createdBy", "createdByUserType", "updatedByUserRole", "createdAtLocation", "updatedAtLocation", "updatedAt", "assignedTo", "updatedBy", "trackingId", "legalStatuses", "flags", "title", "outbox"];
|
|
3
3
|
export declare const WorkqueueColumnKeys: z.ZodEnum<{
|
|
4
4
|
type: "type";
|
|
5
5
|
id: "id";
|
|
@@ -11,6 +11,7 @@ export declare const WorkqueueColumnKeys: z.ZodEnum<{
|
|
|
11
11
|
createdAtLocation: "createdAtLocation";
|
|
12
12
|
assignedTo: "assignedTo";
|
|
13
13
|
trackingId: "trackingId";
|
|
14
|
+
placeOfEvent: "placeOfEvent";
|
|
14
15
|
legalStatuses: "legalStatuses";
|
|
15
16
|
dateOfEvent: "dateOfEvent";
|
|
16
17
|
updatedByUserRole: "updatedByUserRole";
|
|
@@ -33,6 +34,7 @@ export declare const WorkqueueColumnValue: z.ZodObject<{
|
|
|
33
34
|
createdAtLocation: "createdAtLocation";
|
|
34
35
|
assignedTo: "assignedTo";
|
|
35
36
|
trackingId: "trackingId";
|
|
37
|
+
placeOfEvent: "placeOfEvent";
|
|
36
38
|
legalStatuses: "legalStatuses";
|
|
37
39
|
dateOfEvent: "dateOfEvent";
|
|
38
40
|
updatedByUserRole: "updatedByUserRole";
|
|
@@ -61,6 +63,7 @@ export declare const WorkqueueColumn: z.ZodObject<{
|
|
|
61
63
|
createdAtLocation: "createdAtLocation";
|
|
62
64
|
assignedTo: "assignedTo";
|
|
63
65
|
trackingId: "trackingId";
|
|
66
|
+
placeOfEvent: "placeOfEvent";
|
|
64
67
|
legalStatuses: "legalStatuses";
|
|
65
68
|
dateOfEvent: "dateOfEvent";
|
|
66
69
|
updatedByUserRole: "updatedByUserRole";
|
|
@@ -81,7 +84,7 @@ export declare function defineWorkqueuesColumns(workqueueColumns: WorkqueueColum
|
|
|
81
84
|
description: string;
|
|
82
85
|
};
|
|
83
86
|
value: {
|
|
84
|
-
$event: "type" | "id" | "status" | "title" | "createdByUserType" | "createdAt" | "createdBy" | "createdAtLocation" | "assignedTo" | "trackingId" | "legalStatuses" | "dateOfEvent" | "updatedByUserRole" | "updatedAtLocation" | "updatedAt" | "updatedBy" | "flags" | "outbox";
|
|
87
|
+
$event: "type" | "id" | "status" | "title" | "createdByUserType" | "createdAt" | "createdBy" | "createdAtLocation" | "assignedTo" | "trackingId" | "placeOfEvent" | "legalStatuses" | "dateOfEvent" | "updatedByUserRole" | "updatedAtLocation" | "updatedAt" | "updatedBy" | "flags" | "outbox";
|
|
85
88
|
};
|
|
86
89
|
}[];
|
|
87
90
|
//# sourceMappingURL=WorkqueueColumnConfig.d.ts.map
|
|
@@ -6,7 +6,7 @@ export declare const mandatoryColumns: {
|
|
|
6
6
|
description: string;
|
|
7
7
|
};
|
|
8
8
|
value: {
|
|
9
|
-
$event: "type" | "id" | "status" | "title" | "createdByUserType" | "createdAt" | "createdBy" | "createdAtLocation" | "assignedTo" | "trackingId" | "legalStatuses" | "dateOfEvent" | "updatedByUserRole" | "updatedAtLocation" | "updatedAt" | "updatedBy" | "flags" | "outbox";
|
|
9
|
+
$event: "type" | "id" | "status" | "title" | "createdByUserType" | "createdAt" | "createdBy" | "createdAtLocation" | "assignedTo" | "trackingId" | "placeOfEvent" | "legalStatuses" | "dateOfEvent" | "updatedByUserRole" | "updatedAtLocation" | "updatedAt" | "updatedBy" | "flags" | "outbox";
|
|
10
10
|
};
|
|
11
11
|
}[];
|
|
12
12
|
export declare const WorkqueueActionsWithDefault: z.ZodEnum<{
|
|
@@ -478,6 +478,7 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
|
478
478
|
createdAtLocation: "createdAtLocation";
|
|
479
479
|
assignedTo: "assignedTo";
|
|
480
480
|
trackingId: "trackingId";
|
|
481
|
+
placeOfEvent: "placeOfEvent";
|
|
481
482
|
legalStatuses: "legalStatuses";
|
|
482
483
|
dateOfEvent: "dateOfEvent";
|
|
483
484
|
updatedByUserRole: "updatedByUserRole";
|
|
@@ -560,6 +561,7 @@ export declare const WorkqueueConfig: z.ZodObject<{
|
|
|
560
561
|
Plus: "Plus";
|
|
561
562
|
Printer: "Printer";
|
|
562
563
|
SignOut: "SignOut";
|
|
564
|
+
Stamp: "Stamp";
|
|
563
565
|
Star: "Star";
|
|
564
566
|
Target: "Target";
|
|
565
567
|
TextT: "TextT";
|
|
@@ -665,6 +667,7 @@ export declare const WorkqueueConfigWithoutQuery: z.ZodObject<{
|
|
|
665
667
|
Plus: "Plus";
|
|
666
668
|
Printer: "Printer";
|
|
667
669
|
SignOut: "SignOut";
|
|
670
|
+
Stamp: "Stamp";
|
|
668
671
|
Star: "Star";
|
|
669
672
|
Target: "Target";
|
|
670
673
|
TextT: "TextT";
|
|
@@ -1370,6 +1373,7 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
|
1370
1373
|
createdAtLocation: "createdAtLocation";
|
|
1371
1374
|
assignedTo: "assignedTo";
|
|
1372
1375
|
trackingId: "trackingId";
|
|
1376
|
+
placeOfEvent: "placeOfEvent";
|
|
1373
1377
|
legalStatuses: "legalStatuses";
|
|
1374
1378
|
dateOfEvent: "dateOfEvent";
|
|
1375
1379
|
updatedByUserRole: "updatedByUserRole";
|
|
@@ -1452,6 +1456,7 @@ export declare const WorkqueueConfigInput: z.ZodObject<{
|
|
|
1452
1456
|
Plus: "Plus";
|
|
1453
1457
|
Printer: "Printer";
|
|
1454
1458
|
SignOut: "SignOut";
|
|
1459
|
+
Stamp: "Stamp";
|
|
1455
1460
|
Star: "Star";
|
|
1456
1461
|
Target: "Target";
|
|
1457
1462
|
TextT: "TextT";
|
|
@@ -1738,10 +1743,10 @@ export declare function defineWorkqueue(workqueueInput: WorkqueueConfigInput): {
|
|
|
1738
1743
|
description: string;
|
|
1739
1744
|
};
|
|
1740
1745
|
value: {
|
|
1741
|
-
$event: "type" | "id" | "status" | "title" | "createdByUserType" | "createdAt" | "createdBy" | "createdAtLocation" | "assignedTo" | "trackingId" | "legalStatuses" | "dateOfEvent" | "updatedByUserRole" | "updatedAtLocation" | "updatedAt" | "updatedBy" | "flags" | "outbox";
|
|
1746
|
+
$event: "type" | "id" | "status" | "title" | "createdByUserType" | "createdAt" | "createdBy" | "createdAtLocation" | "assignedTo" | "trackingId" | "placeOfEvent" | "legalStatuses" | "dateOfEvent" | "updatedByUserRole" | "updatedAtLocation" | "updatedAt" | "updatedBy" | "flags" | "outbox";
|
|
1742
1747
|
};
|
|
1743
1748
|
}[];
|
|
1744
|
-
icon: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer";
|
|
1749
|
+
icon: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer";
|
|
1745
1750
|
emptyMessage?: {
|
|
1746
1751
|
id: string;
|
|
1747
1752
|
defaultMessage: string;
|
|
@@ -1999,10 +2004,10 @@ export declare function defineWorkqueues(workqueues: WorkqueueConfigInput[]): {
|
|
|
1999
2004
|
description: string;
|
|
2000
2005
|
};
|
|
2001
2006
|
value: {
|
|
2002
|
-
$event: "type" | "id" | "status" | "title" | "createdByUserType" | "createdAt" | "createdBy" | "createdAtLocation" | "assignedTo" | "trackingId" | "legalStatuses" | "dateOfEvent" | "updatedByUserRole" | "updatedAtLocation" | "updatedAt" | "updatedBy" | "flags" | "outbox";
|
|
2007
|
+
$event: "type" | "id" | "status" | "title" | "createdByUserType" | "createdAt" | "createdBy" | "createdAtLocation" | "assignedTo" | "trackingId" | "placeOfEvent" | "legalStatuses" | "dateOfEvent" | "updatedByUserRole" | "updatedAtLocation" | "updatedAt" | "updatedBy" | "flags" | "outbox";
|
|
2003
2008
|
};
|
|
2004
2009
|
}[];
|
|
2005
|
-
icon: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer";
|
|
2010
|
+
icon: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer";
|
|
2006
2011
|
emptyMessage?: {
|
|
2007
2012
|
id: string;
|
|
2008
2013
|
defaultMessage: string;
|