@opencrvs/toolkit 1.8.1-rc.c6281e8 → 1.8.1-rc.c7fcaa3
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 +412 -395
- package/dist/commons/conditionals/validate.d.ts +11 -2
- package/dist/commons/events/ActionConfig.d.ts +3924 -642
- package/dist/commons/events/ActionDocument.d.ts +1252 -716
- package/dist/commons/events/ActionInput.d.ts +626 -600
- package/dist/commons/events/AdvancedSearchConfig.d.ts +49 -31
- package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
- package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
- package/dist/commons/events/Draft.d.ts +56 -56
- package/dist/commons/events/EventConfig.d.ts +1259 -240
- package/dist/commons/events/EventDocument.d.ts +451 -432
- package/dist/commons/events/EventIndex.d.ts +62 -62
- package/dist/commons/events/EventMetadata.d.ts +9 -9
- package/dist/commons/events/FieldConfig.d.ts +1064 -71
- package/dist/commons/events/FieldType.d.ts +5 -0
- package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
- package/dist/commons/events/FieldValue.d.ts +12 -12
- package/dist/commons/events/FormConfig.d.ts +1956 -378
- package/dist/commons/events/PageConfig.d.ts +524 -82
- package/dist/commons/events/WorkqueueConfig.d.ts +199 -164
- package/dist/commons/events/defineConfig.d.ts +181 -46
- package/dist/commons/events/event.d.ts +61 -7
- package/dist/commons/events/test.utils.d.ts +14 -13
- package/dist/commons/events/utils.d.ts +341 -195
- package/dist/conditionals/index.js +3 -2
- package/dist/events/index.js +1084 -858
- package/package.json +1 -1
- package/tsconfig.json +1 -1
- package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
- package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
- package/dist/commons/conditionals/validate.test.d.ts +0 -2
- package/dist/commons/events/utils.test.d.ts +0 -2
|
@@ -62,6 +62,16 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
62
62
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
63
63
|
}, {
|
|
64
64
|
type: z.ZodLiteral<"ADDRESS">;
|
|
65
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
|
66
|
+
lineSeparator: z.ZodOptional<z.ZodString>;
|
|
67
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodEnum<["number", "country", "province", "addressType", "district", "urbanOrRural", "town", "residentialArea", "street", "zipCode", "village", "state", "district2", "cityOrTown", "addressLine1", "addressLine2", "addressLine3", "postcodeOrZip"]>, "many">>;
|
|
68
|
+
}, "strip", z.ZodTypeAny, {
|
|
69
|
+
lineSeparator?: string | undefined;
|
|
70
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
71
|
+
}, {
|
|
72
|
+
lineSeparator?: string | undefined;
|
|
73
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
74
|
+
}>>;
|
|
65
75
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
|
66
76
|
country: z.ZodString;
|
|
67
77
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
|
@@ -149,13 +159,6 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
149
159
|
addressLine3?: string | undefined;
|
|
150
160
|
postcodeOrZip?: string | undefined;
|
|
151
161
|
}>]>>;
|
|
152
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
|
153
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
|
154
|
-
}, "strip", z.ZodTypeAny, {
|
|
155
|
-
searchMode?: boolean | undefined;
|
|
156
|
-
}, {
|
|
157
|
-
searchMode?: boolean | undefined;
|
|
158
|
-
}>>;
|
|
159
162
|
}>, "strip", z.ZodTypeAny, {
|
|
160
163
|
type: "ADDRESS";
|
|
161
164
|
id: string;
|
|
@@ -213,7 +216,8 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
213
216
|
postcodeOrZip?: string | undefined;
|
|
214
217
|
} | undefined;
|
|
215
218
|
configuration?: {
|
|
216
|
-
|
|
219
|
+
lineSeparator?: string | undefined;
|
|
220
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
217
221
|
} | undefined;
|
|
218
222
|
}, {
|
|
219
223
|
type: "ADDRESS";
|
|
@@ -288,7 +292,8 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
288
292
|
postcodeOrZip?: string | undefined;
|
|
289
293
|
} | undefined;
|
|
290
294
|
configuration?: {
|
|
291
|
-
|
|
295
|
+
lineSeparator?: string | undefined;
|
|
296
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
292
297
|
} | undefined;
|
|
293
298
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
294
299
|
id: z.ZodString;
|
|
@@ -2244,16 +2249,114 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
2244
2249
|
}, {
|
|
2245
2250
|
type: z.ZodLiteral<"NAME">;
|
|
2246
2251
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
|
2247
|
-
firstname: z.ZodString
|
|
2248
|
-
|
|
2252
|
+
firstname: z.ZodOptional<z.ZodString>;
|
|
2253
|
+
middlename: z.ZodOptional<z.ZodString>;
|
|
2254
|
+
surname: z.ZodOptional<z.ZodString>;
|
|
2249
2255
|
}, "strip", z.ZodTypeAny, {
|
|
2250
|
-
firstname
|
|
2251
|
-
surname
|
|
2256
|
+
firstname?: string | undefined;
|
|
2257
|
+
surname?: string | undefined;
|
|
2258
|
+
middlename?: string | undefined;
|
|
2252
2259
|
}, {
|
|
2253
|
-
firstname
|
|
2254
|
-
surname
|
|
2260
|
+
firstname?: string | undefined;
|
|
2261
|
+
surname?: string | undefined;
|
|
2262
|
+
middlename?: string | undefined;
|
|
2255
2263
|
}>>;
|
|
2256
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
|
2264
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
2265
|
+
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
2266
|
+
firstname: z.ZodOptional<z.ZodObject<{
|
|
2267
|
+
required: z.ZodBoolean;
|
|
2268
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
2269
|
+
id: string;
|
|
2270
|
+
description: string;
|
|
2271
|
+
defaultMessage: string;
|
|
2272
|
+
}>>;
|
|
2273
|
+
}, "strip", z.ZodTypeAny, {
|
|
2274
|
+
required: boolean;
|
|
2275
|
+
label?: TranslationConfig | undefined;
|
|
2276
|
+
}, {
|
|
2277
|
+
required: boolean;
|
|
2278
|
+
label?: {
|
|
2279
|
+
id: string;
|
|
2280
|
+
description: string;
|
|
2281
|
+
defaultMessage: string;
|
|
2282
|
+
} | undefined;
|
|
2283
|
+
}>>;
|
|
2284
|
+
middlename: z.ZodOptional<z.ZodObject<{
|
|
2285
|
+
required: z.ZodBoolean;
|
|
2286
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
2287
|
+
id: string;
|
|
2288
|
+
description: string;
|
|
2289
|
+
defaultMessage: string;
|
|
2290
|
+
}>>;
|
|
2291
|
+
}, "strip", z.ZodTypeAny, {
|
|
2292
|
+
required: boolean;
|
|
2293
|
+
label?: TranslationConfig | undefined;
|
|
2294
|
+
}, {
|
|
2295
|
+
required: boolean;
|
|
2296
|
+
label?: {
|
|
2297
|
+
id: string;
|
|
2298
|
+
description: string;
|
|
2299
|
+
defaultMessage: string;
|
|
2300
|
+
} | undefined;
|
|
2301
|
+
}>>;
|
|
2302
|
+
surname: z.ZodOptional<z.ZodObject<{
|
|
2303
|
+
required: z.ZodBoolean;
|
|
2304
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
2305
|
+
id: string;
|
|
2306
|
+
description: string;
|
|
2307
|
+
defaultMessage: string;
|
|
2308
|
+
}>>;
|
|
2309
|
+
}, "strip", z.ZodTypeAny, {
|
|
2310
|
+
required: boolean;
|
|
2311
|
+
label?: TranslationConfig | undefined;
|
|
2312
|
+
}, {
|
|
2313
|
+
required: boolean;
|
|
2314
|
+
label?: {
|
|
2315
|
+
id: string;
|
|
2316
|
+
description: string;
|
|
2317
|
+
defaultMessage: string;
|
|
2318
|
+
} | undefined;
|
|
2319
|
+
}>>;
|
|
2320
|
+
}, "strip", z.ZodTypeAny, {
|
|
2321
|
+
firstname?: {
|
|
2322
|
+
required: boolean;
|
|
2323
|
+
label?: TranslationConfig | undefined;
|
|
2324
|
+
} | undefined;
|
|
2325
|
+
surname?: {
|
|
2326
|
+
required: boolean;
|
|
2327
|
+
label?: TranslationConfig | undefined;
|
|
2328
|
+
} | undefined;
|
|
2329
|
+
middlename?: {
|
|
2330
|
+
required: boolean;
|
|
2331
|
+
label?: TranslationConfig | undefined;
|
|
2332
|
+
} | undefined;
|
|
2333
|
+
}, {
|
|
2334
|
+
firstname?: {
|
|
2335
|
+
required: boolean;
|
|
2336
|
+
label?: {
|
|
2337
|
+
id: string;
|
|
2338
|
+
description: string;
|
|
2339
|
+
defaultMessage: string;
|
|
2340
|
+
} | undefined;
|
|
2341
|
+
} | undefined;
|
|
2342
|
+
surname?: {
|
|
2343
|
+
required: boolean;
|
|
2344
|
+
label?: {
|
|
2345
|
+
id: string;
|
|
2346
|
+
description: string;
|
|
2347
|
+
defaultMessage: string;
|
|
2348
|
+
} | undefined;
|
|
2349
|
+
} | undefined;
|
|
2350
|
+
middlename?: {
|
|
2351
|
+
required: boolean;
|
|
2352
|
+
label?: {
|
|
2353
|
+
id: string;
|
|
2354
|
+
description: string;
|
|
2355
|
+
defaultMessage: string;
|
|
2356
|
+
} | undefined;
|
|
2357
|
+
} | undefined;
|
|
2358
|
+
}>>>;
|
|
2359
|
+
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
|
2257
2360
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
2258
2361
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
2259
2362
|
id: string;
|
|
@@ -2265,15 +2368,53 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
2265
2368
|
description: string;
|
|
2266
2369
|
defaultMessage: string;
|
|
2267
2370
|
}>>;
|
|
2268
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2269
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
|
2270
2371
|
}, "strip", z.ZodTypeAny, {
|
|
2372
|
+
name?: {
|
|
2373
|
+
firstname?: {
|
|
2374
|
+
required: boolean;
|
|
2375
|
+
label?: TranslationConfig | undefined;
|
|
2376
|
+
} | undefined;
|
|
2377
|
+
surname?: {
|
|
2378
|
+
required: boolean;
|
|
2379
|
+
label?: TranslationConfig | undefined;
|
|
2380
|
+
} | undefined;
|
|
2381
|
+
middlename?: {
|
|
2382
|
+
required: boolean;
|
|
2383
|
+
label?: TranslationConfig | undefined;
|
|
2384
|
+
} | undefined;
|
|
2385
|
+
} | undefined;
|
|
2386
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
2271
2387
|
maxLength?: number | undefined;
|
|
2272
2388
|
prefix?: TranslationConfig | undefined;
|
|
2273
2389
|
postfix?: TranslationConfig | undefined;
|
|
2274
|
-
includeMiddlename?: boolean | undefined;
|
|
2275
|
-
searchMode?: boolean | undefined;
|
|
2276
2390
|
}, {
|
|
2391
|
+
name?: {
|
|
2392
|
+
firstname?: {
|
|
2393
|
+
required: boolean;
|
|
2394
|
+
label?: {
|
|
2395
|
+
id: string;
|
|
2396
|
+
description: string;
|
|
2397
|
+
defaultMessage: string;
|
|
2398
|
+
} | undefined;
|
|
2399
|
+
} | undefined;
|
|
2400
|
+
surname?: {
|
|
2401
|
+
required: boolean;
|
|
2402
|
+
label?: {
|
|
2403
|
+
id: string;
|
|
2404
|
+
description: string;
|
|
2405
|
+
defaultMessage: string;
|
|
2406
|
+
} | undefined;
|
|
2407
|
+
} | undefined;
|
|
2408
|
+
middlename?: {
|
|
2409
|
+
required: boolean;
|
|
2410
|
+
label?: {
|
|
2411
|
+
id: string;
|
|
2412
|
+
description: string;
|
|
2413
|
+
defaultMessage: string;
|
|
2414
|
+
} | undefined;
|
|
2415
|
+
} | undefined;
|
|
2416
|
+
} | undefined;
|
|
2417
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
2277
2418
|
maxLength?: number | undefined;
|
|
2278
2419
|
prefix?: {
|
|
2279
2420
|
id: string;
|
|
@@ -2285,9 +2426,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
2285
2426
|
description: string;
|
|
2286
2427
|
defaultMessage: string;
|
|
2287
2428
|
} | undefined;
|
|
2288
|
-
|
|
2289
|
-
searchMode?: boolean | undefined;
|
|
2290
|
-
}>>;
|
|
2429
|
+
}>>>;
|
|
2291
2430
|
}>, "strip", z.ZodTypeAny, {
|
|
2292
2431
|
type: "NAME";
|
|
2293
2432
|
id: string;
|
|
@@ -2316,15 +2455,29 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
2316
2455
|
hideLabel?: boolean | undefined;
|
|
2317
2456
|
uncorrectable?: boolean | undefined;
|
|
2318
2457
|
defaultValue?: {
|
|
2319
|
-
firstname
|
|
2320
|
-
surname
|
|
2321
|
-
|
|
2322
|
-
|
|
2458
|
+
firstname?: string | undefined;
|
|
2459
|
+
surname?: string | undefined;
|
|
2460
|
+
middlename?: string | undefined;
|
|
2461
|
+
} | undefined;
|
|
2462
|
+
configuration?: {
|
|
2463
|
+
name?: {
|
|
2464
|
+
firstname?: {
|
|
2465
|
+
required: boolean;
|
|
2466
|
+
label?: TranslationConfig | undefined;
|
|
2467
|
+
} | undefined;
|
|
2468
|
+
surname?: {
|
|
2469
|
+
required: boolean;
|
|
2470
|
+
label?: TranslationConfig | undefined;
|
|
2471
|
+
} | undefined;
|
|
2472
|
+
middlename?: {
|
|
2473
|
+
required: boolean;
|
|
2474
|
+
label?: TranslationConfig | undefined;
|
|
2475
|
+
} | undefined;
|
|
2476
|
+
} | undefined;
|
|
2477
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
2323
2478
|
maxLength?: number | undefined;
|
|
2324
2479
|
prefix?: TranslationConfig | undefined;
|
|
2325
2480
|
postfix?: TranslationConfig | undefined;
|
|
2326
|
-
includeMiddlename?: boolean | undefined;
|
|
2327
|
-
searchMode?: boolean | undefined;
|
|
2328
2481
|
} | undefined;
|
|
2329
2482
|
}, {
|
|
2330
2483
|
type: "NAME";
|
|
@@ -2370,10 +2523,38 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
2370
2523
|
hideLabel?: boolean | undefined;
|
|
2371
2524
|
uncorrectable?: boolean | undefined;
|
|
2372
2525
|
defaultValue?: {
|
|
2373
|
-
firstname
|
|
2374
|
-
surname
|
|
2375
|
-
|
|
2376
|
-
|
|
2526
|
+
firstname?: string | undefined;
|
|
2527
|
+
surname?: string | undefined;
|
|
2528
|
+
middlename?: string | undefined;
|
|
2529
|
+
} | undefined;
|
|
2530
|
+
configuration?: {
|
|
2531
|
+
name?: {
|
|
2532
|
+
firstname?: {
|
|
2533
|
+
required: boolean;
|
|
2534
|
+
label?: {
|
|
2535
|
+
id: string;
|
|
2536
|
+
description: string;
|
|
2537
|
+
defaultMessage: string;
|
|
2538
|
+
} | undefined;
|
|
2539
|
+
} | undefined;
|
|
2540
|
+
surname?: {
|
|
2541
|
+
required: boolean;
|
|
2542
|
+
label?: {
|
|
2543
|
+
id: string;
|
|
2544
|
+
description: string;
|
|
2545
|
+
defaultMessage: string;
|
|
2546
|
+
} | undefined;
|
|
2547
|
+
} | undefined;
|
|
2548
|
+
middlename?: {
|
|
2549
|
+
required: boolean;
|
|
2550
|
+
label?: {
|
|
2551
|
+
id: string;
|
|
2552
|
+
description: string;
|
|
2553
|
+
defaultMessage: string;
|
|
2554
|
+
} | undefined;
|
|
2555
|
+
} | undefined;
|
|
2556
|
+
} | undefined;
|
|
2557
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
2377
2558
|
maxLength?: number | undefined;
|
|
2378
2559
|
prefix?: {
|
|
2379
2560
|
id: string;
|
|
@@ -2385,8 +2566,6 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
2385
2566
|
description: string;
|
|
2386
2567
|
defaultMessage: string;
|
|
2387
2568
|
} | undefined;
|
|
2388
|
-
includeMiddlename?: boolean | undefined;
|
|
2389
|
-
searchMode?: boolean | undefined;
|
|
2390
2569
|
} | undefined;
|
|
2391
2570
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2392
2571
|
id: z.ZodString;
|
|
@@ -4984,15 +5163,29 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
4984
5163
|
hideLabel?: boolean | undefined;
|
|
4985
5164
|
uncorrectable?: boolean | undefined;
|
|
4986
5165
|
defaultValue?: {
|
|
4987
|
-
firstname
|
|
4988
|
-
surname
|
|
4989
|
-
|
|
4990
|
-
|
|
5166
|
+
firstname?: string | undefined;
|
|
5167
|
+
surname?: string | undefined;
|
|
5168
|
+
middlename?: string | undefined;
|
|
5169
|
+
} | undefined;
|
|
5170
|
+
configuration?: {
|
|
5171
|
+
name?: {
|
|
5172
|
+
firstname?: {
|
|
5173
|
+
required: boolean;
|
|
5174
|
+
label?: TranslationConfig | undefined;
|
|
5175
|
+
} | undefined;
|
|
5176
|
+
surname?: {
|
|
5177
|
+
required: boolean;
|
|
5178
|
+
label?: TranslationConfig | undefined;
|
|
5179
|
+
} | undefined;
|
|
5180
|
+
middlename?: {
|
|
5181
|
+
required: boolean;
|
|
5182
|
+
label?: TranslationConfig | undefined;
|
|
5183
|
+
} | undefined;
|
|
5184
|
+
} | undefined;
|
|
5185
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
4991
5186
|
maxLength?: number | undefined;
|
|
4992
5187
|
prefix?: TranslationConfig | undefined;
|
|
4993
5188
|
postfix?: TranslationConfig | undefined;
|
|
4994
|
-
includeMiddlename?: boolean | undefined;
|
|
4995
|
-
searchMode?: boolean | undefined;
|
|
4996
5189
|
} | undefined;
|
|
4997
5190
|
} | {
|
|
4998
5191
|
type: "PHONE";
|
|
@@ -5325,7 +5518,8 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
5325
5518
|
postcodeOrZip?: string | undefined;
|
|
5326
5519
|
} | undefined;
|
|
5327
5520
|
configuration?: {
|
|
5328
|
-
|
|
5521
|
+
lineSeparator?: string | undefined;
|
|
5522
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
5329
5523
|
} | undefined;
|
|
5330
5524
|
} | {
|
|
5331
5525
|
type: "DATA";
|
|
@@ -6259,10 +6453,38 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
6259
6453
|
hideLabel?: boolean | undefined;
|
|
6260
6454
|
uncorrectable?: boolean | undefined;
|
|
6261
6455
|
defaultValue?: {
|
|
6262
|
-
firstname
|
|
6263
|
-
surname
|
|
6264
|
-
|
|
6265
|
-
|
|
6456
|
+
firstname?: string | undefined;
|
|
6457
|
+
surname?: string | undefined;
|
|
6458
|
+
middlename?: string | undefined;
|
|
6459
|
+
} | undefined;
|
|
6460
|
+
configuration?: {
|
|
6461
|
+
name?: {
|
|
6462
|
+
firstname?: {
|
|
6463
|
+
required: boolean;
|
|
6464
|
+
label?: {
|
|
6465
|
+
id: string;
|
|
6466
|
+
description: string;
|
|
6467
|
+
defaultMessage: string;
|
|
6468
|
+
} | undefined;
|
|
6469
|
+
} | undefined;
|
|
6470
|
+
surname?: {
|
|
6471
|
+
required: boolean;
|
|
6472
|
+
label?: {
|
|
6473
|
+
id: string;
|
|
6474
|
+
description: string;
|
|
6475
|
+
defaultMessage: string;
|
|
6476
|
+
} | undefined;
|
|
6477
|
+
} | undefined;
|
|
6478
|
+
middlename?: {
|
|
6479
|
+
required: boolean;
|
|
6480
|
+
label?: {
|
|
6481
|
+
id: string;
|
|
6482
|
+
description: string;
|
|
6483
|
+
defaultMessage: string;
|
|
6484
|
+
} | undefined;
|
|
6485
|
+
} | undefined;
|
|
6486
|
+
} | undefined;
|
|
6487
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
6266
6488
|
maxLength?: number | undefined;
|
|
6267
6489
|
prefix?: {
|
|
6268
6490
|
id: string;
|
|
@@ -6274,8 +6496,6 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
6274
6496
|
description: string;
|
|
6275
6497
|
defaultMessage: string;
|
|
6276
6498
|
} | undefined;
|
|
6277
|
-
includeMiddlename?: boolean | undefined;
|
|
6278
|
-
searchMode?: boolean | undefined;
|
|
6279
6499
|
} | undefined;
|
|
6280
6500
|
} | {
|
|
6281
6501
|
type: "PHONE";
|
|
@@ -6772,7 +6992,8 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
6772
6992
|
postcodeOrZip?: string | undefined;
|
|
6773
6993
|
} | undefined;
|
|
6774
6994
|
configuration?: {
|
|
6775
|
-
|
|
6995
|
+
lineSeparator?: string | undefined;
|
|
6996
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
6776
6997
|
} | undefined;
|
|
6777
6998
|
} | {
|
|
6778
6999
|
type: "DATA";
|
|
@@ -7403,15 +7624,29 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
7403
7624
|
hideLabel?: boolean | undefined;
|
|
7404
7625
|
uncorrectable?: boolean | undefined;
|
|
7405
7626
|
defaultValue?: {
|
|
7406
|
-
firstname
|
|
7407
|
-
surname
|
|
7408
|
-
|
|
7409
|
-
|
|
7627
|
+
firstname?: string | undefined;
|
|
7628
|
+
surname?: string | undefined;
|
|
7629
|
+
middlename?: string | undefined;
|
|
7630
|
+
} | undefined;
|
|
7631
|
+
configuration?: {
|
|
7632
|
+
name?: {
|
|
7633
|
+
firstname?: {
|
|
7634
|
+
required: boolean;
|
|
7635
|
+
label?: TranslationConfig | undefined;
|
|
7636
|
+
} | undefined;
|
|
7637
|
+
surname?: {
|
|
7638
|
+
required: boolean;
|
|
7639
|
+
label?: TranslationConfig | undefined;
|
|
7640
|
+
} | undefined;
|
|
7641
|
+
middlename?: {
|
|
7642
|
+
required: boolean;
|
|
7643
|
+
label?: TranslationConfig | undefined;
|
|
7644
|
+
} | undefined;
|
|
7645
|
+
} | undefined;
|
|
7646
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
7410
7647
|
maxLength?: number | undefined;
|
|
7411
7648
|
prefix?: TranslationConfig | undefined;
|
|
7412
7649
|
postfix?: TranslationConfig | undefined;
|
|
7413
|
-
includeMiddlename?: boolean | undefined;
|
|
7414
|
-
searchMode?: boolean | undefined;
|
|
7415
7650
|
} | undefined;
|
|
7416
7651
|
} | {
|
|
7417
7652
|
type: "PHONE";
|
|
@@ -7744,7 +7979,8 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
7744
7979
|
postcodeOrZip?: string | undefined;
|
|
7745
7980
|
} | undefined;
|
|
7746
7981
|
configuration?: {
|
|
7747
|
-
|
|
7982
|
+
lineSeparator?: string | undefined;
|
|
7983
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
7748
7984
|
} | undefined;
|
|
7749
7985
|
} | {
|
|
7750
7986
|
type: "DATA";
|
|
@@ -8685,10 +8921,38 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
8685
8921
|
hideLabel?: boolean | undefined;
|
|
8686
8922
|
uncorrectable?: boolean | undefined;
|
|
8687
8923
|
defaultValue?: {
|
|
8688
|
-
firstname
|
|
8689
|
-
surname
|
|
8690
|
-
|
|
8691
|
-
|
|
8924
|
+
firstname?: string | undefined;
|
|
8925
|
+
surname?: string | undefined;
|
|
8926
|
+
middlename?: string | undefined;
|
|
8927
|
+
} | undefined;
|
|
8928
|
+
configuration?: {
|
|
8929
|
+
name?: {
|
|
8930
|
+
firstname?: {
|
|
8931
|
+
required: boolean;
|
|
8932
|
+
label?: {
|
|
8933
|
+
id: string;
|
|
8934
|
+
description: string;
|
|
8935
|
+
defaultMessage: string;
|
|
8936
|
+
} | undefined;
|
|
8937
|
+
} | undefined;
|
|
8938
|
+
surname?: {
|
|
8939
|
+
required: boolean;
|
|
8940
|
+
label?: {
|
|
8941
|
+
id: string;
|
|
8942
|
+
description: string;
|
|
8943
|
+
defaultMessage: string;
|
|
8944
|
+
} | undefined;
|
|
8945
|
+
} | undefined;
|
|
8946
|
+
middlename?: {
|
|
8947
|
+
required: boolean;
|
|
8948
|
+
label?: {
|
|
8949
|
+
id: string;
|
|
8950
|
+
description: string;
|
|
8951
|
+
defaultMessage: string;
|
|
8952
|
+
} | undefined;
|
|
8953
|
+
} | undefined;
|
|
8954
|
+
} | undefined;
|
|
8955
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
8692
8956
|
maxLength?: number | undefined;
|
|
8693
8957
|
prefix?: {
|
|
8694
8958
|
id: string;
|
|
@@ -8700,8 +8964,6 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
8700
8964
|
description: string;
|
|
8701
8965
|
defaultMessage: string;
|
|
8702
8966
|
} | undefined;
|
|
8703
|
-
includeMiddlename?: boolean | undefined;
|
|
8704
|
-
searchMode?: boolean | undefined;
|
|
8705
8967
|
} | undefined;
|
|
8706
8968
|
} | {
|
|
8707
8969
|
type: "PHONE";
|
|
@@ -9198,7 +9460,8 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
|
9198
9460
|
postcodeOrZip?: string | undefined;
|
|
9199
9461
|
} | undefined;
|
|
9200
9462
|
configuration?: {
|
|
9201
|
-
|
|
9463
|
+
lineSeparator?: string | undefined;
|
|
9464
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
9202
9465
|
} | undefined;
|
|
9203
9466
|
} | {
|
|
9204
9467
|
type: "DATA";
|
|
@@ -9333,6 +9596,16 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
9333
9596
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9334
9597
|
}, {
|
|
9335
9598
|
type: z.ZodLiteral<"ADDRESS">;
|
|
9599
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
|
9600
|
+
lineSeparator: z.ZodOptional<z.ZodString>;
|
|
9601
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodEnum<["number", "country", "province", "addressType", "district", "urbanOrRural", "town", "residentialArea", "street", "zipCode", "village", "state", "district2", "cityOrTown", "addressLine1", "addressLine2", "addressLine3", "postcodeOrZip"]>, "many">>;
|
|
9602
|
+
}, "strip", z.ZodTypeAny, {
|
|
9603
|
+
lineSeparator?: string | undefined;
|
|
9604
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
9605
|
+
}, {
|
|
9606
|
+
lineSeparator?: string | undefined;
|
|
9607
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
9608
|
+
}>>;
|
|
9336
9609
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
|
9337
9610
|
country: z.ZodString;
|
|
9338
9611
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
|
@@ -9420,13 +9693,6 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
9420
9693
|
addressLine3?: string | undefined;
|
|
9421
9694
|
postcodeOrZip?: string | undefined;
|
|
9422
9695
|
}>]>>;
|
|
9423
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
|
9424
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
|
9425
|
-
}, "strip", z.ZodTypeAny, {
|
|
9426
|
-
searchMode?: boolean | undefined;
|
|
9427
|
-
}, {
|
|
9428
|
-
searchMode?: boolean | undefined;
|
|
9429
|
-
}>>;
|
|
9430
9696
|
}>, "strip", z.ZodTypeAny, {
|
|
9431
9697
|
type: "ADDRESS";
|
|
9432
9698
|
id: string;
|
|
@@ -9484,7 +9750,8 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
9484
9750
|
postcodeOrZip?: string | undefined;
|
|
9485
9751
|
} | undefined;
|
|
9486
9752
|
configuration?: {
|
|
9487
|
-
|
|
9753
|
+
lineSeparator?: string | undefined;
|
|
9754
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
9488
9755
|
} | undefined;
|
|
9489
9756
|
}, {
|
|
9490
9757
|
type: "ADDRESS";
|
|
@@ -9559,7 +9826,8 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
9559
9826
|
postcodeOrZip?: string | undefined;
|
|
9560
9827
|
} | undefined;
|
|
9561
9828
|
configuration?: {
|
|
9562
|
-
|
|
9829
|
+
lineSeparator?: string | undefined;
|
|
9830
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
9563
9831
|
} | undefined;
|
|
9564
9832
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9565
9833
|
id: z.ZodString;
|
|
@@ -11515,16 +11783,114 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
11515
11783
|
}, {
|
|
11516
11784
|
type: z.ZodLiteral<"NAME">;
|
|
11517
11785
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
|
11518
|
-
firstname: z.ZodString
|
|
11519
|
-
|
|
11786
|
+
firstname: z.ZodOptional<z.ZodString>;
|
|
11787
|
+
middlename: z.ZodOptional<z.ZodString>;
|
|
11788
|
+
surname: z.ZodOptional<z.ZodString>;
|
|
11520
11789
|
}, "strip", z.ZodTypeAny, {
|
|
11521
|
-
firstname
|
|
11522
|
-
surname
|
|
11790
|
+
firstname?: string | undefined;
|
|
11791
|
+
surname?: string | undefined;
|
|
11792
|
+
middlename?: string | undefined;
|
|
11523
11793
|
}, {
|
|
11524
|
-
firstname
|
|
11525
|
-
surname
|
|
11794
|
+
firstname?: string | undefined;
|
|
11795
|
+
surname?: string | undefined;
|
|
11796
|
+
middlename?: string | undefined;
|
|
11526
11797
|
}>>;
|
|
11527
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
|
11798
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
11799
|
+
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
11800
|
+
firstname: z.ZodOptional<z.ZodObject<{
|
|
11801
|
+
required: z.ZodBoolean;
|
|
11802
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
11803
|
+
id: string;
|
|
11804
|
+
description: string;
|
|
11805
|
+
defaultMessage: string;
|
|
11806
|
+
}>>;
|
|
11807
|
+
}, "strip", z.ZodTypeAny, {
|
|
11808
|
+
required: boolean;
|
|
11809
|
+
label?: TranslationConfig | undefined;
|
|
11810
|
+
}, {
|
|
11811
|
+
required: boolean;
|
|
11812
|
+
label?: {
|
|
11813
|
+
id: string;
|
|
11814
|
+
description: string;
|
|
11815
|
+
defaultMessage: string;
|
|
11816
|
+
} | undefined;
|
|
11817
|
+
}>>;
|
|
11818
|
+
middlename: z.ZodOptional<z.ZodObject<{
|
|
11819
|
+
required: z.ZodBoolean;
|
|
11820
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
11821
|
+
id: string;
|
|
11822
|
+
description: string;
|
|
11823
|
+
defaultMessage: string;
|
|
11824
|
+
}>>;
|
|
11825
|
+
}, "strip", z.ZodTypeAny, {
|
|
11826
|
+
required: boolean;
|
|
11827
|
+
label?: TranslationConfig | undefined;
|
|
11828
|
+
}, {
|
|
11829
|
+
required: boolean;
|
|
11830
|
+
label?: {
|
|
11831
|
+
id: string;
|
|
11832
|
+
description: string;
|
|
11833
|
+
defaultMessage: string;
|
|
11834
|
+
} | undefined;
|
|
11835
|
+
}>>;
|
|
11836
|
+
surname: z.ZodOptional<z.ZodObject<{
|
|
11837
|
+
required: z.ZodBoolean;
|
|
11838
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
11839
|
+
id: string;
|
|
11840
|
+
description: string;
|
|
11841
|
+
defaultMessage: string;
|
|
11842
|
+
}>>;
|
|
11843
|
+
}, "strip", z.ZodTypeAny, {
|
|
11844
|
+
required: boolean;
|
|
11845
|
+
label?: TranslationConfig | undefined;
|
|
11846
|
+
}, {
|
|
11847
|
+
required: boolean;
|
|
11848
|
+
label?: {
|
|
11849
|
+
id: string;
|
|
11850
|
+
description: string;
|
|
11851
|
+
defaultMessage: string;
|
|
11852
|
+
} | undefined;
|
|
11853
|
+
}>>;
|
|
11854
|
+
}, "strip", z.ZodTypeAny, {
|
|
11855
|
+
firstname?: {
|
|
11856
|
+
required: boolean;
|
|
11857
|
+
label?: TranslationConfig | undefined;
|
|
11858
|
+
} | undefined;
|
|
11859
|
+
surname?: {
|
|
11860
|
+
required: boolean;
|
|
11861
|
+
label?: TranslationConfig | undefined;
|
|
11862
|
+
} | undefined;
|
|
11863
|
+
middlename?: {
|
|
11864
|
+
required: boolean;
|
|
11865
|
+
label?: TranslationConfig | undefined;
|
|
11866
|
+
} | undefined;
|
|
11867
|
+
}, {
|
|
11868
|
+
firstname?: {
|
|
11869
|
+
required: boolean;
|
|
11870
|
+
label?: {
|
|
11871
|
+
id: string;
|
|
11872
|
+
description: string;
|
|
11873
|
+
defaultMessage: string;
|
|
11874
|
+
} | undefined;
|
|
11875
|
+
} | undefined;
|
|
11876
|
+
surname?: {
|
|
11877
|
+
required: boolean;
|
|
11878
|
+
label?: {
|
|
11879
|
+
id: string;
|
|
11880
|
+
description: string;
|
|
11881
|
+
defaultMessage: string;
|
|
11882
|
+
} | undefined;
|
|
11883
|
+
} | undefined;
|
|
11884
|
+
middlename?: {
|
|
11885
|
+
required: boolean;
|
|
11886
|
+
label?: {
|
|
11887
|
+
id: string;
|
|
11888
|
+
description: string;
|
|
11889
|
+
defaultMessage: string;
|
|
11890
|
+
} | undefined;
|
|
11891
|
+
} | undefined;
|
|
11892
|
+
}>>>;
|
|
11893
|
+
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
|
11528
11894
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
11529
11895
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
11530
11896
|
id: string;
|
|
@@ -11536,15 +11902,53 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
11536
11902
|
description: string;
|
|
11537
11903
|
defaultMessage: string;
|
|
11538
11904
|
}>>;
|
|
11539
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11540
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
|
11541
11905
|
}, "strip", z.ZodTypeAny, {
|
|
11906
|
+
name?: {
|
|
11907
|
+
firstname?: {
|
|
11908
|
+
required: boolean;
|
|
11909
|
+
label?: TranslationConfig | undefined;
|
|
11910
|
+
} | undefined;
|
|
11911
|
+
surname?: {
|
|
11912
|
+
required: boolean;
|
|
11913
|
+
label?: TranslationConfig | undefined;
|
|
11914
|
+
} | undefined;
|
|
11915
|
+
middlename?: {
|
|
11916
|
+
required: boolean;
|
|
11917
|
+
label?: TranslationConfig | undefined;
|
|
11918
|
+
} | undefined;
|
|
11919
|
+
} | undefined;
|
|
11920
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
11542
11921
|
maxLength?: number | undefined;
|
|
11543
11922
|
prefix?: TranslationConfig | undefined;
|
|
11544
11923
|
postfix?: TranslationConfig | undefined;
|
|
11545
|
-
includeMiddlename?: boolean | undefined;
|
|
11546
|
-
searchMode?: boolean | undefined;
|
|
11547
11924
|
}, {
|
|
11925
|
+
name?: {
|
|
11926
|
+
firstname?: {
|
|
11927
|
+
required: boolean;
|
|
11928
|
+
label?: {
|
|
11929
|
+
id: string;
|
|
11930
|
+
description: string;
|
|
11931
|
+
defaultMessage: string;
|
|
11932
|
+
} | undefined;
|
|
11933
|
+
} | undefined;
|
|
11934
|
+
surname?: {
|
|
11935
|
+
required: boolean;
|
|
11936
|
+
label?: {
|
|
11937
|
+
id: string;
|
|
11938
|
+
description: string;
|
|
11939
|
+
defaultMessage: string;
|
|
11940
|
+
} | undefined;
|
|
11941
|
+
} | undefined;
|
|
11942
|
+
middlename?: {
|
|
11943
|
+
required: boolean;
|
|
11944
|
+
label?: {
|
|
11945
|
+
id: string;
|
|
11946
|
+
description: string;
|
|
11947
|
+
defaultMessage: string;
|
|
11948
|
+
} | undefined;
|
|
11949
|
+
} | undefined;
|
|
11950
|
+
} | undefined;
|
|
11951
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
11548
11952
|
maxLength?: number | undefined;
|
|
11549
11953
|
prefix?: {
|
|
11550
11954
|
id: string;
|
|
@@ -11556,9 +11960,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
11556
11960
|
description: string;
|
|
11557
11961
|
defaultMessage: string;
|
|
11558
11962
|
} | undefined;
|
|
11559
|
-
|
|
11560
|
-
searchMode?: boolean | undefined;
|
|
11561
|
-
}>>;
|
|
11963
|
+
}>>>;
|
|
11562
11964
|
}>, "strip", z.ZodTypeAny, {
|
|
11563
11965
|
type: "NAME";
|
|
11564
11966
|
id: string;
|
|
@@ -11587,15 +11989,29 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
11587
11989
|
hideLabel?: boolean | undefined;
|
|
11588
11990
|
uncorrectable?: boolean | undefined;
|
|
11589
11991
|
defaultValue?: {
|
|
11590
|
-
firstname
|
|
11591
|
-
surname
|
|
11592
|
-
|
|
11593
|
-
|
|
11992
|
+
firstname?: string | undefined;
|
|
11993
|
+
surname?: string | undefined;
|
|
11994
|
+
middlename?: string | undefined;
|
|
11995
|
+
} | undefined;
|
|
11996
|
+
configuration?: {
|
|
11997
|
+
name?: {
|
|
11998
|
+
firstname?: {
|
|
11999
|
+
required: boolean;
|
|
12000
|
+
label?: TranslationConfig | undefined;
|
|
12001
|
+
} | undefined;
|
|
12002
|
+
surname?: {
|
|
12003
|
+
required: boolean;
|
|
12004
|
+
label?: TranslationConfig | undefined;
|
|
12005
|
+
} | undefined;
|
|
12006
|
+
middlename?: {
|
|
12007
|
+
required: boolean;
|
|
12008
|
+
label?: TranslationConfig | undefined;
|
|
12009
|
+
} | undefined;
|
|
12010
|
+
} | undefined;
|
|
12011
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
11594
12012
|
maxLength?: number | undefined;
|
|
11595
12013
|
prefix?: TranslationConfig | undefined;
|
|
11596
12014
|
postfix?: TranslationConfig | undefined;
|
|
11597
|
-
includeMiddlename?: boolean | undefined;
|
|
11598
|
-
searchMode?: boolean | undefined;
|
|
11599
12015
|
} | undefined;
|
|
11600
12016
|
}, {
|
|
11601
12017
|
type: "NAME";
|
|
@@ -11641,10 +12057,38 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
11641
12057
|
hideLabel?: boolean | undefined;
|
|
11642
12058
|
uncorrectable?: boolean | undefined;
|
|
11643
12059
|
defaultValue?: {
|
|
11644
|
-
firstname
|
|
11645
|
-
surname
|
|
11646
|
-
|
|
11647
|
-
|
|
12060
|
+
firstname?: string | undefined;
|
|
12061
|
+
surname?: string | undefined;
|
|
12062
|
+
middlename?: string | undefined;
|
|
12063
|
+
} | undefined;
|
|
12064
|
+
configuration?: {
|
|
12065
|
+
name?: {
|
|
12066
|
+
firstname?: {
|
|
12067
|
+
required: boolean;
|
|
12068
|
+
label?: {
|
|
12069
|
+
id: string;
|
|
12070
|
+
description: string;
|
|
12071
|
+
defaultMessage: string;
|
|
12072
|
+
} | undefined;
|
|
12073
|
+
} | undefined;
|
|
12074
|
+
surname?: {
|
|
12075
|
+
required: boolean;
|
|
12076
|
+
label?: {
|
|
12077
|
+
id: string;
|
|
12078
|
+
description: string;
|
|
12079
|
+
defaultMessage: string;
|
|
12080
|
+
} | undefined;
|
|
12081
|
+
} | undefined;
|
|
12082
|
+
middlename?: {
|
|
12083
|
+
required: boolean;
|
|
12084
|
+
label?: {
|
|
12085
|
+
id: string;
|
|
12086
|
+
description: string;
|
|
12087
|
+
defaultMessage: string;
|
|
12088
|
+
} | undefined;
|
|
12089
|
+
} | undefined;
|
|
12090
|
+
} | undefined;
|
|
12091
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
11648
12092
|
maxLength?: number | undefined;
|
|
11649
12093
|
prefix?: {
|
|
11650
12094
|
id: string;
|
|
@@ -11656,8 +12100,6 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
11656
12100
|
description: string;
|
|
11657
12101
|
defaultMessage: string;
|
|
11658
12102
|
} | undefined;
|
|
11659
|
-
includeMiddlename?: boolean | undefined;
|
|
11660
|
-
searchMode?: boolean | undefined;
|
|
11661
12103
|
} | undefined;
|
|
11662
12104
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11663
12105
|
id: z.ZodString;
|
|
@@ -14255,15 +14697,29 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
14255
14697
|
hideLabel?: boolean | undefined;
|
|
14256
14698
|
uncorrectable?: boolean | undefined;
|
|
14257
14699
|
defaultValue?: {
|
|
14258
|
-
firstname
|
|
14259
|
-
surname
|
|
14260
|
-
|
|
14261
|
-
|
|
14700
|
+
firstname?: string | undefined;
|
|
14701
|
+
surname?: string | undefined;
|
|
14702
|
+
middlename?: string | undefined;
|
|
14703
|
+
} | undefined;
|
|
14704
|
+
configuration?: {
|
|
14705
|
+
name?: {
|
|
14706
|
+
firstname?: {
|
|
14707
|
+
required: boolean;
|
|
14708
|
+
label?: TranslationConfig | undefined;
|
|
14709
|
+
} | undefined;
|
|
14710
|
+
surname?: {
|
|
14711
|
+
required: boolean;
|
|
14712
|
+
label?: TranslationConfig | undefined;
|
|
14713
|
+
} | undefined;
|
|
14714
|
+
middlename?: {
|
|
14715
|
+
required: boolean;
|
|
14716
|
+
label?: TranslationConfig | undefined;
|
|
14717
|
+
} | undefined;
|
|
14718
|
+
} | undefined;
|
|
14719
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
14262
14720
|
maxLength?: number | undefined;
|
|
14263
14721
|
prefix?: TranslationConfig | undefined;
|
|
14264
14722
|
postfix?: TranslationConfig | undefined;
|
|
14265
|
-
includeMiddlename?: boolean | undefined;
|
|
14266
|
-
searchMode?: boolean | undefined;
|
|
14267
14723
|
} | undefined;
|
|
14268
14724
|
} | {
|
|
14269
14725
|
type: "PHONE";
|
|
@@ -14596,7 +15052,8 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
14596
15052
|
postcodeOrZip?: string | undefined;
|
|
14597
15053
|
} | undefined;
|
|
14598
15054
|
configuration?: {
|
|
14599
|
-
|
|
15055
|
+
lineSeparator?: string | undefined;
|
|
15056
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
14600
15057
|
} | undefined;
|
|
14601
15058
|
} | {
|
|
14602
15059
|
type: "DATA";
|
|
@@ -15530,10 +15987,38 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
15530
15987
|
hideLabel?: boolean | undefined;
|
|
15531
15988
|
uncorrectable?: boolean | undefined;
|
|
15532
15989
|
defaultValue?: {
|
|
15533
|
-
firstname
|
|
15534
|
-
surname
|
|
15535
|
-
|
|
15536
|
-
|
|
15990
|
+
firstname?: string | undefined;
|
|
15991
|
+
surname?: string | undefined;
|
|
15992
|
+
middlename?: string | undefined;
|
|
15993
|
+
} | undefined;
|
|
15994
|
+
configuration?: {
|
|
15995
|
+
name?: {
|
|
15996
|
+
firstname?: {
|
|
15997
|
+
required: boolean;
|
|
15998
|
+
label?: {
|
|
15999
|
+
id: string;
|
|
16000
|
+
description: string;
|
|
16001
|
+
defaultMessage: string;
|
|
16002
|
+
} | undefined;
|
|
16003
|
+
} | undefined;
|
|
16004
|
+
surname?: {
|
|
16005
|
+
required: boolean;
|
|
16006
|
+
label?: {
|
|
16007
|
+
id: string;
|
|
16008
|
+
description: string;
|
|
16009
|
+
defaultMessage: string;
|
|
16010
|
+
} | undefined;
|
|
16011
|
+
} | undefined;
|
|
16012
|
+
middlename?: {
|
|
16013
|
+
required: boolean;
|
|
16014
|
+
label?: {
|
|
16015
|
+
id: string;
|
|
16016
|
+
description: string;
|
|
16017
|
+
defaultMessage: string;
|
|
16018
|
+
} | undefined;
|
|
16019
|
+
} | undefined;
|
|
16020
|
+
} | undefined;
|
|
16021
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
15537
16022
|
maxLength?: number | undefined;
|
|
15538
16023
|
prefix?: {
|
|
15539
16024
|
id: string;
|
|
@@ -15545,8 +16030,6 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
15545
16030
|
description: string;
|
|
15546
16031
|
defaultMessage: string;
|
|
15547
16032
|
} | undefined;
|
|
15548
|
-
includeMiddlename?: boolean | undefined;
|
|
15549
|
-
searchMode?: boolean | undefined;
|
|
15550
16033
|
} | undefined;
|
|
15551
16034
|
} | {
|
|
15552
16035
|
type: "PHONE";
|
|
@@ -16043,7 +16526,8 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
16043
16526
|
postcodeOrZip?: string | undefined;
|
|
16044
16527
|
} | undefined;
|
|
16045
16528
|
configuration?: {
|
|
16046
|
-
|
|
16529
|
+
lineSeparator?: string | undefined;
|
|
16530
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
16047
16531
|
} | undefined;
|
|
16048
16532
|
} | {
|
|
16049
16533
|
type: "DATA";
|
|
@@ -16168,6 +16652,16 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
16168
16652
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
16169
16653
|
}, {
|
|
16170
16654
|
type: z.ZodLiteral<"ADDRESS">;
|
|
16655
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
|
16656
|
+
lineSeparator: z.ZodOptional<z.ZodString>;
|
|
16657
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodEnum<["number", "country", "province", "addressType", "district", "urbanOrRural", "town", "residentialArea", "street", "zipCode", "village", "state", "district2", "cityOrTown", "addressLine1", "addressLine2", "addressLine3", "postcodeOrZip"]>, "many">>;
|
|
16658
|
+
}, "strip", z.ZodTypeAny, {
|
|
16659
|
+
lineSeparator?: string | undefined;
|
|
16660
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
16661
|
+
}, {
|
|
16662
|
+
lineSeparator?: string | undefined;
|
|
16663
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
16664
|
+
}>>;
|
|
16171
16665
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
|
16172
16666
|
country: z.ZodString;
|
|
16173
16667
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
|
@@ -16255,13 +16749,6 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
16255
16749
|
addressLine3?: string | undefined;
|
|
16256
16750
|
postcodeOrZip?: string | undefined;
|
|
16257
16751
|
}>]>>;
|
|
16258
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
|
16259
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
|
16260
|
-
}, "strip", z.ZodTypeAny, {
|
|
16261
|
-
searchMode?: boolean | undefined;
|
|
16262
|
-
}, {
|
|
16263
|
-
searchMode?: boolean | undefined;
|
|
16264
|
-
}>>;
|
|
16265
16752
|
}>, "strip", z.ZodTypeAny, {
|
|
16266
16753
|
type: "ADDRESS";
|
|
16267
16754
|
id: string;
|
|
@@ -16319,7 +16806,8 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
16319
16806
|
postcodeOrZip?: string | undefined;
|
|
16320
16807
|
} | undefined;
|
|
16321
16808
|
configuration?: {
|
|
16322
|
-
|
|
16809
|
+
lineSeparator?: string | undefined;
|
|
16810
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
16323
16811
|
} | undefined;
|
|
16324
16812
|
}, {
|
|
16325
16813
|
type: "ADDRESS";
|
|
@@ -16394,7 +16882,8 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
16394
16882
|
postcodeOrZip?: string | undefined;
|
|
16395
16883
|
} | undefined;
|
|
16396
16884
|
configuration?: {
|
|
16397
|
-
|
|
16885
|
+
lineSeparator?: string | undefined;
|
|
16886
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
16398
16887
|
} | undefined;
|
|
16399
16888
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
16400
16889
|
id: z.ZodString;
|
|
@@ -18350,16 +18839,114 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
18350
18839
|
}, {
|
|
18351
18840
|
type: z.ZodLiteral<"NAME">;
|
|
18352
18841
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
|
18353
|
-
firstname: z.ZodString
|
|
18354
|
-
|
|
18842
|
+
firstname: z.ZodOptional<z.ZodString>;
|
|
18843
|
+
middlename: z.ZodOptional<z.ZodString>;
|
|
18844
|
+
surname: z.ZodOptional<z.ZodString>;
|
|
18355
18845
|
}, "strip", z.ZodTypeAny, {
|
|
18356
|
-
firstname
|
|
18357
|
-
surname
|
|
18846
|
+
firstname?: string | undefined;
|
|
18847
|
+
surname?: string | undefined;
|
|
18848
|
+
middlename?: string | undefined;
|
|
18358
18849
|
}, {
|
|
18359
|
-
firstname
|
|
18360
|
-
surname
|
|
18850
|
+
firstname?: string | undefined;
|
|
18851
|
+
surname?: string | undefined;
|
|
18852
|
+
middlename?: string | undefined;
|
|
18361
18853
|
}>>;
|
|
18362
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
|
18854
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
18855
|
+
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
18856
|
+
firstname: z.ZodOptional<z.ZodObject<{
|
|
18857
|
+
required: z.ZodBoolean;
|
|
18858
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
18859
|
+
id: string;
|
|
18860
|
+
description: string;
|
|
18861
|
+
defaultMessage: string;
|
|
18862
|
+
}>>;
|
|
18863
|
+
}, "strip", z.ZodTypeAny, {
|
|
18864
|
+
required: boolean;
|
|
18865
|
+
label?: TranslationConfig | undefined;
|
|
18866
|
+
}, {
|
|
18867
|
+
required: boolean;
|
|
18868
|
+
label?: {
|
|
18869
|
+
id: string;
|
|
18870
|
+
description: string;
|
|
18871
|
+
defaultMessage: string;
|
|
18872
|
+
} | undefined;
|
|
18873
|
+
}>>;
|
|
18874
|
+
middlename: z.ZodOptional<z.ZodObject<{
|
|
18875
|
+
required: z.ZodBoolean;
|
|
18876
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
18877
|
+
id: string;
|
|
18878
|
+
description: string;
|
|
18879
|
+
defaultMessage: string;
|
|
18880
|
+
}>>;
|
|
18881
|
+
}, "strip", z.ZodTypeAny, {
|
|
18882
|
+
required: boolean;
|
|
18883
|
+
label?: TranslationConfig | undefined;
|
|
18884
|
+
}, {
|
|
18885
|
+
required: boolean;
|
|
18886
|
+
label?: {
|
|
18887
|
+
id: string;
|
|
18888
|
+
description: string;
|
|
18889
|
+
defaultMessage: string;
|
|
18890
|
+
} | undefined;
|
|
18891
|
+
}>>;
|
|
18892
|
+
surname: z.ZodOptional<z.ZodObject<{
|
|
18893
|
+
required: z.ZodBoolean;
|
|
18894
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
18895
|
+
id: string;
|
|
18896
|
+
description: string;
|
|
18897
|
+
defaultMessage: string;
|
|
18898
|
+
}>>;
|
|
18899
|
+
}, "strip", z.ZodTypeAny, {
|
|
18900
|
+
required: boolean;
|
|
18901
|
+
label?: TranslationConfig | undefined;
|
|
18902
|
+
}, {
|
|
18903
|
+
required: boolean;
|
|
18904
|
+
label?: {
|
|
18905
|
+
id: string;
|
|
18906
|
+
description: string;
|
|
18907
|
+
defaultMessage: string;
|
|
18908
|
+
} | undefined;
|
|
18909
|
+
}>>;
|
|
18910
|
+
}, "strip", z.ZodTypeAny, {
|
|
18911
|
+
firstname?: {
|
|
18912
|
+
required: boolean;
|
|
18913
|
+
label?: TranslationConfig | undefined;
|
|
18914
|
+
} | undefined;
|
|
18915
|
+
surname?: {
|
|
18916
|
+
required: boolean;
|
|
18917
|
+
label?: TranslationConfig | undefined;
|
|
18918
|
+
} | undefined;
|
|
18919
|
+
middlename?: {
|
|
18920
|
+
required: boolean;
|
|
18921
|
+
label?: TranslationConfig | undefined;
|
|
18922
|
+
} | undefined;
|
|
18923
|
+
}, {
|
|
18924
|
+
firstname?: {
|
|
18925
|
+
required: boolean;
|
|
18926
|
+
label?: {
|
|
18927
|
+
id: string;
|
|
18928
|
+
description: string;
|
|
18929
|
+
defaultMessage: string;
|
|
18930
|
+
} | undefined;
|
|
18931
|
+
} | undefined;
|
|
18932
|
+
surname?: {
|
|
18933
|
+
required: boolean;
|
|
18934
|
+
label?: {
|
|
18935
|
+
id: string;
|
|
18936
|
+
description: string;
|
|
18937
|
+
defaultMessage: string;
|
|
18938
|
+
} | undefined;
|
|
18939
|
+
} | undefined;
|
|
18940
|
+
middlename?: {
|
|
18941
|
+
required: boolean;
|
|
18942
|
+
label?: {
|
|
18943
|
+
id: string;
|
|
18944
|
+
description: string;
|
|
18945
|
+
defaultMessage: string;
|
|
18946
|
+
} | undefined;
|
|
18947
|
+
} | undefined;
|
|
18948
|
+
}>>>;
|
|
18949
|
+
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
|
18363
18950
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
18364
18951
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
18365
18952
|
id: string;
|
|
@@ -18371,15 +18958,53 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
18371
18958
|
description: string;
|
|
18372
18959
|
defaultMessage: string;
|
|
18373
18960
|
}>>;
|
|
18374
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
18375
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
|
18376
18961
|
}, "strip", z.ZodTypeAny, {
|
|
18962
|
+
name?: {
|
|
18963
|
+
firstname?: {
|
|
18964
|
+
required: boolean;
|
|
18965
|
+
label?: TranslationConfig | undefined;
|
|
18966
|
+
} | undefined;
|
|
18967
|
+
surname?: {
|
|
18968
|
+
required: boolean;
|
|
18969
|
+
label?: TranslationConfig | undefined;
|
|
18970
|
+
} | undefined;
|
|
18971
|
+
middlename?: {
|
|
18972
|
+
required: boolean;
|
|
18973
|
+
label?: TranslationConfig | undefined;
|
|
18974
|
+
} | undefined;
|
|
18975
|
+
} | undefined;
|
|
18976
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
18377
18977
|
maxLength?: number | undefined;
|
|
18378
18978
|
prefix?: TranslationConfig | undefined;
|
|
18379
18979
|
postfix?: TranslationConfig | undefined;
|
|
18380
|
-
includeMiddlename?: boolean | undefined;
|
|
18381
|
-
searchMode?: boolean | undefined;
|
|
18382
18980
|
}, {
|
|
18981
|
+
name?: {
|
|
18982
|
+
firstname?: {
|
|
18983
|
+
required: boolean;
|
|
18984
|
+
label?: {
|
|
18985
|
+
id: string;
|
|
18986
|
+
description: string;
|
|
18987
|
+
defaultMessage: string;
|
|
18988
|
+
} | undefined;
|
|
18989
|
+
} | undefined;
|
|
18990
|
+
surname?: {
|
|
18991
|
+
required: boolean;
|
|
18992
|
+
label?: {
|
|
18993
|
+
id: string;
|
|
18994
|
+
description: string;
|
|
18995
|
+
defaultMessage: string;
|
|
18996
|
+
} | undefined;
|
|
18997
|
+
} | undefined;
|
|
18998
|
+
middlename?: {
|
|
18999
|
+
required: boolean;
|
|
19000
|
+
label?: {
|
|
19001
|
+
id: string;
|
|
19002
|
+
description: string;
|
|
19003
|
+
defaultMessage: string;
|
|
19004
|
+
} | undefined;
|
|
19005
|
+
} | undefined;
|
|
19006
|
+
} | undefined;
|
|
19007
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
18383
19008
|
maxLength?: number | undefined;
|
|
18384
19009
|
prefix?: {
|
|
18385
19010
|
id: string;
|
|
@@ -18391,9 +19016,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
18391
19016
|
description: string;
|
|
18392
19017
|
defaultMessage: string;
|
|
18393
19018
|
} | undefined;
|
|
18394
|
-
|
|
18395
|
-
searchMode?: boolean | undefined;
|
|
18396
|
-
}>>;
|
|
19019
|
+
}>>>;
|
|
18397
19020
|
}>, "strip", z.ZodTypeAny, {
|
|
18398
19021
|
type: "NAME";
|
|
18399
19022
|
id: string;
|
|
@@ -18422,15 +19045,29 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
18422
19045
|
hideLabel?: boolean | undefined;
|
|
18423
19046
|
uncorrectable?: boolean | undefined;
|
|
18424
19047
|
defaultValue?: {
|
|
18425
|
-
firstname
|
|
18426
|
-
surname
|
|
18427
|
-
|
|
18428
|
-
|
|
19048
|
+
firstname?: string | undefined;
|
|
19049
|
+
surname?: string | undefined;
|
|
19050
|
+
middlename?: string | undefined;
|
|
19051
|
+
} | undefined;
|
|
19052
|
+
configuration?: {
|
|
19053
|
+
name?: {
|
|
19054
|
+
firstname?: {
|
|
19055
|
+
required: boolean;
|
|
19056
|
+
label?: TranslationConfig | undefined;
|
|
19057
|
+
} | undefined;
|
|
19058
|
+
surname?: {
|
|
19059
|
+
required: boolean;
|
|
19060
|
+
label?: TranslationConfig | undefined;
|
|
19061
|
+
} | undefined;
|
|
19062
|
+
middlename?: {
|
|
19063
|
+
required: boolean;
|
|
19064
|
+
label?: TranslationConfig | undefined;
|
|
19065
|
+
} | undefined;
|
|
19066
|
+
} | undefined;
|
|
19067
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
18429
19068
|
maxLength?: number | undefined;
|
|
18430
19069
|
prefix?: TranslationConfig | undefined;
|
|
18431
19070
|
postfix?: TranslationConfig | undefined;
|
|
18432
|
-
includeMiddlename?: boolean | undefined;
|
|
18433
|
-
searchMode?: boolean | undefined;
|
|
18434
19071
|
} | undefined;
|
|
18435
19072
|
}, {
|
|
18436
19073
|
type: "NAME";
|
|
@@ -18476,10 +19113,38 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
18476
19113
|
hideLabel?: boolean | undefined;
|
|
18477
19114
|
uncorrectable?: boolean | undefined;
|
|
18478
19115
|
defaultValue?: {
|
|
18479
|
-
firstname
|
|
18480
|
-
surname
|
|
18481
|
-
|
|
18482
|
-
|
|
19116
|
+
firstname?: string | undefined;
|
|
19117
|
+
surname?: string | undefined;
|
|
19118
|
+
middlename?: string | undefined;
|
|
19119
|
+
} | undefined;
|
|
19120
|
+
configuration?: {
|
|
19121
|
+
name?: {
|
|
19122
|
+
firstname?: {
|
|
19123
|
+
required: boolean;
|
|
19124
|
+
label?: {
|
|
19125
|
+
id: string;
|
|
19126
|
+
description: string;
|
|
19127
|
+
defaultMessage: string;
|
|
19128
|
+
} | undefined;
|
|
19129
|
+
} | undefined;
|
|
19130
|
+
surname?: {
|
|
19131
|
+
required: boolean;
|
|
19132
|
+
label?: {
|
|
19133
|
+
id: string;
|
|
19134
|
+
description: string;
|
|
19135
|
+
defaultMessage: string;
|
|
19136
|
+
} | undefined;
|
|
19137
|
+
} | undefined;
|
|
19138
|
+
middlename?: {
|
|
19139
|
+
required: boolean;
|
|
19140
|
+
label?: {
|
|
19141
|
+
id: string;
|
|
19142
|
+
description: string;
|
|
19143
|
+
defaultMessage: string;
|
|
19144
|
+
} | undefined;
|
|
19145
|
+
} | undefined;
|
|
19146
|
+
} | undefined;
|
|
19147
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
18483
19148
|
maxLength?: number | undefined;
|
|
18484
19149
|
prefix?: {
|
|
18485
19150
|
id: string;
|
|
@@ -18491,8 +19156,6 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
18491
19156
|
description: string;
|
|
18492
19157
|
defaultMessage: string;
|
|
18493
19158
|
} | undefined;
|
|
18494
|
-
includeMiddlename?: boolean | undefined;
|
|
18495
|
-
searchMode?: boolean | undefined;
|
|
18496
19159
|
} | undefined;
|
|
18497
19160
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
18498
19161
|
id: z.ZodString;
|
|
@@ -21216,15 +21879,29 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
21216
21879
|
hideLabel?: boolean | undefined;
|
|
21217
21880
|
uncorrectable?: boolean | undefined;
|
|
21218
21881
|
defaultValue?: {
|
|
21219
|
-
firstname
|
|
21220
|
-
surname
|
|
21221
|
-
|
|
21222
|
-
|
|
21882
|
+
firstname?: string | undefined;
|
|
21883
|
+
surname?: string | undefined;
|
|
21884
|
+
middlename?: string | undefined;
|
|
21885
|
+
} | undefined;
|
|
21886
|
+
configuration?: {
|
|
21887
|
+
name?: {
|
|
21888
|
+
firstname?: {
|
|
21889
|
+
required: boolean;
|
|
21890
|
+
label?: TranslationConfig | undefined;
|
|
21891
|
+
} | undefined;
|
|
21892
|
+
surname?: {
|
|
21893
|
+
required: boolean;
|
|
21894
|
+
label?: TranslationConfig | undefined;
|
|
21895
|
+
} | undefined;
|
|
21896
|
+
middlename?: {
|
|
21897
|
+
required: boolean;
|
|
21898
|
+
label?: TranslationConfig | undefined;
|
|
21899
|
+
} | undefined;
|
|
21900
|
+
} | undefined;
|
|
21901
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
21223
21902
|
maxLength?: number | undefined;
|
|
21224
21903
|
prefix?: TranslationConfig | undefined;
|
|
21225
21904
|
postfix?: TranslationConfig | undefined;
|
|
21226
|
-
includeMiddlename?: boolean | undefined;
|
|
21227
|
-
searchMode?: boolean | undefined;
|
|
21228
21905
|
} | undefined;
|
|
21229
21906
|
} | {
|
|
21230
21907
|
type: "PHONE";
|
|
@@ -21557,7 +22234,8 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
21557
22234
|
postcodeOrZip?: string | undefined;
|
|
21558
22235
|
} | undefined;
|
|
21559
22236
|
configuration?: {
|
|
21560
|
-
|
|
22237
|
+
lineSeparator?: string | undefined;
|
|
22238
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
21561
22239
|
} | undefined;
|
|
21562
22240
|
} | {
|
|
21563
22241
|
type: "DATA";
|
|
@@ -22520,10 +23198,38 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
22520
23198
|
hideLabel?: boolean | undefined;
|
|
22521
23199
|
uncorrectable?: boolean | undefined;
|
|
22522
23200
|
defaultValue?: {
|
|
22523
|
-
firstname
|
|
22524
|
-
surname
|
|
22525
|
-
|
|
22526
|
-
|
|
23201
|
+
firstname?: string | undefined;
|
|
23202
|
+
surname?: string | undefined;
|
|
23203
|
+
middlename?: string | undefined;
|
|
23204
|
+
} | undefined;
|
|
23205
|
+
configuration?: {
|
|
23206
|
+
name?: {
|
|
23207
|
+
firstname?: {
|
|
23208
|
+
required: boolean;
|
|
23209
|
+
label?: {
|
|
23210
|
+
id: string;
|
|
23211
|
+
description: string;
|
|
23212
|
+
defaultMessage: string;
|
|
23213
|
+
} | undefined;
|
|
23214
|
+
} | undefined;
|
|
23215
|
+
surname?: {
|
|
23216
|
+
required: boolean;
|
|
23217
|
+
label?: {
|
|
23218
|
+
id: string;
|
|
23219
|
+
description: string;
|
|
23220
|
+
defaultMessage: string;
|
|
23221
|
+
} | undefined;
|
|
23222
|
+
} | undefined;
|
|
23223
|
+
middlename?: {
|
|
23224
|
+
required: boolean;
|
|
23225
|
+
label?: {
|
|
23226
|
+
id: string;
|
|
23227
|
+
description: string;
|
|
23228
|
+
defaultMessage: string;
|
|
23229
|
+
} | undefined;
|
|
23230
|
+
} | undefined;
|
|
23231
|
+
} | undefined;
|
|
23232
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
22527
23233
|
maxLength?: number | undefined;
|
|
22528
23234
|
prefix?: {
|
|
22529
23235
|
id: string;
|
|
@@ -22535,8 +23241,6 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
22535
23241
|
description: string;
|
|
22536
23242
|
defaultMessage: string;
|
|
22537
23243
|
} | undefined;
|
|
22538
|
-
includeMiddlename?: boolean | undefined;
|
|
22539
|
-
searchMode?: boolean | undefined;
|
|
22540
23244
|
} | undefined;
|
|
22541
23245
|
} | {
|
|
22542
23246
|
type: "PHONE";
|
|
@@ -23033,7 +23737,8 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
23033
23737
|
postcodeOrZip?: string | undefined;
|
|
23034
23738
|
} | undefined;
|
|
23035
23739
|
configuration?: {
|
|
23036
|
-
|
|
23740
|
+
lineSeparator?: string | undefined;
|
|
23741
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
23037
23742
|
} | undefined;
|
|
23038
23743
|
} | {
|
|
23039
23744
|
type: "DATA";
|
|
@@ -23663,15 +24368,29 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
23663
24368
|
hideLabel?: boolean | undefined;
|
|
23664
24369
|
uncorrectable?: boolean | undefined;
|
|
23665
24370
|
defaultValue?: {
|
|
23666
|
-
firstname
|
|
23667
|
-
surname
|
|
23668
|
-
|
|
23669
|
-
|
|
24371
|
+
firstname?: string | undefined;
|
|
24372
|
+
surname?: string | undefined;
|
|
24373
|
+
middlename?: string | undefined;
|
|
24374
|
+
} | undefined;
|
|
24375
|
+
configuration?: {
|
|
24376
|
+
name?: {
|
|
24377
|
+
firstname?: {
|
|
24378
|
+
required: boolean;
|
|
24379
|
+
label?: TranslationConfig | undefined;
|
|
24380
|
+
} | undefined;
|
|
24381
|
+
surname?: {
|
|
24382
|
+
required: boolean;
|
|
24383
|
+
label?: TranslationConfig | undefined;
|
|
24384
|
+
} | undefined;
|
|
24385
|
+
middlename?: {
|
|
24386
|
+
required: boolean;
|
|
24387
|
+
label?: TranslationConfig | undefined;
|
|
24388
|
+
} | undefined;
|
|
24389
|
+
} | undefined;
|
|
24390
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
23670
24391
|
maxLength?: number | undefined;
|
|
23671
24392
|
prefix?: TranslationConfig | undefined;
|
|
23672
24393
|
postfix?: TranslationConfig | undefined;
|
|
23673
|
-
includeMiddlename?: boolean | undefined;
|
|
23674
|
-
searchMode?: boolean | undefined;
|
|
23675
24394
|
} | undefined;
|
|
23676
24395
|
} | {
|
|
23677
24396
|
type: "PHONE";
|
|
@@ -24004,7 +24723,8 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
24004
24723
|
postcodeOrZip?: string | undefined;
|
|
24005
24724
|
} | undefined;
|
|
24006
24725
|
configuration?: {
|
|
24007
|
-
|
|
24726
|
+
lineSeparator?: string | undefined;
|
|
24727
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
24008
24728
|
} | undefined;
|
|
24009
24729
|
} | {
|
|
24010
24730
|
type: "DATA";
|
|
@@ -24615,15 +25335,29 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
24615
25335
|
hideLabel?: boolean | undefined;
|
|
24616
25336
|
uncorrectable?: boolean | undefined;
|
|
24617
25337
|
defaultValue?: {
|
|
24618
|
-
firstname
|
|
24619
|
-
surname
|
|
24620
|
-
|
|
24621
|
-
|
|
25338
|
+
firstname?: string | undefined;
|
|
25339
|
+
surname?: string | undefined;
|
|
25340
|
+
middlename?: string | undefined;
|
|
25341
|
+
} | undefined;
|
|
25342
|
+
configuration?: {
|
|
25343
|
+
name?: {
|
|
25344
|
+
firstname?: {
|
|
25345
|
+
required: boolean;
|
|
25346
|
+
label?: TranslationConfig | undefined;
|
|
25347
|
+
} | undefined;
|
|
25348
|
+
surname?: {
|
|
25349
|
+
required: boolean;
|
|
25350
|
+
label?: TranslationConfig | undefined;
|
|
25351
|
+
} | undefined;
|
|
25352
|
+
middlename?: {
|
|
25353
|
+
required: boolean;
|
|
25354
|
+
label?: TranslationConfig | undefined;
|
|
25355
|
+
} | undefined;
|
|
25356
|
+
} | undefined;
|
|
25357
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
24622
25358
|
maxLength?: number | undefined;
|
|
24623
25359
|
prefix?: TranslationConfig | undefined;
|
|
24624
25360
|
postfix?: TranslationConfig | undefined;
|
|
24625
|
-
includeMiddlename?: boolean | undefined;
|
|
24626
|
-
searchMode?: boolean | undefined;
|
|
24627
25361
|
} | undefined;
|
|
24628
25362
|
} | {
|
|
24629
25363
|
type: "PHONE";
|
|
@@ -24956,7 +25690,8 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
24956
25690
|
postcodeOrZip?: string | undefined;
|
|
24957
25691
|
} | undefined;
|
|
24958
25692
|
configuration?: {
|
|
24959
|
-
|
|
25693
|
+
lineSeparator?: string | undefined;
|
|
25694
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
24960
25695
|
} | undefined;
|
|
24961
25696
|
} | {
|
|
24962
25697
|
type: "DATA";
|
|
@@ -25897,10 +26632,38 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
25897
26632
|
hideLabel?: boolean | undefined;
|
|
25898
26633
|
uncorrectable?: boolean | undefined;
|
|
25899
26634
|
defaultValue?: {
|
|
25900
|
-
firstname
|
|
25901
|
-
surname
|
|
25902
|
-
|
|
25903
|
-
|
|
26635
|
+
firstname?: string | undefined;
|
|
26636
|
+
surname?: string | undefined;
|
|
26637
|
+
middlename?: string | undefined;
|
|
26638
|
+
} | undefined;
|
|
26639
|
+
configuration?: {
|
|
26640
|
+
name?: {
|
|
26641
|
+
firstname?: {
|
|
26642
|
+
required: boolean;
|
|
26643
|
+
label?: {
|
|
26644
|
+
id: string;
|
|
26645
|
+
description: string;
|
|
26646
|
+
defaultMessage: string;
|
|
26647
|
+
} | undefined;
|
|
26648
|
+
} | undefined;
|
|
26649
|
+
surname?: {
|
|
26650
|
+
required: boolean;
|
|
26651
|
+
label?: {
|
|
26652
|
+
id: string;
|
|
26653
|
+
description: string;
|
|
26654
|
+
defaultMessage: string;
|
|
26655
|
+
} | undefined;
|
|
26656
|
+
} | undefined;
|
|
26657
|
+
middlename?: {
|
|
26658
|
+
required: boolean;
|
|
26659
|
+
label?: {
|
|
26660
|
+
id: string;
|
|
26661
|
+
description: string;
|
|
26662
|
+
defaultMessage: string;
|
|
26663
|
+
} | undefined;
|
|
26664
|
+
} | undefined;
|
|
26665
|
+
} | undefined;
|
|
26666
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
25904
26667
|
maxLength?: number | undefined;
|
|
25905
26668
|
prefix?: {
|
|
25906
26669
|
id: string;
|
|
@@ -25912,8 +26675,6 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
25912
26675
|
description: string;
|
|
25913
26676
|
defaultMessage: string;
|
|
25914
26677
|
} | undefined;
|
|
25915
|
-
includeMiddlename?: boolean | undefined;
|
|
25916
|
-
searchMode?: boolean | undefined;
|
|
25917
26678
|
} | undefined;
|
|
25918
26679
|
} | {
|
|
25919
26680
|
type: "PHONE";
|
|
@@ -26410,7 +27171,8 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
26410
27171
|
postcodeOrZip?: string | undefined;
|
|
26411
27172
|
} | undefined;
|
|
26412
27173
|
configuration?: {
|
|
26413
|
-
|
|
27174
|
+
lineSeparator?: string | undefined;
|
|
27175
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
26414
27176
|
} | undefined;
|
|
26415
27177
|
} | {
|
|
26416
27178
|
type: "DATA";
|
|
@@ -27402,10 +28164,38 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
27402
28164
|
hideLabel?: boolean | undefined;
|
|
27403
28165
|
uncorrectable?: boolean | undefined;
|
|
27404
28166
|
defaultValue?: {
|
|
27405
|
-
firstname
|
|
27406
|
-
surname
|
|
27407
|
-
|
|
27408
|
-
|
|
28167
|
+
firstname?: string | undefined;
|
|
28168
|
+
surname?: string | undefined;
|
|
28169
|
+
middlename?: string | undefined;
|
|
28170
|
+
} | undefined;
|
|
28171
|
+
configuration?: {
|
|
28172
|
+
name?: {
|
|
28173
|
+
firstname?: {
|
|
28174
|
+
required: boolean;
|
|
28175
|
+
label?: {
|
|
28176
|
+
id: string;
|
|
28177
|
+
description: string;
|
|
28178
|
+
defaultMessage: string;
|
|
28179
|
+
} | undefined;
|
|
28180
|
+
} | undefined;
|
|
28181
|
+
surname?: {
|
|
28182
|
+
required: boolean;
|
|
28183
|
+
label?: {
|
|
28184
|
+
id: string;
|
|
28185
|
+
description: string;
|
|
28186
|
+
defaultMessage: string;
|
|
28187
|
+
} | undefined;
|
|
28188
|
+
} | undefined;
|
|
28189
|
+
middlename?: {
|
|
28190
|
+
required: boolean;
|
|
28191
|
+
label?: {
|
|
28192
|
+
id: string;
|
|
28193
|
+
description: string;
|
|
28194
|
+
defaultMessage: string;
|
|
28195
|
+
} | undefined;
|
|
28196
|
+
} | undefined;
|
|
28197
|
+
} | undefined;
|
|
28198
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
27409
28199
|
maxLength?: number | undefined;
|
|
27410
28200
|
prefix?: {
|
|
27411
28201
|
id: string;
|
|
@@ -27417,8 +28207,6 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
27417
28207
|
description: string;
|
|
27418
28208
|
defaultMessage: string;
|
|
27419
28209
|
} | undefined;
|
|
27420
|
-
includeMiddlename?: boolean | undefined;
|
|
27421
|
-
searchMode?: boolean | undefined;
|
|
27422
28210
|
} | undefined;
|
|
27423
28211
|
} | {
|
|
27424
28212
|
type: "PHONE";
|
|
@@ -27915,7 +28703,8 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
|
27915
28703
|
postcodeOrZip?: string | undefined;
|
|
27916
28704
|
} | undefined;
|
|
27917
28705
|
configuration?: {
|
|
27918
|
-
|
|
28706
|
+
lineSeparator?: string | undefined;
|
|
28707
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
27919
28708
|
} | undefined;
|
|
27920
28709
|
} | {
|
|
27921
28710
|
type: "DATA";
|
|
@@ -28049,6 +28838,16 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
28049
28838
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
28050
28839
|
}, {
|
|
28051
28840
|
type: z.ZodLiteral<"ADDRESS">;
|
|
28841
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
|
28842
|
+
lineSeparator: z.ZodOptional<z.ZodString>;
|
|
28843
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodEnum<["number", "country", "province", "addressType", "district", "urbanOrRural", "town", "residentialArea", "street", "zipCode", "village", "state", "district2", "cityOrTown", "addressLine1", "addressLine2", "addressLine3", "postcodeOrZip"]>, "many">>;
|
|
28844
|
+
}, "strip", z.ZodTypeAny, {
|
|
28845
|
+
lineSeparator?: string | undefined;
|
|
28846
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
28847
|
+
}, {
|
|
28848
|
+
lineSeparator?: string | undefined;
|
|
28849
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
28850
|
+
}>>;
|
|
28052
28851
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
|
28053
28852
|
country: z.ZodString;
|
|
28054
28853
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
|
@@ -28136,13 +28935,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
28136
28935
|
addressLine3?: string | undefined;
|
|
28137
28936
|
postcodeOrZip?: string | undefined;
|
|
28138
28937
|
}>]>>;
|
|
28139
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
|
28140
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
|
28141
|
-
}, "strip", z.ZodTypeAny, {
|
|
28142
|
-
searchMode?: boolean | undefined;
|
|
28143
|
-
}, {
|
|
28144
|
-
searchMode?: boolean | undefined;
|
|
28145
|
-
}>>;
|
|
28146
28938
|
}>, "strip", z.ZodTypeAny, {
|
|
28147
28939
|
type: "ADDRESS";
|
|
28148
28940
|
id: string;
|
|
@@ -28200,7 +28992,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
28200
28992
|
postcodeOrZip?: string | undefined;
|
|
28201
28993
|
} | undefined;
|
|
28202
28994
|
configuration?: {
|
|
28203
|
-
|
|
28995
|
+
lineSeparator?: string | undefined;
|
|
28996
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
28204
28997
|
} | undefined;
|
|
28205
28998
|
}, {
|
|
28206
28999
|
type: "ADDRESS";
|
|
@@ -28275,7 +29068,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
28275
29068
|
postcodeOrZip?: string | undefined;
|
|
28276
29069
|
} | undefined;
|
|
28277
29070
|
configuration?: {
|
|
28278
|
-
|
|
29071
|
+
lineSeparator?: string | undefined;
|
|
29072
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
28279
29073
|
} | undefined;
|
|
28280
29074
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
28281
29075
|
id: z.ZodString;
|
|
@@ -30231,16 +31025,114 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
30231
31025
|
}, {
|
|
30232
31026
|
type: z.ZodLiteral<"NAME">;
|
|
30233
31027
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
|
30234
|
-
firstname: z.ZodString
|
|
30235
|
-
|
|
31028
|
+
firstname: z.ZodOptional<z.ZodString>;
|
|
31029
|
+
middlename: z.ZodOptional<z.ZodString>;
|
|
31030
|
+
surname: z.ZodOptional<z.ZodString>;
|
|
30236
31031
|
}, "strip", z.ZodTypeAny, {
|
|
30237
|
-
firstname
|
|
30238
|
-
surname
|
|
31032
|
+
firstname?: string | undefined;
|
|
31033
|
+
surname?: string | undefined;
|
|
31034
|
+
middlename?: string | undefined;
|
|
30239
31035
|
}, {
|
|
30240
|
-
firstname
|
|
30241
|
-
surname
|
|
31036
|
+
firstname?: string | undefined;
|
|
31037
|
+
surname?: string | undefined;
|
|
31038
|
+
middlename?: string | undefined;
|
|
30242
31039
|
}>>;
|
|
30243
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
|
31040
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
31041
|
+
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
31042
|
+
firstname: z.ZodOptional<z.ZodObject<{
|
|
31043
|
+
required: z.ZodBoolean;
|
|
31044
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
31045
|
+
id: string;
|
|
31046
|
+
description: string;
|
|
31047
|
+
defaultMessage: string;
|
|
31048
|
+
}>>;
|
|
31049
|
+
}, "strip", z.ZodTypeAny, {
|
|
31050
|
+
required: boolean;
|
|
31051
|
+
label?: TranslationConfig | undefined;
|
|
31052
|
+
}, {
|
|
31053
|
+
required: boolean;
|
|
31054
|
+
label?: {
|
|
31055
|
+
id: string;
|
|
31056
|
+
description: string;
|
|
31057
|
+
defaultMessage: string;
|
|
31058
|
+
} | undefined;
|
|
31059
|
+
}>>;
|
|
31060
|
+
middlename: z.ZodOptional<z.ZodObject<{
|
|
31061
|
+
required: z.ZodBoolean;
|
|
31062
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
31063
|
+
id: string;
|
|
31064
|
+
description: string;
|
|
31065
|
+
defaultMessage: string;
|
|
31066
|
+
}>>;
|
|
31067
|
+
}, "strip", z.ZodTypeAny, {
|
|
31068
|
+
required: boolean;
|
|
31069
|
+
label?: TranslationConfig | undefined;
|
|
31070
|
+
}, {
|
|
31071
|
+
required: boolean;
|
|
31072
|
+
label?: {
|
|
31073
|
+
id: string;
|
|
31074
|
+
description: string;
|
|
31075
|
+
defaultMessage: string;
|
|
31076
|
+
} | undefined;
|
|
31077
|
+
}>>;
|
|
31078
|
+
surname: z.ZodOptional<z.ZodObject<{
|
|
31079
|
+
required: z.ZodBoolean;
|
|
31080
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
31081
|
+
id: string;
|
|
31082
|
+
description: string;
|
|
31083
|
+
defaultMessage: string;
|
|
31084
|
+
}>>;
|
|
31085
|
+
}, "strip", z.ZodTypeAny, {
|
|
31086
|
+
required: boolean;
|
|
31087
|
+
label?: TranslationConfig | undefined;
|
|
31088
|
+
}, {
|
|
31089
|
+
required: boolean;
|
|
31090
|
+
label?: {
|
|
31091
|
+
id: string;
|
|
31092
|
+
description: string;
|
|
31093
|
+
defaultMessage: string;
|
|
31094
|
+
} | undefined;
|
|
31095
|
+
}>>;
|
|
31096
|
+
}, "strip", z.ZodTypeAny, {
|
|
31097
|
+
firstname?: {
|
|
31098
|
+
required: boolean;
|
|
31099
|
+
label?: TranslationConfig | undefined;
|
|
31100
|
+
} | undefined;
|
|
31101
|
+
surname?: {
|
|
31102
|
+
required: boolean;
|
|
31103
|
+
label?: TranslationConfig | undefined;
|
|
31104
|
+
} | undefined;
|
|
31105
|
+
middlename?: {
|
|
31106
|
+
required: boolean;
|
|
31107
|
+
label?: TranslationConfig | undefined;
|
|
31108
|
+
} | undefined;
|
|
31109
|
+
}, {
|
|
31110
|
+
firstname?: {
|
|
31111
|
+
required: boolean;
|
|
31112
|
+
label?: {
|
|
31113
|
+
id: string;
|
|
31114
|
+
description: string;
|
|
31115
|
+
defaultMessage: string;
|
|
31116
|
+
} | undefined;
|
|
31117
|
+
} | undefined;
|
|
31118
|
+
surname?: {
|
|
31119
|
+
required: boolean;
|
|
31120
|
+
label?: {
|
|
31121
|
+
id: string;
|
|
31122
|
+
description: string;
|
|
31123
|
+
defaultMessage: string;
|
|
31124
|
+
} | undefined;
|
|
31125
|
+
} | undefined;
|
|
31126
|
+
middlename?: {
|
|
31127
|
+
required: boolean;
|
|
31128
|
+
label?: {
|
|
31129
|
+
id: string;
|
|
31130
|
+
description: string;
|
|
31131
|
+
defaultMessage: string;
|
|
31132
|
+
} | undefined;
|
|
31133
|
+
} | undefined;
|
|
31134
|
+
}>>>;
|
|
31135
|
+
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
|
30244
31136
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
30245
31137
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
30246
31138
|
id: string;
|
|
@@ -30252,15 +31144,53 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
30252
31144
|
description: string;
|
|
30253
31145
|
defaultMessage: string;
|
|
30254
31146
|
}>>;
|
|
30255
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
30256
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
|
30257
31147
|
}, "strip", z.ZodTypeAny, {
|
|
31148
|
+
name?: {
|
|
31149
|
+
firstname?: {
|
|
31150
|
+
required: boolean;
|
|
31151
|
+
label?: TranslationConfig | undefined;
|
|
31152
|
+
} | undefined;
|
|
31153
|
+
surname?: {
|
|
31154
|
+
required: boolean;
|
|
31155
|
+
label?: TranslationConfig | undefined;
|
|
31156
|
+
} | undefined;
|
|
31157
|
+
middlename?: {
|
|
31158
|
+
required: boolean;
|
|
31159
|
+
label?: TranslationConfig | undefined;
|
|
31160
|
+
} | undefined;
|
|
31161
|
+
} | undefined;
|
|
31162
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
30258
31163
|
maxLength?: number | undefined;
|
|
30259
31164
|
prefix?: TranslationConfig | undefined;
|
|
30260
31165
|
postfix?: TranslationConfig | undefined;
|
|
30261
|
-
includeMiddlename?: boolean | undefined;
|
|
30262
|
-
searchMode?: boolean | undefined;
|
|
30263
31166
|
}, {
|
|
31167
|
+
name?: {
|
|
31168
|
+
firstname?: {
|
|
31169
|
+
required: boolean;
|
|
31170
|
+
label?: {
|
|
31171
|
+
id: string;
|
|
31172
|
+
description: string;
|
|
31173
|
+
defaultMessage: string;
|
|
31174
|
+
} | undefined;
|
|
31175
|
+
} | undefined;
|
|
31176
|
+
surname?: {
|
|
31177
|
+
required: boolean;
|
|
31178
|
+
label?: {
|
|
31179
|
+
id: string;
|
|
31180
|
+
description: string;
|
|
31181
|
+
defaultMessage: string;
|
|
31182
|
+
} | undefined;
|
|
31183
|
+
} | undefined;
|
|
31184
|
+
middlename?: {
|
|
31185
|
+
required: boolean;
|
|
31186
|
+
label?: {
|
|
31187
|
+
id: string;
|
|
31188
|
+
description: string;
|
|
31189
|
+
defaultMessage: string;
|
|
31190
|
+
} | undefined;
|
|
31191
|
+
} | undefined;
|
|
31192
|
+
} | undefined;
|
|
31193
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
30264
31194
|
maxLength?: number | undefined;
|
|
30265
31195
|
prefix?: {
|
|
30266
31196
|
id: string;
|
|
@@ -30272,9 +31202,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
30272
31202
|
description: string;
|
|
30273
31203
|
defaultMessage: string;
|
|
30274
31204
|
} | undefined;
|
|
30275
|
-
|
|
30276
|
-
searchMode?: boolean | undefined;
|
|
30277
|
-
}>>;
|
|
31205
|
+
}>>>;
|
|
30278
31206
|
}>, "strip", z.ZodTypeAny, {
|
|
30279
31207
|
type: "NAME";
|
|
30280
31208
|
id: string;
|
|
@@ -30303,15 +31231,29 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
30303
31231
|
hideLabel?: boolean | undefined;
|
|
30304
31232
|
uncorrectable?: boolean | undefined;
|
|
30305
31233
|
defaultValue?: {
|
|
30306
|
-
firstname
|
|
30307
|
-
surname
|
|
30308
|
-
|
|
30309
|
-
|
|
31234
|
+
firstname?: string | undefined;
|
|
31235
|
+
surname?: string | undefined;
|
|
31236
|
+
middlename?: string | undefined;
|
|
31237
|
+
} | undefined;
|
|
31238
|
+
configuration?: {
|
|
31239
|
+
name?: {
|
|
31240
|
+
firstname?: {
|
|
31241
|
+
required: boolean;
|
|
31242
|
+
label?: TranslationConfig | undefined;
|
|
31243
|
+
} | undefined;
|
|
31244
|
+
surname?: {
|
|
31245
|
+
required: boolean;
|
|
31246
|
+
label?: TranslationConfig | undefined;
|
|
31247
|
+
} | undefined;
|
|
31248
|
+
middlename?: {
|
|
31249
|
+
required: boolean;
|
|
31250
|
+
label?: TranslationConfig | undefined;
|
|
31251
|
+
} | undefined;
|
|
31252
|
+
} | undefined;
|
|
31253
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
30310
31254
|
maxLength?: number | undefined;
|
|
30311
31255
|
prefix?: TranslationConfig | undefined;
|
|
30312
31256
|
postfix?: TranslationConfig | undefined;
|
|
30313
|
-
includeMiddlename?: boolean | undefined;
|
|
30314
|
-
searchMode?: boolean | undefined;
|
|
30315
31257
|
} | undefined;
|
|
30316
31258
|
}, {
|
|
30317
31259
|
type: "NAME";
|
|
@@ -30357,10 +31299,38 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
30357
31299
|
hideLabel?: boolean | undefined;
|
|
30358
31300
|
uncorrectable?: boolean | undefined;
|
|
30359
31301
|
defaultValue?: {
|
|
30360
|
-
firstname
|
|
30361
|
-
surname
|
|
30362
|
-
|
|
30363
|
-
|
|
31302
|
+
firstname?: string | undefined;
|
|
31303
|
+
surname?: string | undefined;
|
|
31304
|
+
middlename?: string | undefined;
|
|
31305
|
+
} | undefined;
|
|
31306
|
+
configuration?: {
|
|
31307
|
+
name?: {
|
|
31308
|
+
firstname?: {
|
|
31309
|
+
required: boolean;
|
|
31310
|
+
label?: {
|
|
31311
|
+
id: string;
|
|
31312
|
+
description: string;
|
|
31313
|
+
defaultMessage: string;
|
|
31314
|
+
} | undefined;
|
|
31315
|
+
} | undefined;
|
|
31316
|
+
surname?: {
|
|
31317
|
+
required: boolean;
|
|
31318
|
+
label?: {
|
|
31319
|
+
id: string;
|
|
31320
|
+
description: string;
|
|
31321
|
+
defaultMessage: string;
|
|
31322
|
+
} | undefined;
|
|
31323
|
+
} | undefined;
|
|
31324
|
+
middlename?: {
|
|
31325
|
+
required: boolean;
|
|
31326
|
+
label?: {
|
|
31327
|
+
id: string;
|
|
31328
|
+
description: string;
|
|
31329
|
+
defaultMessage: string;
|
|
31330
|
+
} | undefined;
|
|
31331
|
+
} | undefined;
|
|
31332
|
+
} | undefined;
|
|
31333
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
30364
31334
|
maxLength?: number | undefined;
|
|
30365
31335
|
prefix?: {
|
|
30366
31336
|
id: string;
|
|
@@ -30372,8 +31342,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
30372
31342
|
description: string;
|
|
30373
31343
|
defaultMessage: string;
|
|
30374
31344
|
} | undefined;
|
|
30375
|
-
includeMiddlename?: boolean | undefined;
|
|
30376
|
-
searchMode?: boolean | undefined;
|
|
30377
31345
|
} | undefined;
|
|
30378
31346
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
30379
31347
|
id: z.ZodString;
|
|
@@ -32971,15 +33939,29 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
32971
33939
|
hideLabel?: boolean | undefined;
|
|
32972
33940
|
uncorrectable?: boolean | undefined;
|
|
32973
33941
|
defaultValue?: {
|
|
32974
|
-
firstname
|
|
32975
|
-
surname
|
|
32976
|
-
|
|
32977
|
-
|
|
33942
|
+
firstname?: string | undefined;
|
|
33943
|
+
surname?: string | undefined;
|
|
33944
|
+
middlename?: string | undefined;
|
|
33945
|
+
} | undefined;
|
|
33946
|
+
configuration?: {
|
|
33947
|
+
name?: {
|
|
33948
|
+
firstname?: {
|
|
33949
|
+
required: boolean;
|
|
33950
|
+
label?: TranslationConfig | undefined;
|
|
33951
|
+
} | undefined;
|
|
33952
|
+
surname?: {
|
|
33953
|
+
required: boolean;
|
|
33954
|
+
label?: TranslationConfig | undefined;
|
|
33955
|
+
} | undefined;
|
|
33956
|
+
middlename?: {
|
|
33957
|
+
required: boolean;
|
|
33958
|
+
label?: TranslationConfig | undefined;
|
|
33959
|
+
} | undefined;
|
|
33960
|
+
} | undefined;
|
|
33961
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
32978
33962
|
maxLength?: number | undefined;
|
|
32979
33963
|
prefix?: TranslationConfig | undefined;
|
|
32980
33964
|
postfix?: TranslationConfig | undefined;
|
|
32981
|
-
includeMiddlename?: boolean | undefined;
|
|
32982
|
-
searchMode?: boolean | undefined;
|
|
32983
33965
|
} | undefined;
|
|
32984
33966
|
} | {
|
|
32985
33967
|
type: "PHONE";
|
|
@@ -33312,7 +34294,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
33312
34294
|
postcodeOrZip?: string | undefined;
|
|
33313
34295
|
} | undefined;
|
|
33314
34296
|
configuration?: {
|
|
33315
|
-
|
|
34297
|
+
lineSeparator?: string | undefined;
|
|
34298
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
33316
34299
|
} | undefined;
|
|
33317
34300
|
} | {
|
|
33318
34301
|
type: "DATA";
|
|
@@ -34246,10 +35229,38 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
34246
35229
|
hideLabel?: boolean | undefined;
|
|
34247
35230
|
uncorrectable?: boolean | undefined;
|
|
34248
35231
|
defaultValue?: {
|
|
34249
|
-
firstname
|
|
34250
|
-
surname
|
|
34251
|
-
|
|
34252
|
-
|
|
35232
|
+
firstname?: string | undefined;
|
|
35233
|
+
surname?: string | undefined;
|
|
35234
|
+
middlename?: string | undefined;
|
|
35235
|
+
} | undefined;
|
|
35236
|
+
configuration?: {
|
|
35237
|
+
name?: {
|
|
35238
|
+
firstname?: {
|
|
35239
|
+
required: boolean;
|
|
35240
|
+
label?: {
|
|
35241
|
+
id: string;
|
|
35242
|
+
description: string;
|
|
35243
|
+
defaultMessage: string;
|
|
35244
|
+
} | undefined;
|
|
35245
|
+
} | undefined;
|
|
35246
|
+
surname?: {
|
|
35247
|
+
required: boolean;
|
|
35248
|
+
label?: {
|
|
35249
|
+
id: string;
|
|
35250
|
+
description: string;
|
|
35251
|
+
defaultMessage: string;
|
|
35252
|
+
} | undefined;
|
|
35253
|
+
} | undefined;
|
|
35254
|
+
middlename?: {
|
|
35255
|
+
required: boolean;
|
|
35256
|
+
label?: {
|
|
35257
|
+
id: string;
|
|
35258
|
+
description: string;
|
|
35259
|
+
defaultMessage: string;
|
|
35260
|
+
} | undefined;
|
|
35261
|
+
} | undefined;
|
|
35262
|
+
} | undefined;
|
|
35263
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
34253
35264
|
maxLength?: number | undefined;
|
|
34254
35265
|
prefix?: {
|
|
34255
35266
|
id: string;
|
|
@@ -34261,8 +35272,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
34261
35272
|
description: string;
|
|
34262
35273
|
defaultMessage: string;
|
|
34263
35274
|
} | undefined;
|
|
34264
|
-
includeMiddlename?: boolean | undefined;
|
|
34265
|
-
searchMode?: boolean | undefined;
|
|
34266
35275
|
} | undefined;
|
|
34267
35276
|
} | {
|
|
34268
35277
|
type: "PHONE";
|
|
@@ -34759,7 +35768,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
34759
35768
|
postcodeOrZip?: string | undefined;
|
|
34760
35769
|
} | undefined;
|
|
34761
35770
|
configuration?: {
|
|
34762
|
-
|
|
35771
|
+
lineSeparator?: string | undefined;
|
|
35772
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
34763
35773
|
} | undefined;
|
|
34764
35774
|
} | {
|
|
34765
35775
|
type: "DATA";
|
|
@@ -35390,15 +36400,29 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
35390
36400
|
hideLabel?: boolean | undefined;
|
|
35391
36401
|
uncorrectable?: boolean | undefined;
|
|
35392
36402
|
defaultValue?: {
|
|
35393
|
-
firstname
|
|
35394
|
-
surname
|
|
35395
|
-
|
|
35396
|
-
|
|
36403
|
+
firstname?: string | undefined;
|
|
36404
|
+
surname?: string | undefined;
|
|
36405
|
+
middlename?: string | undefined;
|
|
36406
|
+
} | undefined;
|
|
36407
|
+
configuration?: {
|
|
36408
|
+
name?: {
|
|
36409
|
+
firstname?: {
|
|
36410
|
+
required: boolean;
|
|
36411
|
+
label?: TranslationConfig | undefined;
|
|
36412
|
+
} | undefined;
|
|
36413
|
+
surname?: {
|
|
36414
|
+
required: boolean;
|
|
36415
|
+
label?: TranslationConfig | undefined;
|
|
36416
|
+
} | undefined;
|
|
36417
|
+
middlename?: {
|
|
36418
|
+
required: boolean;
|
|
36419
|
+
label?: TranslationConfig | undefined;
|
|
36420
|
+
} | undefined;
|
|
36421
|
+
} | undefined;
|
|
36422
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
35397
36423
|
maxLength?: number | undefined;
|
|
35398
36424
|
prefix?: TranslationConfig | undefined;
|
|
35399
36425
|
postfix?: TranslationConfig | undefined;
|
|
35400
|
-
includeMiddlename?: boolean | undefined;
|
|
35401
|
-
searchMode?: boolean | undefined;
|
|
35402
36426
|
} | undefined;
|
|
35403
36427
|
} | {
|
|
35404
36428
|
type: "PHONE";
|
|
@@ -35731,7 +36755,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
35731
36755
|
postcodeOrZip?: string | undefined;
|
|
35732
36756
|
} | undefined;
|
|
35733
36757
|
configuration?: {
|
|
35734
|
-
|
|
36758
|
+
lineSeparator?: string | undefined;
|
|
36759
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
35735
36760
|
} | undefined;
|
|
35736
36761
|
} | {
|
|
35737
36762
|
type: "DATA";
|
|
@@ -36672,10 +37697,38 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
36672
37697
|
hideLabel?: boolean | undefined;
|
|
36673
37698
|
uncorrectable?: boolean | undefined;
|
|
36674
37699
|
defaultValue?: {
|
|
36675
|
-
firstname
|
|
36676
|
-
surname
|
|
36677
|
-
|
|
36678
|
-
|
|
37700
|
+
firstname?: string | undefined;
|
|
37701
|
+
surname?: string | undefined;
|
|
37702
|
+
middlename?: string | undefined;
|
|
37703
|
+
} | undefined;
|
|
37704
|
+
configuration?: {
|
|
37705
|
+
name?: {
|
|
37706
|
+
firstname?: {
|
|
37707
|
+
required: boolean;
|
|
37708
|
+
label?: {
|
|
37709
|
+
id: string;
|
|
37710
|
+
description: string;
|
|
37711
|
+
defaultMessage: string;
|
|
37712
|
+
} | undefined;
|
|
37713
|
+
} | undefined;
|
|
37714
|
+
surname?: {
|
|
37715
|
+
required: boolean;
|
|
37716
|
+
label?: {
|
|
37717
|
+
id: string;
|
|
37718
|
+
description: string;
|
|
37719
|
+
defaultMessage: string;
|
|
37720
|
+
} | undefined;
|
|
37721
|
+
} | undefined;
|
|
37722
|
+
middlename?: {
|
|
37723
|
+
required: boolean;
|
|
37724
|
+
label?: {
|
|
37725
|
+
id: string;
|
|
37726
|
+
description: string;
|
|
37727
|
+
defaultMessage: string;
|
|
37728
|
+
} | undefined;
|
|
37729
|
+
} | undefined;
|
|
37730
|
+
} | undefined;
|
|
37731
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
36679
37732
|
maxLength?: number | undefined;
|
|
36680
37733
|
prefix?: {
|
|
36681
37734
|
id: string;
|
|
@@ -36687,8 +37740,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
36687
37740
|
description: string;
|
|
36688
37741
|
defaultMessage: string;
|
|
36689
37742
|
} | undefined;
|
|
36690
|
-
includeMiddlename?: boolean | undefined;
|
|
36691
|
-
searchMode?: boolean | undefined;
|
|
36692
37743
|
} | undefined;
|
|
36693
37744
|
} | {
|
|
36694
37745
|
type: "PHONE";
|
|
@@ -37185,7 +38236,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
37185
38236
|
postcodeOrZip?: string | undefined;
|
|
37186
38237
|
} | undefined;
|
|
37187
38238
|
configuration?: {
|
|
37188
|
-
|
|
38239
|
+
lineSeparator?: string | undefined;
|
|
38240
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
37189
38241
|
} | undefined;
|
|
37190
38242
|
} | {
|
|
37191
38243
|
type: "DATA";
|
|
@@ -37317,6 +38369,16 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
37317
38369
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
37318
38370
|
}, {
|
|
37319
38371
|
type: z.ZodLiteral<"ADDRESS">;
|
|
38372
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
|
38373
|
+
lineSeparator: z.ZodOptional<z.ZodString>;
|
|
38374
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodEnum<["number", "country", "province", "addressType", "district", "urbanOrRural", "town", "residentialArea", "street", "zipCode", "village", "state", "district2", "cityOrTown", "addressLine1", "addressLine2", "addressLine3", "postcodeOrZip"]>, "many">>;
|
|
38375
|
+
}, "strip", z.ZodTypeAny, {
|
|
38376
|
+
lineSeparator?: string | undefined;
|
|
38377
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
38378
|
+
}, {
|
|
38379
|
+
lineSeparator?: string | undefined;
|
|
38380
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
38381
|
+
}>>;
|
|
37320
38382
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
|
37321
38383
|
country: z.ZodString;
|
|
37322
38384
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
|
@@ -37404,13 +38466,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
37404
38466
|
addressLine3?: string | undefined;
|
|
37405
38467
|
postcodeOrZip?: string | undefined;
|
|
37406
38468
|
}>]>>;
|
|
37407
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
|
37408
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
|
37409
|
-
}, "strip", z.ZodTypeAny, {
|
|
37410
|
-
searchMode?: boolean | undefined;
|
|
37411
|
-
}, {
|
|
37412
|
-
searchMode?: boolean | undefined;
|
|
37413
|
-
}>>;
|
|
37414
38469
|
}>, "strip", z.ZodTypeAny, {
|
|
37415
38470
|
type: "ADDRESS";
|
|
37416
38471
|
id: string;
|
|
@@ -37468,7 +38523,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
37468
38523
|
postcodeOrZip?: string | undefined;
|
|
37469
38524
|
} | undefined;
|
|
37470
38525
|
configuration?: {
|
|
37471
|
-
|
|
38526
|
+
lineSeparator?: string | undefined;
|
|
38527
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
37472
38528
|
} | undefined;
|
|
37473
38529
|
}, {
|
|
37474
38530
|
type: "ADDRESS";
|
|
@@ -37543,7 +38599,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
37543
38599
|
postcodeOrZip?: string | undefined;
|
|
37544
38600
|
} | undefined;
|
|
37545
38601
|
configuration?: {
|
|
37546
|
-
|
|
38602
|
+
lineSeparator?: string | undefined;
|
|
38603
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
37547
38604
|
} | undefined;
|
|
37548
38605
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
37549
38606
|
id: z.ZodString;
|
|
@@ -39499,16 +40556,114 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
39499
40556
|
}, {
|
|
39500
40557
|
type: z.ZodLiteral<"NAME">;
|
|
39501
40558
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
|
39502
|
-
firstname: z.ZodString
|
|
39503
|
-
|
|
40559
|
+
firstname: z.ZodOptional<z.ZodString>;
|
|
40560
|
+
middlename: z.ZodOptional<z.ZodString>;
|
|
40561
|
+
surname: z.ZodOptional<z.ZodString>;
|
|
39504
40562
|
}, "strip", z.ZodTypeAny, {
|
|
39505
|
-
firstname
|
|
39506
|
-
surname
|
|
40563
|
+
firstname?: string | undefined;
|
|
40564
|
+
surname?: string | undefined;
|
|
40565
|
+
middlename?: string | undefined;
|
|
39507
40566
|
}, {
|
|
39508
|
-
firstname
|
|
39509
|
-
surname
|
|
40567
|
+
firstname?: string | undefined;
|
|
40568
|
+
surname?: string | undefined;
|
|
40569
|
+
middlename?: string | undefined;
|
|
39510
40570
|
}>>;
|
|
39511
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
|
40571
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
40572
|
+
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
40573
|
+
firstname: z.ZodOptional<z.ZodObject<{
|
|
40574
|
+
required: z.ZodBoolean;
|
|
40575
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
40576
|
+
id: string;
|
|
40577
|
+
description: string;
|
|
40578
|
+
defaultMessage: string;
|
|
40579
|
+
}>>;
|
|
40580
|
+
}, "strip", z.ZodTypeAny, {
|
|
40581
|
+
required: boolean;
|
|
40582
|
+
label?: TranslationConfig | undefined;
|
|
40583
|
+
}, {
|
|
40584
|
+
required: boolean;
|
|
40585
|
+
label?: {
|
|
40586
|
+
id: string;
|
|
40587
|
+
description: string;
|
|
40588
|
+
defaultMessage: string;
|
|
40589
|
+
} | undefined;
|
|
40590
|
+
}>>;
|
|
40591
|
+
middlename: z.ZodOptional<z.ZodObject<{
|
|
40592
|
+
required: z.ZodBoolean;
|
|
40593
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
40594
|
+
id: string;
|
|
40595
|
+
description: string;
|
|
40596
|
+
defaultMessage: string;
|
|
40597
|
+
}>>;
|
|
40598
|
+
}, "strip", z.ZodTypeAny, {
|
|
40599
|
+
required: boolean;
|
|
40600
|
+
label?: TranslationConfig | undefined;
|
|
40601
|
+
}, {
|
|
40602
|
+
required: boolean;
|
|
40603
|
+
label?: {
|
|
40604
|
+
id: string;
|
|
40605
|
+
description: string;
|
|
40606
|
+
defaultMessage: string;
|
|
40607
|
+
} | undefined;
|
|
40608
|
+
}>>;
|
|
40609
|
+
surname: z.ZodOptional<z.ZodObject<{
|
|
40610
|
+
required: z.ZodBoolean;
|
|
40611
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
40612
|
+
id: string;
|
|
40613
|
+
description: string;
|
|
40614
|
+
defaultMessage: string;
|
|
40615
|
+
}>>;
|
|
40616
|
+
}, "strip", z.ZodTypeAny, {
|
|
40617
|
+
required: boolean;
|
|
40618
|
+
label?: TranslationConfig | undefined;
|
|
40619
|
+
}, {
|
|
40620
|
+
required: boolean;
|
|
40621
|
+
label?: {
|
|
40622
|
+
id: string;
|
|
40623
|
+
description: string;
|
|
40624
|
+
defaultMessage: string;
|
|
40625
|
+
} | undefined;
|
|
40626
|
+
}>>;
|
|
40627
|
+
}, "strip", z.ZodTypeAny, {
|
|
40628
|
+
firstname?: {
|
|
40629
|
+
required: boolean;
|
|
40630
|
+
label?: TranslationConfig | undefined;
|
|
40631
|
+
} | undefined;
|
|
40632
|
+
surname?: {
|
|
40633
|
+
required: boolean;
|
|
40634
|
+
label?: TranslationConfig | undefined;
|
|
40635
|
+
} | undefined;
|
|
40636
|
+
middlename?: {
|
|
40637
|
+
required: boolean;
|
|
40638
|
+
label?: TranslationConfig | undefined;
|
|
40639
|
+
} | undefined;
|
|
40640
|
+
}, {
|
|
40641
|
+
firstname?: {
|
|
40642
|
+
required: boolean;
|
|
40643
|
+
label?: {
|
|
40644
|
+
id: string;
|
|
40645
|
+
description: string;
|
|
40646
|
+
defaultMessage: string;
|
|
40647
|
+
} | undefined;
|
|
40648
|
+
} | undefined;
|
|
40649
|
+
surname?: {
|
|
40650
|
+
required: boolean;
|
|
40651
|
+
label?: {
|
|
40652
|
+
id: string;
|
|
40653
|
+
description: string;
|
|
40654
|
+
defaultMessage: string;
|
|
40655
|
+
} | undefined;
|
|
40656
|
+
} | undefined;
|
|
40657
|
+
middlename?: {
|
|
40658
|
+
required: boolean;
|
|
40659
|
+
label?: {
|
|
40660
|
+
id: string;
|
|
40661
|
+
description: string;
|
|
40662
|
+
defaultMessage: string;
|
|
40663
|
+
} | undefined;
|
|
40664
|
+
} | undefined;
|
|
40665
|
+
}>>>;
|
|
40666
|
+
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
|
39512
40667
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
39513
40668
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
39514
40669
|
id: string;
|
|
@@ -39520,15 +40675,53 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
39520
40675
|
description: string;
|
|
39521
40676
|
defaultMessage: string;
|
|
39522
40677
|
}>>;
|
|
39523
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
39524
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
|
39525
40678
|
}, "strip", z.ZodTypeAny, {
|
|
40679
|
+
name?: {
|
|
40680
|
+
firstname?: {
|
|
40681
|
+
required: boolean;
|
|
40682
|
+
label?: TranslationConfig | undefined;
|
|
40683
|
+
} | undefined;
|
|
40684
|
+
surname?: {
|
|
40685
|
+
required: boolean;
|
|
40686
|
+
label?: TranslationConfig | undefined;
|
|
40687
|
+
} | undefined;
|
|
40688
|
+
middlename?: {
|
|
40689
|
+
required: boolean;
|
|
40690
|
+
label?: TranslationConfig | undefined;
|
|
40691
|
+
} | undefined;
|
|
40692
|
+
} | undefined;
|
|
40693
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
39526
40694
|
maxLength?: number | undefined;
|
|
39527
40695
|
prefix?: TranslationConfig | undefined;
|
|
39528
40696
|
postfix?: TranslationConfig | undefined;
|
|
39529
|
-
includeMiddlename?: boolean | undefined;
|
|
39530
|
-
searchMode?: boolean | undefined;
|
|
39531
40697
|
}, {
|
|
40698
|
+
name?: {
|
|
40699
|
+
firstname?: {
|
|
40700
|
+
required: boolean;
|
|
40701
|
+
label?: {
|
|
40702
|
+
id: string;
|
|
40703
|
+
description: string;
|
|
40704
|
+
defaultMessage: string;
|
|
40705
|
+
} | undefined;
|
|
40706
|
+
} | undefined;
|
|
40707
|
+
surname?: {
|
|
40708
|
+
required: boolean;
|
|
40709
|
+
label?: {
|
|
40710
|
+
id: string;
|
|
40711
|
+
description: string;
|
|
40712
|
+
defaultMessage: string;
|
|
40713
|
+
} | undefined;
|
|
40714
|
+
} | undefined;
|
|
40715
|
+
middlename?: {
|
|
40716
|
+
required: boolean;
|
|
40717
|
+
label?: {
|
|
40718
|
+
id: string;
|
|
40719
|
+
description: string;
|
|
40720
|
+
defaultMessage: string;
|
|
40721
|
+
} | undefined;
|
|
40722
|
+
} | undefined;
|
|
40723
|
+
} | undefined;
|
|
40724
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
39532
40725
|
maxLength?: number | undefined;
|
|
39533
40726
|
prefix?: {
|
|
39534
40727
|
id: string;
|
|
@@ -39540,9 +40733,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
39540
40733
|
description: string;
|
|
39541
40734
|
defaultMessage: string;
|
|
39542
40735
|
} | undefined;
|
|
39543
|
-
|
|
39544
|
-
searchMode?: boolean | undefined;
|
|
39545
|
-
}>>;
|
|
40736
|
+
}>>>;
|
|
39546
40737
|
}>, "strip", z.ZodTypeAny, {
|
|
39547
40738
|
type: "NAME";
|
|
39548
40739
|
id: string;
|
|
@@ -39571,15 +40762,29 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
39571
40762
|
hideLabel?: boolean | undefined;
|
|
39572
40763
|
uncorrectable?: boolean | undefined;
|
|
39573
40764
|
defaultValue?: {
|
|
39574
|
-
firstname
|
|
39575
|
-
surname
|
|
39576
|
-
|
|
39577
|
-
|
|
40765
|
+
firstname?: string | undefined;
|
|
40766
|
+
surname?: string | undefined;
|
|
40767
|
+
middlename?: string | undefined;
|
|
40768
|
+
} | undefined;
|
|
40769
|
+
configuration?: {
|
|
40770
|
+
name?: {
|
|
40771
|
+
firstname?: {
|
|
40772
|
+
required: boolean;
|
|
40773
|
+
label?: TranslationConfig | undefined;
|
|
40774
|
+
} | undefined;
|
|
40775
|
+
surname?: {
|
|
40776
|
+
required: boolean;
|
|
40777
|
+
label?: TranslationConfig | undefined;
|
|
40778
|
+
} | undefined;
|
|
40779
|
+
middlename?: {
|
|
40780
|
+
required: boolean;
|
|
40781
|
+
label?: TranslationConfig | undefined;
|
|
40782
|
+
} | undefined;
|
|
40783
|
+
} | undefined;
|
|
40784
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
39578
40785
|
maxLength?: number | undefined;
|
|
39579
40786
|
prefix?: TranslationConfig | undefined;
|
|
39580
40787
|
postfix?: TranslationConfig | undefined;
|
|
39581
|
-
includeMiddlename?: boolean | undefined;
|
|
39582
|
-
searchMode?: boolean | undefined;
|
|
39583
40788
|
} | undefined;
|
|
39584
40789
|
}, {
|
|
39585
40790
|
type: "NAME";
|
|
@@ -39625,10 +40830,38 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
39625
40830
|
hideLabel?: boolean | undefined;
|
|
39626
40831
|
uncorrectable?: boolean | undefined;
|
|
39627
40832
|
defaultValue?: {
|
|
39628
|
-
firstname
|
|
39629
|
-
surname
|
|
39630
|
-
|
|
39631
|
-
|
|
40833
|
+
firstname?: string | undefined;
|
|
40834
|
+
surname?: string | undefined;
|
|
40835
|
+
middlename?: string | undefined;
|
|
40836
|
+
} | undefined;
|
|
40837
|
+
configuration?: {
|
|
40838
|
+
name?: {
|
|
40839
|
+
firstname?: {
|
|
40840
|
+
required: boolean;
|
|
40841
|
+
label?: {
|
|
40842
|
+
id: string;
|
|
40843
|
+
description: string;
|
|
40844
|
+
defaultMessage: string;
|
|
40845
|
+
} | undefined;
|
|
40846
|
+
} | undefined;
|
|
40847
|
+
surname?: {
|
|
40848
|
+
required: boolean;
|
|
40849
|
+
label?: {
|
|
40850
|
+
id: string;
|
|
40851
|
+
description: string;
|
|
40852
|
+
defaultMessage: string;
|
|
40853
|
+
} | undefined;
|
|
40854
|
+
} | undefined;
|
|
40855
|
+
middlename?: {
|
|
40856
|
+
required: boolean;
|
|
40857
|
+
label?: {
|
|
40858
|
+
id: string;
|
|
40859
|
+
description: string;
|
|
40860
|
+
defaultMessage: string;
|
|
40861
|
+
} | undefined;
|
|
40862
|
+
} | undefined;
|
|
40863
|
+
} | undefined;
|
|
40864
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
39632
40865
|
maxLength?: number | undefined;
|
|
39633
40866
|
prefix?: {
|
|
39634
40867
|
id: string;
|
|
@@ -39640,8 +40873,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
39640
40873
|
description: string;
|
|
39641
40874
|
defaultMessage: string;
|
|
39642
40875
|
} | undefined;
|
|
39643
|
-
includeMiddlename?: boolean | undefined;
|
|
39644
|
-
searchMode?: boolean | undefined;
|
|
39645
40876
|
} | undefined;
|
|
39646
40877
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
39647
40878
|
id: z.ZodString;
|
|
@@ -42239,15 +43470,29 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
42239
43470
|
hideLabel?: boolean | undefined;
|
|
42240
43471
|
uncorrectable?: boolean | undefined;
|
|
42241
43472
|
defaultValue?: {
|
|
42242
|
-
firstname
|
|
42243
|
-
surname
|
|
42244
|
-
|
|
42245
|
-
|
|
43473
|
+
firstname?: string | undefined;
|
|
43474
|
+
surname?: string | undefined;
|
|
43475
|
+
middlename?: string | undefined;
|
|
43476
|
+
} | undefined;
|
|
43477
|
+
configuration?: {
|
|
43478
|
+
name?: {
|
|
43479
|
+
firstname?: {
|
|
43480
|
+
required: boolean;
|
|
43481
|
+
label?: TranslationConfig | undefined;
|
|
43482
|
+
} | undefined;
|
|
43483
|
+
surname?: {
|
|
43484
|
+
required: boolean;
|
|
43485
|
+
label?: TranslationConfig | undefined;
|
|
43486
|
+
} | undefined;
|
|
43487
|
+
middlename?: {
|
|
43488
|
+
required: boolean;
|
|
43489
|
+
label?: TranslationConfig | undefined;
|
|
43490
|
+
} | undefined;
|
|
43491
|
+
} | undefined;
|
|
43492
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
42246
43493
|
maxLength?: number | undefined;
|
|
42247
43494
|
prefix?: TranslationConfig | undefined;
|
|
42248
43495
|
postfix?: TranslationConfig | undefined;
|
|
42249
|
-
includeMiddlename?: boolean | undefined;
|
|
42250
|
-
searchMode?: boolean | undefined;
|
|
42251
43496
|
} | undefined;
|
|
42252
43497
|
} | {
|
|
42253
43498
|
type: "PHONE";
|
|
@@ -42580,7 +43825,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
42580
43825
|
postcodeOrZip?: string | undefined;
|
|
42581
43826
|
} | undefined;
|
|
42582
43827
|
configuration?: {
|
|
42583
|
-
|
|
43828
|
+
lineSeparator?: string | undefined;
|
|
43829
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
42584
43830
|
} | undefined;
|
|
42585
43831
|
} | {
|
|
42586
43832
|
type: "DATA";
|
|
@@ -43514,10 +44760,38 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
43514
44760
|
hideLabel?: boolean | undefined;
|
|
43515
44761
|
uncorrectable?: boolean | undefined;
|
|
43516
44762
|
defaultValue?: {
|
|
43517
|
-
firstname
|
|
43518
|
-
surname
|
|
43519
|
-
|
|
43520
|
-
|
|
44763
|
+
firstname?: string | undefined;
|
|
44764
|
+
surname?: string | undefined;
|
|
44765
|
+
middlename?: string | undefined;
|
|
44766
|
+
} | undefined;
|
|
44767
|
+
configuration?: {
|
|
44768
|
+
name?: {
|
|
44769
|
+
firstname?: {
|
|
44770
|
+
required: boolean;
|
|
44771
|
+
label?: {
|
|
44772
|
+
id: string;
|
|
44773
|
+
description: string;
|
|
44774
|
+
defaultMessage: string;
|
|
44775
|
+
} | undefined;
|
|
44776
|
+
} | undefined;
|
|
44777
|
+
surname?: {
|
|
44778
|
+
required: boolean;
|
|
44779
|
+
label?: {
|
|
44780
|
+
id: string;
|
|
44781
|
+
description: string;
|
|
44782
|
+
defaultMessage: string;
|
|
44783
|
+
} | undefined;
|
|
44784
|
+
} | undefined;
|
|
44785
|
+
middlename?: {
|
|
44786
|
+
required: boolean;
|
|
44787
|
+
label?: {
|
|
44788
|
+
id: string;
|
|
44789
|
+
description: string;
|
|
44790
|
+
defaultMessage: string;
|
|
44791
|
+
} | undefined;
|
|
44792
|
+
} | undefined;
|
|
44793
|
+
} | undefined;
|
|
44794
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
43521
44795
|
maxLength?: number | undefined;
|
|
43522
44796
|
prefix?: {
|
|
43523
44797
|
id: string;
|
|
@@ -43529,8 +44803,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
43529
44803
|
description: string;
|
|
43530
44804
|
defaultMessage: string;
|
|
43531
44805
|
} | undefined;
|
|
43532
|
-
includeMiddlename?: boolean | undefined;
|
|
43533
|
-
searchMode?: boolean | undefined;
|
|
43534
44806
|
} | undefined;
|
|
43535
44807
|
} | {
|
|
43536
44808
|
type: "PHONE";
|
|
@@ -44027,7 +45299,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
44027
45299
|
postcodeOrZip?: string | undefined;
|
|
44028
45300
|
} | undefined;
|
|
44029
45301
|
configuration?: {
|
|
44030
|
-
|
|
45302
|
+
lineSeparator?: string | undefined;
|
|
45303
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
44031
45304
|
} | undefined;
|
|
44032
45305
|
} | {
|
|
44033
45306
|
type: "DATA";
|
|
@@ -44152,6 +45425,16 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
44152
45425
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
44153
45426
|
}, {
|
|
44154
45427
|
type: z.ZodLiteral<"ADDRESS">;
|
|
45428
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
|
45429
|
+
lineSeparator: z.ZodOptional<z.ZodString>;
|
|
45430
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodEnum<["number", "country", "province", "addressType", "district", "urbanOrRural", "town", "residentialArea", "street", "zipCode", "village", "state", "district2", "cityOrTown", "addressLine1", "addressLine2", "addressLine3", "postcodeOrZip"]>, "many">>;
|
|
45431
|
+
}, "strip", z.ZodTypeAny, {
|
|
45432
|
+
lineSeparator?: string | undefined;
|
|
45433
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
45434
|
+
}, {
|
|
45435
|
+
lineSeparator?: string | undefined;
|
|
45436
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
45437
|
+
}>>;
|
|
44155
45438
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
|
44156
45439
|
country: z.ZodString;
|
|
44157
45440
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
|
@@ -44239,13 +45522,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
44239
45522
|
addressLine3?: string | undefined;
|
|
44240
45523
|
postcodeOrZip?: string | undefined;
|
|
44241
45524
|
}>]>>;
|
|
44242
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
|
44243
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
|
44244
|
-
}, "strip", z.ZodTypeAny, {
|
|
44245
|
-
searchMode?: boolean | undefined;
|
|
44246
|
-
}, {
|
|
44247
|
-
searchMode?: boolean | undefined;
|
|
44248
|
-
}>>;
|
|
44249
45525
|
}>, "strip", z.ZodTypeAny, {
|
|
44250
45526
|
type: "ADDRESS";
|
|
44251
45527
|
id: string;
|
|
@@ -44303,7 +45579,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
44303
45579
|
postcodeOrZip?: string | undefined;
|
|
44304
45580
|
} | undefined;
|
|
44305
45581
|
configuration?: {
|
|
44306
|
-
|
|
45582
|
+
lineSeparator?: string | undefined;
|
|
45583
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
44307
45584
|
} | undefined;
|
|
44308
45585
|
}, {
|
|
44309
45586
|
type: "ADDRESS";
|
|
@@ -44378,7 +45655,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
44378
45655
|
postcodeOrZip?: string | undefined;
|
|
44379
45656
|
} | undefined;
|
|
44380
45657
|
configuration?: {
|
|
44381
|
-
|
|
45658
|
+
lineSeparator?: string | undefined;
|
|
45659
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
44382
45660
|
} | undefined;
|
|
44383
45661
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
44384
45662
|
id: z.ZodString;
|
|
@@ -46334,16 +47612,114 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
46334
47612
|
}, {
|
|
46335
47613
|
type: z.ZodLiteral<"NAME">;
|
|
46336
47614
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
|
46337
|
-
firstname: z.ZodString
|
|
46338
|
-
|
|
47615
|
+
firstname: z.ZodOptional<z.ZodString>;
|
|
47616
|
+
middlename: z.ZodOptional<z.ZodString>;
|
|
47617
|
+
surname: z.ZodOptional<z.ZodString>;
|
|
46339
47618
|
}, "strip", z.ZodTypeAny, {
|
|
46340
|
-
firstname
|
|
46341
|
-
surname
|
|
47619
|
+
firstname?: string | undefined;
|
|
47620
|
+
surname?: string | undefined;
|
|
47621
|
+
middlename?: string | undefined;
|
|
46342
47622
|
}, {
|
|
46343
|
-
firstname
|
|
46344
|
-
surname
|
|
47623
|
+
firstname?: string | undefined;
|
|
47624
|
+
surname?: string | undefined;
|
|
47625
|
+
middlename?: string | undefined;
|
|
46345
47626
|
}>>;
|
|
46346
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
|
47627
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
47628
|
+
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
47629
|
+
firstname: z.ZodOptional<z.ZodObject<{
|
|
47630
|
+
required: z.ZodBoolean;
|
|
47631
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
47632
|
+
id: string;
|
|
47633
|
+
description: string;
|
|
47634
|
+
defaultMessage: string;
|
|
47635
|
+
}>>;
|
|
47636
|
+
}, "strip", z.ZodTypeAny, {
|
|
47637
|
+
required: boolean;
|
|
47638
|
+
label?: TranslationConfig | undefined;
|
|
47639
|
+
}, {
|
|
47640
|
+
required: boolean;
|
|
47641
|
+
label?: {
|
|
47642
|
+
id: string;
|
|
47643
|
+
description: string;
|
|
47644
|
+
defaultMessage: string;
|
|
47645
|
+
} | undefined;
|
|
47646
|
+
}>>;
|
|
47647
|
+
middlename: z.ZodOptional<z.ZodObject<{
|
|
47648
|
+
required: z.ZodBoolean;
|
|
47649
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
47650
|
+
id: string;
|
|
47651
|
+
description: string;
|
|
47652
|
+
defaultMessage: string;
|
|
47653
|
+
}>>;
|
|
47654
|
+
}, "strip", z.ZodTypeAny, {
|
|
47655
|
+
required: boolean;
|
|
47656
|
+
label?: TranslationConfig | undefined;
|
|
47657
|
+
}, {
|
|
47658
|
+
required: boolean;
|
|
47659
|
+
label?: {
|
|
47660
|
+
id: string;
|
|
47661
|
+
description: string;
|
|
47662
|
+
defaultMessage: string;
|
|
47663
|
+
} | undefined;
|
|
47664
|
+
}>>;
|
|
47665
|
+
surname: z.ZodOptional<z.ZodObject<{
|
|
47666
|
+
required: z.ZodBoolean;
|
|
47667
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
47668
|
+
id: string;
|
|
47669
|
+
description: string;
|
|
47670
|
+
defaultMessage: string;
|
|
47671
|
+
}>>;
|
|
47672
|
+
}, "strip", z.ZodTypeAny, {
|
|
47673
|
+
required: boolean;
|
|
47674
|
+
label?: TranslationConfig | undefined;
|
|
47675
|
+
}, {
|
|
47676
|
+
required: boolean;
|
|
47677
|
+
label?: {
|
|
47678
|
+
id: string;
|
|
47679
|
+
description: string;
|
|
47680
|
+
defaultMessage: string;
|
|
47681
|
+
} | undefined;
|
|
47682
|
+
}>>;
|
|
47683
|
+
}, "strip", z.ZodTypeAny, {
|
|
47684
|
+
firstname?: {
|
|
47685
|
+
required: boolean;
|
|
47686
|
+
label?: TranslationConfig | undefined;
|
|
47687
|
+
} | undefined;
|
|
47688
|
+
surname?: {
|
|
47689
|
+
required: boolean;
|
|
47690
|
+
label?: TranslationConfig | undefined;
|
|
47691
|
+
} | undefined;
|
|
47692
|
+
middlename?: {
|
|
47693
|
+
required: boolean;
|
|
47694
|
+
label?: TranslationConfig | undefined;
|
|
47695
|
+
} | undefined;
|
|
47696
|
+
}, {
|
|
47697
|
+
firstname?: {
|
|
47698
|
+
required: boolean;
|
|
47699
|
+
label?: {
|
|
47700
|
+
id: string;
|
|
47701
|
+
description: string;
|
|
47702
|
+
defaultMessage: string;
|
|
47703
|
+
} | undefined;
|
|
47704
|
+
} | undefined;
|
|
47705
|
+
surname?: {
|
|
47706
|
+
required: boolean;
|
|
47707
|
+
label?: {
|
|
47708
|
+
id: string;
|
|
47709
|
+
description: string;
|
|
47710
|
+
defaultMessage: string;
|
|
47711
|
+
} | undefined;
|
|
47712
|
+
} | undefined;
|
|
47713
|
+
middlename?: {
|
|
47714
|
+
required: boolean;
|
|
47715
|
+
label?: {
|
|
47716
|
+
id: string;
|
|
47717
|
+
description: string;
|
|
47718
|
+
defaultMessage: string;
|
|
47719
|
+
} | undefined;
|
|
47720
|
+
} | undefined;
|
|
47721
|
+
}>>>;
|
|
47722
|
+
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
|
46347
47723
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
46348
47724
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
46349
47725
|
id: string;
|
|
@@ -46355,15 +47731,53 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
46355
47731
|
description: string;
|
|
46356
47732
|
defaultMessage: string;
|
|
46357
47733
|
}>>;
|
|
46358
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
46359
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
|
46360
47734
|
}, "strip", z.ZodTypeAny, {
|
|
47735
|
+
name?: {
|
|
47736
|
+
firstname?: {
|
|
47737
|
+
required: boolean;
|
|
47738
|
+
label?: TranslationConfig | undefined;
|
|
47739
|
+
} | undefined;
|
|
47740
|
+
surname?: {
|
|
47741
|
+
required: boolean;
|
|
47742
|
+
label?: TranslationConfig | undefined;
|
|
47743
|
+
} | undefined;
|
|
47744
|
+
middlename?: {
|
|
47745
|
+
required: boolean;
|
|
47746
|
+
label?: TranslationConfig | undefined;
|
|
47747
|
+
} | undefined;
|
|
47748
|
+
} | undefined;
|
|
47749
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
46361
47750
|
maxLength?: number | undefined;
|
|
46362
47751
|
prefix?: TranslationConfig | undefined;
|
|
46363
47752
|
postfix?: TranslationConfig | undefined;
|
|
46364
|
-
includeMiddlename?: boolean | undefined;
|
|
46365
|
-
searchMode?: boolean | undefined;
|
|
46366
47753
|
}, {
|
|
47754
|
+
name?: {
|
|
47755
|
+
firstname?: {
|
|
47756
|
+
required: boolean;
|
|
47757
|
+
label?: {
|
|
47758
|
+
id: string;
|
|
47759
|
+
description: string;
|
|
47760
|
+
defaultMessage: string;
|
|
47761
|
+
} | undefined;
|
|
47762
|
+
} | undefined;
|
|
47763
|
+
surname?: {
|
|
47764
|
+
required: boolean;
|
|
47765
|
+
label?: {
|
|
47766
|
+
id: string;
|
|
47767
|
+
description: string;
|
|
47768
|
+
defaultMessage: string;
|
|
47769
|
+
} | undefined;
|
|
47770
|
+
} | undefined;
|
|
47771
|
+
middlename?: {
|
|
47772
|
+
required: boolean;
|
|
47773
|
+
label?: {
|
|
47774
|
+
id: string;
|
|
47775
|
+
description: string;
|
|
47776
|
+
defaultMessage: string;
|
|
47777
|
+
} | undefined;
|
|
47778
|
+
} | undefined;
|
|
47779
|
+
} | undefined;
|
|
47780
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
46367
47781
|
maxLength?: number | undefined;
|
|
46368
47782
|
prefix?: {
|
|
46369
47783
|
id: string;
|
|
@@ -46375,9 +47789,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
46375
47789
|
description: string;
|
|
46376
47790
|
defaultMessage: string;
|
|
46377
47791
|
} | undefined;
|
|
46378
|
-
|
|
46379
|
-
searchMode?: boolean | undefined;
|
|
46380
|
-
}>>;
|
|
47792
|
+
}>>>;
|
|
46381
47793
|
}>, "strip", z.ZodTypeAny, {
|
|
46382
47794
|
type: "NAME";
|
|
46383
47795
|
id: string;
|
|
@@ -46406,15 +47818,29 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
46406
47818
|
hideLabel?: boolean | undefined;
|
|
46407
47819
|
uncorrectable?: boolean | undefined;
|
|
46408
47820
|
defaultValue?: {
|
|
46409
|
-
firstname
|
|
46410
|
-
surname
|
|
46411
|
-
|
|
46412
|
-
|
|
47821
|
+
firstname?: string | undefined;
|
|
47822
|
+
surname?: string | undefined;
|
|
47823
|
+
middlename?: string | undefined;
|
|
47824
|
+
} | undefined;
|
|
47825
|
+
configuration?: {
|
|
47826
|
+
name?: {
|
|
47827
|
+
firstname?: {
|
|
47828
|
+
required: boolean;
|
|
47829
|
+
label?: TranslationConfig | undefined;
|
|
47830
|
+
} | undefined;
|
|
47831
|
+
surname?: {
|
|
47832
|
+
required: boolean;
|
|
47833
|
+
label?: TranslationConfig | undefined;
|
|
47834
|
+
} | undefined;
|
|
47835
|
+
middlename?: {
|
|
47836
|
+
required: boolean;
|
|
47837
|
+
label?: TranslationConfig | undefined;
|
|
47838
|
+
} | undefined;
|
|
47839
|
+
} | undefined;
|
|
47840
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
46413
47841
|
maxLength?: number | undefined;
|
|
46414
47842
|
prefix?: TranslationConfig | undefined;
|
|
46415
47843
|
postfix?: TranslationConfig | undefined;
|
|
46416
|
-
includeMiddlename?: boolean | undefined;
|
|
46417
|
-
searchMode?: boolean | undefined;
|
|
46418
47844
|
} | undefined;
|
|
46419
47845
|
}, {
|
|
46420
47846
|
type: "NAME";
|
|
@@ -46460,10 +47886,38 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
46460
47886
|
hideLabel?: boolean | undefined;
|
|
46461
47887
|
uncorrectable?: boolean | undefined;
|
|
46462
47888
|
defaultValue?: {
|
|
46463
|
-
firstname
|
|
46464
|
-
surname
|
|
46465
|
-
|
|
46466
|
-
|
|
47889
|
+
firstname?: string | undefined;
|
|
47890
|
+
surname?: string | undefined;
|
|
47891
|
+
middlename?: string | undefined;
|
|
47892
|
+
} | undefined;
|
|
47893
|
+
configuration?: {
|
|
47894
|
+
name?: {
|
|
47895
|
+
firstname?: {
|
|
47896
|
+
required: boolean;
|
|
47897
|
+
label?: {
|
|
47898
|
+
id: string;
|
|
47899
|
+
description: string;
|
|
47900
|
+
defaultMessage: string;
|
|
47901
|
+
} | undefined;
|
|
47902
|
+
} | undefined;
|
|
47903
|
+
surname?: {
|
|
47904
|
+
required: boolean;
|
|
47905
|
+
label?: {
|
|
47906
|
+
id: string;
|
|
47907
|
+
description: string;
|
|
47908
|
+
defaultMessage: string;
|
|
47909
|
+
} | undefined;
|
|
47910
|
+
} | undefined;
|
|
47911
|
+
middlename?: {
|
|
47912
|
+
required: boolean;
|
|
47913
|
+
label?: {
|
|
47914
|
+
id: string;
|
|
47915
|
+
description: string;
|
|
47916
|
+
defaultMessage: string;
|
|
47917
|
+
} | undefined;
|
|
47918
|
+
} | undefined;
|
|
47919
|
+
} | undefined;
|
|
47920
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
46467
47921
|
maxLength?: number | undefined;
|
|
46468
47922
|
prefix?: {
|
|
46469
47923
|
id: string;
|
|
@@ -46475,8 +47929,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
46475
47929
|
description: string;
|
|
46476
47930
|
defaultMessage: string;
|
|
46477
47931
|
} | undefined;
|
|
46478
|
-
includeMiddlename?: boolean | undefined;
|
|
46479
|
-
searchMode?: boolean | undefined;
|
|
46480
47932
|
} | undefined;
|
|
46481
47933
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
46482
47934
|
id: z.ZodString;
|
|
@@ -49200,15 +50652,29 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
49200
50652
|
hideLabel?: boolean | undefined;
|
|
49201
50653
|
uncorrectable?: boolean | undefined;
|
|
49202
50654
|
defaultValue?: {
|
|
49203
|
-
firstname
|
|
49204
|
-
surname
|
|
49205
|
-
|
|
49206
|
-
|
|
50655
|
+
firstname?: string | undefined;
|
|
50656
|
+
surname?: string | undefined;
|
|
50657
|
+
middlename?: string | undefined;
|
|
50658
|
+
} | undefined;
|
|
50659
|
+
configuration?: {
|
|
50660
|
+
name?: {
|
|
50661
|
+
firstname?: {
|
|
50662
|
+
required: boolean;
|
|
50663
|
+
label?: TranslationConfig | undefined;
|
|
50664
|
+
} | undefined;
|
|
50665
|
+
surname?: {
|
|
50666
|
+
required: boolean;
|
|
50667
|
+
label?: TranslationConfig | undefined;
|
|
50668
|
+
} | undefined;
|
|
50669
|
+
middlename?: {
|
|
50670
|
+
required: boolean;
|
|
50671
|
+
label?: TranslationConfig | undefined;
|
|
50672
|
+
} | undefined;
|
|
50673
|
+
} | undefined;
|
|
50674
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
49207
50675
|
maxLength?: number | undefined;
|
|
49208
50676
|
prefix?: TranslationConfig | undefined;
|
|
49209
50677
|
postfix?: TranslationConfig | undefined;
|
|
49210
|
-
includeMiddlename?: boolean | undefined;
|
|
49211
|
-
searchMode?: boolean | undefined;
|
|
49212
50678
|
} | undefined;
|
|
49213
50679
|
} | {
|
|
49214
50680
|
type: "PHONE";
|
|
@@ -49541,7 +51007,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
49541
51007
|
postcodeOrZip?: string | undefined;
|
|
49542
51008
|
} | undefined;
|
|
49543
51009
|
configuration?: {
|
|
49544
|
-
|
|
51010
|
+
lineSeparator?: string | undefined;
|
|
51011
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
49545
51012
|
} | undefined;
|
|
49546
51013
|
} | {
|
|
49547
51014
|
type: "DATA";
|
|
@@ -50504,10 +51971,38 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
50504
51971
|
hideLabel?: boolean | undefined;
|
|
50505
51972
|
uncorrectable?: boolean | undefined;
|
|
50506
51973
|
defaultValue?: {
|
|
50507
|
-
firstname
|
|
50508
|
-
surname
|
|
50509
|
-
|
|
50510
|
-
|
|
51974
|
+
firstname?: string | undefined;
|
|
51975
|
+
surname?: string | undefined;
|
|
51976
|
+
middlename?: string | undefined;
|
|
51977
|
+
} | undefined;
|
|
51978
|
+
configuration?: {
|
|
51979
|
+
name?: {
|
|
51980
|
+
firstname?: {
|
|
51981
|
+
required: boolean;
|
|
51982
|
+
label?: {
|
|
51983
|
+
id: string;
|
|
51984
|
+
description: string;
|
|
51985
|
+
defaultMessage: string;
|
|
51986
|
+
} | undefined;
|
|
51987
|
+
} | undefined;
|
|
51988
|
+
surname?: {
|
|
51989
|
+
required: boolean;
|
|
51990
|
+
label?: {
|
|
51991
|
+
id: string;
|
|
51992
|
+
description: string;
|
|
51993
|
+
defaultMessage: string;
|
|
51994
|
+
} | undefined;
|
|
51995
|
+
} | undefined;
|
|
51996
|
+
middlename?: {
|
|
51997
|
+
required: boolean;
|
|
51998
|
+
label?: {
|
|
51999
|
+
id: string;
|
|
52000
|
+
description: string;
|
|
52001
|
+
defaultMessage: string;
|
|
52002
|
+
} | undefined;
|
|
52003
|
+
} | undefined;
|
|
52004
|
+
} | undefined;
|
|
52005
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
50511
52006
|
maxLength?: number | undefined;
|
|
50512
52007
|
prefix?: {
|
|
50513
52008
|
id: string;
|
|
@@ -50519,8 +52014,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
50519
52014
|
description: string;
|
|
50520
52015
|
defaultMessage: string;
|
|
50521
52016
|
} | undefined;
|
|
50522
|
-
includeMiddlename?: boolean | undefined;
|
|
50523
|
-
searchMode?: boolean | undefined;
|
|
50524
52017
|
} | undefined;
|
|
50525
52018
|
} | {
|
|
50526
52019
|
type: "PHONE";
|
|
@@ -51017,7 +52510,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
51017
52510
|
postcodeOrZip?: string | undefined;
|
|
51018
52511
|
} | undefined;
|
|
51019
52512
|
configuration?: {
|
|
51020
|
-
|
|
52513
|
+
lineSeparator?: string | undefined;
|
|
52514
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
51021
52515
|
} | undefined;
|
|
51022
52516
|
} | {
|
|
51023
52517
|
type: "DATA";
|
|
@@ -51647,15 +53141,29 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
51647
53141
|
hideLabel?: boolean | undefined;
|
|
51648
53142
|
uncorrectable?: boolean | undefined;
|
|
51649
53143
|
defaultValue?: {
|
|
51650
|
-
firstname
|
|
51651
|
-
surname
|
|
51652
|
-
|
|
51653
|
-
|
|
53144
|
+
firstname?: string | undefined;
|
|
53145
|
+
surname?: string | undefined;
|
|
53146
|
+
middlename?: string | undefined;
|
|
53147
|
+
} | undefined;
|
|
53148
|
+
configuration?: {
|
|
53149
|
+
name?: {
|
|
53150
|
+
firstname?: {
|
|
53151
|
+
required: boolean;
|
|
53152
|
+
label?: TranslationConfig | undefined;
|
|
53153
|
+
} | undefined;
|
|
53154
|
+
surname?: {
|
|
53155
|
+
required: boolean;
|
|
53156
|
+
label?: TranslationConfig | undefined;
|
|
53157
|
+
} | undefined;
|
|
53158
|
+
middlename?: {
|
|
53159
|
+
required: boolean;
|
|
53160
|
+
label?: TranslationConfig | undefined;
|
|
53161
|
+
} | undefined;
|
|
53162
|
+
} | undefined;
|
|
53163
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
51654
53164
|
maxLength?: number | undefined;
|
|
51655
53165
|
prefix?: TranslationConfig | undefined;
|
|
51656
53166
|
postfix?: TranslationConfig | undefined;
|
|
51657
|
-
includeMiddlename?: boolean | undefined;
|
|
51658
|
-
searchMode?: boolean | undefined;
|
|
51659
53167
|
} | undefined;
|
|
51660
53168
|
} | {
|
|
51661
53169
|
type: "PHONE";
|
|
@@ -51988,7 +53496,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
51988
53496
|
postcodeOrZip?: string | undefined;
|
|
51989
53497
|
} | undefined;
|
|
51990
53498
|
configuration?: {
|
|
51991
|
-
|
|
53499
|
+
lineSeparator?: string | undefined;
|
|
53500
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
51992
53501
|
} | undefined;
|
|
51993
53502
|
} | {
|
|
51994
53503
|
type: "DATA";
|
|
@@ -52599,15 +54108,29 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
52599
54108
|
hideLabel?: boolean | undefined;
|
|
52600
54109
|
uncorrectable?: boolean | undefined;
|
|
52601
54110
|
defaultValue?: {
|
|
52602
|
-
firstname
|
|
52603
|
-
surname
|
|
52604
|
-
|
|
52605
|
-
|
|
54111
|
+
firstname?: string | undefined;
|
|
54112
|
+
surname?: string | undefined;
|
|
54113
|
+
middlename?: string | undefined;
|
|
54114
|
+
} | undefined;
|
|
54115
|
+
configuration?: {
|
|
54116
|
+
name?: {
|
|
54117
|
+
firstname?: {
|
|
54118
|
+
required: boolean;
|
|
54119
|
+
label?: TranslationConfig | undefined;
|
|
54120
|
+
} | undefined;
|
|
54121
|
+
surname?: {
|
|
54122
|
+
required: boolean;
|
|
54123
|
+
label?: TranslationConfig | undefined;
|
|
54124
|
+
} | undefined;
|
|
54125
|
+
middlename?: {
|
|
54126
|
+
required: boolean;
|
|
54127
|
+
label?: TranslationConfig | undefined;
|
|
54128
|
+
} | undefined;
|
|
54129
|
+
} | undefined;
|
|
54130
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
52606
54131
|
maxLength?: number | undefined;
|
|
52607
54132
|
prefix?: TranslationConfig | undefined;
|
|
52608
54133
|
postfix?: TranslationConfig | undefined;
|
|
52609
|
-
includeMiddlename?: boolean | undefined;
|
|
52610
|
-
searchMode?: boolean | undefined;
|
|
52611
54134
|
} | undefined;
|
|
52612
54135
|
} | {
|
|
52613
54136
|
type: "PHONE";
|
|
@@ -52940,7 +54463,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
52940
54463
|
postcodeOrZip?: string | undefined;
|
|
52941
54464
|
} | undefined;
|
|
52942
54465
|
configuration?: {
|
|
52943
|
-
|
|
54466
|
+
lineSeparator?: string | undefined;
|
|
54467
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
52944
54468
|
} | undefined;
|
|
52945
54469
|
} | {
|
|
52946
54470
|
type: "DATA";
|
|
@@ -53881,10 +55405,38 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
53881
55405
|
hideLabel?: boolean | undefined;
|
|
53882
55406
|
uncorrectable?: boolean | undefined;
|
|
53883
55407
|
defaultValue?: {
|
|
53884
|
-
firstname
|
|
53885
|
-
surname
|
|
53886
|
-
|
|
53887
|
-
|
|
55408
|
+
firstname?: string | undefined;
|
|
55409
|
+
surname?: string | undefined;
|
|
55410
|
+
middlename?: string | undefined;
|
|
55411
|
+
} | undefined;
|
|
55412
|
+
configuration?: {
|
|
55413
|
+
name?: {
|
|
55414
|
+
firstname?: {
|
|
55415
|
+
required: boolean;
|
|
55416
|
+
label?: {
|
|
55417
|
+
id: string;
|
|
55418
|
+
description: string;
|
|
55419
|
+
defaultMessage: string;
|
|
55420
|
+
} | undefined;
|
|
55421
|
+
} | undefined;
|
|
55422
|
+
surname?: {
|
|
55423
|
+
required: boolean;
|
|
55424
|
+
label?: {
|
|
55425
|
+
id: string;
|
|
55426
|
+
description: string;
|
|
55427
|
+
defaultMessage: string;
|
|
55428
|
+
} | undefined;
|
|
55429
|
+
} | undefined;
|
|
55430
|
+
middlename?: {
|
|
55431
|
+
required: boolean;
|
|
55432
|
+
label?: {
|
|
55433
|
+
id: string;
|
|
55434
|
+
description: string;
|
|
55435
|
+
defaultMessage: string;
|
|
55436
|
+
} | undefined;
|
|
55437
|
+
} | undefined;
|
|
55438
|
+
} | undefined;
|
|
55439
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
53888
55440
|
maxLength?: number | undefined;
|
|
53889
55441
|
prefix?: {
|
|
53890
55442
|
id: string;
|
|
@@ -53896,8 +55448,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
53896
55448
|
description: string;
|
|
53897
55449
|
defaultMessage: string;
|
|
53898
55450
|
} | undefined;
|
|
53899
|
-
includeMiddlename?: boolean | undefined;
|
|
53900
|
-
searchMode?: boolean | undefined;
|
|
53901
55451
|
} | undefined;
|
|
53902
55452
|
} | {
|
|
53903
55453
|
type: "PHONE";
|
|
@@ -54394,7 +55944,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
54394
55944
|
postcodeOrZip?: string | undefined;
|
|
54395
55945
|
} | undefined;
|
|
54396
55946
|
configuration?: {
|
|
54397
|
-
|
|
55947
|
+
lineSeparator?: string | undefined;
|
|
55948
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
54398
55949
|
} | undefined;
|
|
54399
55950
|
} | {
|
|
54400
55951
|
type: "DATA";
|
|
@@ -55386,10 +56937,38 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
55386
56937
|
hideLabel?: boolean | undefined;
|
|
55387
56938
|
uncorrectable?: boolean | undefined;
|
|
55388
56939
|
defaultValue?: {
|
|
55389
|
-
firstname
|
|
55390
|
-
surname
|
|
55391
|
-
|
|
55392
|
-
|
|
56940
|
+
firstname?: string | undefined;
|
|
56941
|
+
surname?: string | undefined;
|
|
56942
|
+
middlename?: string | undefined;
|
|
56943
|
+
} | undefined;
|
|
56944
|
+
configuration?: {
|
|
56945
|
+
name?: {
|
|
56946
|
+
firstname?: {
|
|
56947
|
+
required: boolean;
|
|
56948
|
+
label?: {
|
|
56949
|
+
id: string;
|
|
56950
|
+
description: string;
|
|
56951
|
+
defaultMessage: string;
|
|
56952
|
+
} | undefined;
|
|
56953
|
+
} | undefined;
|
|
56954
|
+
surname?: {
|
|
56955
|
+
required: boolean;
|
|
56956
|
+
label?: {
|
|
56957
|
+
id: string;
|
|
56958
|
+
description: string;
|
|
56959
|
+
defaultMessage: string;
|
|
56960
|
+
} | undefined;
|
|
56961
|
+
} | undefined;
|
|
56962
|
+
middlename?: {
|
|
56963
|
+
required: boolean;
|
|
56964
|
+
label?: {
|
|
56965
|
+
id: string;
|
|
56966
|
+
description: string;
|
|
56967
|
+
defaultMessage: string;
|
|
56968
|
+
} | undefined;
|
|
56969
|
+
} | undefined;
|
|
56970
|
+
} | undefined;
|
|
56971
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
|
55393
56972
|
maxLength?: number | undefined;
|
|
55394
56973
|
prefix?: {
|
|
55395
56974
|
id: string;
|
|
@@ -55401,8 +56980,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
55401
56980
|
description: string;
|
|
55402
56981
|
defaultMessage: string;
|
|
55403
56982
|
} | undefined;
|
|
55404
|
-
includeMiddlename?: boolean | undefined;
|
|
55405
|
-
searchMode?: boolean | undefined;
|
|
55406
56983
|
} | undefined;
|
|
55407
56984
|
} | {
|
|
55408
56985
|
type: "PHONE";
|
|
@@ -55899,7 +57476,8 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
|
55899
57476
|
postcodeOrZip?: string | undefined;
|
|
55900
57477
|
} | undefined;
|
|
55901
57478
|
configuration?: {
|
|
55902
|
-
|
|
57479
|
+
lineSeparator?: string | undefined;
|
|
57480
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
|
55903
57481
|
} | undefined;
|
|
55904
57482
|
} | {
|
|
55905
57483
|
type: "DATA";
|