@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
|
@@ -2098,12 +2098,57 @@ export declare const DeclarationReviewConfig: z.ZodObject<{
|
|
|
2098
2098
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
2099
2099
|
}, z.core.$strip>>;
|
|
2100
2100
|
}, z.core.$strip>;
|
|
2101
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2102
|
+
id: z.ZodString;
|
|
2103
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
2104
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2105
|
+
$$field: z.ZodString;
|
|
2106
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2107
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
2108
|
+
$$field: z.ZodString;
|
|
2109
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2110
|
+
}, z.core.$strip>>]>>;
|
|
2111
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2112
|
+
type: z.ZodLiteral<"SHOW">;
|
|
2113
|
+
conditional: z.ZodAny;
|
|
2114
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2115
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
2116
|
+
conditional: z.ZodAny;
|
|
2117
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2118
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
2119
|
+
conditional: z.ZodAny;
|
|
2120
|
+
}, z.core.$strip>], "type">>>>;
|
|
2121
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2122
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
2123
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2124
|
+
validator: z.ZodAny;
|
|
2125
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
2126
|
+
}, z.core.$strip>>>>;
|
|
2127
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
2128
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2129
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2130
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2131
|
+
$$field: z.ZodString;
|
|
2132
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2133
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
2134
|
+
$$field: z.ZodString;
|
|
2135
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2136
|
+
}, z.core.$strip>>]>>;
|
|
2137
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2138
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
2139
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
2101
2140
|
}, z.core.$strip>], "type">>;
|
|
2102
2141
|
}, z.core.$strip>;
|
|
2103
2142
|
export declare const ActionConfigBase: z.ZodObject<{
|
|
2104
2143
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
2105
2144
|
flags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2106
|
-
id: z.ZodString
|
|
2145
|
+
id: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
2146
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
|
2147
|
+
readonly INCOMPLETE: "incomplete";
|
|
2148
|
+
readonly REJECTED: "rejected";
|
|
2149
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
|
2150
|
+
readonly POTENTIAL_DUPLICATE: "potential-duplicate";
|
|
2151
|
+
}>]>, z.ZodString]>;
|
|
2107
2152
|
operation: z.ZodEnum<{
|
|
2108
2153
|
add: "add";
|
|
2109
2154
|
remove: "remove";
|
|
@@ -2112,6 +2157,108 @@ export declare const ActionConfigBase: z.ZodObject<{
|
|
|
2112
2157
|
}, z.core.$strip>>>>;
|
|
2113
2158
|
auditHistoryLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
2114
2159
|
supportingCopy: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
2160
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
2161
|
+
Validated: "Validated";
|
|
2162
|
+
Registered: "Registered";
|
|
2163
|
+
Certified: "Certified";
|
|
2164
|
+
Archived: "Archived";
|
|
2165
|
+
List: "List";
|
|
2166
|
+
Assigned: "Assigned";
|
|
2167
|
+
Close: "Close";
|
|
2168
|
+
Collapse: "Collapse";
|
|
2169
|
+
Draft: "Draft";
|
|
2170
|
+
DuplicateYellow: "DuplicateYellow";
|
|
2171
|
+
Expand: "Expand";
|
|
2172
|
+
ExternalValidate: "ExternalValidate";
|
|
2173
|
+
FilledCheck: "FilledCheck";
|
|
2174
|
+
InReview: "InReview";
|
|
2175
|
+
Offline: "Offline";
|
|
2176
|
+
RequiresUpdates: "RequiresUpdates";
|
|
2177
|
+
Sent: "Sent";
|
|
2178
|
+
WaitingApproval: "WaitingApproval";
|
|
2179
|
+
ChartActivity: "ChartActivity";
|
|
2180
|
+
Activity: "Activity";
|
|
2181
|
+
Archive: "Archive";
|
|
2182
|
+
ArchiveTray: "ArchiveTray";
|
|
2183
|
+
ArrowLeft: "ArrowLeft";
|
|
2184
|
+
ArrowRight: "ArrowRight";
|
|
2185
|
+
Buildings: "Buildings";
|
|
2186
|
+
Circle: "Circle";
|
|
2187
|
+
CaretDown: "CaretDown";
|
|
2188
|
+
CaretLeft: "CaretLeft";
|
|
2189
|
+
CaretRight: "CaretRight";
|
|
2190
|
+
ChartBar: "ChartBar";
|
|
2191
|
+
ChartLine: "ChartLine";
|
|
2192
|
+
ChatCircle: "ChatCircle";
|
|
2193
|
+
CheckSquare: "CheckSquare";
|
|
2194
|
+
Compass: "Compass";
|
|
2195
|
+
Check: "Check";
|
|
2196
|
+
Copy: "Copy";
|
|
2197
|
+
Database: "Database";
|
|
2198
|
+
DotsThreeVertical: "DotsThreeVertical";
|
|
2199
|
+
ArrowCounterClockwise: "ArrowCounterClockwise";
|
|
2200
|
+
MagnifyingGlassMinus: "MagnifyingGlassMinus";
|
|
2201
|
+
MagnifyingGlassPlus: "MagnifyingGlassPlus";
|
|
2202
|
+
Export: "Export";
|
|
2203
|
+
Eye: "Eye";
|
|
2204
|
+
EyeSlash: "EyeSlash";
|
|
2205
|
+
Envelope: "Envelope";
|
|
2206
|
+
File: "File";
|
|
2207
|
+
FileSearch: "FileSearch";
|
|
2208
|
+
FileMinus: "FileMinus";
|
|
2209
|
+
FilePlus: "FilePlus";
|
|
2210
|
+
FileText: "FileText";
|
|
2211
|
+
FileX: "FileX";
|
|
2212
|
+
Handshake: "Handshake";
|
|
2213
|
+
Gear: "Gear";
|
|
2214
|
+
GitBranch: "GitBranch";
|
|
2215
|
+
IdentificationCard: "IdentificationCard";
|
|
2216
|
+
ListBullets: "ListBullets";
|
|
2217
|
+
Lock: "Lock";
|
|
2218
|
+
MagnifyingGlass: "MagnifyingGlass";
|
|
2219
|
+
MapPin: "MapPin";
|
|
2220
|
+
Medal: "Medal";
|
|
2221
|
+
NotePencil: "NotePencil";
|
|
2222
|
+
Paperclip: "Paperclip";
|
|
2223
|
+
PaperPlaneTilt: "PaperPlaneTilt";
|
|
2224
|
+
Pen: "Pen";
|
|
2225
|
+
Pencil: "Pencil";
|
|
2226
|
+
PencilSimpleLine: "PencilSimpleLine";
|
|
2227
|
+
Phone: "Phone";
|
|
2228
|
+
Plus: "Plus";
|
|
2229
|
+
Printer: "Printer";
|
|
2230
|
+
SignOut: "SignOut";
|
|
2231
|
+
Stamp: "Stamp";
|
|
2232
|
+
Star: "Star";
|
|
2233
|
+
Target: "Target";
|
|
2234
|
+
TextT: "TextT";
|
|
2235
|
+
Trash: "Trash";
|
|
2236
|
+
UploadSimple: "UploadSimple";
|
|
2237
|
+
User: "User";
|
|
2238
|
+
UserPlus: "UserPlus";
|
|
2239
|
+
Users: "Users";
|
|
2240
|
+
WarningCircle: "WarningCircle";
|
|
2241
|
+
X: "X";
|
|
2242
|
+
CircleWavyCheck: "CircleWavyCheck";
|
|
2243
|
+
CircleWavyQuestion: "CircleWavyQuestion";
|
|
2244
|
+
ArchiveBox: "ArchiveBox";
|
|
2245
|
+
ArrowCircleDown: "ArrowCircleDown";
|
|
2246
|
+
FileArrowUp: "FileArrowUp";
|
|
2247
|
+
FileDotted: "FileDotted";
|
|
2248
|
+
Files: "Files";
|
|
2249
|
+
PencilLine: "PencilLine";
|
|
2250
|
+
PencilCircle: "PencilCircle";
|
|
2251
|
+
UserCircle: "UserCircle";
|
|
2252
|
+
Clock: "Clock";
|
|
2253
|
+
QrCode: "QrCode";
|
|
2254
|
+
Webcam: "Webcam";
|
|
2255
|
+
Sun: "Sun";
|
|
2256
|
+
DeviceTabletCamera: "DeviceTabletCamera";
|
|
2257
|
+
Globe: "Globe";
|
|
2258
|
+
Fingerprint: "Fingerprint";
|
|
2259
|
+
PushPin: "PushPin";
|
|
2260
|
+
Timer: "Timer";
|
|
2261
|
+
}>>;
|
|
2115
2262
|
conditionals: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2116
2263
|
type: z.ZodLiteral<"SHOW">;
|
|
2117
2264
|
conditional: z.ZodAny;
|
|
@@ -2123,7 +2270,13 @@ export declare const ActionConfigBase: z.ZodObject<{
|
|
|
2123
2270
|
declare const CustomActionConfig: z.ZodObject<{
|
|
2124
2271
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
2125
2272
|
flags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2126
|
-
id: z.ZodString
|
|
2273
|
+
id: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
2274
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
|
2275
|
+
readonly INCOMPLETE: "incomplete";
|
|
2276
|
+
readonly REJECTED: "rejected";
|
|
2277
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
|
2278
|
+
readonly POTENTIAL_DUPLICATE: "potential-duplicate";
|
|
2279
|
+
}>]>, z.ZodString]>;
|
|
2127
2280
|
operation: z.ZodEnum<{
|
|
2128
2281
|
add: "add";
|
|
2129
2282
|
remove: "remove";
|
|
@@ -2132,6 +2285,108 @@ declare const CustomActionConfig: z.ZodObject<{
|
|
|
2132
2285
|
}, z.core.$strip>>>>;
|
|
2133
2286
|
auditHistoryLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
2134
2287
|
supportingCopy: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
2288
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
2289
|
+
Validated: "Validated";
|
|
2290
|
+
Registered: "Registered";
|
|
2291
|
+
Certified: "Certified";
|
|
2292
|
+
Archived: "Archived";
|
|
2293
|
+
List: "List";
|
|
2294
|
+
Assigned: "Assigned";
|
|
2295
|
+
Close: "Close";
|
|
2296
|
+
Collapse: "Collapse";
|
|
2297
|
+
Draft: "Draft";
|
|
2298
|
+
DuplicateYellow: "DuplicateYellow";
|
|
2299
|
+
Expand: "Expand";
|
|
2300
|
+
ExternalValidate: "ExternalValidate";
|
|
2301
|
+
FilledCheck: "FilledCheck";
|
|
2302
|
+
InReview: "InReview";
|
|
2303
|
+
Offline: "Offline";
|
|
2304
|
+
RequiresUpdates: "RequiresUpdates";
|
|
2305
|
+
Sent: "Sent";
|
|
2306
|
+
WaitingApproval: "WaitingApproval";
|
|
2307
|
+
ChartActivity: "ChartActivity";
|
|
2308
|
+
Activity: "Activity";
|
|
2309
|
+
Archive: "Archive";
|
|
2310
|
+
ArchiveTray: "ArchiveTray";
|
|
2311
|
+
ArrowLeft: "ArrowLeft";
|
|
2312
|
+
ArrowRight: "ArrowRight";
|
|
2313
|
+
Buildings: "Buildings";
|
|
2314
|
+
Circle: "Circle";
|
|
2315
|
+
CaretDown: "CaretDown";
|
|
2316
|
+
CaretLeft: "CaretLeft";
|
|
2317
|
+
CaretRight: "CaretRight";
|
|
2318
|
+
ChartBar: "ChartBar";
|
|
2319
|
+
ChartLine: "ChartLine";
|
|
2320
|
+
ChatCircle: "ChatCircle";
|
|
2321
|
+
CheckSquare: "CheckSquare";
|
|
2322
|
+
Compass: "Compass";
|
|
2323
|
+
Check: "Check";
|
|
2324
|
+
Copy: "Copy";
|
|
2325
|
+
Database: "Database";
|
|
2326
|
+
DotsThreeVertical: "DotsThreeVertical";
|
|
2327
|
+
ArrowCounterClockwise: "ArrowCounterClockwise";
|
|
2328
|
+
MagnifyingGlassMinus: "MagnifyingGlassMinus";
|
|
2329
|
+
MagnifyingGlassPlus: "MagnifyingGlassPlus";
|
|
2330
|
+
Export: "Export";
|
|
2331
|
+
Eye: "Eye";
|
|
2332
|
+
EyeSlash: "EyeSlash";
|
|
2333
|
+
Envelope: "Envelope";
|
|
2334
|
+
File: "File";
|
|
2335
|
+
FileSearch: "FileSearch";
|
|
2336
|
+
FileMinus: "FileMinus";
|
|
2337
|
+
FilePlus: "FilePlus";
|
|
2338
|
+
FileText: "FileText";
|
|
2339
|
+
FileX: "FileX";
|
|
2340
|
+
Handshake: "Handshake";
|
|
2341
|
+
Gear: "Gear";
|
|
2342
|
+
GitBranch: "GitBranch";
|
|
2343
|
+
IdentificationCard: "IdentificationCard";
|
|
2344
|
+
ListBullets: "ListBullets";
|
|
2345
|
+
Lock: "Lock";
|
|
2346
|
+
MagnifyingGlass: "MagnifyingGlass";
|
|
2347
|
+
MapPin: "MapPin";
|
|
2348
|
+
Medal: "Medal";
|
|
2349
|
+
NotePencil: "NotePencil";
|
|
2350
|
+
Paperclip: "Paperclip";
|
|
2351
|
+
PaperPlaneTilt: "PaperPlaneTilt";
|
|
2352
|
+
Pen: "Pen";
|
|
2353
|
+
Pencil: "Pencil";
|
|
2354
|
+
PencilSimpleLine: "PencilSimpleLine";
|
|
2355
|
+
Phone: "Phone";
|
|
2356
|
+
Plus: "Plus";
|
|
2357
|
+
Printer: "Printer";
|
|
2358
|
+
SignOut: "SignOut";
|
|
2359
|
+
Stamp: "Stamp";
|
|
2360
|
+
Star: "Star";
|
|
2361
|
+
Target: "Target";
|
|
2362
|
+
TextT: "TextT";
|
|
2363
|
+
Trash: "Trash";
|
|
2364
|
+
UploadSimple: "UploadSimple";
|
|
2365
|
+
User: "User";
|
|
2366
|
+
UserPlus: "UserPlus";
|
|
2367
|
+
Users: "Users";
|
|
2368
|
+
WarningCircle: "WarningCircle";
|
|
2369
|
+
X: "X";
|
|
2370
|
+
CircleWavyCheck: "CircleWavyCheck";
|
|
2371
|
+
CircleWavyQuestion: "CircleWavyQuestion";
|
|
2372
|
+
ArchiveBox: "ArchiveBox";
|
|
2373
|
+
ArrowCircleDown: "ArrowCircleDown";
|
|
2374
|
+
FileArrowUp: "FileArrowUp";
|
|
2375
|
+
FileDotted: "FileDotted";
|
|
2376
|
+
Files: "Files";
|
|
2377
|
+
PencilLine: "PencilLine";
|
|
2378
|
+
PencilCircle: "PencilCircle";
|
|
2379
|
+
UserCircle: "UserCircle";
|
|
2380
|
+
Clock: "Clock";
|
|
2381
|
+
QrCode: "QrCode";
|
|
2382
|
+
Webcam: "Webcam";
|
|
2383
|
+
Sun: "Sun";
|
|
2384
|
+
DeviceTabletCamera: "DeviceTabletCamera";
|
|
2385
|
+
Globe: "Globe";
|
|
2386
|
+
Fingerprint: "Fingerprint";
|
|
2387
|
+
PushPin: "PushPin";
|
|
2388
|
+
Timer: "Timer";
|
|
2389
|
+
}>>;
|
|
2135
2390
|
conditionals: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2136
2391
|
type: z.ZodLiteral<"SHOW">;
|
|
2137
2392
|
conditional: z.ZodAny;
|
|
@@ -4238,13 +4493,58 @@ declare const CustomActionConfig: z.ZodObject<{
|
|
|
4238
4493
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
4239
4494
|
}, z.core.$strip>>;
|
|
4240
4495
|
}, z.core.$strip>;
|
|
4496
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4497
|
+
id: z.ZodString;
|
|
4498
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
4499
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4500
|
+
$$field: z.ZodString;
|
|
4501
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4502
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
4503
|
+
$$field: z.ZodString;
|
|
4504
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4505
|
+
}, z.core.$strip>>]>>;
|
|
4506
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4507
|
+
type: z.ZodLiteral<"SHOW">;
|
|
4508
|
+
conditional: z.ZodAny;
|
|
4509
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4510
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
4511
|
+
conditional: z.ZodAny;
|
|
4512
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4513
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
4514
|
+
conditional: z.ZodAny;
|
|
4515
|
+
}, z.core.$strip>], "type">>>>;
|
|
4516
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4517
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
4518
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4519
|
+
validator: z.ZodAny;
|
|
4520
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
4521
|
+
}, z.core.$strip>>>>;
|
|
4522
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
4523
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4524
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4525
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4526
|
+
$$field: z.ZodString;
|
|
4527
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4528
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
4529
|
+
$$field: z.ZodString;
|
|
4530
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4531
|
+
}, z.core.$strip>>]>>;
|
|
4532
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4533
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
4534
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
4241
4535
|
}, z.core.$strip>], "type">>;
|
|
4242
4536
|
}, z.core.$strip>;
|
|
4243
4537
|
export type CustomActionConfig = z.infer<typeof CustomActionConfig>;
|
|
4244
4538
|
export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4245
4539
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
4246
4540
|
flags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4247
|
-
id: z.ZodString
|
|
4541
|
+
id: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
4542
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
|
4543
|
+
readonly INCOMPLETE: "incomplete";
|
|
4544
|
+
readonly REJECTED: "rejected";
|
|
4545
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
|
4546
|
+
readonly POTENTIAL_DUPLICATE: "potential-duplicate";
|
|
4547
|
+
}>]>, z.ZodString]>;
|
|
4248
4548
|
operation: z.ZodEnum<{
|
|
4249
4549
|
add: "add";
|
|
4250
4550
|
remove: "remove";
|
|
@@ -4253,6 +4553,108 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4253
4553
|
}, z.core.$strip>>>>;
|
|
4254
4554
|
auditHistoryLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
4255
4555
|
supportingCopy: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
4556
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
4557
|
+
Validated: "Validated";
|
|
4558
|
+
Registered: "Registered";
|
|
4559
|
+
Certified: "Certified";
|
|
4560
|
+
Archived: "Archived";
|
|
4561
|
+
List: "List";
|
|
4562
|
+
Assigned: "Assigned";
|
|
4563
|
+
Close: "Close";
|
|
4564
|
+
Collapse: "Collapse";
|
|
4565
|
+
Draft: "Draft";
|
|
4566
|
+
DuplicateYellow: "DuplicateYellow";
|
|
4567
|
+
Expand: "Expand";
|
|
4568
|
+
ExternalValidate: "ExternalValidate";
|
|
4569
|
+
FilledCheck: "FilledCheck";
|
|
4570
|
+
InReview: "InReview";
|
|
4571
|
+
Offline: "Offline";
|
|
4572
|
+
RequiresUpdates: "RequiresUpdates";
|
|
4573
|
+
Sent: "Sent";
|
|
4574
|
+
WaitingApproval: "WaitingApproval";
|
|
4575
|
+
ChartActivity: "ChartActivity";
|
|
4576
|
+
Activity: "Activity";
|
|
4577
|
+
Archive: "Archive";
|
|
4578
|
+
ArchiveTray: "ArchiveTray";
|
|
4579
|
+
ArrowLeft: "ArrowLeft";
|
|
4580
|
+
ArrowRight: "ArrowRight";
|
|
4581
|
+
Buildings: "Buildings";
|
|
4582
|
+
Circle: "Circle";
|
|
4583
|
+
CaretDown: "CaretDown";
|
|
4584
|
+
CaretLeft: "CaretLeft";
|
|
4585
|
+
CaretRight: "CaretRight";
|
|
4586
|
+
ChartBar: "ChartBar";
|
|
4587
|
+
ChartLine: "ChartLine";
|
|
4588
|
+
ChatCircle: "ChatCircle";
|
|
4589
|
+
CheckSquare: "CheckSquare";
|
|
4590
|
+
Compass: "Compass";
|
|
4591
|
+
Check: "Check";
|
|
4592
|
+
Copy: "Copy";
|
|
4593
|
+
Database: "Database";
|
|
4594
|
+
DotsThreeVertical: "DotsThreeVertical";
|
|
4595
|
+
ArrowCounterClockwise: "ArrowCounterClockwise";
|
|
4596
|
+
MagnifyingGlassMinus: "MagnifyingGlassMinus";
|
|
4597
|
+
MagnifyingGlassPlus: "MagnifyingGlassPlus";
|
|
4598
|
+
Export: "Export";
|
|
4599
|
+
Eye: "Eye";
|
|
4600
|
+
EyeSlash: "EyeSlash";
|
|
4601
|
+
Envelope: "Envelope";
|
|
4602
|
+
File: "File";
|
|
4603
|
+
FileSearch: "FileSearch";
|
|
4604
|
+
FileMinus: "FileMinus";
|
|
4605
|
+
FilePlus: "FilePlus";
|
|
4606
|
+
FileText: "FileText";
|
|
4607
|
+
FileX: "FileX";
|
|
4608
|
+
Handshake: "Handshake";
|
|
4609
|
+
Gear: "Gear";
|
|
4610
|
+
GitBranch: "GitBranch";
|
|
4611
|
+
IdentificationCard: "IdentificationCard";
|
|
4612
|
+
ListBullets: "ListBullets";
|
|
4613
|
+
Lock: "Lock";
|
|
4614
|
+
MagnifyingGlass: "MagnifyingGlass";
|
|
4615
|
+
MapPin: "MapPin";
|
|
4616
|
+
Medal: "Medal";
|
|
4617
|
+
NotePencil: "NotePencil";
|
|
4618
|
+
Paperclip: "Paperclip";
|
|
4619
|
+
PaperPlaneTilt: "PaperPlaneTilt";
|
|
4620
|
+
Pen: "Pen";
|
|
4621
|
+
Pencil: "Pencil";
|
|
4622
|
+
PencilSimpleLine: "PencilSimpleLine";
|
|
4623
|
+
Phone: "Phone";
|
|
4624
|
+
Plus: "Plus";
|
|
4625
|
+
Printer: "Printer";
|
|
4626
|
+
SignOut: "SignOut";
|
|
4627
|
+
Stamp: "Stamp";
|
|
4628
|
+
Star: "Star";
|
|
4629
|
+
Target: "Target";
|
|
4630
|
+
TextT: "TextT";
|
|
4631
|
+
Trash: "Trash";
|
|
4632
|
+
UploadSimple: "UploadSimple";
|
|
4633
|
+
User: "User";
|
|
4634
|
+
UserPlus: "UserPlus";
|
|
4635
|
+
Users: "Users";
|
|
4636
|
+
WarningCircle: "WarningCircle";
|
|
4637
|
+
X: "X";
|
|
4638
|
+
CircleWavyCheck: "CircleWavyCheck";
|
|
4639
|
+
CircleWavyQuestion: "CircleWavyQuestion";
|
|
4640
|
+
ArchiveBox: "ArchiveBox";
|
|
4641
|
+
ArrowCircleDown: "ArrowCircleDown";
|
|
4642
|
+
FileArrowUp: "FileArrowUp";
|
|
4643
|
+
FileDotted: "FileDotted";
|
|
4644
|
+
Files: "Files";
|
|
4645
|
+
PencilLine: "PencilLine";
|
|
4646
|
+
PencilCircle: "PencilCircle";
|
|
4647
|
+
UserCircle: "UserCircle";
|
|
4648
|
+
Clock: "Clock";
|
|
4649
|
+
QrCode: "QrCode";
|
|
4650
|
+
Webcam: "Webcam";
|
|
4651
|
+
Sun: "Sun";
|
|
4652
|
+
DeviceTabletCamera: "DeviceTabletCamera";
|
|
4653
|
+
Globe: "Globe";
|
|
4654
|
+
Fingerprint: "Fingerprint";
|
|
4655
|
+
PushPin: "PushPin";
|
|
4656
|
+
Timer: "Timer";
|
|
4657
|
+
}>>;
|
|
4256
4658
|
type: z.ZodLiteral<"READ">;
|
|
4257
4659
|
review: z.ZodObject<{
|
|
4258
4660
|
title: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
@@ -6353,13 +6755,58 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6353
6755
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
6354
6756
|
}, z.core.$strip>>;
|
|
6355
6757
|
}, z.core.$strip>;
|
|
6758
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6759
|
+
id: z.ZodString;
|
|
6760
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
6761
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6762
|
+
$$field: z.ZodString;
|
|
6763
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6764
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
6765
|
+
$$field: z.ZodString;
|
|
6766
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6767
|
+
}, z.core.$strip>>]>>;
|
|
6768
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6769
|
+
type: z.ZodLiteral<"SHOW">;
|
|
6770
|
+
conditional: z.ZodAny;
|
|
6771
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6772
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
6773
|
+
conditional: z.ZodAny;
|
|
6774
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6775
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
6776
|
+
conditional: z.ZodAny;
|
|
6777
|
+
}, z.core.$strip>], "type">>>>;
|
|
6778
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6779
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
6780
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
6781
|
+
validator: z.ZodAny;
|
|
6782
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
6783
|
+
}, z.core.$strip>>>>;
|
|
6784
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
6785
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6786
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6787
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6788
|
+
$$field: z.ZodString;
|
|
6789
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6790
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
6791
|
+
$$field: z.ZodString;
|
|
6792
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6793
|
+
}, z.core.$strip>>]>>;
|
|
6794
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6795
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
6796
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
6356
6797
|
}, z.core.$strip>], "type">>;
|
|
6357
6798
|
}, z.core.$strip>;
|
|
6358
6799
|
conditionals: z.ZodOptional<z.ZodNever>;
|
|
6359
6800
|
}, z.core.$strip>, z.ZodObject<{
|
|
6360
6801
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
6361
6802
|
flags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6362
|
-
id: z.ZodString
|
|
6803
|
+
id: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
6804
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
|
6805
|
+
readonly INCOMPLETE: "incomplete";
|
|
6806
|
+
readonly REJECTED: "rejected";
|
|
6807
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
|
6808
|
+
readonly POTENTIAL_DUPLICATE: "potential-duplicate";
|
|
6809
|
+
}>]>, z.ZodString]>;
|
|
6363
6810
|
operation: z.ZodEnum<{
|
|
6364
6811
|
add: "add";
|
|
6365
6812
|
remove: "remove";
|
|
@@ -6368,6 +6815,108 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6368
6815
|
}, z.core.$strip>>>>;
|
|
6369
6816
|
auditHistoryLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
6370
6817
|
supportingCopy: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
6818
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
6819
|
+
Validated: "Validated";
|
|
6820
|
+
Registered: "Registered";
|
|
6821
|
+
Certified: "Certified";
|
|
6822
|
+
Archived: "Archived";
|
|
6823
|
+
List: "List";
|
|
6824
|
+
Assigned: "Assigned";
|
|
6825
|
+
Close: "Close";
|
|
6826
|
+
Collapse: "Collapse";
|
|
6827
|
+
Draft: "Draft";
|
|
6828
|
+
DuplicateYellow: "DuplicateYellow";
|
|
6829
|
+
Expand: "Expand";
|
|
6830
|
+
ExternalValidate: "ExternalValidate";
|
|
6831
|
+
FilledCheck: "FilledCheck";
|
|
6832
|
+
InReview: "InReview";
|
|
6833
|
+
Offline: "Offline";
|
|
6834
|
+
RequiresUpdates: "RequiresUpdates";
|
|
6835
|
+
Sent: "Sent";
|
|
6836
|
+
WaitingApproval: "WaitingApproval";
|
|
6837
|
+
ChartActivity: "ChartActivity";
|
|
6838
|
+
Activity: "Activity";
|
|
6839
|
+
Archive: "Archive";
|
|
6840
|
+
ArchiveTray: "ArchiveTray";
|
|
6841
|
+
ArrowLeft: "ArrowLeft";
|
|
6842
|
+
ArrowRight: "ArrowRight";
|
|
6843
|
+
Buildings: "Buildings";
|
|
6844
|
+
Circle: "Circle";
|
|
6845
|
+
CaretDown: "CaretDown";
|
|
6846
|
+
CaretLeft: "CaretLeft";
|
|
6847
|
+
CaretRight: "CaretRight";
|
|
6848
|
+
ChartBar: "ChartBar";
|
|
6849
|
+
ChartLine: "ChartLine";
|
|
6850
|
+
ChatCircle: "ChatCircle";
|
|
6851
|
+
CheckSquare: "CheckSquare";
|
|
6852
|
+
Compass: "Compass";
|
|
6853
|
+
Check: "Check";
|
|
6854
|
+
Copy: "Copy";
|
|
6855
|
+
Database: "Database";
|
|
6856
|
+
DotsThreeVertical: "DotsThreeVertical";
|
|
6857
|
+
ArrowCounterClockwise: "ArrowCounterClockwise";
|
|
6858
|
+
MagnifyingGlassMinus: "MagnifyingGlassMinus";
|
|
6859
|
+
MagnifyingGlassPlus: "MagnifyingGlassPlus";
|
|
6860
|
+
Export: "Export";
|
|
6861
|
+
Eye: "Eye";
|
|
6862
|
+
EyeSlash: "EyeSlash";
|
|
6863
|
+
Envelope: "Envelope";
|
|
6864
|
+
File: "File";
|
|
6865
|
+
FileSearch: "FileSearch";
|
|
6866
|
+
FileMinus: "FileMinus";
|
|
6867
|
+
FilePlus: "FilePlus";
|
|
6868
|
+
FileText: "FileText";
|
|
6869
|
+
FileX: "FileX";
|
|
6870
|
+
Handshake: "Handshake";
|
|
6871
|
+
Gear: "Gear";
|
|
6872
|
+
GitBranch: "GitBranch";
|
|
6873
|
+
IdentificationCard: "IdentificationCard";
|
|
6874
|
+
ListBullets: "ListBullets";
|
|
6875
|
+
Lock: "Lock";
|
|
6876
|
+
MagnifyingGlass: "MagnifyingGlass";
|
|
6877
|
+
MapPin: "MapPin";
|
|
6878
|
+
Medal: "Medal";
|
|
6879
|
+
NotePencil: "NotePencil";
|
|
6880
|
+
Paperclip: "Paperclip";
|
|
6881
|
+
PaperPlaneTilt: "PaperPlaneTilt";
|
|
6882
|
+
Pen: "Pen";
|
|
6883
|
+
Pencil: "Pencil";
|
|
6884
|
+
PencilSimpleLine: "PencilSimpleLine";
|
|
6885
|
+
Phone: "Phone";
|
|
6886
|
+
Plus: "Plus";
|
|
6887
|
+
Printer: "Printer";
|
|
6888
|
+
SignOut: "SignOut";
|
|
6889
|
+
Stamp: "Stamp";
|
|
6890
|
+
Star: "Star";
|
|
6891
|
+
Target: "Target";
|
|
6892
|
+
TextT: "TextT";
|
|
6893
|
+
Trash: "Trash";
|
|
6894
|
+
UploadSimple: "UploadSimple";
|
|
6895
|
+
User: "User";
|
|
6896
|
+
UserPlus: "UserPlus";
|
|
6897
|
+
Users: "Users";
|
|
6898
|
+
WarningCircle: "WarningCircle";
|
|
6899
|
+
X: "X";
|
|
6900
|
+
CircleWavyCheck: "CircleWavyCheck";
|
|
6901
|
+
CircleWavyQuestion: "CircleWavyQuestion";
|
|
6902
|
+
ArchiveBox: "ArchiveBox";
|
|
6903
|
+
ArrowCircleDown: "ArrowCircleDown";
|
|
6904
|
+
FileArrowUp: "FileArrowUp";
|
|
6905
|
+
FileDotted: "FileDotted";
|
|
6906
|
+
Files: "Files";
|
|
6907
|
+
PencilLine: "PencilLine";
|
|
6908
|
+
PencilCircle: "PencilCircle";
|
|
6909
|
+
UserCircle: "UserCircle";
|
|
6910
|
+
Clock: "Clock";
|
|
6911
|
+
QrCode: "QrCode";
|
|
6912
|
+
Webcam: "Webcam";
|
|
6913
|
+
Sun: "Sun";
|
|
6914
|
+
DeviceTabletCamera: "DeviceTabletCamera";
|
|
6915
|
+
Globe: "Globe";
|
|
6916
|
+
Fingerprint: "Fingerprint";
|
|
6917
|
+
PushPin: "PushPin";
|
|
6918
|
+
Timer: "Timer";
|
|
6919
|
+
}>>;
|
|
6371
6920
|
conditionals: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6372
6921
|
type: z.ZodLiteral<"SHOW">;
|
|
6373
6922
|
conditional: z.ZodAny;
|
|
@@ -8480,12 +9029,57 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8480
9029
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
8481
9030
|
}, z.core.$strip>>;
|
|
8482
9031
|
}, z.core.$strip>;
|
|
9032
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9033
|
+
id: z.ZodString;
|
|
9034
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
9035
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
9036
|
+
$$field: z.ZodString;
|
|
9037
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9038
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
9039
|
+
$$field: z.ZodString;
|
|
9040
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9041
|
+
}, z.core.$strip>>]>>;
|
|
9042
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9043
|
+
type: z.ZodLiteral<"SHOW">;
|
|
9044
|
+
conditional: z.ZodAny;
|
|
9045
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9046
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
9047
|
+
conditional: z.ZodAny;
|
|
9048
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9049
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
9050
|
+
conditional: z.ZodAny;
|
|
9051
|
+
}, z.core.$strip>], "type">>>>;
|
|
9052
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9053
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
9054
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
9055
|
+
validator: z.ZodAny;
|
|
9056
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
9057
|
+
}, z.core.$strip>>>>;
|
|
9058
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
9059
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9060
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9061
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
9062
|
+
$$field: z.ZodString;
|
|
9063
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9064
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
9065
|
+
$$field: z.ZodString;
|
|
9066
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9067
|
+
}, z.core.$strip>>]>>;
|
|
9068
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9069
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
9070
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
8483
9071
|
}, z.core.$strip>], "type">>;
|
|
8484
9072
|
}, z.core.$strip>;
|
|
8485
9073
|
}, z.core.$strip>, z.ZodObject<{
|
|
8486
9074
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
8487
9075
|
flags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8488
|
-
id: z.ZodString
|
|
9076
|
+
id: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
9077
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
|
9078
|
+
readonly INCOMPLETE: "incomplete";
|
|
9079
|
+
readonly REJECTED: "rejected";
|
|
9080
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
|
9081
|
+
readonly POTENTIAL_DUPLICATE: "potential-duplicate";
|
|
9082
|
+
}>]>, z.ZodString]>;
|
|
8489
9083
|
operation: z.ZodEnum<{
|
|
8490
9084
|
add: "add";
|
|
8491
9085
|
remove: "remove";
|
|
@@ -8494,6 +9088,108 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8494
9088
|
}, z.core.$strip>>>>;
|
|
8495
9089
|
auditHistoryLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
8496
9090
|
supportingCopy: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
9091
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
9092
|
+
Validated: "Validated";
|
|
9093
|
+
Registered: "Registered";
|
|
9094
|
+
Certified: "Certified";
|
|
9095
|
+
Archived: "Archived";
|
|
9096
|
+
List: "List";
|
|
9097
|
+
Assigned: "Assigned";
|
|
9098
|
+
Close: "Close";
|
|
9099
|
+
Collapse: "Collapse";
|
|
9100
|
+
Draft: "Draft";
|
|
9101
|
+
DuplicateYellow: "DuplicateYellow";
|
|
9102
|
+
Expand: "Expand";
|
|
9103
|
+
ExternalValidate: "ExternalValidate";
|
|
9104
|
+
FilledCheck: "FilledCheck";
|
|
9105
|
+
InReview: "InReview";
|
|
9106
|
+
Offline: "Offline";
|
|
9107
|
+
RequiresUpdates: "RequiresUpdates";
|
|
9108
|
+
Sent: "Sent";
|
|
9109
|
+
WaitingApproval: "WaitingApproval";
|
|
9110
|
+
ChartActivity: "ChartActivity";
|
|
9111
|
+
Activity: "Activity";
|
|
9112
|
+
Archive: "Archive";
|
|
9113
|
+
ArchiveTray: "ArchiveTray";
|
|
9114
|
+
ArrowLeft: "ArrowLeft";
|
|
9115
|
+
ArrowRight: "ArrowRight";
|
|
9116
|
+
Buildings: "Buildings";
|
|
9117
|
+
Circle: "Circle";
|
|
9118
|
+
CaretDown: "CaretDown";
|
|
9119
|
+
CaretLeft: "CaretLeft";
|
|
9120
|
+
CaretRight: "CaretRight";
|
|
9121
|
+
ChartBar: "ChartBar";
|
|
9122
|
+
ChartLine: "ChartLine";
|
|
9123
|
+
ChatCircle: "ChatCircle";
|
|
9124
|
+
CheckSquare: "CheckSquare";
|
|
9125
|
+
Compass: "Compass";
|
|
9126
|
+
Check: "Check";
|
|
9127
|
+
Copy: "Copy";
|
|
9128
|
+
Database: "Database";
|
|
9129
|
+
DotsThreeVertical: "DotsThreeVertical";
|
|
9130
|
+
ArrowCounterClockwise: "ArrowCounterClockwise";
|
|
9131
|
+
MagnifyingGlassMinus: "MagnifyingGlassMinus";
|
|
9132
|
+
MagnifyingGlassPlus: "MagnifyingGlassPlus";
|
|
9133
|
+
Export: "Export";
|
|
9134
|
+
Eye: "Eye";
|
|
9135
|
+
EyeSlash: "EyeSlash";
|
|
9136
|
+
Envelope: "Envelope";
|
|
9137
|
+
File: "File";
|
|
9138
|
+
FileSearch: "FileSearch";
|
|
9139
|
+
FileMinus: "FileMinus";
|
|
9140
|
+
FilePlus: "FilePlus";
|
|
9141
|
+
FileText: "FileText";
|
|
9142
|
+
FileX: "FileX";
|
|
9143
|
+
Handshake: "Handshake";
|
|
9144
|
+
Gear: "Gear";
|
|
9145
|
+
GitBranch: "GitBranch";
|
|
9146
|
+
IdentificationCard: "IdentificationCard";
|
|
9147
|
+
ListBullets: "ListBullets";
|
|
9148
|
+
Lock: "Lock";
|
|
9149
|
+
MagnifyingGlass: "MagnifyingGlass";
|
|
9150
|
+
MapPin: "MapPin";
|
|
9151
|
+
Medal: "Medal";
|
|
9152
|
+
NotePencil: "NotePencil";
|
|
9153
|
+
Paperclip: "Paperclip";
|
|
9154
|
+
PaperPlaneTilt: "PaperPlaneTilt";
|
|
9155
|
+
Pen: "Pen";
|
|
9156
|
+
Pencil: "Pencil";
|
|
9157
|
+
PencilSimpleLine: "PencilSimpleLine";
|
|
9158
|
+
Phone: "Phone";
|
|
9159
|
+
Plus: "Plus";
|
|
9160
|
+
Printer: "Printer";
|
|
9161
|
+
SignOut: "SignOut";
|
|
9162
|
+
Stamp: "Stamp";
|
|
9163
|
+
Star: "Star";
|
|
9164
|
+
Target: "Target";
|
|
9165
|
+
TextT: "TextT";
|
|
9166
|
+
Trash: "Trash";
|
|
9167
|
+
UploadSimple: "UploadSimple";
|
|
9168
|
+
User: "User";
|
|
9169
|
+
UserPlus: "UserPlus";
|
|
9170
|
+
Users: "Users";
|
|
9171
|
+
WarningCircle: "WarningCircle";
|
|
9172
|
+
X: "X";
|
|
9173
|
+
CircleWavyCheck: "CircleWavyCheck";
|
|
9174
|
+
CircleWavyQuestion: "CircleWavyQuestion";
|
|
9175
|
+
ArchiveBox: "ArchiveBox";
|
|
9176
|
+
ArrowCircleDown: "ArrowCircleDown";
|
|
9177
|
+
FileArrowUp: "FileArrowUp";
|
|
9178
|
+
FileDotted: "FileDotted";
|
|
9179
|
+
Files: "Files";
|
|
9180
|
+
PencilLine: "PencilLine";
|
|
9181
|
+
PencilCircle: "PencilCircle";
|
|
9182
|
+
UserCircle: "UserCircle";
|
|
9183
|
+
Clock: "Clock";
|
|
9184
|
+
QrCode: "QrCode";
|
|
9185
|
+
Webcam: "Webcam";
|
|
9186
|
+
Sun: "Sun";
|
|
9187
|
+
DeviceTabletCamera: "DeviceTabletCamera";
|
|
9188
|
+
Globe: "Globe";
|
|
9189
|
+
Fingerprint: "Fingerprint";
|
|
9190
|
+
PushPin: "PushPin";
|
|
9191
|
+
Timer: "Timer";
|
|
9192
|
+
}>>;
|
|
8497
9193
|
conditionals: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8498
9194
|
type: z.ZodLiteral<"SHOW">;
|
|
8499
9195
|
conditional: z.ZodAny;
|
|
@@ -8505,7 +9201,13 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8505
9201
|
}, z.core.$strip>, z.ZodObject<{
|
|
8506
9202
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
8507
9203
|
flags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8508
|
-
id: z.ZodString
|
|
9204
|
+
id: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
9205
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
|
9206
|
+
readonly INCOMPLETE: "incomplete";
|
|
9207
|
+
readonly REJECTED: "rejected";
|
|
9208
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
|
9209
|
+
readonly POTENTIAL_DUPLICATE: "potential-duplicate";
|
|
9210
|
+
}>]>, z.ZodString]>;
|
|
8509
9211
|
operation: z.ZodEnum<{
|
|
8510
9212
|
add: "add";
|
|
8511
9213
|
remove: "remove";
|
|
@@ -8514,6 +9216,108 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8514
9216
|
}, z.core.$strip>>>>;
|
|
8515
9217
|
auditHistoryLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
8516
9218
|
supportingCopy: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
9219
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
9220
|
+
Validated: "Validated";
|
|
9221
|
+
Registered: "Registered";
|
|
9222
|
+
Certified: "Certified";
|
|
9223
|
+
Archived: "Archived";
|
|
9224
|
+
List: "List";
|
|
9225
|
+
Assigned: "Assigned";
|
|
9226
|
+
Close: "Close";
|
|
9227
|
+
Collapse: "Collapse";
|
|
9228
|
+
Draft: "Draft";
|
|
9229
|
+
DuplicateYellow: "DuplicateYellow";
|
|
9230
|
+
Expand: "Expand";
|
|
9231
|
+
ExternalValidate: "ExternalValidate";
|
|
9232
|
+
FilledCheck: "FilledCheck";
|
|
9233
|
+
InReview: "InReview";
|
|
9234
|
+
Offline: "Offline";
|
|
9235
|
+
RequiresUpdates: "RequiresUpdates";
|
|
9236
|
+
Sent: "Sent";
|
|
9237
|
+
WaitingApproval: "WaitingApproval";
|
|
9238
|
+
ChartActivity: "ChartActivity";
|
|
9239
|
+
Activity: "Activity";
|
|
9240
|
+
Archive: "Archive";
|
|
9241
|
+
ArchiveTray: "ArchiveTray";
|
|
9242
|
+
ArrowLeft: "ArrowLeft";
|
|
9243
|
+
ArrowRight: "ArrowRight";
|
|
9244
|
+
Buildings: "Buildings";
|
|
9245
|
+
Circle: "Circle";
|
|
9246
|
+
CaretDown: "CaretDown";
|
|
9247
|
+
CaretLeft: "CaretLeft";
|
|
9248
|
+
CaretRight: "CaretRight";
|
|
9249
|
+
ChartBar: "ChartBar";
|
|
9250
|
+
ChartLine: "ChartLine";
|
|
9251
|
+
ChatCircle: "ChatCircle";
|
|
9252
|
+
CheckSquare: "CheckSquare";
|
|
9253
|
+
Compass: "Compass";
|
|
9254
|
+
Check: "Check";
|
|
9255
|
+
Copy: "Copy";
|
|
9256
|
+
Database: "Database";
|
|
9257
|
+
DotsThreeVertical: "DotsThreeVertical";
|
|
9258
|
+
ArrowCounterClockwise: "ArrowCounterClockwise";
|
|
9259
|
+
MagnifyingGlassMinus: "MagnifyingGlassMinus";
|
|
9260
|
+
MagnifyingGlassPlus: "MagnifyingGlassPlus";
|
|
9261
|
+
Export: "Export";
|
|
9262
|
+
Eye: "Eye";
|
|
9263
|
+
EyeSlash: "EyeSlash";
|
|
9264
|
+
Envelope: "Envelope";
|
|
9265
|
+
File: "File";
|
|
9266
|
+
FileSearch: "FileSearch";
|
|
9267
|
+
FileMinus: "FileMinus";
|
|
9268
|
+
FilePlus: "FilePlus";
|
|
9269
|
+
FileText: "FileText";
|
|
9270
|
+
FileX: "FileX";
|
|
9271
|
+
Handshake: "Handshake";
|
|
9272
|
+
Gear: "Gear";
|
|
9273
|
+
GitBranch: "GitBranch";
|
|
9274
|
+
IdentificationCard: "IdentificationCard";
|
|
9275
|
+
ListBullets: "ListBullets";
|
|
9276
|
+
Lock: "Lock";
|
|
9277
|
+
MagnifyingGlass: "MagnifyingGlass";
|
|
9278
|
+
MapPin: "MapPin";
|
|
9279
|
+
Medal: "Medal";
|
|
9280
|
+
NotePencil: "NotePencil";
|
|
9281
|
+
Paperclip: "Paperclip";
|
|
9282
|
+
PaperPlaneTilt: "PaperPlaneTilt";
|
|
9283
|
+
Pen: "Pen";
|
|
9284
|
+
Pencil: "Pencil";
|
|
9285
|
+
PencilSimpleLine: "PencilSimpleLine";
|
|
9286
|
+
Phone: "Phone";
|
|
9287
|
+
Plus: "Plus";
|
|
9288
|
+
Printer: "Printer";
|
|
9289
|
+
SignOut: "SignOut";
|
|
9290
|
+
Stamp: "Stamp";
|
|
9291
|
+
Star: "Star";
|
|
9292
|
+
Target: "Target";
|
|
9293
|
+
TextT: "TextT";
|
|
9294
|
+
Trash: "Trash";
|
|
9295
|
+
UploadSimple: "UploadSimple";
|
|
9296
|
+
User: "User";
|
|
9297
|
+
UserPlus: "UserPlus";
|
|
9298
|
+
Users: "Users";
|
|
9299
|
+
WarningCircle: "WarningCircle";
|
|
9300
|
+
X: "X";
|
|
9301
|
+
CircleWavyCheck: "CircleWavyCheck";
|
|
9302
|
+
CircleWavyQuestion: "CircleWavyQuestion";
|
|
9303
|
+
ArchiveBox: "ArchiveBox";
|
|
9304
|
+
ArrowCircleDown: "ArrowCircleDown";
|
|
9305
|
+
FileArrowUp: "FileArrowUp";
|
|
9306
|
+
FileDotted: "FileDotted";
|
|
9307
|
+
Files: "Files";
|
|
9308
|
+
PencilLine: "PencilLine";
|
|
9309
|
+
PencilCircle: "PencilCircle";
|
|
9310
|
+
UserCircle: "UserCircle";
|
|
9311
|
+
Clock: "Clock";
|
|
9312
|
+
QrCode: "QrCode";
|
|
9313
|
+
Webcam: "Webcam";
|
|
9314
|
+
Sun: "Sun";
|
|
9315
|
+
DeviceTabletCamera: "DeviceTabletCamera";
|
|
9316
|
+
Globe: "Globe";
|
|
9317
|
+
Fingerprint: "Fingerprint";
|
|
9318
|
+
PushPin: "PushPin";
|
|
9319
|
+
Timer: "Timer";
|
|
9320
|
+
}>>;
|
|
8517
9321
|
conditionals: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8518
9322
|
type: z.ZodLiteral<"SHOW">;
|
|
8519
9323
|
conditional: z.ZodAny;
|
|
@@ -8530,7 +9334,13 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8530
9334
|
}, z.core.$strip>, z.ZodObject<{
|
|
8531
9335
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
8532
9336
|
flags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8533
|
-
id: z.ZodString
|
|
9337
|
+
id: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
9338
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
|
9339
|
+
readonly INCOMPLETE: "incomplete";
|
|
9340
|
+
readonly REJECTED: "rejected";
|
|
9341
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
|
9342
|
+
readonly POTENTIAL_DUPLICATE: "potential-duplicate";
|
|
9343
|
+
}>]>, z.ZodString]>;
|
|
8534
9344
|
operation: z.ZodEnum<{
|
|
8535
9345
|
add: "add";
|
|
8536
9346
|
remove: "remove";
|
|
@@ -8539,6 +9349,108 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8539
9349
|
}, z.core.$strip>>>>;
|
|
8540
9350
|
auditHistoryLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
8541
9351
|
supportingCopy: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
9352
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
9353
|
+
Validated: "Validated";
|
|
9354
|
+
Registered: "Registered";
|
|
9355
|
+
Certified: "Certified";
|
|
9356
|
+
Archived: "Archived";
|
|
9357
|
+
List: "List";
|
|
9358
|
+
Assigned: "Assigned";
|
|
9359
|
+
Close: "Close";
|
|
9360
|
+
Collapse: "Collapse";
|
|
9361
|
+
Draft: "Draft";
|
|
9362
|
+
DuplicateYellow: "DuplicateYellow";
|
|
9363
|
+
Expand: "Expand";
|
|
9364
|
+
ExternalValidate: "ExternalValidate";
|
|
9365
|
+
FilledCheck: "FilledCheck";
|
|
9366
|
+
InReview: "InReview";
|
|
9367
|
+
Offline: "Offline";
|
|
9368
|
+
RequiresUpdates: "RequiresUpdates";
|
|
9369
|
+
Sent: "Sent";
|
|
9370
|
+
WaitingApproval: "WaitingApproval";
|
|
9371
|
+
ChartActivity: "ChartActivity";
|
|
9372
|
+
Activity: "Activity";
|
|
9373
|
+
Archive: "Archive";
|
|
9374
|
+
ArchiveTray: "ArchiveTray";
|
|
9375
|
+
ArrowLeft: "ArrowLeft";
|
|
9376
|
+
ArrowRight: "ArrowRight";
|
|
9377
|
+
Buildings: "Buildings";
|
|
9378
|
+
Circle: "Circle";
|
|
9379
|
+
CaretDown: "CaretDown";
|
|
9380
|
+
CaretLeft: "CaretLeft";
|
|
9381
|
+
CaretRight: "CaretRight";
|
|
9382
|
+
ChartBar: "ChartBar";
|
|
9383
|
+
ChartLine: "ChartLine";
|
|
9384
|
+
ChatCircle: "ChatCircle";
|
|
9385
|
+
CheckSquare: "CheckSquare";
|
|
9386
|
+
Compass: "Compass";
|
|
9387
|
+
Check: "Check";
|
|
9388
|
+
Copy: "Copy";
|
|
9389
|
+
Database: "Database";
|
|
9390
|
+
DotsThreeVertical: "DotsThreeVertical";
|
|
9391
|
+
ArrowCounterClockwise: "ArrowCounterClockwise";
|
|
9392
|
+
MagnifyingGlassMinus: "MagnifyingGlassMinus";
|
|
9393
|
+
MagnifyingGlassPlus: "MagnifyingGlassPlus";
|
|
9394
|
+
Export: "Export";
|
|
9395
|
+
Eye: "Eye";
|
|
9396
|
+
EyeSlash: "EyeSlash";
|
|
9397
|
+
Envelope: "Envelope";
|
|
9398
|
+
File: "File";
|
|
9399
|
+
FileSearch: "FileSearch";
|
|
9400
|
+
FileMinus: "FileMinus";
|
|
9401
|
+
FilePlus: "FilePlus";
|
|
9402
|
+
FileText: "FileText";
|
|
9403
|
+
FileX: "FileX";
|
|
9404
|
+
Handshake: "Handshake";
|
|
9405
|
+
Gear: "Gear";
|
|
9406
|
+
GitBranch: "GitBranch";
|
|
9407
|
+
IdentificationCard: "IdentificationCard";
|
|
9408
|
+
ListBullets: "ListBullets";
|
|
9409
|
+
Lock: "Lock";
|
|
9410
|
+
MagnifyingGlass: "MagnifyingGlass";
|
|
9411
|
+
MapPin: "MapPin";
|
|
9412
|
+
Medal: "Medal";
|
|
9413
|
+
NotePencil: "NotePencil";
|
|
9414
|
+
Paperclip: "Paperclip";
|
|
9415
|
+
PaperPlaneTilt: "PaperPlaneTilt";
|
|
9416
|
+
Pen: "Pen";
|
|
9417
|
+
Pencil: "Pencil";
|
|
9418
|
+
PencilSimpleLine: "PencilSimpleLine";
|
|
9419
|
+
Phone: "Phone";
|
|
9420
|
+
Plus: "Plus";
|
|
9421
|
+
Printer: "Printer";
|
|
9422
|
+
SignOut: "SignOut";
|
|
9423
|
+
Stamp: "Stamp";
|
|
9424
|
+
Star: "Star";
|
|
9425
|
+
Target: "Target";
|
|
9426
|
+
TextT: "TextT";
|
|
9427
|
+
Trash: "Trash";
|
|
9428
|
+
UploadSimple: "UploadSimple";
|
|
9429
|
+
User: "User";
|
|
9430
|
+
UserPlus: "UserPlus";
|
|
9431
|
+
Users: "Users";
|
|
9432
|
+
WarningCircle: "WarningCircle";
|
|
9433
|
+
X: "X";
|
|
9434
|
+
CircleWavyCheck: "CircleWavyCheck";
|
|
9435
|
+
CircleWavyQuestion: "CircleWavyQuestion";
|
|
9436
|
+
ArchiveBox: "ArchiveBox";
|
|
9437
|
+
ArrowCircleDown: "ArrowCircleDown";
|
|
9438
|
+
FileArrowUp: "FileArrowUp";
|
|
9439
|
+
FileDotted: "FileDotted";
|
|
9440
|
+
Files: "Files";
|
|
9441
|
+
PencilLine: "PencilLine";
|
|
9442
|
+
PencilCircle: "PencilCircle";
|
|
9443
|
+
UserCircle: "UserCircle";
|
|
9444
|
+
Clock: "Clock";
|
|
9445
|
+
QrCode: "QrCode";
|
|
9446
|
+
Webcam: "Webcam";
|
|
9447
|
+
Sun: "Sun";
|
|
9448
|
+
DeviceTabletCamera: "DeviceTabletCamera";
|
|
9449
|
+
Globe: "Globe";
|
|
9450
|
+
Fingerprint: "Fingerprint";
|
|
9451
|
+
PushPin: "PushPin";
|
|
9452
|
+
Timer: "Timer";
|
|
9453
|
+
}>>;
|
|
8542
9454
|
conditionals: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8543
9455
|
type: z.ZodLiteral<"SHOW">;
|
|
8544
9456
|
conditional: z.ZodAny;
|
|
@@ -8555,7 +9467,13 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8555
9467
|
}, z.core.$strip>, z.ZodObject<{
|
|
8556
9468
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
8557
9469
|
flags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8558
|
-
id: z.ZodString
|
|
9470
|
+
id: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
9471
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
|
9472
|
+
readonly INCOMPLETE: "incomplete";
|
|
9473
|
+
readonly REJECTED: "rejected";
|
|
9474
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
|
9475
|
+
readonly POTENTIAL_DUPLICATE: "potential-duplicate";
|
|
9476
|
+
}>]>, z.ZodString]>;
|
|
8559
9477
|
operation: z.ZodEnum<{
|
|
8560
9478
|
add: "add";
|
|
8561
9479
|
remove: "remove";
|
|
@@ -8564,6 +9482,108 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8564
9482
|
}, z.core.$strip>>>>;
|
|
8565
9483
|
auditHistoryLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
8566
9484
|
supportingCopy: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
9485
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
9486
|
+
Validated: "Validated";
|
|
9487
|
+
Registered: "Registered";
|
|
9488
|
+
Certified: "Certified";
|
|
9489
|
+
Archived: "Archived";
|
|
9490
|
+
List: "List";
|
|
9491
|
+
Assigned: "Assigned";
|
|
9492
|
+
Close: "Close";
|
|
9493
|
+
Collapse: "Collapse";
|
|
9494
|
+
Draft: "Draft";
|
|
9495
|
+
DuplicateYellow: "DuplicateYellow";
|
|
9496
|
+
Expand: "Expand";
|
|
9497
|
+
ExternalValidate: "ExternalValidate";
|
|
9498
|
+
FilledCheck: "FilledCheck";
|
|
9499
|
+
InReview: "InReview";
|
|
9500
|
+
Offline: "Offline";
|
|
9501
|
+
RequiresUpdates: "RequiresUpdates";
|
|
9502
|
+
Sent: "Sent";
|
|
9503
|
+
WaitingApproval: "WaitingApproval";
|
|
9504
|
+
ChartActivity: "ChartActivity";
|
|
9505
|
+
Activity: "Activity";
|
|
9506
|
+
Archive: "Archive";
|
|
9507
|
+
ArchiveTray: "ArchiveTray";
|
|
9508
|
+
ArrowLeft: "ArrowLeft";
|
|
9509
|
+
ArrowRight: "ArrowRight";
|
|
9510
|
+
Buildings: "Buildings";
|
|
9511
|
+
Circle: "Circle";
|
|
9512
|
+
CaretDown: "CaretDown";
|
|
9513
|
+
CaretLeft: "CaretLeft";
|
|
9514
|
+
CaretRight: "CaretRight";
|
|
9515
|
+
ChartBar: "ChartBar";
|
|
9516
|
+
ChartLine: "ChartLine";
|
|
9517
|
+
ChatCircle: "ChatCircle";
|
|
9518
|
+
CheckSquare: "CheckSquare";
|
|
9519
|
+
Compass: "Compass";
|
|
9520
|
+
Check: "Check";
|
|
9521
|
+
Copy: "Copy";
|
|
9522
|
+
Database: "Database";
|
|
9523
|
+
DotsThreeVertical: "DotsThreeVertical";
|
|
9524
|
+
ArrowCounterClockwise: "ArrowCounterClockwise";
|
|
9525
|
+
MagnifyingGlassMinus: "MagnifyingGlassMinus";
|
|
9526
|
+
MagnifyingGlassPlus: "MagnifyingGlassPlus";
|
|
9527
|
+
Export: "Export";
|
|
9528
|
+
Eye: "Eye";
|
|
9529
|
+
EyeSlash: "EyeSlash";
|
|
9530
|
+
Envelope: "Envelope";
|
|
9531
|
+
File: "File";
|
|
9532
|
+
FileSearch: "FileSearch";
|
|
9533
|
+
FileMinus: "FileMinus";
|
|
9534
|
+
FilePlus: "FilePlus";
|
|
9535
|
+
FileText: "FileText";
|
|
9536
|
+
FileX: "FileX";
|
|
9537
|
+
Handshake: "Handshake";
|
|
9538
|
+
Gear: "Gear";
|
|
9539
|
+
GitBranch: "GitBranch";
|
|
9540
|
+
IdentificationCard: "IdentificationCard";
|
|
9541
|
+
ListBullets: "ListBullets";
|
|
9542
|
+
Lock: "Lock";
|
|
9543
|
+
MagnifyingGlass: "MagnifyingGlass";
|
|
9544
|
+
MapPin: "MapPin";
|
|
9545
|
+
Medal: "Medal";
|
|
9546
|
+
NotePencil: "NotePencil";
|
|
9547
|
+
Paperclip: "Paperclip";
|
|
9548
|
+
PaperPlaneTilt: "PaperPlaneTilt";
|
|
9549
|
+
Pen: "Pen";
|
|
9550
|
+
Pencil: "Pencil";
|
|
9551
|
+
PencilSimpleLine: "PencilSimpleLine";
|
|
9552
|
+
Phone: "Phone";
|
|
9553
|
+
Plus: "Plus";
|
|
9554
|
+
Printer: "Printer";
|
|
9555
|
+
SignOut: "SignOut";
|
|
9556
|
+
Stamp: "Stamp";
|
|
9557
|
+
Star: "Star";
|
|
9558
|
+
Target: "Target";
|
|
9559
|
+
TextT: "TextT";
|
|
9560
|
+
Trash: "Trash";
|
|
9561
|
+
UploadSimple: "UploadSimple";
|
|
9562
|
+
User: "User";
|
|
9563
|
+
UserPlus: "UserPlus";
|
|
9564
|
+
Users: "Users";
|
|
9565
|
+
WarningCircle: "WarningCircle";
|
|
9566
|
+
X: "X";
|
|
9567
|
+
CircleWavyCheck: "CircleWavyCheck";
|
|
9568
|
+
CircleWavyQuestion: "CircleWavyQuestion";
|
|
9569
|
+
ArchiveBox: "ArchiveBox";
|
|
9570
|
+
ArrowCircleDown: "ArrowCircleDown";
|
|
9571
|
+
FileArrowUp: "FileArrowUp";
|
|
9572
|
+
FileDotted: "FileDotted";
|
|
9573
|
+
Files: "Files";
|
|
9574
|
+
PencilLine: "PencilLine";
|
|
9575
|
+
PencilCircle: "PencilCircle";
|
|
9576
|
+
UserCircle: "UserCircle";
|
|
9577
|
+
Clock: "Clock";
|
|
9578
|
+
QrCode: "QrCode";
|
|
9579
|
+
Webcam: "Webcam";
|
|
9580
|
+
Sun: "Sun";
|
|
9581
|
+
DeviceTabletCamera: "DeviceTabletCamera";
|
|
9582
|
+
Globe: "Globe";
|
|
9583
|
+
Fingerprint: "Fingerprint";
|
|
9584
|
+
PushPin: "PushPin";
|
|
9585
|
+
Timer: "Timer";
|
|
9586
|
+
}>>;
|
|
8567
9587
|
conditionals: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8568
9588
|
type: z.ZodLiteral<"SHOW">;
|
|
8569
9589
|
conditional: z.ZodAny;
|
|
@@ -10674,6 +11694,45 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10674
11694
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
10675
11695
|
}, z.core.$strip>>;
|
|
10676
11696
|
}, z.core.$strip>;
|
|
11697
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11698
|
+
id: z.ZodString;
|
|
11699
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
11700
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
11701
|
+
$$field: z.ZodString;
|
|
11702
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11703
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
11704
|
+
$$field: z.ZodString;
|
|
11705
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11706
|
+
}, z.core.$strip>>]>>;
|
|
11707
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11708
|
+
type: z.ZodLiteral<"SHOW">;
|
|
11709
|
+
conditional: z.ZodAny;
|
|
11710
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11711
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
11712
|
+
conditional: z.ZodAny;
|
|
11713
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11714
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
11715
|
+
conditional: z.ZodAny;
|
|
11716
|
+
}, z.core.$strip>], "type">>>>;
|
|
11717
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11718
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
11719
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
11720
|
+
validator: z.ZodAny;
|
|
11721
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
11722
|
+
}, z.core.$strip>>>>;
|
|
11723
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
11724
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11725
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11726
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
11727
|
+
$$field: z.ZodString;
|
|
11728
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11729
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
11730
|
+
$$field: z.ZodString;
|
|
11731
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11732
|
+
}, z.core.$strip>>]>>;
|
|
11733
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11734
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
11735
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
10677
11736
|
}, z.core.$strip>], "type">>;
|
|
10678
11737
|
conditional: z.ZodOptional<z.ZodAny>;
|
|
10679
11738
|
type: z.ZodDefault<z.ZodLiteral<"FORM">>;
|
|
@@ -12777,6 +13836,45 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12777
13836
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
12778
13837
|
}, z.core.$strip>>;
|
|
12779
13838
|
}, z.core.$strip>;
|
|
13839
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13840
|
+
id: z.ZodString;
|
|
13841
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
13842
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
13843
|
+
$$field: z.ZodString;
|
|
13844
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13845
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
13846
|
+
$$field: z.ZodString;
|
|
13847
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13848
|
+
}, z.core.$strip>>]>>;
|
|
13849
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13850
|
+
type: z.ZodLiteral<"SHOW">;
|
|
13851
|
+
conditional: z.ZodAny;
|
|
13852
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13853
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
13854
|
+
conditional: z.ZodAny;
|
|
13855
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13856
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
13857
|
+
conditional: z.ZodAny;
|
|
13858
|
+
}, z.core.$strip>], "type">>>>;
|
|
13859
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
13860
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
13861
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
13862
|
+
validator: z.ZodAny;
|
|
13863
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
13864
|
+
}, z.core.$strip>>>>;
|
|
13865
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
13866
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
13867
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
13868
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
13869
|
+
$$field: z.ZodString;
|
|
13870
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13871
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
13872
|
+
$$field: z.ZodString;
|
|
13873
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13874
|
+
}, z.core.$strip>>]>>;
|
|
13875
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
13876
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
13877
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
12780
13878
|
}, z.core.$strip>], "type">>;
|
|
12781
13879
|
conditional: z.ZodOptional<z.ZodAny>;
|
|
12782
13880
|
type: z.ZodLiteral<"VERIFICATION">;
|
|
@@ -12797,7 +13895,13 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12797
13895
|
}, z.core.$strip>, z.ZodObject<{
|
|
12798
13896
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
12799
13897
|
flags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12800
|
-
id: z.ZodString
|
|
13898
|
+
id: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
13899
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
|
13900
|
+
readonly INCOMPLETE: "incomplete";
|
|
13901
|
+
readonly REJECTED: "rejected";
|
|
13902
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
|
13903
|
+
readonly POTENTIAL_DUPLICATE: "potential-duplicate";
|
|
13904
|
+
}>]>, z.ZodString]>;
|
|
12801
13905
|
operation: z.ZodEnum<{
|
|
12802
13906
|
add: "add";
|
|
12803
13907
|
remove: "remove";
|
|
@@ -12806,6 +13910,108 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12806
13910
|
}, z.core.$strip>>>>;
|
|
12807
13911
|
auditHistoryLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
12808
13912
|
supportingCopy: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
13913
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
13914
|
+
Validated: "Validated";
|
|
13915
|
+
Registered: "Registered";
|
|
13916
|
+
Certified: "Certified";
|
|
13917
|
+
Archived: "Archived";
|
|
13918
|
+
List: "List";
|
|
13919
|
+
Assigned: "Assigned";
|
|
13920
|
+
Close: "Close";
|
|
13921
|
+
Collapse: "Collapse";
|
|
13922
|
+
Draft: "Draft";
|
|
13923
|
+
DuplicateYellow: "DuplicateYellow";
|
|
13924
|
+
Expand: "Expand";
|
|
13925
|
+
ExternalValidate: "ExternalValidate";
|
|
13926
|
+
FilledCheck: "FilledCheck";
|
|
13927
|
+
InReview: "InReview";
|
|
13928
|
+
Offline: "Offline";
|
|
13929
|
+
RequiresUpdates: "RequiresUpdates";
|
|
13930
|
+
Sent: "Sent";
|
|
13931
|
+
WaitingApproval: "WaitingApproval";
|
|
13932
|
+
ChartActivity: "ChartActivity";
|
|
13933
|
+
Activity: "Activity";
|
|
13934
|
+
Archive: "Archive";
|
|
13935
|
+
ArchiveTray: "ArchiveTray";
|
|
13936
|
+
ArrowLeft: "ArrowLeft";
|
|
13937
|
+
ArrowRight: "ArrowRight";
|
|
13938
|
+
Buildings: "Buildings";
|
|
13939
|
+
Circle: "Circle";
|
|
13940
|
+
CaretDown: "CaretDown";
|
|
13941
|
+
CaretLeft: "CaretLeft";
|
|
13942
|
+
CaretRight: "CaretRight";
|
|
13943
|
+
ChartBar: "ChartBar";
|
|
13944
|
+
ChartLine: "ChartLine";
|
|
13945
|
+
ChatCircle: "ChatCircle";
|
|
13946
|
+
CheckSquare: "CheckSquare";
|
|
13947
|
+
Compass: "Compass";
|
|
13948
|
+
Check: "Check";
|
|
13949
|
+
Copy: "Copy";
|
|
13950
|
+
Database: "Database";
|
|
13951
|
+
DotsThreeVertical: "DotsThreeVertical";
|
|
13952
|
+
ArrowCounterClockwise: "ArrowCounterClockwise";
|
|
13953
|
+
MagnifyingGlassMinus: "MagnifyingGlassMinus";
|
|
13954
|
+
MagnifyingGlassPlus: "MagnifyingGlassPlus";
|
|
13955
|
+
Export: "Export";
|
|
13956
|
+
Eye: "Eye";
|
|
13957
|
+
EyeSlash: "EyeSlash";
|
|
13958
|
+
Envelope: "Envelope";
|
|
13959
|
+
File: "File";
|
|
13960
|
+
FileSearch: "FileSearch";
|
|
13961
|
+
FileMinus: "FileMinus";
|
|
13962
|
+
FilePlus: "FilePlus";
|
|
13963
|
+
FileText: "FileText";
|
|
13964
|
+
FileX: "FileX";
|
|
13965
|
+
Handshake: "Handshake";
|
|
13966
|
+
Gear: "Gear";
|
|
13967
|
+
GitBranch: "GitBranch";
|
|
13968
|
+
IdentificationCard: "IdentificationCard";
|
|
13969
|
+
ListBullets: "ListBullets";
|
|
13970
|
+
Lock: "Lock";
|
|
13971
|
+
MagnifyingGlass: "MagnifyingGlass";
|
|
13972
|
+
MapPin: "MapPin";
|
|
13973
|
+
Medal: "Medal";
|
|
13974
|
+
NotePencil: "NotePencil";
|
|
13975
|
+
Paperclip: "Paperclip";
|
|
13976
|
+
PaperPlaneTilt: "PaperPlaneTilt";
|
|
13977
|
+
Pen: "Pen";
|
|
13978
|
+
Pencil: "Pencil";
|
|
13979
|
+
PencilSimpleLine: "PencilSimpleLine";
|
|
13980
|
+
Phone: "Phone";
|
|
13981
|
+
Plus: "Plus";
|
|
13982
|
+
Printer: "Printer";
|
|
13983
|
+
SignOut: "SignOut";
|
|
13984
|
+
Stamp: "Stamp";
|
|
13985
|
+
Star: "Star";
|
|
13986
|
+
Target: "Target";
|
|
13987
|
+
TextT: "TextT";
|
|
13988
|
+
Trash: "Trash";
|
|
13989
|
+
UploadSimple: "UploadSimple";
|
|
13990
|
+
User: "User";
|
|
13991
|
+
UserPlus: "UserPlus";
|
|
13992
|
+
Users: "Users";
|
|
13993
|
+
WarningCircle: "WarningCircle";
|
|
13994
|
+
X: "X";
|
|
13995
|
+
CircleWavyCheck: "CircleWavyCheck";
|
|
13996
|
+
CircleWavyQuestion: "CircleWavyQuestion";
|
|
13997
|
+
ArchiveBox: "ArchiveBox";
|
|
13998
|
+
ArrowCircleDown: "ArrowCircleDown";
|
|
13999
|
+
FileArrowUp: "FileArrowUp";
|
|
14000
|
+
FileDotted: "FileDotted";
|
|
14001
|
+
Files: "Files";
|
|
14002
|
+
PencilLine: "PencilLine";
|
|
14003
|
+
PencilCircle: "PencilCircle";
|
|
14004
|
+
UserCircle: "UserCircle";
|
|
14005
|
+
Clock: "Clock";
|
|
14006
|
+
QrCode: "QrCode";
|
|
14007
|
+
Webcam: "Webcam";
|
|
14008
|
+
Sun: "Sun";
|
|
14009
|
+
DeviceTabletCamera: "DeviceTabletCamera";
|
|
14010
|
+
Globe: "Globe";
|
|
14011
|
+
Fingerprint: "Fingerprint";
|
|
14012
|
+
PushPin: "PushPin";
|
|
14013
|
+
Timer: "Timer";
|
|
14014
|
+
}>>;
|
|
12809
14015
|
conditionals: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12810
14016
|
type: z.ZodLiteral<"SHOW">;
|
|
12811
14017
|
conditional: z.ZodAny;
|
|
@@ -14916,6 +16122,45 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
14916
16122
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
14917
16123
|
}, z.core.$strip>>;
|
|
14918
16124
|
}, z.core.$strip>;
|
|
16125
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16126
|
+
id: z.ZodString;
|
|
16127
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
16128
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
16129
|
+
$$field: z.ZodString;
|
|
16130
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16131
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
16132
|
+
$$field: z.ZodString;
|
|
16133
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16134
|
+
}, z.core.$strip>>]>>;
|
|
16135
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16136
|
+
type: z.ZodLiteral<"SHOW">;
|
|
16137
|
+
conditional: z.ZodAny;
|
|
16138
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16139
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
16140
|
+
conditional: z.ZodAny;
|
|
16141
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16142
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
16143
|
+
conditional: z.ZodAny;
|
|
16144
|
+
}, z.core.$strip>], "type">>>>;
|
|
16145
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
16146
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
16147
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
16148
|
+
validator: z.ZodAny;
|
|
16149
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
16150
|
+
}, z.core.$strip>>>>;
|
|
16151
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
16152
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
16153
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
16154
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
16155
|
+
$$field: z.ZodString;
|
|
16156
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16157
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
16158
|
+
$$field: z.ZodString;
|
|
16159
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16160
|
+
}, z.core.$strip>>]>>;
|
|
16161
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
16162
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
16163
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
14919
16164
|
}, z.core.$strip>], "type">>;
|
|
14920
16165
|
conditional: z.ZodOptional<z.ZodAny>;
|
|
14921
16166
|
type: z.ZodDefault<z.ZodLiteral<"FORM">>;
|
|
@@ -17019,6 +18264,45 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17019
18264
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
17020
18265
|
}, z.core.$strip>>;
|
|
17021
18266
|
}, z.core.$strip>;
|
|
18267
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18268
|
+
id: z.ZodString;
|
|
18269
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
18270
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
18271
|
+
$$field: z.ZodString;
|
|
18272
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
18273
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
18274
|
+
$$field: z.ZodString;
|
|
18275
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
18276
|
+
}, z.core.$strip>>]>>;
|
|
18277
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18278
|
+
type: z.ZodLiteral<"SHOW">;
|
|
18279
|
+
conditional: z.ZodAny;
|
|
18280
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18281
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
18282
|
+
conditional: z.ZodAny;
|
|
18283
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18284
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
18285
|
+
conditional: z.ZodAny;
|
|
18286
|
+
}, z.core.$strip>], "type">>>>;
|
|
18287
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
18288
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
18289
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
18290
|
+
validator: z.ZodAny;
|
|
18291
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
18292
|
+
}, z.core.$strip>>>>;
|
|
18293
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
18294
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
18295
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
18296
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
18297
|
+
$$field: z.ZodString;
|
|
18298
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
18299
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
18300
|
+
$$field: z.ZodString;
|
|
18301
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
18302
|
+
}, z.core.$strip>>]>>;
|
|
18303
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
18304
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
18305
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
17022
18306
|
}, z.core.$strip>], "type">>;
|
|
17023
18307
|
conditional: z.ZodOptional<z.ZodAny>;
|
|
17024
18308
|
type: z.ZodLiteral<"VERIFICATION">;
|
|
@@ -17039,7 +18323,13 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17039
18323
|
}, z.core.$strip>, z.ZodObject<{
|
|
17040
18324
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
17041
18325
|
flags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17042
|
-
id: z.ZodString
|
|
18326
|
+
id: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
18327
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
|
18328
|
+
readonly INCOMPLETE: "incomplete";
|
|
18329
|
+
readonly REJECTED: "rejected";
|
|
18330
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
|
18331
|
+
readonly POTENTIAL_DUPLICATE: "potential-duplicate";
|
|
18332
|
+
}>]>, z.ZodString]>;
|
|
17043
18333
|
operation: z.ZodEnum<{
|
|
17044
18334
|
add: "add";
|
|
17045
18335
|
remove: "remove";
|
|
@@ -17048,6 +18338,108 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17048
18338
|
}, z.core.$strip>>>>;
|
|
17049
18339
|
auditHistoryLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
17050
18340
|
supportingCopy: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
18341
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
18342
|
+
Validated: "Validated";
|
|
18343
|
+
Registered: "Registered";
|
|
18344
|
+
Certified: "Certified";
|
|
18345
|
+
Archived: "Archived";
|
|
18346
|
+
List: "List";
|
|
18347
|
+
Assigned: "Assigned";
|
|
18348
|
+
Close: "Close";
|
|
18349
|
+
Collapse: "Collapse";
|
|
18350
|
+
Draft: "Draft";
|
|
18351
|
+
DuplicateYellow: "DuplicateYellow";
|
|
18352
|
+
Expand: "Expand";
|
|
18353
|
+
ExternalValidate: "ExternalValidate";
|
|
18354
|
+
FilledCheck: "FilledCheck";
|
|
18355
|
+
InReview: "InReview";
|
|
18356
|
+
Offline: "Offline";
|
|
18357
|
+
RequiresUpdates: "RequiresUpdates";
|
|
18358
|
+
Sent: "Sent";
|
|
18359
|
+
WaitingApproval: "WaitingApproval";
|
|
18360
|
+
ChartActivity: "ChartActivity";
|
|
18361
|
+
Activity: "Activity";
|
|
18362
|
+
Archive: "Archive";
|
|
18363
|
+
ArchiveTray: "ArchiveTray";
|
|
18364
|
+
ArrowLeft: "ArrowLeft";
|
|
18365
|
+
ArrowRight: "ArrowRight";
|
|
18366
|
+
Buildings: "Buildings";
|
|
18367
|
+
Circle: "Circle";
|
|
18368
|
+
CaretDown: "CaretDown";
|
|
18369
|
+
CaretLeft: "CaretLeft";
|
|
18370
|
+
CaretRight: "CaretRight";
|
|
18371
|
+
ChartBar: "ChartBar";
|
|
18372
|
+
ChartLine: "ChartLine";
|
|
18373
|
+
ChatCircle: "ChatCircle";
|
|
18374
|
+
CheckSquare: "CheckSquare";
|
|
18375
|
+
Compass: "Compass";
|
|
18376
|
+
Check: "Check";
|
|
18377
|
+
Copy: "Copy";
|
|
18378
|
+
Database: "Database";
|
|
18379
|
+
DotsThreeVertical: "DotsThreeVertical";
|
|
18380
|
+
ArrowCounterClockwise: "ArrowCounterClockwise";
|
|
18381
|
+
MagnifyingGlassMinus: "MagnifyingGlassMinus";
|
|
18382
|
+
MagnifyingGlassPlus: "MagnifyingGlassPlus";
|
|
18383
|
+
Export: "Export";
|
|
18384
|
+
Eye: "Eye";
|
|
18385
|
+
EyeSlash: "EyeSlash";
|
|
18386
|
+
Envelope: "Envelope";
|
|
18387
|
+
File: "File";
|
|
18388
|
+
FileSearch: "FileSearch";
|
|
18389
|
+
FileMinus: "FileMinus";
|
|
18390
|
+
FilePlus: "FilePlus";
|
|
18391
|
+
FileText: "FileText";
|
|
18392
|
+
FileX: "FileX";
|
|
18393
|
+
Handshake: "Handshake";
|
|
18394
|
+
Gear: "Gear";
|
|
18395
|
+
GitBranch: "GitBranch";
|
|
18396
|
+
IdentificationCard: "IdentificationCard";
|
|
18397
|
+
ListBullets: "ListBullets";
|
|
18398
|
+
Lock: "Lock";
|
|
18399
|
+
MagnifyingGlass: "MagnifyingGlass";
|
|
18400
|
+
MapPin: "MapPin";
|
|
18401
|
+
Medal: "Medal";
|
|
18402
|
+
NotePencil: "NotePencil";
|
|
18403
|
+
Paperclip: "Paperclip";
|
|
18404
|
+
PaperPlaneTilt: "PaperPlaneTilt";
|
|
18405
|
+
Pen: "Pen";
|
|
18406
|
+
Pencil: "Pencil";
|
|
18407
|
+
PencilSimpleLine: "PencilSimpleLine";
|
|
18408
|
+
Phone: "Phone";
|
|
18409
|
+
Plus: "Plus";
|
|
18410
|
+
Printer: "Printer";
|
|
18411
|
+
SignOut: "SignOut";
|
|
18412
|
+
Stamp: "Stamp";
|
|
18413
|
+
Star: "Star";
|
|
18414
|
+
Target: "Target";
|
|
18415
|
+
TextT: "TextT";
|
|
18416
|
+
Trash: "Trash";
|
|
18417
|
+
UploadSimple: "UploadSimple";
|
|
18418
|
+
User: "User";
|
|
18419
|
+
UserPlus: "UserPlus";
|
|
18420
|
+
Users: "Users";
|
|
18421
|
+
WarningCircle: "WarningCircle";
|
|
18422
|
+
X: "X";
|
|
18423
|
+
CircleWavyCheck: "CircleWavyCheck";
|
|
18424
|
+
CircleWavyQuestion: "CircleWavyQuestion";
|
|
18425
|
+
ArchiveBox: "ArchiveBox";
|
|
18426
|
+
ArrowCircleDown: "ArrowCircleDown";
|
|
18427
|
+
FileArrowUp: "FileArrowUp";
|
|
18428
|
+
FileDotted: "FileDotted";
|
|
18429
|
+
Files: "Files";
|
|
18430
|
+
PencilLine: "PencilLine";
|
|
18431
|
+
PencilCircle: "PencilCircle";
|
|
18432
|
+
UserCircle: "UserCircle";
|
|
18433
|
+
Clock: "Clock";
|
|
18434
|
+
QrCode: "QrCode";
|
|
18435
|
+
Webcam: "Webcam";
|
|
18436
|
+
Sun: "Sun";
|
|
18437
|
+
DeviceTabletCamera: "DeviceTabletCamera";
|
|
18438
|
+
Globe: "Globe";
|
|
18439
|
+
Fingerprint: "Fingerprint";
|
|
18440
|
+
PushPin: "PushPin";
|
|
18441
|
+
Timer: "Timer";
|
|
18442
|
+
}>>;
|
|
17051
18443
|
conditionals: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
17052
18444
|
type: z.ZodLiteral<"SHOW">;
|
|
17053
18445
|
conditional: z.ZodAny;
|
|
@@ -19154,6 +20546,45 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
19154
20546
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
19155
20547
|
}, z.core.$strip>>;
|
|
19156
20548
|
}, z.core.$strip>;
|
|
20549
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20550
|
+
id: z.ZodString;
|
|
20551
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
20552
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
20553
|
+
$$field: z.ZodString;
|
|
20554
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20555
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
20556
|
+
$$field: z.ZodString;
|
|
20557
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20558
|
+
}, z.core.$strip>>]>>;
|
|
20559
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
20560
|
+
type: z.ZodLiteral<"SHOW">;
|
|
20561
|
+
conditional: z.ZodAny;
|
|
20562
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20563
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
20564
|
+
conditional: z.ZodAny;
|
|
20565
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20566
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
20567
|
+
conditional: z.ZodAny;
|
|
20568
|
+
}, z.core.$strip>], "type">>>>;
|
|
20569
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
20570
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
20571
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
20572
|
+
validator: z.ZodAny;
|
|
20573
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
20574
|
+
}, z.core.$strip>>>>;
|
|
20575
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
20576
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
20577
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
20578
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
20579
|
+
$$field: z.ZodString;
|
|
20580
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20581
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
20582
|
+
$$field: z.ZodString;
|
|
20583
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20584
|
+
}, z.core.$strip>>]>>;
|
|
20585
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
20586
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
20587
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
19157
20588
|
}, z.core.$strip>], "type">>;
|
|
19158
20589
|
}, z.core.$strip>], "type">;
|
|
19159
20590
|
export type ActionConfig = z.infer<typeof ActionConfig>;
|
|
@@ -19170,7 +20601,13 @@ export type ActionConfigTypes = ActionConfig['type'];
|
|
|
19170
20601
|
export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19171
20602
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
19172
20603
|
flags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19173
|
-
id: z.ZodString
|
|
20604
|
+
id: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
20605
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
|
20606
|
+
readonly INCOMPLETE: "incomplete";
|
|
20607
|
+
readonly REJECTED: "rejected";
|
|
20608
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
|
20609
|
+
readonly POTENTIAL_DUPLICATE: "potential-duplicate";
|
|
20610
|
+
}>]>, z.ZodString]>;
|
|
19174
20611
|
operation: z.ZodEnum<{
|
|
19175
20612
|
add: "add";
|
|
19176
20613
|
remove: "remove";
|
|
@@ -19179,6 +20616,108 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
19179
20616
|
}, z.core.$strip>>>>;
|
|
19180
20617
|
auditHistoryLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
19181
20618
|
supportingCopy: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
20619
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
20620
|
+
Validated: "Validated";
|
|
20621
|
+
Registered: "Registered";
|
|
20622
|
+
Certified: "Certified";
|
|
20623
|
+
Archived: "Archived";
|
|
20624
|
+
List: "List";
|
|
20625
|
+
Assigned: "Assigned";
|
|
20626
|
+
Close: "Close";
|
|
20627
|
+
Collapse: "Collapse";
|
|
20628
|
+
Draft: "Draft";
|
|
20629
|
+
DuplicateYellow: "DuplicateYellow";
|
|
20630
|
+
Expand: "Expand";
|
|
20631
|
+
ExternalValidate: "ExternalValidate";
|
|
20632
|
+
FilledCheck: "FilledCheck";
|
|
20633
|
+
InReview: "InReview";
|
|
20634
|
+
Offline: "Offline";
|
|
20635
|
+
RequiresUpdates: "RequiresUpdates";
|
|
20636
|
+
Sent: "Sent";
|
|
20637
|
+
WaitingApproval: "WaitingApproval";
|
|
20638
|
+
ChartActivity: "ChartActivity";
|
|
20639
|
+
Activity: "Activity";
|
|
20640
|
+
Archive: "Archive";
|
|
20641
|
+
ArchiveTray: "ArchiveTray";
|
|
20642
|
+
ArrowLeft: "ArrowLeft";
|
|
20643
|
+
ArrowRight: "ArrowRight";
|
|
20644
|
+
Buildings: "Buildings";
|
|
20645
|
+
Circle: "Circle";
|
|
20646
|
+
CaretDown: "CaretDown";
|
|
20647
|
+
CaretLeft: "CaretLeft";
|
|
20648
|
+
CaretRight: "CaretRight";
|
|
20649
|
+
ChartBar: "ChartBar";
|
|
20650
|
+
ChartLine: "ChartLine";
|
|
20651
|
+
ChatCircle: "ChatCircle";
|
|
20652
|
+
CheckSquare: "CheckSquare";
|
|
20653
|
+
Compass: "Compass";
|
|
20654
|
+
Check: "Check";
|
|
20655
|
+
Copy: "Copy";
|
|
20656
|
+
Database: "Database";
|
|
20657
|
+
DotsThreeVertical: "DotsThreeVertical";
|
|
20658
|
+
ArrowCounterClockwise: "ArrowCounterClockwise";
|
|
20659
|
+
MagnifyingGlassMinus: "MagnifyingGlassMinus";
|
|
20660
|
+
MagnifyingGlassPlus: "MagnifyingGlassPlus";
|
|
20661
|
+
Export: "Export";
|
|
20662
|
+
Eye: "Eye";
|
|
20663
|
+
EyeSlash: "EyeSlash";
|
|
20664
|
+
Envelope: "Envelope";
|
|
20665
|
+
File: "File";
|
|
20666
|
+
FileSearch: "FileSearch";
|
|
20667
|
+
FileMinus: "FileMinus";
|
|
20668
|
+
FilePlus: "FilePlus";
|
|
20669
|
+
FileText: "FileText";
|
|
20670
|
+
FileX: "FileX";
|
|
20671
|
+
Handshake: "Handshake";
|
|
20672
|
+
Gear: "Gear";
|
|
20673
|
+
GitBranch: "GitBranch";
|
|
20674
|
+
IdentificationCard: "IdentificationCard";
|
|
20675
|
+
ListBullets: "ListBullets";
|
|
20676
|
+
Lock: "Lock";
|
|
20677
|
+
MagnifyingGlass: "MagnifyingGlass";
|
|
20678
|
+
MapPin: "MapPin";
|
|
20679
|
+
Medal: "Medal";
|
|
20680
|
+
NotePencil: "NotePencil";
|
|
20681
|
+
Paperclip: "Paperclip";
|
|
20682
|
+
PaperPlaneTilt: "PaperPlaneTilt";
|
|
20683
|
+
Pen: "Pen";
|
|
20684
|
+
Pencil: "Pencil";
|
|
20685
|
+
PencilSimpleLine: "PencilSimpleLine";
|
|
20686
|
+
Phone: "Phone";
|
|
20687
|
+
Plus: "Plus";
|
|
20688
|
+
Printer: "Printer";
|
|
20689
|
+
SignOut: "SignOut";
|
|
20690
|
+
Stamp: "Stamp";
|
|
20691
|
+
Star: "Star";
|
|
20692
|
+
Target: "Target";
|
|
20693
|
+
TextT: "TextT";
|
|
20694
|
+
Trash: "Trash";
|
|
20695
|
+
UploadSimple: "UploadSimple";
|
|
20696
|
+
User: "User";
|
|
20697
|
+
UserPlus: "UserPlus";
|
|
20698
|
+
Users: "Users";
|
|
20699
|
+
WarningCircle: "WarningCircle";
|
|
20700
|
+
X: "X";
|
|
20701
|
+
CircleWavyCheck: "CircleWavyCheck";
|
|
20702
|
+
CircleWavyQuestion: "CircleWavyQuestion";
|
|
20703
|
+
ArchiveBox: "ArchiveBox";
|
|
20704
|
+
ArrowCircleDown: "ArrowCircleDown";
|
|
20705
|
+
FileArrowUp: "FileArrowUp";
|
|
20706
|
+
FileDotted: "FileDotted";
|
|
20707
|
+
Files: "Files";
|
|
20708
|
+
PencilLine: "PencilLine";
|
|
20709
|
+
PencilCircle: "PencilCircle";
|
|
20710
|
+
UserCircle: "UserCircle";
|
|
20711
|
+
Clock: "Clock";
|
|
20712
|
+
QrCode: "QrCode";
|
|
20713
|
+
Webcam: "Webcam";
|
|
20714
|
+
Sun: "Sun";
|
|
20715
|
+
DeviceTabletCamera: "DeviceTabletCamera";
|
|
20716
|
+
Globe: "Globe";
|
|
20717
|
+
Fingerprint: "Fingerprint";
|
|
20718
|
+
PushPin: "PushPin";
|
|
20719
|
+
Timer: "Timer";
|
|
20720
|
+
}>>;
|
|
19182
20721
|
conditionals: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19183
20722
|
type: z.ZodLiteral<"SHOW">;
|
|
19184
20723
|
conditional: z.ZodAny;
|
|
@@ -21291,12 +22830,57 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
21291
22830
|
ok: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
21292
22831
|
}, z.core.$strip>>;
|
|
21293
22832
|
}, z.core.$strip>;
|
|
22833
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22834
|
+
id: z.ZodString;
|
|
22835
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
22836
|
+
parent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
22837
|
+
$$field: z.ZodString;
|
|
22838
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22839
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
22840
|
+
$$field: z.ZodString;
|
|
22841
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22842
|
+
}, z.core.$strip>>]>>;
|
|
22843
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
22844
|
+
type: z.ZodLiteral<"SHOW">;
|
|
22845
|
+
conditional: z.ZodAny;
|
|
22846
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22847
|
+
type: z.ZodLiteral<"ENABLE">;
|
|
22848
|
+
conditional: z.ZodAny;
|
|
22849
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22850
|
+
type: z.ZodLiteral<"DISPLAY_ON_REVIEW">;
|
|
22851
|
+
conditional: z.ZodAny;
|
|
22852
|
+
}, z.core.$strip>], "type">>>>;
|
|
22853
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
22854
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
22855
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
22856
|
+
validator: z.ZodAny;
|
|
22857
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
22858
|
+
}, z.core.$strip>>>>;
|
|
22859
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
22860
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
22861
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
22862
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
22863
|
+
$$field: z.ZodString;
|
|
22864
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22865
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
22866
|
+
$$field: z.ZodString;
|
|
22867
|
+
$$subfield: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22868
|
+
}, z.core.$strip>>]>>;
|
|
22869
|
+
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
22870
|
+
type: z.ZodLiteral<"HIDDEN">;
|
|
22871
|
+
required: z.ZodOptional<z.ZodLiteral<false>>;
|
|
21294
22872
|
}, z.core.$strip>], "type">>;
|
|
21295
22873
|
}, z.core.$strip>;
|
|
21296
22874
|
}, z.core.$strip>, z.ZodObject<{
|
|
21297
22875
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
21298
22876
|
flags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21299
|
-
id: z.ZodString
|
|
22877
|
+
id: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
22878
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
|
22879
|
+
readonly INCOMPLETE: "incomplete";
|
|
22880
|
+
readonly REJECTED: "rejected";
|
|
22881
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
|
22882
|
+
readonly POTENTIAL_DUPLICATE: "potential-duplicate";
|
|
22883
|
+
}>]>, z.ZodString]>;
|
|
21300
22884
|
operation: z.ZodEnum<{
|
|
21301
22885
|
add: "add";
|
|
21302
22886
|
remove: "remove";
|
|
@@ -21305,6 +22889,108 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
21305
22889
|
}, z.core.$strip>>>>;
|
|
21306
22890
|
auditHistoryLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
21307
22891
|
supportingCopy: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
22892
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
22893
|
+
Validated: "Validated";
|
|
22894
|
+
Registered: "Registered";
|
|
22895
|
+
Certified: "Certified";
|
|
22896
|
+
Archived: "Archived";
|
|
22897
|
+
List: "List";
|
|
22898
|
+
Assigned: "Assigned";
|
|
22899
|
+
Close: "Close";
|
|
22900
|
+
Collapse: "Collapse";
|
|
22901
|
+
Draft: "Draft";
|
|
22902
|
+
DuplicateYellow: "DuplicateYellow";
|
|
22903
|
+
Expand: "Expand";
|
|
22904
|
+
ExternalValidate: "ExternalValidate";
|
|
22905
|
+
FilledCheck: "FilledCheck";
|
|
22906
|
+
InReview: "InReview";
|
|
22907
|
+
Offline: "Offline";
|
|
22908
|
+
RequiresUpdates: "RequiresUpdates";
|
|
22909
|
+
Sent: "Sent";
|
|
22910
|
+
WaitingApproval: "WaitingApproval";
|
|
22911
|
+
ChartActivity: "ChartActivity";
|
|
22912
|
+
Activity: "Activity";
|
|
22913
|
+
Archive: "Archive";
|
|
22914
|
+
ArchiveTray: "ArchiveTray";
|
|
22915
|
+
ArrowLeft: "ArrowLeft";
|
|
22916
|
+
ArrowRight: "ArrowRight";
|
|
22917
|
+
Buildings: "Buildings";
|
|
22918
|
+
Circle: "Circle";
|
|
22919
|
+
CaretDown: "CaretDown";
|
|
22920
|
+
CaretLeft: "CaretLeft";
|
|
22921
|
+
CaretRight: "CaretRight";
|
|
22922
|
+
ChartBar: "ChartBar";
|
|
22923
|
+
ChartLine: "ChartLine";
|
|
22924
|
+
ChatCircle: "ChatCircle";
|
|
22925
|
+
CheckSquare: "CheckSquare";
|
|
22926
|
+
Compass: "Compass";
|
|
22927
|
+
Check: "Check";
|
|
22928
|
+
Copy: "Copy";
|
|
22929
|
+
Database: "Database";
|
|
22930
|
+
DotsThreeVertical: "DotsThreeVertical";
|
|
22931
|
+
ArrowCounterClockwise: "ArrowCounterClockwise";
|
|
22932
|
+
MagnifyingGlassMinus: "MagnifyingGlassMinus";
|
|
22933
|
+
MagnifyingGlassPlus: "MagnifyingGlassPlus";
|
|
22934
|
+
Export: "Export";
|
|
22935
|
+
Eye: "Eye";
|
|
22936
|
+
EyeSlash: "EyeSlash";
|
|
22937
|
+
Envelope: "Envelope";
|
|
22938
|
+
File: "File";
|
|
22939
|
+
FileSearch: "FileSearch";
|
|
22940
|
+
FileMinus: "FileMinus";
|
|
22941
|
+
FilePlus: "FilePlus";
|
|
22942
|
+
FileText: "FileText";
|
|
22943
|
+
FileX: "FileX";
|
|
22944
|
+
Handshake: "Handshake";
|
|
22945
|
+
Gear: "Gear";
|
|
22946
|
+
GitBranch: "GitBranch";
|
|
22947
|
+
IdentificationCard: "IdentificationCard";
|
|
22948
|
+
ListBullets: "ListBullets";
|
|
22949
|
+
Lock: "Lock";
|
|
22950
|
+
MagnifyingGlass: "MagnifyingGlass";
|
|
22951
|
+
MapPin: "MapPin";
|
|
22952
|
+
Medal: "Medal";
|
|
22953
|
+
NotePencil: "NotePencil";
|
|
22954
|
+
Paperclip: "Paperclip";
|
|
22955
|
+
PaperPlaneTilt: "PaperPlaneTilt";
|
|
22956
|
+
Pen: "Pen";
|
|
22957
|
+
Pencil: "Pencil";
|
|
22958
|
+
PencilSimpleLine: "PencilSimpleLine";
|
|
22959
|
+
Phone: "Phone";
|
|
22960
|
+
Plus: "Plus";
|
|
22961
|
+
Printer: "Printer";
|
|
22962
|
+
SignOut: "SignOut";
|
|
22963
|
+
Stamp: "Stamp";
|
|
22964
|
+
Star: "Star";
|
|
22965
|
+
Target: "Target";
|
|
22966
|
+
TextT: "TextT";
|
|
22967
|
+
Trash: "Trash";
|
|
22968
|
+
UploadSimple: "UploadSimple";
|
|
22969
|
+
User: "User";
|
|
22970
|
+
UserPlus: "UserPlus";
|
|
22971
|
+
Users: "Users";
|
|
22972
|
+
WarningCircle: "WarningCircle";
|
|
22973
|
+
X: "X";
|
|
22974
|
+
CircleWavyCheck: "CircleWavyCheck";
|
|
22975
|
+
CircleWavyQuestion: "CircleWavyQuestion";
|
|
22976
|
+
ArchiveBox: "ArchiveBox";
|
|
22977
|
+
ArrowCircleDown: "ArrowCircleDown";
|
|
22978
|
+
FileArrowUp: "FileArrowUp";
|
|
22979
|
+
FileDotted: "FileDotted";
|
|
22980
|
+
Files: "Files";
|
|
22981
|
+
PencilLine: "PencilLine";
|
|
22982
|
+
PencilCircle: "PencilCircle";
|
|
22983
|
+
UserCircle: "UserCircle";
|
|
22984
|
+
Clock: "Clock";
|
|
22985
|
+
QrCode: "QrCode";
|
|
22986
|
+
Webcam: "Webcam";
|
|
22987
|
+
Sun: "Sun";
|
|
22988
|
+
DeviceTabletCamera: "DeviceTabletCamera";
|
|
22989
|
+
Globe: "Globe";
|
|
22990
|
+
Fingerprint: "Fingerprint";
|
|
22991
|
+
PushPin: "PushPin";
|
|
22992
|
+
Timer: "Timer";
|
|
22993
|
+
}>>;
|
|
21308
22994
|
conditionals: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
21309
22995
|
type: z.ZodLiteral<"SHOW">;
|
|
21310
22996
|
conditional: z.ZodAny;
|
|
@@ -21321,7 +23007,13 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
21321
23007
|
}, z.core.$strip>, z.ZodObject<{
|
|
21322
23008
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>;
|
|
21323
23009
|
flags: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21324
|
-
id: z.ZodString
|
|
23010
|
+
id: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
23011
|
+
readonly PENDING_CERTIFICATION: "pending-certification";
|
|
23012
|
+
readonly INCOMPLETE: "incomplete";
|
|
23013
|
+
readonly REJECTED: "rejected";
|
|
23014
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
|
23015
|
+
readonly POTENTIAL_DUPLICATE: "potential-duplicate";
|
|
23016
|
+
}>]>, z.ZodString]>;
|
|
21325
23017
|
operation: z.ZodEnum<{
|
|
21326
23018
|
add: "add";
|
|
21327
23019
|
remove: "remove";
|
|
@@ -21330,6 +23022,108 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
21330
23022
|
}, z.core.$strip>>>>;
|
|
21331
23023
|
auditHistoryLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
21332
23024
|
supportingCopy: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, z.core.$strip>>;
|
|
23025
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
23026
|
+
Validated: "Validated";
|
|
23027
|
+
Registered: "Registered";
|
|
23028
|
+
Certified: "Certified";
|
|
23029
|
+
Archived: "Archived";
|
|
23030
|
+
List: "List";
|
|
23031
|
+
Assigned: "Assigned";
|
|
23032
|
+
Close: "Close";
|
|
23033
|
+
Collapse: "Collapse";
|
|
23034
|
+
Draft: "Draft";
|
|
23035
|
+
DuplicateYellow: "DuplicateYellow";
|
|
23036
|
+
Expand: "Expand";
|
|
23037
|
+
ExternalValidate: "ExternalValidate";
|
|
23038
|
+
FilledCheck: "FilledCheck";
|
|
23039
|
+
InReview: "InReview";
|
|
23040
|
+
Offline: "Offline";
|
|
23041
|
+
RequiresUpdates: "RequiresUpdates";
|
|
23042
|
+
Sent: "Sent";
|
|
23043
|
+
WaitingApproval: "WaitingApproval";
|
|
23044
|
+
ChartActivity: "ChartActivity";
|
|
23045
|
+
Activity: "Activity";
|
|
23046
|
+
Archive: "Archive";
|
|
23047
|
+
ArchiveTray: "ArchiveTray";
|
|
23048
|
+
ArrowLeft: "ArrowLeft";
|
|
23049
|
+
ArrowRight: "ArrowRight";
|
|
23050
|
+
Buildings: "Buildings";
|
|
23051
|
+
Circle: "Circle";
|
|
23052
|
+
CaretDown: "CaretDown";
|
|
23053
|
+
CaretLeft: "CaretLeft";
|
|
23054
|
+
CaretRight: "CaretRight";
|
|
23055
|
+
ChartBar: "ChartBar";
|
|
23056
|
+
ChartLine: "ChartLine";
|
|
23057
|
+
ChatCircle: "ChatCircle";
|
|
23058
|
+
CheckSquare: "CheckSquare";
|
|
23059
|
+
Compass: "Compass";
|
|
23060
|
+
Check: "Check";
|
|
23061
|
+
Copy: "Copy";
|
|
23062
|
+
Database: "Database";
|
|
23063
|
+
DotsThreeVertical: "DotsThreeVertical";
|
|
23064
|
+
ArrowCounterClockwise: "ArrowCounterClockwise";
|
|
23065
|
+
MagnifyingGlassMinus: "MagnifyingGlassMinus";
|
|
23066
|
+
MagnifyingGlassPlus: "MagnifyingGlassPlus";
|
|
23067
|
+
Export: "Export";
|
|
23068
|
+
Eye: "Eye";
|
|
23069
|
+
EyeSlash: "EyeSlash";
|
|
23070
|
+
Envelope: "Envelope";
|
|
23071
|
+
File: "File";
|
|
23072
|
+
FileSearch: "FileSearch";
|
|
23073
|
+
FileMinus: "FileMinus";
|
|
23074
|
+
FilePlus: "FilePlus";
|
|
23075
|
+
FileText: "FileText";
|
|
23076
|
+
FileX: "FileX";
|
|
23077
|
+
Handshake: "Handshake";
|
|
23078
|
+
Gear: "Gear";
|
|
23079
|
+
GitBranch: "GitBranch";
|
|
23080
|
+
IdentificationCard: "IdentificationCard";
|
|
23081
|
+
ListBullets: "ListBullets";
|
|
23082
|
+
Lock: "Lock";
|
|
23083
|
+
MagnifyingGlass: "MagnifyingGlass";
|
|
23084
|
+
MapPin: "MapPin";
|
|
23085
|
+
Medal: "Medal";
|
|
23086
|
+
NotePencil: "NotePencil";
|
|
23087
|
+
Paperclip: "Paperclip";
|
|
23088
|
+
PaperPlaneTilt: "PaperPlaneTilt";
|
|
23089
|
+
Pen: "Pen";
|
|
23090
|
+
Pencil: "Pencil";
|
|
23091
|
+
PencilSimpleLine: "PencilSimpleLine";
|
|
23092
|
+
Phone: "Phone";
|
|
23093
|
+
Plus: "Plus";
|
|
23094
|
+
Printer: "Printer";
|
|
23095
|
+
SignOut: "SignOut";
|
|
23096
|
+
Stamp: "Stamp";
|
|
23097
|
+
Star: "Star";
|
|
23098
|
+
Target: "Target";
|
|
23099
|
+
TextT: "TextT";
|
|
23100
|
+
Trash: "Trash";
|
|
23101
|
+
UploadSimple: "UploadSimple";
|
|
23102
|
+
User: "User";
|
|
23103
|
+
UserPlus: "UserPlus";
|
|
23104
|
+
Users: "Users";
|
|
23105
|
+
WarningCircle: "WarningCircle";
|
|
23106
|
+
X: "X";
|
|
23107
|
+
CircleWavyCheck: "CircleWavyCheck";
|
|
23108
|
+
CircleWavyQuestion: "CircleWavyQuestion";
|
|
23109
|
+
ArchiveBox: "ArchiveBox";
|
|
23110
|
+
ArrowCircleDown: "ArrowCircleDown";
|
|
23111
|
+
FileArrowUp: "FileArrowUp";
|
|
23112
|
+
FileDotted: "FileDotted";
|
|
23113
|
+
Files: "Files";
|
|
23114
|
+
PencilLine: "PencilLine";
|
|
23115
|
+
PencilCircle: "PencilCircle";
|
|
23116
|
+
UserCircle: "UserCircle";
|
|
23117
|
+
Clock: "Clock";
|
|
23118
|
+
QrCode: "QrCode";
|
|
23119
|
+
Webcam: "Webcam";
|
|
23120
|
+
Sun: "Sun";
|
|
23121
|
+
DeviceTabletCamera: "DeviceTabletCamera";
|
|
23122
|
+
Globe: "Globe";
|
|
23123
|
+
Fingerprint: "Fingerprint";
|
|
23124
|
+
PushPin: "PushPin";
|
|
23125
|
+
Timer: "Timer";
|
|
23126
|
+
}>>;
|
|
21333
23127
|
conditionals: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
21334
23128
|
type: z.ZodLiteral<"SHOW">;
|
|
21335
23129
|
conditional: z.ZodAny;
|