@onlive.ai/flow-client 0.1.40 → 0.1.44

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.
@@ -1471,8 +1471,8 @@ declare const ClientOptions: z.ZodObject<{
1471
1471
  devMode: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1472
1472
  }, "strip", z.ZodTypeAny, {
1473
1473
  baseUrl: string;
1474
- flowId: string;
1475
1474
  organizationId: string;
1475
+ flowId: string;
1476
1476
  lang: string;
1477
1477
  tracking?: {
1478
1478
  enabled?: boolean | undefined;
@@ -1840,8 +1840,8 @@ declare const ClientOptions: z.ZodObject<{
1840
1840
  devMode?: boolean | undefined;
1841
1841
  }, {
1842
1842
  baseUrl: string;
1843
- flowId: string;
1844
1843
  organizationId: string;
1844
+ flowId: string;
1845
1845
  lang: string;
1846
1846
  tracking?: {
1847
1847
  enabled?: boolean | undefined;
@@ -2248,12 +2248,12 @@ declare const GetStepOptions: z.ZodObject<{
2248
2248
  }>;
2249
2249
  type GetStepOptions = z.infer<typeof GetStepOptions>;
2250
2250
  /**
2251
- * Represents the schema for a Flow object.
2251
+ * Schema defining a flow object containing workflow configuration and stages.
2252
2252
  *
2253
- * @property {string} id - The unique identifier for the flow, must be a 24-character string.
2254
- * @property {string} organizationId - The UUID of the organization associated with the flow.
2255
- * @property {string} updatedAt - The date and time when the flow was last updated.
2256
- * @property {Array<{ id: string, name: string }>} stages - An array of stage objects, each containing an id and a name.
2253
+ * @property {string} id - Unique identifier for the flow. Must be exactly 24 characters long.
2254
+ * @property {string} organizationId - UUID of the organization that owns this flow.
2255
+ * @property {string} updatedAt - ISO datetime string indicating when the flow was last updated.
2256
+ * @property {Array<{id: string, name: string}>} stages - Array of stage objects defining the flow's progression phases.
2257
2257
  */
2258
2258
  declare const Flow: z.ZodObject<{
2259
2259
  id: z.ZodString;
@@ -2288,32 +2288,24 @@ declare const Flow: z.ZodObject<{
2288
2288
  }>;
2289
2289
  type Flow = z.infer<typeof Flow>;
2290
2290
  /**
2291
- * Schema for a step in the flow client.
2291
+ * Schema defining a step in the flow client workflow.
2292
2292
  *
2293
- * @property {string} id - The unique identifier for the step. Must be a non-empty string.
2294
- * @property {string} [title] - The optional title of the step.
2295
- * @property {string} [description] - The optional description of the step.
2296
- * @property {string} [stageId] - The optional identifier for the stage this step belongs to.
2297
- * @property {Record<string, any>} [state] - An optional record representing the state of the step.
2298
- * @property {Field[]} [fields] - An optional array of fields associated with the step.
2299
- * @property {Action[]} [actions] - An optional array of actions associated with the step.
2300
- * @property {Object} [result] - An optional object representing the result of the step.
2301
- * @property {Object[]} [result.postActions] - An optional array of post-action objects within the result.
2302
- * @property {string} result.postActions[].type - The action to be performed, e.g., "redirect".
2303
- * @property {Record<string, any>} [result.postActions[].params] - Optional parameters for the post-action.
2304
- * @property {Object[]} [result.pipelines] - An optional array of pipeline objects within the result.
2305
- * @property {string} result.pipelines[].name - The name of the pipeline.
2306
- * @property {Object} result.pipelines[].data - The data associated with the pipeline.
2307
- * @property {Object} [result.tracking] - An optional object representing tracking data.
2308
- * @property {Object} [error] - An optional object representing any error that occurred during the step.
2309
- * @property {ErrorCode} error.code - The error code associated with the error.
2310
- * @property {string} [error.message] - An optional error message.
2311
- * @property {Object[]} [error.fields] - An optional array of fields associated with the error.
2312
- * @property {string} error.fields[].name - The name of the field that caused the error.
2313
- * @property {FieldType} error.fields[].type - The type of the field that caused the error.
2314
- * @property {any} error.fields[].value - The value of the field that caused the error.
2315
- * @property {string} error.fields[].error - The error message associated with the field.
2316
- * @property {boolean} [isFinal] - An optional boolean indicating if this is the final step.
2293
+ * @property {string} id - Unique identifier for the step. Must be a non-empty string.
2294
+ * @property {string} [title] - Optional title displayed for the step.
2295
+ * @property {string} [description] - Optional description providing additional context for the step.
2296
+ * @property {string} [stageId] - Optional identifier linking this step to a specific stage in the flow.
2297
+ * @property {Record<string, any>} [state] - Optional state data associated with the step.
2298
+ * @property {Field[]} [fields] - Optional array of form fields to be rendered in this step.
2299
+ * @property {Action[]} [actions] - Optional array of actions (buttons) available in this step.
2300
+ * @property {Object} [result] - Optional result object containing post-processing information.
2301
+ * @property {PostAction[]} [result.postActions] - Optional array of post-actions to execute after step completion.
2302
+ * @property {Array<{name: string, data: Object}>} [result.pipelines] - Optional array of pipeline objects for data processing.
2303
+ * @property {Record<string, any>} [result.tracking] - Optional tracking data for analytics.
2304
+ * @property {Object} [error] - Optional error object containing validation or processing errors.
2305
+ * @property {ErrorCode} error.code - Error code identifying the type of error that occurred.
2306
+ * @property {string} [error.message] - Optional human-readable error message.
2307
+ * @property {Array<{name: string, type: FieldType, value: any, error: string}>} [error.fields] - Optional array of field-specific errors.
2308
+ * @property {boolean} [isFinal] - Optional flag indicating if this is the final step in the flow.
2317
2309
  */
2318
2310
  declare const Step: z.ZodObject<{
2319
2311
  id: z.ZodString;
@@ -2344,7 +2336,6 @@ declare const Step: z.ZodObject<{
2344
2336
  type?: "email" | "phone" | "url" | undefined;
2345
2337
  icon?: string | undefined;
2346
2338
  }>>>;
2347
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2348
2339
  }, "strip", z.ZodTypeAny, {
2349
2340
  lat: number;
2350
2341
  lng: number;
@@ -2355,7 +2346,6 @@ declare const Step: z.ZodObject<{
2355
2346
  type?: "email" | "phone" | "url" | undefined;
2356
2347
  icon?: string | undefined;
2357
2348
  }> | undefined;
2358
- attributes?: Record<string, any> | undefined;
2359
2349
  }, {
2360
2350
  lat: number;
2361
2351
  lng: number;
@@ -2366,7 +2356,6 @@ declare const Step: z.ZodObject<{
2366
2356
  type?: "email" | "phone" | "url" | undefined;
2367
2357
  icon?: string | undefined;
2368
2358
  }> | undefined;
2369
- attributes?: Record<string, any> | undefined;
2370
2359
  }>, z.ZodObject<{
2371
2360
  datetime: z.ZodString;
2372
2361
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -2396,7 +2385,6 @@ declare const Step: z.ZodObject<{
2396
2385
  type?: "email" | "phone" | "url" | undefined;
2397
2386
  icon?: string | undefined;
2398
2387
  }>>>;
2399
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2400
2388
  }, "strip", z.ZodTypeAny, {
2401
2389
  lat: number;
2402
2390
  lng: number;
@@ -2407,7 +2395,6 @@ declare const Step: z.ZodObject<{
2407
2395
  type?: "email" | "phone" | "url" | undefined;
2408
2396
  icon?: string | undefined;
2409
2397
  }> | undefined;
2410
- attributes?: Record<string, any> | undefined;
2411
2398
  }, {
2412
2399
  lat: number;
2413
2400
  lng: number;
@@ -2418,7 +2405,6 @@ declare const Step: z.ZodObject<{
2418
2405
  type?: "email" | "phone" | "url" | undefined;
2419
2406
  icon?: string | undefined;
2420
2407
  }> | undefined;
2421
- attributes?: Record<string, any> | undefined;
2422
2408
  }>, z.ZodObject<{
2423
2409
  datetime: z.ZodString;
2424
2410
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -2457,7 +2443,6 @@ declare const Step: z.ZodObject<{
2457
2443
  type?: "email" | "phone" | "url" | undefined;
2458
2444
  icon?: string | undefined;
2459
2445
  }>>>;
2460
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2461
2446
  }, "strip", z.ZodTypeAny, {
2462
2447
  lat: number;
2463
2448
  lng: number;
@@ -2468,7 +2453,6 @@ declare const Step: z.ZodObject<{
2468
2453
  type?: "email" | "phone" | "url" | undefined;
2469
2454
  icon?: string | undefined;
2470
2455
  }> | undefined;
2471
- attributes?: Record<string, any> | undefined;
2472
2456
  }, {
2473
2457
  lat: number;
2474
2458
  lng: number;
@@ -2479,7 +2463,6 @@ declare const Step: z.ZodObject<{
2479
2463
  type?: "email" | "phone" | "url" | undefined;
2480
2464
  icon?: string | undefined;
2481
2465
  }> | undefined;
2482
- attributes?: Record<string, any> | undefined;
2483
2466
  }>, z.ZodObject<{
2484
2467
  datetime: z.ZodString;
2485
2468
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -2493,6 +2476,7 @@ declare const Step: z.ZodObject<{
2493
2476
  image: z.ZodOptional<z.ZodString>;
2494
2477
  description: z.ZodOptional<z.ZodString>;
2495
2478
  disabled: z.ZodOptional<z.ZodBoolean>;
2479
+ attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2496
2480
  }, "strip", z.ZodTypeAny, {
2497
2481
  label: string;
2498
2482
  value?: string | number | boolean | {
@@ -2505,7 +2489,6 @@ declare const Step: z.ZodObject<{
2505
2489
  type?: "email" | "phone" | "url" | undefined;
2506
2490
  icon?: string | undefined;
2507
2491
  }> | undefined;
2508
- attributes?: Record<string, any> | undefined;
2509
2492
  } | {
2510
2493
  datetime: string;
2511
2494
  meta?: Record<string, any> | undefined;
@@ -2513,6 +2496,7 @@ declare const Step: z.ZodObject<{
2513
2496
  disabled?: boolean | undefined;
2514
2497
  description?: string | undefined;
2515
2498
  image?: string | undefined;
2499
+ attributes?: Record<string, any> | undefined;
2516
2500
  }, {
2517
2501
  label: string;
2518
2502
  value?: string | number | boolean | {
@@ -2525,7 +2509,6 @@ declare const Step: z.ZodObject<{
2525
2509
  type?: "email" | "phone" | "url" | undefined;
2526
2510
  icon?: string | undefined;
2527
2511
  }> | undefined;
2528
- attributes?: Record<string, any> | undefined;
2529
2512
  } | {
2530
2513
  datetime: string;
2531
2514
  meta?: Record<string, any> | undefined;
@@ -2533,6 +2516,7 @@ declare const Step: z.ZodObject<{
2533
2516
  disabled?: boolean | undefined;
2534
2517
  description?: string | undefined;
2535
2518
  image?: string | undefined;
2519
+ attributes?: Record<string, any> | undefined;
2536
2520
  }>, "many">>;
2537
2521
  required: z.ZodOptional<z.ZodBoolean>;
2538
2522
  configuration: z.ZodOptional<z.ZodObject<{
@@ -2854,8 +2838,7 @@ declare const Step: z.ZodObject<{
2854
2838
  noResultsText: z.ZodOptional<z.ZodString>;
2855
2839
  autocomplete: z.ZodOptional<z.ZodBoolean>;
2856
2840
  clearable: z.ZodOptional<z.ZodBoolean>;
2857
- mode: z.ZodOptional<z.ZodEnum<["address", "postcode"]>>;
2858
- showLocationButton: z.ZodOptional<z.ZodBoolean>;
2841
+ mode: z.ZodOptional<z.ZodDefault<z.ZodEnum<["address", "postcode"]>>>;
2859
2842
  locationButton: z.ZodOptional<z.ZodObject<{
2860
2843
  icon: z.ZodOptional<z.ZodString>;
2861
2844
  position: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
@@ -2866,6 +2849,72 @@ declare const Step: z.ZodObject<{
2866
2849
  icon?: string | undefined;
2867
2850
  position?: "left" | "right" | undefined;
2868
2851
  }>>;
2852
+ prefix: z.ZodOptional<z.ZodObject<{
2853
+ default: z.ZodOptional<z.ZodObject<{
2854
+ text: z.ZodOptional<z.ZodString>;
2855
+ icon: z.ZodOptional<z.ZodString>;
2856
+ }, "strip", z.ZodTypeAny, {
2857
+ text?: string | undefined;
2858
+ icon?: string | undefined;
2859
+ }, {
2860
+ text?: string | undefined;
2861
+ icon?: string | undefined;
2862
+ }>>;
2863
+ }, "strip", z.ZodTypeAny, {
2864
+ default?: {
2865
+ text?: string | undefined;
2866
+ icon?: string | undefined;
2867
+ } | undefined;
2868
+ }, {
2869
+ default?: {
2870
+ text?: string | undefined;
2871
+ icon?: string | undefined;
2872
+ } | undefined;
2873
+ }>>;
2874
+ suffix: z.ZodOptional<z.ZodObject<{
2875
+ default: z.ZodOptional<z.ZodObject<{
2876
+ text: z.ZodOptional<z.ZodString>;
2877
+ icon: z.ZodOptional<z.ZodString>;
2878
+ }, "strip", z.ZodTypeAny, {
2879
+ text?: string | undefined;
2880
+ icon?: string | undefined;
2881
+ }, {
2882
+ text?: string | undefined;
2883
+ icon?: string | undefined;
2884
+ }>>;
2885
+ }, "strip", z.ZodTypeAny, {
2886
+ default?: {
2887
+ text?: string | undefined;
2888
+ icon?: string | undefined;
2889
+ } | undefined;
2890
+ }, {
2891
+ default?: {
2892
+ text?: string | undefined;
2893
+ icon?: string | undefined;
2894
+ } | undefined;
2895
+ }>>;
2896
+ mappedResults: z.ZodOptional<z.ZodObject<{
2897
+ mapping: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
2898
+ key: z.ZodString;
2899
+ value: z.ZodString;
2900
+ }, "strip", z.ZodTypeAny, {
2901
+ value: string;
2902
+ key: string;
2903
+ }, {
2904
+ value: string;
2905
+ key: string;
2906
+ }>, "many">>;
2907
+ }, "strip", z.ZodTypeAny, {
2908
+ mapping: Record<string, {
2909
+ value: string;
2910
+ key: string;
2911
+ }[]>;
2912
+ }, {
2913
+ mapping: Record<string, {
2914
+ value: string;
2915
+ key: string;
2916
+ }[]>;
2917
+ }>>;
2869
2918
  }, "strip", z.ZodTypeAny, {
2870
2919
  value?: string | undefined;
2871
2920
  button?: {
@@ -2873,15 +2922,32 @@ declare const Step: z.ZodObject<{
2873
2922
  position?: "inside" | "outside" | undefined;
2874
2923
  } | undefined;
2875
2924
  placeholder?: string | undefined;
2925
+ prefix?: {
2926
+ default?: {
2927
+ text?: string | undefined;
2928
+ icon?: string | undefined;
2929
+ } | undefined;
2930
+ } | undefined;
2931
+ suffix?: {
2932
+ default?: {
2933
+ text?: string | undefined;
2934
+ icon?: string | undefined;
2935
+ } | undefined;
2936
+ } | undefined;
2876
2937
  clearable?: boolean | undefined;
2877
2938
  noResultsText?: string | undefined;
2878
2939
  autocomplete?: boolean | undefined;
2879
2940
  mode?: "address" | "postcode" | undefined;
2880
- showLocationButton?: boolean | undefined;
2881
2941
  locationButton?: {
2882
2942
  icon?: string | undefined;
2883
2943
  position?: "left" | "right" | undefined;
2884
2944
  } | undefined;
2945
+ mappedResults?: {
2946
+ mapping: Record<string, {
2947
+ value: string;
2948
+ key: string;
2949
+ }[]>;
2950
+ } | undefined;
2885
2951
  }, {
2886
2952
  value?: string | undefined;
2887
2953
  button?: {
@@ -2889,15 +2955,32 @@ declare const Step: z.ZodObject<{
2889
2955
  position?: "inside" | "outside" | undefined;
2890
2956
  } | undefined;
2891
2957
  placeholder?: string | undefined;
2958
+ prefix?: {
2959
+ default?: {
2960
+ text?: string | undefined;
2961
+ icon?: string | undefined;
2962
+ } | undefined;
2963
+ } | undefined;
2964
+ suffix?: {
2965
+ default?: {
2966
+ text?: string | undefined;
2967
+ icon?: string | undefined;
2968
+ } | undefined;
2969
+ } | undefined;
2892
2970
  clearable?: boolean | undefined;
2893
2971
  noResultsText?: string | undefined;
2894
2972
  autocomplete?: boolean | undefined;
2895
2973
  mode?: "address" | "postcode" | undefined;
2896
- showLocationButton?: boolean | undefined;
2897
2974
  locationButton?: {
2898
2975
  icon?: string | undefined;
2899
2976
  position?: "left" | "right" | undefined;
2900
2977
  } | undefined;
2978
+ mappedResults?: {
2979
+ mapping: Record<string, {
2980
+ value: string;
2981
+ key: string;
2982
+ }[]>;
2983
+ } | undefined;
2901
2984
  }>>;
2902
2985
  distanceRange: z.ZodOptional<z.ZodObject<{
2903
2986
  initial: z.ZodOptional<z.ZodNumber>;
@@ -3339,6 +3422,40 @@ declare const Step: z.ZodObject<{
3339
3422
  searchLabel?: string | undefined;
3340
3423
  detailsLabel?: string | undefined;
3341
3424
  } | undefined;
3425
+ search?: {
3426
+ value?: string | undefined;
3427
+ button?: {
3428
+ label?: string | undefined;
3429
+ position?: "inside" | "outside" | undefined;
3430
+ } | undefined;
3431
+ placeholder?: string | undefined;
3432
+ prefix?: {
3433
+ default?: {
3434
+ text?: string | undefined;
3435
+ icon?: string | undefined;
3436
+ } | undefined;
3437
+ } | undefined;
3438
+ suffix?: {
3439
+ default?: {
3440
+ text?: string | undefined;
3441
+ icon?: string | undefined;
3442
+ } | undefined;
3443
+ } | undefined;
3444
+ clearable?: boolean | undefined;
3445
+ noResultsText?: string | undefined;
3446
+ autocomplete?: boolean | undefined;
3447
+ mode?: "address" | "postcode" | undefined;
3448
+ locationButton?: {
3449
+ icon?: string | undefined;
3450
+ position?: "left" | "right" | undefined;
3451
+ } | undefined;
3452
+ mappedResults?: {
3453
+ mapping: Record<string, {
3454
+ value: string;
3455
+ key: string;
3456
+ }[]>;
3457
+ } | undefined;
3458
+ } | undefined;
3342
3459
  apiKey?: string | undefined;
3343
3460
  region?: string | undefined;
3344
3461
  center?: {
@@ -3364,23 +3481,6 @@ declare const Step: z.ZodObject<{
3364
3481
  maxLocations?: number | undefined;
3365
3482
  distanceUnit?: "km" | "mi" | undefined;
3366
3483
  distanceFormat?: "short" | "long" | undefined;
3367
- search?: {
3368
- value?: string | undefined;
3369
- button?: {
3370
- label?: string | undefined;
3371
- position?: "inside" | "outside" | undefined;
3372
- } | undefined;
3373
- placeholder?: string | undefined;
3374
- clearable?: boolean | undefined;
3375
- noResultsText?: string | undefined;
3376
- autocomplete?: boolean | undefined;
3377
- mode?: "address" | "postcode" | undefined;
3378
- showLocationButton?: boolean | undefined;
3379
- locationButton?: {
3380
- icon?: string | undefined;
3381
- position?: "left" | "right" | undefined;
3382
- } | undefined;
3383
- } | undefined;
3384
3484
  distanceRange?: {
3385
3485
  step?: number | undefined;
3386
3486
  min?: number | undefined;
@@ -3475,6 +3575,40 @@ declare const Step: z.ZodObject<{
3475
3575
  searchLabel?: string | undefined;
3476
3576
  detailsLabel?: string | undefined;
3477
3577
  } | undefined;
3578
+ search?: {
3579
+ value?: string | undefined;
3580
+ button?: {
3581
+ label?: string | undefined;
3582
+ position?: "inside" | "outside" | undefined;
3583
+ } | undefined;
3584
+ placeholder?: string | undefined;
3585
+ prefix?: {
3586
+ default?: {
3587
+ text?: string | undefined;
3588
+ icon?: string | undefined;
3589
+ } | undefined;
3590
+ } | undefined;
3591
+ suffix?: {
3592
+ default?: {
3593
+ text?: string | undefined;
3594
+ icon?: string | undefined;
3595
+ } | undefined;
3596
+ } | undefined;
3597
+ clearable?: boolean | undefined;
3598
+ noResultsText?: string | undefined;
3599
+ autocomplete?: boolean | undefined;
3600
+ mode?: "address" | "postcode" | undefined;
3601
+ locationButton?: {
3602
+ icon?: string | undefined;
3603
+ position?: "left" | "right" | undefined;
3604
+ } | undefined;
3605
+ mappedResults?: {
3606
+ mapping: Record<string, {
3607
+ value: string;
3608
+ key: string;
3609
+ }[]>;
3610
+ } | undefined;
3611
+ } | undefined;
3478
3612
  apiKey?: string | undefined;
3479
3613
  region?: string | undefined;
3480
3614
  center?: {
@@ -3500,23 +3634,6 @@ declare const Step: z.ZodObject<{
3500
3634
  maxLocations?: number | undefined;
3501
3635
  distanceUnit?: "km" | "mi" | undefined;
3502
3636
  distanceFormat?: "short" | "long" | undefined;
3503
- search?: {
3504
- value?: string | undefined;
3505
- button?: {
3506
- label?: string | undefined;
3507
- position?: "inside" | "outside" | undefined;
3508
- } | undefined;
3509
- placeholder?: string | undefined;
3510
- clearable?: boolean | undefined;
3511
- noResultsText?: string | undefined;
3512
- autocomplete?: boolean | undefined;
3513
- mode?: "address" | "postcode" | undefined;
3514
- showLocationButton?: boolean | undefined;
3515
- locationButton?: {
3516
- icon?: string | undefined;
3517
- position?: "left" | "right" | undefined;
3518
- } | undefined;
3519
- } | undefined;
3520
3637
  distanceRange?: {
3521
3638
  step?: number | undefined;
3522
3639
  min?: number | undefined;
@@ -3811,6 +3928,40 @@ declare const Step: z.ZodObject<{
3811
3928
  searchLabel?: string | undefined;
3812
3929
  detailsLabel?: string | undefined;
3813
3930
  } | undefined;
3931
+ search?: {
3932
+ value?: string | undefined;
3933
+ button?: {
3934
+ label?: string | undefined;
3935
+ position?: "inside" | "outside" | undefined;
3936
+ } | undefined;
3937
+ placeholder?: string | undefined;
3938
+ prefix?: {
3939
+ default?: {
3940
+ text?: string | undefined;
3941
+ icon?: string | undefined;
3942
+ } | undefined;
3943
+ } | undefined;
3944
+ suffix?: {
3945
+ default?: {
3946
+ text?: string | undefined;
3947
+ icon?: string | undefined;
3948
+ } | undefined;
3949
+ } | undefined;
3950
+ clearable?: boolean | undefined;
3951
+ noResultsText?: string | undefined;
3952
+ autocomplete?: boolean | undefined;
3953
+ mode?: "address" | "postcode" | undefined;
3954
+ locationButton?: {
3955
+ icon?: string | undefined;
3956
+ position?: "left" | "right" | undefined;
3957
+ } | undefined;
3958
+ mappedResults?: {
3959
+ mapping: Record<string, {
3960
+ value: string;
3961
+ key: string;
3962
+ }[]>;
3963
+ } | undefined;
3964
+ } | undefined;
3814
3965
  apiKey?: string | undefined;
3815
3966
  region?: string | undefined;
3816
3967
  center?: {
@@ -3836,23 +3987,6 @@ declare const Step: z.ZodObject<{
3836
3987
  maxLocations?: number | undefined;
3837
3988
  distanceUnit?: "km" | "mi" | undefined;
3838
3989
  distanceFormat?: "short" | "long" | undefined;
3839
- search?: {
3840
- value?: string | undefined;
3841
- button?: {
3842
- label?: string | undefined;
3843
- position?: "inside" | "outside" | undefined;
3844
- } | undefined;
3845
- placeholder?: string | undefined;
3846
- clearable?: boolean | undefined;
3847
- noResultsText?: string | undefined;
3848
- autocomplete?: boolean | undefined;
3849
- mode?: "address" | "postcode" | undefined;
3850
- showLocationButton?: boolean | undefined;
3851
- locationButton?: {
3852
- icon?: string | undefined;
3853
- position?: "left" | "right" | undefined;
3854
- } | undefined;
3855
- } | undefined;
3856
3990
  distanceRange?: {
3857
3991
  step?: number | undefined;
3858
3992
  min?: number | undefined;
@@ -4033,31 +4167,6 @@ declare const Step: z.ZodObject<{
4033
4167
  searchLabel?: string | undefined;
4034
4168
  detailsLabel?: string | undefined;
4035
4169
  } | undefined;
4036
- apiKey?: string | undefined;
4037
- region?: string | undefined;
4038
- center?: {
4039
- lat: number;
4040
- lng: number;
4041
- } | undefined;
4042
- showMap?: "always" | "on-search" | undefined;
4043
- zoom?: {
4044
- min?: number | undefined;
4045
- max?: number | undefined;
4046
- initial?: number | undefined;
4047
- focus?: number | undefined;
4048
- } | undefined;
4049
- controls?: {
4050
- scale?: boolean | undefined;
4051
- zoom?: boolean | undefined;
4052
- fullscreen?: boolean | undefined;
4053
- mapType?: boolean | undefined;
4054
- rotate?: boolean | undefined;
4055
- streetView?: boolean | undefined;
4056
- } | undefined;
4057
- initialLocations?: number | undefined;
4058
- maxLocations?: number | undefined;
4059
- distanceUnit?: "km" | "mi" | undefined;
4060
- distanceFormat?: "short" | "long" | undefined;
4061
4170
  search?: {
4062
4171
  value?: string | undefined;
4063
4172
  button?: {
@@ -4065,16 +4174,58 @@ declare const Step: z.ZodObject<{
4065
4174
  position?: "inside" | "outside" | undefined;
4066
4175
  } | undefined;
4067
4176
  placeholder?: string | undefined;
4068
- clearable?: boolean | undefined;
4069
- noResultsText?: string | undefined;
4070
- autocomplete?: boolean | undefined;
4177
+ prefix?: {
4178
+ default?: {
4179
+ text?: string | undefined;
4180
+ icon?: string | undefined;
4181
+ } | undefined;
4182
+ } | undefined;
4183
+ suffix?: {
4184
+ default?: {
4185
+ text?: string | undefined;
4186
+ icon?: string | undefined;
4187
+ } | undefined;
4188
+ } | undefined;
4189
+ clearable?: boolean | undefined;
4190
+ noResultsText?: string | undefined;
4191
+ autocomplete?: boolean | undefined;
4071
4192
  mode?: "address" | "postcode" | undefined;
4072
- showLocationButton?: boolean | undefined;
4073
4193
  locationButton?: {
4074
4194
  icon?: string | undefined;
4075
4195
  position?: "left" | "right" | undefined;
4076
4196
  } | undefined;
4197
+ mappedResults?: {
4198
+ mapping: Record<string, {
4199
+ value: string;
4200
+ key: string;
4201
+ }[]>;
4202
+ } | undefined;
4203
+ } | undefined;
4204
+ apiKey?: string | undefined;
4205
+ region?: string | undefined;
4206
+ center?: {
4207
+ lat: number;
4208
+ lng: number;
4209
+ } | undefined;
4210
+ showMap?: "always" | "on-search" | undefined;
4211
+ zoom?: {
4212
+ min?: number | undefined;
4213
+ max?: number | undefined;
4214
+ initial?: number | undefined;
4215
+ focus?: number | undefined;
4216
+ } | undefined;
4217
+ controls?: {
4218
+ scale?: boolean | undefined;
4219
+ zoom?: boolean | undefined;
4220
+ fullscreen?: boolean | undefined;
4221
+ mapType?: boolean | undefined;
4222
+ rotate?: boolean | undefined;
4223
+ streetView?: boolean | undefined;
4077
4224
  } | undefined;
4225
+ initialLocations?: number | undefined;
4226
+ maxLocations?: number | undefined;
4227
+ distanceUnit?: "km" | "mi" | undefined;
4228
+ distanceFormat?: "short" | "long" | undefined;
4078
4229
  distanceRange?: {
4079
4230
  step?: number | undefined;
4080
4231
  min?: number | undefined;
@@ -4270,7 +4421,6 @@ declare const Step: z.ZodObject<{
4270
4421
  type?: "email" | "phone" | "url" | undefined;
4271
4422
  icon?: string | undefined;
4272
4423
  }>>>;
4273
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
4274
4424
  }, "strip", z.ZodTypeAny, {
4275
4425
  lat: number;
4276
4426
  lng: number;
@@ -4281,7 +4431,6 @@ declare const Step: z.ZodObject<{
4281
4431
  type?: "email" | "phone" | "url" | undefined;
4282
4432
  icon?: string | undefined;
4283
4433
  }> | undefined;
4284
- attributes?: Record<string, any> | undefined;
4285
4434
  }, {
4286
4435
  lat: number;
4287
4436
  lng: number;
@@ -4292,7 +4441,6 @@ declare const Step: z.ZodObject<{
4292
4441
  type?: "email" | "phone" | "url" | undefined;
4293
4442
  icon?: string | undefined;
4294
4443
  }> | undefined;
4295
- attributes?: Record<string, any> | undefined;
4296
4444
  }>, z.ZodObject<{
4297
4445
  datetime: z.ZodString;
4298
4446
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -4315,7 +4463,6 @@ declare const Step: z.ZodObject<{
4315
4463
  type?: "email" | "phone" | "url" | undefined;
4316
4464
  icon?: string | undefined;
4317
4465
  }> | undefined;
4318
- attributes?: Record<string, any> | undefined;
4319
4466
  } | {
4320
4467
  datetime: string;
4321
4468
  meta?: Record<string, any> | undefined;
@@ -4332,7 +4479,6 @@ declare const Step: z.ZodObject<{
4332
4479
  type?: "email" | "phone" | "url" | undefined;
4333
4480
  icon?: string | undefined;
4334
4481
  }> | undefined;
4335
- attributes?: Record<string, any> | undefined;
4336
4482
  } | {
4337
4483
  datetime: string;
4338
4484
  meta?: Record<string, any> | undefined;
@@ -4377,7 +4523,6 @@ declare const Step: z.ZodObject<{
4377
4523
  type?: "email" | "phone" | "url" | undefined;
4378
4524
  icon?: string | undefined;
4379
4525
  }> | undefined;
4380
- attributes?: Record<string, any> | undefined;
4381
4526
  } | {
4382
4527
  datetime: string;
4383
4528
  meta?: Record<string, any> | undefined;
@@ -4391,7 +4536,6 @@ declare const Step: z.ZodObject<{
4391
4536
  type?: "email" | "phone" | "url" | undefined;
4392
4537
  icon?: string | undefined;
4393
4538
  }> | undefined;
4394
- attributes?: Record<string, any> | undefined;
4395
4539
  } | {
4396
4540
  datetime: string;
4397
4541
  meta?: Record<string, any> | undefined;
@@ -4408,7 +4552,6 @@ declare const Step: z.ZodObject<{
4408
4552
  type?: "email" | "phone" | "url" | undefined;
4409
4553
  icon?: string | undefined;
4410
4554
  }> | undefined;
4411
- attributes?: Record<string, any> | undefined;
4412
4555
  } | {
4413
4556
  datetime: string;
4414
4557
  meta?: Record<string, any> | undefined;
@@ -4416,6 +4559,7 @@ declare const Step: z.ZodObject<{
4416
4559
  disabled?: boolean | undefined;
4417
4560
  description?: string | undefined;
4418
4561
  image?: string | undefined;
4562
+ attributes?: Record<string, any> | undefined;
4419
4563
  }[] | undefined;
4420
4564
  label?: string | undefined;
4421
4565
  multiple?: boolean | undefined;
@@ -4431,6 +4575,40 @@ declare const Step: z.ZodObject<{
4431
4575
  searchLabel?: string | undefined;
4432
4576
  detailsLabel?: string | undefined;
4433
4577
  } | undefined;
4578
+ search?: {
4579
+ value?: string | undefined;
4580
+ button?: {
4581
+ label?: string | undefined;
4582
+ position?: "inside" | "outside" | undefined;
4583
+ } | undefined;
4584
+ placeholder?: string | undefined;
4585
+ prefix?: {
4586
+ default?: {
4587
+ text?: string | undefined;
4588
+ icon?: string | undefined;
4589
+ } | undefined;
4590
+ } | undefined;
4591
+ suffix?: {
4592
+ default?: {
4593
+ text?: string | undefined;
4594
+ icon?: string | undefined;
4595
+ } | undefined;
4596
+ } | undefined;
4597
+ clearable?: boolean | undefined;
4598
+ noResultsText?: string | undefined;
4599
+ autocomplete?: boolean | undefined;
4600
+ mode?: "address" | "postcode" | undefined;
4601
+ locationButton?: {
4602
+ icon?: string | undefined;
4603
+ position?: "left" | "right" | undefined;
4604
+ } | undefined;
4605
+ mappedResults?: {
4606
+ mapping: Record<string, {
4607
+ value: string;
4608
+ key: string;
4609
+ }[]>;
4610
+ } | undefined;
4611
+ } | undefined;
4434
4612
  apiKey?: string | undefined;
4435
4613
  region?: string | undefined;
4436
4614
  center?: {
@@ -4456,23 +4634,6 @@ declare const Step: z.ZodObject<{
4456
4634
  maxLocations?: number | undefined;
4457
4635
  distanceUnit?: "km" | "mi" | undefined;
4458
4636
  distanceFormat?: "short" | "long" | undefined;
4459
- search?: {
4460
- value?: string | undefined;
4461
- button?: {
4462
- label?: string | undefined;
4463
- position?: "inside" | "outside" | undefined;
4464
- } | undefined;
4465
- placeholder?: string | undefined;
4466
- clearable?: boolean | undefined;
4467
- noResultsText?: string | undefined;
4468
- autocomplete?: boolean | undefined;
4469
- mode?: "address" | "postcode" | undefined;
4470
- showLocationButton?: boolean | undefined;
4471
- locationButton?: {
4472
- icon?: string | undefined;
4473
- position?: "left" | "right" | undefined;
4474
- } | undefined;
4475
- } | undefined;
4476
4637
  distanceRange?: {
4477
4638
  step?: number | undefined;
4478
4639
  min?: number | undefined;
@@ -4658,7 +4819,6 @@ declare const Step: z.ZodObject<{
4658
4819
  type?: "email" | "phone" | "url" | undefined;
4659
4820
  icon?: string | undefined;
4660
4821
  }> | undefined;
4661
- attributes?: Record<string, any> | undefined;
4662
4822
  } | {
4663
4823
  datetime: string;
4664
4824
  meta?: Record<string, any> | undefined;
@@ -4688,7 +4848,6 @@ declare const Step: z.ZodObject<{
4688
4848
  type?: "email" | "phone" | "url" | undefined;
4689
4849
  icon?: string | undefined;
4690
4850
  }> | undefined;
4691
- attributes?: Record<string, any> | undefined;
4692
4851
  } | {
4693
4852
  datetime: string;
4694
4853
  meta?: Record<string, any> | undefined;
@@ -4702,7 +4861,6 @@ declare const Step: z.ZodObject<{
4702
4861
  type?: "email" | "phone" | "url" | undefined;
4703
4862
  icon?: string | undefined;
4704
4863
  }> | undefined;
4705
- attributes?: Record<string, any> | undefined;
4706
4864
  } | {
4707
4865
  datetime: string;
4708
4866
  meta?: Record<string, any> | undefined;
@@ -4719,7 +4877,6 @@ declare const Step: z.ZodObject<{
4719
4877
  type?: "email" | "phone" | "url" | undefined;
4720
4878
  icon?: string | undefined;
4721
4879
  }> | undefined;
4722
- attributes?: Record<string, any> | undefined;
4723
4880
  } | {
4724
4881
  datetime: string;
4725
4882
  meta?: Record<string, any> | undefined;
@@ -4727,6 +4884,7 @@ declare const Step: z.ZodObject<{
4727
4884
  disabled?: boolean | undefined;
4728
4885
  description?: string | undefined;
4729
4886
  image?: string | undefined;
4887
+ attributes?: Record<string, any> | undefined;
4730
4888
  }[] | undefined;
4731
4889
  label?: string | undefined;
4732
4890
  multiple?: boolean | undefined;
@@ -4742,6 +4900,40 @@ declare const Step: z.ZodObject<{
4742
4900
  searchLabel?: string | undefined;
4743
4901
  detailsLabel?: string | undefined;
4744
4902
  } | undefined;
4903
+ search?: {
4904
+ value?: string | undefined;
4905
+ button?: {
4906
+ label?: string | undefined;
4907
+ position?: "inside" | "outside" | undefined;
4908
+ } | undefined;
4909
+ placeholder?: string | undefined;
4910
+ prefix?: {
4911
+ default?: {
4912
+ text?: string | undefined;
4913
+ icon?: string | undefined;
4914
+ } | undefined;
4915
+ } | undefined;
4916
+ suffix?: {
4917
+ default?: {
4918
+ text?: string | undefined;
4919
+ icon?: string | undefined;
4920
+ } | undefined;
4921
+ } | undefined;
4922
+ clearable?: boolean | undefined;
4923
+ noResultsText?: string | undefined;
4924
+ autocomplete?: boolean | undefined;
4925
+ mode?: "address" | "postcode" | undefined;
4926
+ locationButton?: {
4927
+ icon?: string | undefined;
4928
+ position?: "left" | "right" | undefined;
4929
+ } | undefined;
4930
+ mappedResults?: {
4931
+ mapping: Record<string, {
4932
+ value: string;
4933
+ key: string;
4934
+ }[]>;
4935
+ } | undefined;
4936
+ } | undefined;
4745
4937
  apiKey?: string | undefined;
4746
4938
  region?: string | undefined;
4747
4939
  center?: {
@@ -4767,23 +4959,6 @@ declare const Step: z.ZodObject<{
4767
4959
  maxLocations?: number | undefined;
4768
4960
  distanceUnit?: "km" | "mi" | undefined;
4769
4961
  distanceFormat?: "short" | "long" | undefined;
4770
- search?: {
4771
- value?: string | undefined;
4772
- button?: {
4773
- label?: string | undefined;
4774
- position?: "inside" | "outside" | undefined;
4775
- } | undefined;
4776
- placeholder?: string | undefined;
4777
- clearable?: boolean | undefined;
4778
- noResultsText?: string | undefined;
4779
- autocomplete?: boolean | undefined;
4780
- mode?: "address" | "postcode" | undefined;
4781
- showLocationButton?: boolean | undefined;
4782
- locationButton?: {
4783
- icon?: string | undefined;
4784
- position?: "left" | "right" | undefined;
4785
- } | undefined;
4786
- } | undefined;
4787
4962
  distanceRange?: {
4788
4963
  step?: number | undefined;
4789
4964
  min?: number | undefined;
@@ -4969,7 +5144,6 @@ declare const Step: z.ZodObject<{
4969
5144
  type?: "email" | "phone" | "url" | undefined;
4970
5145
  icon?: string | undefined;
4971
5146
  }> | undefined;
4972
- attributes?: Record<string, any> | undefined;
4973
5147
  } | {
4974
5148
  datetime: string;
4975
5149
  meta?: Record<string, any> | undefined;
@@ -5156,7 +5330,6 @@ declare const Step: z.ZodObject<{
5156
5330
  type?: "email" | "phone" | "url" | undefined;
5157
5331
  icon?: string | undefined;
5158
5332
  }> | undefined;
5159
- attributes?: Record<string, any> | undefined;
5160
5333
  } | {
5161
5334
  datetime: string;
5162
5335
  meta?: Record<string, any> | undefined;
@@ -5170,7 +5343,6 @@ declare const Step: z.ZodObject<{
5170
5343
  type?: "email" | "phone" | "url" | undefined;
5171
5344
  icon?: string | undefined;
5172
5345
  }> | undefined;
5173
- attributes?: Record<string, any> | undefined;
5174
5346
  } | {
5175
5347
  datetime: string;
5176
5348
  meta?: Record<string, any> | undefined;
@@ -5187,7 +5359,6 @@ declare const Step: z.ZodObject<{
5187
5359
  type?: "email" | "phone" | "url" | undefined;
5188
5360
  icon?: string | undefined;
5189
5361
  }> | undefined;
5190
- attributes?: Record<string, any> | undefined;
5191
5362
  } | {
5192
5363
  datetime: string;
5193
5364
  meta?: Record<string, any> | undefined;
@@ -5195,6 +5366,7 @@ declare const Step: z.ZodObject<{
5195
5366
  disabled?: boolean | undefined;
5196
5367
  description?: string | undefined;
5197
5368
  image?: string | undefined;
5369
+ attributes?: Record<string, any> | undefined;
5198
5370
  }[] | undefined;
5199
5371
  label?: string | undefined;
5200
5372
  multiple?: boolean | undefined;
@@ -5210,6 +5382,40 @@ declare const Step: z.ZodObject<{
5210
5382
  searchLabel?: string | undefined;
5211
5383
  detailsLabel?: string | undefined;
5212
5384
  } | undefined;
5385
+ search?: {
5386
+ value?: string | undefined;
5387
+ button?: {
5388
+ label?: string | undefined;
5389
+ position?: "inside" | "outside" | undefined;
5390
+ } | undefined;
5391
+ placeholder?: string | undefined;
5392
+ prefix?: {
5393
+ default?: {
5394
+ text?: string | undefined;
5395
+ icon?: string | undefined;
5396
+ } | undefined;
5397
+ } | undefined;
5398
+ suffix?: {
5399
+ default?: {
5400
+ text?: string | undefined;
5401
+ icon?: string | undefined;
5402
+ } | undefined;
5403
+ } | undefined;
5404
+ clearable?: boolean | undefined;
5405
+ noResultsText?: string | undefined;
5406
+ autocomplete?: boolean | undefined;
5407
+ mode?: "address" | "postcode" | undefined;
5408
+ locationButton?: {
5409
+ icon?: string | undefined;
5410
+ position?: "left" | "right" | undefined;
5411
+ } | undefined;
5412
+ mappedResults?: {
5413
+ mapping: Record<string, {
5414
+ value: string;
5415
+ key: string;
5416
+ }[]>;
5417
+ } | undefined;
5418
+ } | undefined;
5213
5419
  apiKey?: string | undefined;
5214
5420
  region?: string | undefined;
5215
5421
  center?: {
@@ -5235,23 +5441,6 @@ declare const Step: z.ZodObject<{
5235
5441
  maxLocations?: number | undefined;
5236
5442
  distanceUnit?: "km" | "mi" | undefined;
5237
5443
  distanceFormat?: "short" | "long" | undefined;
5238
- search?: {
5239
- value?: string | undefined;
5240
- button?: {
5241
- label?: string | undefined;
5242
- position?: "inside" | "outside" | undefined;
5243
- } | undefined;
5244
- placeholder?: string | undefined;
5245
- clearable?: boolean | undefined;
5246
- noResultsText?: string | undefined;
5247
- autocomplete?: boolean | undefined;
5248
- mode?: "address" | "postcode" | undefined;
5249
- showLocationButton?: boolean | undefined;
5250
- locationButton?: {
5251
- icon?: string | undefined;
5252
- position?: "left" | "right" | undefined;
5253
- } | undefined;
5254
- } | undefined;
5255
5444
  distanceRange?: {
5256
5445
  step?: number | undefined;
5257
5446
  min?: number | undefined;
@@ -5437,7 +5626,6 @@ declare const Step: z.ZodObject<{
5437
5626
  type?: "email" | "phone" | "url" | undefined;
5438
5627
  icon?: string | undefined;
5439
5628
  }> | undefined;
5440
- attributes?: Record<string, any> | undefined;
5441
5629
  } | {
5442
5630
  datetime: string;
5443
5631
  meta?: Record<string, any> | undefined;
@@ -5514,7 +5702,6 @@ declare const Step: z.ZodObject<{
5514
5702
  type?: "email" | "phone" | "url" | undefined;
5515
5703
  icon?: string | undefined;
5516
5704
  }> | undefined;
5517
- attributes?: Record<string, any> | undefined;
5518
5705
  } | {
5519
5706
  datetime: string;
5520
5707
  meta?: Record<string, any> | undefined;
@@ -5528,7 +5715,6 @@ declare const Step: z.ZodObject<{
5528
5715
  type?: "email" | "phone" | "url" | undefined;
5529
5716
  icon?: string | undefined;
5530
5717
  }> | undefined;
5531
- attributes?: Record<string, any> | undefined;
5532
5718
  } | {
5533
5719
  datetime: string;
5534
5720
  meta?: Record<string, any> | undefined;
@@ -5545,7 +5731,6 @@ declare const Step: z.ZodObject<{
5545
5731
  type?: "email" | "phone" | "url" | undefined;
5546
5732
  icon?: string | undefined;
5547
5733
  }> | undefined;
5548
- attributes?: Record<string, any> | undefined;
5549
5734
  } | {
5550
5735
  datetime: string;
5551
5736
  meta?: Record<string, any> | undefined;
@@ -5553,6 +5738,7 @@ declare const Step: z.ZodObject<{
5553
5738
  disabled?: boolean | undefined;
5554
5739
  description?: string | undefined;
5555
5740
  image?: string | undefined;
5741
+ attributes?: Record<string, any> | undefined;
5556
5742
  }[] | undefined;
5557
5743
  label?: string | undefined;
5558
5744
  multiple?: boolean | undefined;
@@ -5568,6 +5754,40 @@ declare const Step: z.ZodObject<{
5568
5754
  searchLabel?: string | undefined;
5569
5755
  detailsLabel?: string | undefined;
5570
5756
  } | undefined;
5757
+ search?: {
5758
+ value?: string | undefined;
5759
+ button?: {
5760
+ label?: string | undefined;
5761
+ position?: "inside" | "outside" | undefined;
5762
+ } | undefined;
5763
+ placeholder?: string | undefined;
5764
+ prefix?: {
5765
+ default?: {
5766
+ text?: string | undefined;
5767
+ icon?: string | undefined;
5768
+ } | undefined;
5769
+ } | undefined;
5770
+ suffix?: {
5771
+ default?: {
5772
+ text?: string | undefined;
5773
+ icon?: string | undefined;
5774
+ } | undefined;
5775
+ } | undefined;
5776
+ clearable?: boolean | undefined;
5777
+ noResultsText?: string | undefined;
5778
+ autocomplete?: boolean | undefined;
5779
+ mode?: "address" | "postcode" | undefined;
5780
+ locationButton?: {
5781
+ icon?: string | undefined;
5782
+ position?: "left" | "right" | undefined;
5783
+ } | undefined;
5784
+ mappedResults?: {
5785
+ mapping: Record<string, {
5786
+ value: string;
5787
+ key: string;
5788
+ }[]>;
5789
+ } | undefined;
5790
+ } | undefined;
5571
5791
  apiKey?: string | undefined;
5572
5792
  region?: string | undefined;
5573
5793
  center?: {
@@ -5593,23 +5813,6 @@ declare const Step: z.ZodObject<{
5593
5813
  maxLocations?: number | undefined;
5594
5814
  distanceUnit?: "km" | "mi" | undefined;
5595
5815
  distanceFormat?: "short" | "long" | undefined;
5596
- search?: {
5597
- value?: string | undefined;
5598
- button?: {
5599
- label?: string | undefined;
5600
- position?: "inside" | "outside" | undefined;
5601
- } | undefined;
5602
- placeholder?: string | undefined;
5603
- clearable?: boolean | undefined;
5604
- noResultsText?: string | undefined;
5605
- autocomplete?: boolean | undefined;
5606
- mode?: "address" | "postcode" | undefined;
5607
- showLocationButton?: boolean | undefined;
5608
- locationButton?: {
5609
- icon?: string | undefined;
5610
- position?: "left" | "right" | undefined;
5611
- } | undefined;
5612
- } | undefined;
5613
5816
  distanceRange?: {
5614
5817
  step?: number | undefined;
5615
5818
  min?: number | undefined;
@@ -5795,7 +5998,6 @@ declare const Step: z.ZodObject<{
5795
5998
  type?: "email" | "phone" | "url" | undefined;
5796
5999
  icon?: string | undefined;
5797
6000
  }> | undefined;
5798
- attributes?: Record<string, any> | undefined;
5799
6001
  } | {
5800
6002
  datetime: string;
5801
6003
  meta?: Record<string, any> | undefined;
@@ -5858,10 +6060,10 @@ declare const Step: z.ZodObject<{
5858
6060
  }>;
5859
6061
  type Step = z.infer<typeof Step>;
5860
6062
  /**
5861
- * Post actions
6063
+ * Schema defining post-actions that can be executed after a step is completed.
5862
6064
  *
5863
- * @property {string} type - The action to be performed, e.g., "redirect".
5864
- * @property {Record<string, any>} [params] - Optional parameters for the post-action.
6065
+ * @property {"redirect"} type - The type of post-action to perform. Currently only "redirect" is supported.
6066
+ * @property {Record<string, any>} [params] - Optional parameters for the post-action execution.
5865
6067
  */
5866
6068
  declare const PostAction: z.ZodObject<{
5867
6069
  type: z.ZodEnum<["redirect"]>;
@@ -6038,124 +6240,140 @@ declare const ActionEvent: z.ZodObject<{
6038
6240
  }>;
6039
6241
  type ActionEvent = z.infer<typeof ActionEvent>;
6040
6242
  /**
6041
- * Schema for defining a form field
6243
+ * Schema defining the structure of a form field in the flow client.
6042
6244
  *
6043
- * @property {string} name - Unique identifier for the field
6044
- * @property {string} [label] - Display label for the field
6045
- * @property {any | any[]} [value] - Current value(s) of the field
6046
- * @property {FieldType} type - Type of the field, e.g., text, boolean, number, etc.
6047
- * @property {'input' | 'textarea' | 'select' | 'radio' | 'checkbox' | 'switch' | 'rating' | 'carousel' | 'button' | 'label' | 'map' | 'calendar'} [component] - UI component to render
6048
- * @property {boolean} [disabled] - Whether the field is disabled
6049
- * @property {boolean} [readonly] - Whether the field is read-only
6050
- * @property {boolean} [multiple] - Whether multiple values can be selected
6051
- * @property {string} [placeholder] - Placeholder text
6052
- * @property {Array<{label: string, value?: any, image?: string, description?: string, disabled?: boolean}>} [options] - Selectable options for the field
6053
- * @property {boolean} [required] - Whether the field is required
6054
- * @property {Object} [configuration] - Component-specific configuration
6055
- * @property {Object} [configuration.input] - Input component configuration
6056
- * @property {number} [configuration.input.min] - Minimum value
6057
- * @property {number} [configuration.input.max] - Maximum value
6058
- * @property {number} [configuration.input.step] - Step increment value
6059
- * @property {string} [configuration.input.pattern] - Validation regex pattern
6060
- * @property {number} [configuration.input.minLength] - Minimum text length
6061
- * @property {number} [configuration.input.maxLength] - Maximum text length
6062
- * @property {number} [configuration.input.exactLength] - Exact text length required
6063
- * @property {Object} [configuration.input.prefix] - Prefix configuration
6064
- * @property {Object} [configuration.input.prefix.default] - Default prefix configuration
6065
- * @property {Object} [configuration.input.prefix.success] - Success state prefix configuration
6066
- * @property {Object} [configuration.input.prefix.error] - Error state prefix configuration
6067
- * @property {Object} [configuration.input.suffix] - Suffix configuration
6068
- * @property {Object} [configuration.input.suffix.default] - Default suffix configuration
6069
- * @property {Object} [configuration.input.suffix.success] - Success state suffix configuration
6070
- * @property {Object} [configuration.input.suffix.error] - Error state suffix configuration
6071
- * @property {boolean} [configuration.input.clearable] - Enable input clearing
6072
- * @property {boolean} [configuration.input.floatingLabel] - Use floating input label
6073
- * @property {Object} [configuration.textarea] - Textarea component configuration
6074
- * @property {number} [configuration.textarea.rows] - Number of rows to display
6075
- * @property {Object} [configuration.rating] - Rating component configuration
6076
- * @property {string[]} [configuration.rating.icons] - Rating icons list
6077
- * @property {string} [configuration.rating.color] - Rating icon color
6078
- * @property {number} [configuration.rating.precision] - Rating value precision
6079
- * @property {Object} [configuration.map] - Map component configuration
6080
- * @property {string} [configuration.map.apiKey] - Map service API key
6081
- * @property {string} [configuration.map.region] - Two-letter country code
6082
- * @property {Object} [configuration.map.center] - Initial map center coordinates
6083
- * @property {Object} [configuration.map.zoom] - Zoom configuration
6084
- * @property {number} [configuration.map.zoom.initial] - Initial zoom level
6085
- * @property {number} [configuration.map.zoom.focus] - Focus zoom level
6086
- * @property {number} [configuration.map.zoom.max] - Maximum zoom level
6087
- * @property {number} [configuration.map.zoom.min] - Minimum zoom level
6088
- * @property {Object} [configuration.map.controls] - Map controls configuration
6089
- * @property {boolean} [configuration.map.controls.fullscreen] - Show fullscreen control
6090
- * @property {boolean} [configuration.map.controls.mapType] - Show map type control
6091
- * @property {boolean} [configuration.map.controls.zoom] - Show zoom control
6092
- * @property {boolean} [configuration.map.controls.rotate] - Show rotate control
6093
- * @property {boolean} [configuration.map.controls.scale] - Show scale control
6094
- * @property {boolean} [configuration.map.controls.streetView] - Show street view control
6095
- * @property {'always' | 'on-search'} [configuration.map.showMap] - Show map behavior
6096
- * @property {number} [configuration.map.initialLocations] - Initial number of locations
6097
- * @property {number} [configuration.map.maxLocations] - Maximum number of locations
6098
- * @property {'km' | 'mi'} [configuration.map.distanceUnit] - Distance unit
6099
- * @property {'short' | 'long'} [configuration.map.distanceFormat] - Distance format
6100
- * @property {Object} [configuration.map.options] - Map options configuration
6101
- * @property {'always' | 'on-search' | 'never'} [configuration.map.options.show] - Show options behavior
6102
- * @property {'list-button' | 'list-options' | 'carousel'} [configuration.map.options.component] - Options component type
6103
- * @property {string} [configuration.map.options.searchLabel] - Options search label. Use `##search###` for dynamic search title.
6104
- * @property {string} [configuration.map.options.detailsLabel] - Options details label.
6105
- * @property {Object} [configuration.map.search] - Search configuration
6106
- * @property {string} [configuration.map.search.value] - Search initial value
6107
- * @property {string} [configuration.map.search.placeholder] - Search input placeholder
6108
- * @property {string} [configuration.map.search.noResultsText] - No results message
6109
- * @property {boolean} [configuration.map.search.autocomplete] - Enable autocomplete
6110
- * @property {boolean} [configuration.map.search.clearable] - Enable clearable
6111
- * @property {'address' | 'postcode'} [configuration.map.search.mode] - Search mode
6112
- * @property {boolean} [configuration.map.search.showLocationButton] - Show location button
6113
- * @property {Object} [configuration.map.distanceRange] - Distance range configuration
6114
- * @property {number} [configuration.map.distanceRange.initial] - Initial range value
6115
- * @property {number} [configuration.map.distanceRange.min] - Minimum range value
6116
- * @property {number} [configuration.map.distanceRange.max] - Maximum range value
6117
- * @property {number} [configuration.map.distanceRange.step] - Range step value
6118
- * @property {Object} [configuration.map.mapRegion] - Map region styling
6119
- * @property {string} [configuration.map.mapRegion.strokeColor] - Region border color
6120
- * @property {string} [configuration.map.mapRegion.fillColor] - Region fill color
6121
- * @property {number} [configuration.map.mapRegion.fillOpacity] - Region fill opacity
6122
- * @property {Object} [configuration.map.locationPin] - Styling for location pin
6123
- * @property {Object} [configuration.map.markerPin] - Styling for marker pins
6124
- * @property {Object} [configuration.map.markerPin.default] - Default marker pin styling
6125
- * @property {Object} [configuration.map.markerPin.hover] - Hover state marker pin styling
6126
- * @property {Object} [configuration.map.markerPin.selected] - Selected state marker pin styling
6127
- * @property {Object} [configuration.map.infoWindow] - Info window configuration
6128
- * @property {Object} [configuration.map.infoWindow.button] - Button configuration inside the info window
6129
- * @property {string} [configuration.map.infoWindow.button.label] - Label for the button
6130
- * @property {string} [configuration.map.infoWindow.button.action] - Action associated with the button
6131
- * @property {Object} [configuration.calendar] - Calendar component configuration
6132
- * @property {Object} [configuration.calendar.current] - Current date configuration
6133
- * @property {number} [configuration.calendar.current.month] - Current month (0-11)
6134
- * @property {number} [configuration.calendar.current.year] - Current year
6135
- * @property {Object} [configuration.calendar.range] - Date range configuration
6136
- * @property {string} [configuration.calendar.range.min] - Minimum selectable date
6137
- * @property {string} [configuration.calendar.range.max] - Maximum selectable date
6138
- * @property {string[]} [configuration.calendar.range.enabled] - Specifically enabled dates
6139
- * @property {string[]} [configuration.calendar.range.disabled] - Specifically disabled dates
6140
- * @property {Object} [configuration.calendar.time] - Time configuration
6141
- * @property {'12h' | '24h'} [configuration.calendar.time.format] - Time format
6142
- * @property {'carousel' | 'list'} [configuration.calendar.time.component] - Time slot visualization component
6143
- * @property {Object} [configuration.calendar.api] - Calendar API configuration
6144
- * @property {string} [configuration.calendar.api.url] - API endpoint URL
6145
- * @property {string} [configuration.calendar.api.organizationId] - Organization ID
6146
- * @property {Object} [configuration.calendar.api.availability] - Availability configuration
6147
- * @property {Object} [configuration.calendar.api.availability.filters] - Availability filters
6148
- * @property {Object} [configuration.calendar.api.availability.options] - Availability options
6149
- * @property {Array<{fieldName: string, value?: any}>} [dependsOn] - Field dependencies
6150
- * @property {'hidden' | 'disabled'} [dependentBehavior] - Behavior when dependencies not met
6151
- * @property {Object} [customError] - Custom error messages
6152
- * @property {string} [customError.required] - Custom message when field is required but empty
6153
- * @property {string} [customError.invalid] - Custom message when field value is invalid
6154
- * @property {string} [customError.minLength] - Custom message when field value is shorter than minimum length
6155
- * @property {string} [customError.maxLength] - Custom message when field value exceeds maximum length
6156
- * @property {string} [customError.minValue] - Custom message when numeric field value is below minimum
6157
- * @property {string} [customError.maxValue] - Custom message when numeric field value exceeds maximum
6158
- * @property {string} [customError.mismatch] - Custom message when field value does not match expected pattern
6245
+ * @property {string} name - Unique identifier for the field. Must be a non-empty string.
6246
+ * @property {string} [label] - Display label for the field shown to users.
6247
+ * @property {FieldValue | FieldValue[]} [value] - Current value(s) of the field. Can be single value or array for multiple selections.
6248
+ * @property {FieldType} type - Type of the field that determines validation and display behavior.
6249
+ * @property {"input" | "textarea" | "select" | "radio" | "checkbox" | "switch" | "rating" | "carousel" | "button" | "label" | "map" | "calendar"} [component] - UI component type to render for this field.
6250
+ * @property {boolean} [disabled] - Whether the field is disabled and cannot be interacted with.
6251
+ * @property {boolean} [readonly] - Whether the field is read-only and cannot be modified.
6252
+ * @property {boolean} [multiple] - Whether multiple values can be selected (for select, checkbox components).
6253
+ * @property {string} [placeholder] - Placeholder text shown when field is empty.
6254
+ * @property {Array<{label: string, value?: FieldValue, image?: string, description?: string, disabled?: boolean, attributes?: Record<string, any>}>} [options] - Selectable options for select, radio, checkbox, and other choice-based components.
6255
+ * @property {boolean} [required] - Whether the field is required and must have a value.
6256
+ * @property {Object} [configuration] - Component-specific configuration options.
6257
+ * @property {Object} [configuration.input] - Configuration for input component.
6258
+ * @property {number} [configuration.input.min] - Minimum numeric value or minimum length for text.
6259
+ * @property {number} [configuration.input.max] - Maximum numeric value or maximum length for text.
6260
+ * @property {number} [configuration.input.step] - Step increment for numeric inputs.
6261
+ * @property {string} [configuration.input.pattern] - Regular expression pattern for validation.
6262
+ * @property {number} [configuration.input.minLength] - Minimum text length.
6263
+ * @property {number} [configuration.input.maxLength] - Maximum text length.
6264
+ * @property {number} [configuration.input.exactLength] - Exact required text length.
6265
+ * @property {Object} [configuration.input.prefix] - Prefix elements configuration.
6266
+ * @property {AffixSlot} [configuration.input.prefix.default] - Default state prefix configuration.
6267
+ * @property {AffixSlot} [configuration.input.prefix.success] - Success state prefix configuration.
6268
+ * @property {AffixSlot} [configuration.input.prefix.error] - Error state prefix configuration.
6269
+ * @property {Object} [configuration.input.suffix] - Suffix elements configuration.
6270
+ * @property {AffixSlot} [configuration.input.suffix.default] - Default state suffix configuration.
6271
+ * @property {AffixSlot} [configuration.input.suffix.success] - Success state suffix configuration.
6272
+ * @property {AffixSlot} [configuration.input.suffix.error] - Error state suffix configuration.
6273
+ * @property {boolean} [configuration.input.clearable] - Enable clear button for the input.
6274
+ * @property {boolean} [configuration.input.floatingLabel] - Use floating label animation.
6275
+ * @property {Object} [configuration.textarea] - Configuration for textarea component.
6276
+ * @property {number} [configuration.textarea.rows] - Number of visible text rows.
6277
+ * @property {Object} [configuration.checkbox] - Configuration for checkbox component.
6278
+ * @property {"horizontal" | "vertical"} [configuration.checkbox.layout] - Layout orientation for multiple checkboxes.
6279
+ * @property {Object} [configuration.rating] - Configuration for rating component.
6280
+ * @property {string[]} [configuration.rating.icons] - Array of icon names for rating display.
6281
+ * @property {string} [configuration.rating.color] - Color for rating icons.
6282
+ * @property {number} [configuration.rating.precision] - Decimal precision for rating values.
6283
+ * @property {Object} [configuration.map] - Configuration for map component.
6284
+ * @property {string} [configuration.map.apiKey] - API key for map service.
6285
+ * @property {string} [configuration.map.region] - Two-letter country code for map region.
6286
+ * @property {Object} [configuration.map.center] - Initial map center coordinates.
6287
+ * @property {number} configuration.map.center.lat - Latitude coordinate (-90 to 90).
6288
+ * @property {number} configuration.map.center.lng - Longitude coordinate (-180 to 180).
6289
+ * @property {"always" | "on-search"} [configuration.map.showMap] - When to display the map.
6290
+ * @property {Object} [configuration.map.zoom] - Zoom level configuration.
6291
+ * @property {number} [configuration.map.zoom.initial] - Initial zoom level.
6292
+ * @property {number} [configuration.map.zoom.focus] - Zoom level when focusing on location.
6293
+ * @property {number} [configuration.map.zoom.max] - Maximum allowed zoom level.
6294
+ * @property {number} [configuration.map.zoom.min] - Minimum allowed zoom level.
6295
+ * @property {Object} [configuration.map.controls] - Map controls visibility configuration.
6296
+ * @property {boolean} [configuration.map.controls.fullscreen] - Show fullscreen control.
6297
+ * @property {boolean} [configuration.map.controls.mapType] - Show map type control.
6298
+ * @property {boolean} [configuration.map.controls.zoom] - Show zoom controls.
6299
+ * @property {boolean} [configuration.map.controls.rotate] - Show rotation controls.
6300
+ * @property {boolean} [configuration.map.controls.scale] - Show scale indicator.
6301
+ * @property {boolean} [configuration.map.controls.streetView] - Show street view control.
6302
+ * @property {number} [configuration.map.initialLocations] - Number of locations to show initially.
6303
+ * @property {number} [configuration.map.maxLocations] - Maximum number of locations to display.
6304
+ * @property {"km" | "mi"} [configuration.map.distanceUnit] - Unit for distance measurements.
6305
+ * @property {"short" | "long"} [configuration.map.distanceFormat] - Format for distance display.
6306
+ * @property {Object} [configuration.map.options] - Location options display configuration.
6307
+ * @property {"always" | "on-search" | "never"} [configuration.map.options.show] - When to show location options.
6308
+ * @property {"list-button" | "list-radio" | "carousel"} [configuration.map.options.component] - Component type for displaying options.
6309
+ * @property {string} [configuration.map.options.searchLabel] - Label for search results section.
6310
+ * @property {string} [configuration.map.options.detailsLabel] - Label for location details section.
6311
+ * @property {Object} [configuration.map.search] - Search functionality configuration.
6312
+ * @property {string} [configuration.map.search.value] - Initial search value.
6313
+ * @property {Object} [configuration.map.search.button] - Search button configuration.
6314
+ * @property {string} [configuration.map.search.button.label] - Search button label.
6315
+ * @property {"inside" | "outside"} [configuration.map.search.button.position] - Search button position.
6316
+ * @property {string} [configuration.map.search.placeholder] - Search input placeholder text.
6317
+ * @property {string} [configuration.map.search.noResultsText] - Message when no results found.
6318
+ * @property {boolean} [configuration.map.search.autocomplete] - Enable search autocomplete.
6319
+ * @property {boolean} [configuration.map.search.clearable] - Enable clear button for search.
6320
+ * @property {"address" | "postcode"} [configuration.map.search.mode] - Search mode type.
6321
+ * @property {Object} [configuration.map.search.locationButton] - Current location button configuration.
6322
+ * @property {string} [configuration.map.search.locationButton.icon] - Icon for location button.
6323
+ * @property {"left" | "right"} [configuration.map.search.locationButton.position] - Location button position.
6324
+ * @property {Object} [configuration.map.search.prefix] - Search input prefix configuration.
6325
+ * @property {AffixSlot} [configuration.map.search.prefix.default] - Default prefix configuration.
6326
+ * @property {Object} [configuration.map.search.suffix] - Search input suffix configuration.
6327
+ * @property {AffixSlot} [configuration.map.search.suffix.default] - Default suffix configuration.
6328
+ * @property {Object} [configuration.map.search.mappedResults] - Predefined search result mappings.
6329
+ * @property {Record<string, Array<{key: string, value: string}>>} [configuration.map.search.mappedResults.mapping] - Mapping of search terms to location filters.
6330
+ * @property {Object} [configuration.map.distanceRange] - Distance range filter configuration.
6331
+ * @property {number} [configuration.map.distanceRange.initial] - Initial distance range value.
6332
+ * @property {number} [configuration.map.distanceRange.min] - Minimum distance range value.
6333
+ * @property {number} [configuration.map.distanceRange.max] - Maximum distance range value.
6334
+ * @property {number} [configuration.map.distanceRange.step] - Step increment for distance range.
6335
+ * @property {Object} [configuration.map.mapRegion] - Map region styling configuration.
6336
+ * @property {string} [configuration.map.mapRegion.strokeColor] - Border color for map regions.
6337
+ * @property {string} [configuration.map.mapRegion.fillColor] - Fill color for map regions.
6338
+ * @property {number} [configuration.map.mapRegion.fillOpacity] - Fill opacity for map regions (0-1).
6339
+ * @property {MapPin} [configuration.map.locationPin] - Styling configuration for user location pin.
6340
+ * @property {Object} [configuration.map.markerPin] - Styling configuration for location marker pins.
6341
+ * @property {MapPin} [configuration.map.markerPin.default] - Default marker pin styling.
6342
+ * @property {MapPin} [configuration.map.markerPin.hover] - Hover state marker pin styling.
6343
+ * @property {MapPin} [configuration.map.markerPin.selected] - Selected state marker pin styling.
6344
+ * @property {Object} [configuration.map.infoWindow] - Info window configuration for map markers.
6345
+ * @property {Object} [configuration.map.infoWindow.button] - Button configuration inside info windows.
6346
+ * @property {string} configuration.map.infoWindow.button.label - Label text for the info window button.
6347
+ * @property {string} configuration.map.infoWindow.button.action - Action identifier for the info window button.
6348
+ * @property {Object} [configuration.calendar] - Configuration for calendar component.
6349
+ * @property {Object} [configuration.calendar.current] - Current date display configuration.
6350
+ * @property {number} [configuration.calendar.current.month] - Current month (0-11, where 0 is January).
6351
+ * @property {number} [configuration.calendar.current.year] - Current year.
6352
+ * @property {Object} [configuration.calendar.range] - Date range constraints configuration.
6353
+ * @property {string} [configuration.calendar.range.min] - Minimum selectable date in YYYY-MM-DD format.
6354
+ * @property {string} [configuration.calendar.range.max] - Maximum selectable date in YYYY-MM-DD format.
6355
+ * @property {string[]} [configuration.calendar.range.enabled] - Array of specifically enabled dates in YYYY-MM-DD format.
6356
+ * @property {string[]} [configuration.calendar.range.disabled] - Array of specifically disabled dates in YYYY-MM-DD format.
6357
+ * @property {Object} [configuration.calendar.time] - Time selection configuration.
6358
+ * @property {string} [configuration.calendar.time.label] - Label for time selection section.
6359
+ * @property {"12h" | "24h"} [configuration.calendar.time.format] - Time format for display.
6360
+ * @property {"carousel" | "list"} [configuration.calendar.time.component] - Component type for time slot selection.
6361
+ * @property {Object} [configuration.calendar.api] - External calendar API configuration.
6362
+ * @property {string} configuration.calendar.api.url - Base URL for calendar API. Must be a valid URL.
6363
+ * @property {string} configuration.calendar.api.organizationId - Organization identifier for API requests. Must be non-empty.
6364
+ * @property {Object} [configuration.calendar.api.availability] - Availability API configuration.
6365
+ * @property {GetAvailabilityFilters} configuration.calendar.api.availability.filters - Filters for availability requests.
6366
+ * @property {GetAvailabilityOptions} [configuration.calendar.api.availability.options] - Options for availability requests.
6367
+ * @property {Array<{fieldName: string, value?: FieldValue}>} [dependsOn] - Array of field dependencies that control this field's visibility/state.
6368
+ * @property {"hidden" | "disabled"} [dependentBehavior] - Behavior when field dependencies are not met.
6369
+ * @property {Object} [customError] - Custom error messages for different validation scenarios.
6370
+ * @property {string} [customError.required] - Custom message when required field is empty.
6371
+ * @property {string} [customError.invalid] - Custom message when field value is invalid.
6372
+ * @property {string} [customError.minLength] - Custom message when text is shorter than minimum length.
6373
+ * @property {string} [customError.maxLength] - Custom message when text exceeds maximum length.
6374
+ * @property {string} [customError.minValue] - Custom message when numeric value is below minimum.
6375
+ * @property {string} [customError.maxValue] - Custom message when numeric value exceeds maximum.
6376
+ * @property {string} [customError.mismatch] - Custom message when value doesn't match expected pattern.
6159
6377
  */
6160
6378
  declare const Field: z.ZodObject<{
6161
6379
  name: z.ZodString;
@@ -6180,7 +6398,6 @@ declare const Field: z.ZodObject<{
6180
6398
  type?: "email" | "phone" | "url" | undefined;
6181
6399
  icon?: string | undefined;
6182
6400
  }>>>;
6183
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6184
6401
  }, "strip", z.ZodTypeAny, {
6185
6402
  lat: number;
6186
6403
  lng: number;
@@ -6191,7 +6408,6 @@ declare const Field: z.ZodObject<{
6191
6408
  type?: "email" | "phone" | "url" | undefined;
6192
6409
  icon?: string | undefined;
6193
6410
  }> | undefined;
6194
- attributes?: Record<string, any> | undefined;
6195
6411
  }, {
6196
6412
  lat: number;
6197
6413
  lng: number;
@@ -6202,7 +6418,6 @@ declare const Field: z.ZodObject<{
6202
6418
  type?: "email" | "phone" | "url" | undefined;
6203
6419
  icon?: string | undefined;
6204
6420
  }> | undefined;
6205
- attributes?: Record<string, any> | undefined;
6206
6421
  }>, z.ZodObject<{
6207
6422
  datetime: z.ZodString;
6208
6423
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -6232,7 +6447,6 @@ declare const Field: z.ZodObject<{
6232
6447
  type?: "email" | "phone" | "url" | undefined;
6233
6448
  icon?: string | undefined;
6234
6449
  }>>>;
6235
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6236
6450
  }, "strip", z.ZodTypeAny, {
6237
6451
  lat: number;
6238
6452
  lng: number;
@@ -6243,7 +6457,6 @@ declare const Field: z.ZodObject<{
6243
6457
  type?: "email" | "phone" | "url" | undefined;
6244
6458
  icon?: string | undefined;
6245
6459
  }> | undefined;
6246
- attributes?: Record<string, any> | undefined;
6247
6460
  }, {
6248
6461
  lat: number;
6249
6462
  lng: number;
@@ -6254,7 +6467,6 @@ declare const Field: z.ZodObject<{
6254
6467
  type?: "email" | "phone" | "url" | undefined;
6255
6468
  icon?: string | undefined;
6256
6469
  }> | undefined;
6257
- attributes?: Record<string, any> | undefined;
6258
6470
  }>, z.ZodObject<{
6259
6471
  datetime: z.ZodString;
6260
6472
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -6293,7 +6505,6 @@ declare const Field: z.ZodObject<{
6293
6505
  type?: "email" | "phone" | "url" | undefined;
6294
6506
  icon?: string | undefined;
6295
6507
  }>>>;
6296
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6297
6508
  }, "strip", z.ZodTypeAny, {
6298
6509
  lat: number;
6299
6510
  lng: number;
@@ -6304,7 +6515,6 @@ declare const Field: z.ZodObject<{
6304
6515
  type?: "email" | "phone" | "url" | undefined;
6305
6516
  icon?: string | undefined;
6306
6517
  }> | undefined;
6307
- attributes?: Record<string, any> | undefined;
6308
6518
  }, {
6309
6519
  lat: number;
6310
6520
  lng: number;
@@ -6315,7 +6525,6 @@ declare const Field: z.ZodObject<{
6315
6525
  type?: "email" | "phone" | "url" | undefined;
6316
6526
  icon?: string | undefined;
6317
6527
  }> | undefined;
6318
- attributes?: Record<string, any> | undefined;
6319
6528
  }>, z.ZodObject<{
6320
6529
  datetime: z.ZodString;
6321
6530
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -6329,6 +6538,7 @@ declare const Field: z.ZodObject<{
6329
6538
  image: z.ZodOptional<z.ZodString>;
6330
6539
  description: z.ZodOptional<z.ZodString>;
6331
6540
  disabled: z.ZodOptional<z.ZodBoolean>;
6541
+ attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6332
6542
  }, "strip", z.ZodTypeAny, {
6333
6543
  label: string;
6334
6544
  value?: string | number | boolean | {
@@ -6341,7 +6551,6 @@ declare const Field: z.ZodObject<{
6341
6551
  type?: "email" | "phone" | "url" | undefined;
6342
6552
  icon?: string | undefined;
6343
6553
  }> | undefined;
6344
- attributes?: Record<string, any> | undefined;
6345
6554
  } | {
6346
6555
  datetime: string;
6347
6556
  meta?: Record<string, any> | undefined;
@@ -6349,6 +6558,7 @@ declare const Field: z.ZodObject<{
6349
6558
  disabled?: boolean | undefined;
6350
6559
  description?: string | undefined;
6351
6560
  image?: string | undefined;
6561
+ attributes?: Record<string, any> | undefined;
6352
6562
  }, {
6353
6563
  label: string;
6354
6564
  value?: string | number | boolean | {
@@ -6361,7 +6571,6 @@ declare const Field: z.ZodObject<{
6361
6571
  type?: "email" | "phone" | "url" | undefined;
6362
6572
  icon?: string | undefined;
6363
6573
  }> | undefined;
6364
- attributes?: Record<string, any> | undefined;
6365
6574
  } | {
6366
6575
  datetime: string;
6367
6576
  meta?: Record<string, any> | undefined;
@@ -6369,6 +6578,7 @@ declare const Field: z.ZodObject<{
6369
6578
  disabled?: boolean | undefined;
6370
6579
  description?: string | undefined;
6371
6580
  image?: string | undefined;
6581
+ attributes?: Record<string, any> | undefined;
6372
6582
  }>, "many">>;
6373
6583
  required: z.ZodOptional<z.ZodBoolean>;
6374
6584
  configuration: z.ZodOptional<z.ZodObject<{
@@ -6690,8 +6900,7 @@ declare const Field: z.ZodObject<{
6690
6900
  noResultsText: z.ZodOptional<z.ZodString>;
6691
6901
  autocomplete: z.ZodOptional<z.ZodBoolean>;
6692
6902
  clearable: z.ZodOptional<z.ZodBoolean>;
6693
- mode: z.ZodOptional<z.ZodEnum<["address", "postcode"]>>;
6694
- showLocationButton: z.ZodOptional<z.ZodBoolean>;
6903
+ mode: z.ZodOptional<z.ZodDefault<z.ZodEnum<["address", "postcode"]>>>;
6695
6904
  locationButton: z.ZodOptional<z.ZodObject<{
6696
6905
  icon: z.ZodOptional<z.ZodString>;
6697
6906
  position: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
@@ -6702,6 +6911,72 @@ declare const Field: z.ZodObject<{
6702
6911
  icon?: string | undefined;
6703
6912
  position?: "left" | "right" | undefined;
6704
6913
  }>>;
6914
+ prefix: z.ZodOptional<z.ZodObject<{
6915
+ default: z.ZodOptional<z.ZodObject<{
6916
+ text: z.ZodOptional<z.ZodString>;
6917
+ icon: z.ZodOptional<z.ZodString>;
6918
+ }, "strip", z.ZodTypeAny, {
6919
+ text?: string | undefined;
6920
+ icon?: string | undefined;
6921
+ }, {
6922
+ text?: string | undefined;
6923
+ icon?: string | undefined;
6924
+ }>>;
6925
+ }, "strip", z.ZodTypeAny, {
6926
+ default?: {
6927
+ text?: string | undefined;
6928
+ icon?: string | undefined;
6929
+ } | undefined;
6930
+ }, {
6931
+ default?: {
6932
+ text?: string | undefined;
6933
+ icon?: string | undefined;
6934
+ } | undefined;
6935
+ }>>;
6936
+ suffix: z.ZodOptional<z.ZodObject<{
6937
+ default: z.ZodOptional<z.ZodObject<{
6938
+ text: z.ZodOptional<z.ZodString>;
6939
+ icon: z.ZodOptional<z.ZodString>;
6940
+ }, "strip", z.ZodTypeAny, {
6941
+ text?: string | undefined;
6942
+ icon?: string | undefined;
6943
+ }, {
6944
+ text?: string | undefined;
6945
+ icon?: string | undefined;
6946
+ }>>;
6947
+ }, "strip", z.ZodTypeAny, {
6948
+ default?: {
6949
+ text?: string | undefined;
6950
+ icon?: string | undefined;
6951
+ } | undefined;
6952
+ }, {
6953
+ default?: {
6954
+ text?: string | undefined;
6955
+ icon?: string | undefined;
6956
+ } | undefined;
6957
+ }>>;
6958
+ mappedResults: z.ZodOptional<z.ZodObject<{
6959
+ mapping: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6960
+ key: z.ZodString;
6961
+ value: z.ZodString;
6962
+ }, "strip", z.ZodTypeAny, {
6963
+ value: string;
6964
+ key: string;
6965
+ }, {
6966
+ value: string;
6967
+ key: string;
6968
+ }>, "many">>;
6969
+ }, "strip", z.ZodTypeAny, {
6970
+ mapping: Record<string, {
6971
+ value: string;
6972
+ key: string;
6973
+ }[]>;
6974
+ }, {
6975
+ mapping: Record<string, {
6976
+ value: string;
6977
+ key: string;
6978
+ }[]>;
6979
+ }>>;
6705
6980
  }, "strip", z.ZodTypeAny, {
6706
6981
  value?: string | undefined;
6707
6982
  button?: {
@@ -6709,15 +6984,32 @@ declare const Field: z.ZodObject<{
6709
6984
  position?: "inside" | "outside" | undefined;
6710
6985
  } | undefined;
6711
6986
  placeholder?: string | undefined;
6987
+ prefix?: {
6988
+ default?: {
6989
+ text?: string | undefined;
6990
+ icon?: string | undefined;
6991
+ } | undefined;
6992
+ } | undefined;
6993
+ suffix?: {
6994
+ default?: {
6995
+ text?: string | undefined;
6996
+ icon?: string | undefined;
6997
+ } | undefined;
6998
+ } | undefined;
6712
6999
  clearable?: boolean | undefined;
6713
7000
  noResultsText?: string | undefined;
6714
7001
  autocomplete?: boolean | undefined;
6715
7002
  mode?: "address" | "postcode" | undefined;
6716
- showLocationButton?: boolean | undefined;
6717
7003
  locationButton?: {
6718
7004
  icon?: string | undefined;
6719
7005
  position?: "left" | "right" | undefined;
6720
7006
  } | undefined;
7007
+ mappedResults?: {
7008
+ mapping: Record<string, {
7009
+ value: string;
7010
+ key: string;
7011
+ }[]>;
7012
+ } | undefined;
6721
7013
  }, {
6722
7014
  value?: string | undefined;
6723
7015
  button?: {
@@ -6725,15 +7017,32 @@ declare const Field: z.ZodObject<{
6725
7017
  position?: "inside" | "outside" | undefined;
6726
7018
  } | undefined;
6727
7019
  placeholder?: string | undefined;
7020
+ prefix?: {
7021
+ default?: {
7022
+ text?: string | undefined;
7023
+ icon?: string | undefined;
7024
+ } | undefined;
7025
+ } | undefined;
7026
+ suffix?: {
7027
+ default?: {
7028
+ text?: string | undefined;
7029
+ icon?: string | undefined;
7030
+ } | undefined;
7031
+ } | undefined;
6728
7032
  clearable?: boolean | undefined;
6729
7033
  noResultsText?: string | undefined;
6730
7034
  autocomplete?: boolean | undefined;
6731
7035
  mode?: "address" | "postcode" | undefined;
6732
- showLocationButton?: boolean | undefined;
6733
7036
  locationButton?: {
6734
7037
  icon?: string | undefined;
6735
7038
  position?: "left" | "right" | undefined;
6736
7039
  } | undefined;
7040
+ mappedResults?: {
7041
+ mapping: Record<string, {
7042
+ value: string;
7043
+ key: string;
7044
+ }[]>;
7045
+ } | undefined;
6737
7046
  }>>;
6738
7047
  distanceRange: z.ZodOptional<z.ZodObject<{
6739
7048
  initial: z.ZodOptional<z.ZodNumber>;
@@ -7175,6 +7484,40 @@ declare const Field: z.ZodObject<{
7175
7484
  searchLabel?: string | undefined;
7176
7485
  detailsLabel?: string | undefined;
7177
7486
  } | undefined;
7487
+ search?: {
7488
+ value?: string | undefined;
7489
+ button?: {
7490
+ label?: string | undefined;
7491
+ position?: "inside" | "outside" | undefined;
7492
+ } | undefined;
7493
+ placeholder?: string | undefined;
7494
+ prefix?: {
7495
+ default?: {
7496
+ text?: string | undefined;
7497
+ icon?: string | undefined;
7498
+ } | undefined;
7499
+ } | undefined;
7500
+ suffix?: {
7501
+ default?: {
7502
+ text?: string | undefined;
7503
+ icon?: string | undefined;
7504
+ } | undefined;
7505
+ } | undefined;
7506
+ clearable?: boolean | undefined;
7507
+ noResultsText?: string | undefined;
7508
+ autocomplete?: boolean | undefined;
7509
+ mode?: "address" | "postcode" | undefined;
7510
+ locationButton?: {
7511
+ icon?: string | undefined;
7512
+ position?: "left" | "right" | undefined;
7513
+ } | undefined;
7514
+ mappedResults?: {
7515
+ mapping: Record<string, {
7516
+ value: string;
7517
+ key: string;
7518
+ }[]>;
7519
+ } | undefined;
7520
+ } | undefined;
7178
7521
  apiKey?: string | undefined;
7179
7522
  region?: string | undefined;
7180
7523
  center?: {
@@ -7200,23 +7543,6 @@ declare const Field: z.ZodObject<{
7200
7543
  maxLocations?: number | undefined;
7201
7544
  distanceUnit?: "km" | "mi" | undefined;
7202
7545
  distanceFormat?: "short" | "long" | undefined;
7203
- search?: {
7204
- value?: string | undefined;
7205
- button?: {
7206
- label?: string | undefined;
7207
- position?: "inside" | "outside" | undefined;
7208
- } | undefined;
7209
- placeholder?: string | undefined;
7210
- clearable?: boolean | undefined;
7211
- noResultsText?: string | undefined;
7212
- autocomplete?: boolean | undefined;
7213
- mode?: "address" | "postcode" | undefined;
7214
- showLocationButton?: boolean | undefined;
7215
- locationButton?: {
7216
- icon?: string | undefined;
7217
- position?: "left" | "right" | undefined;
7218
- } | undefined;
7219
- } | undefined;
7220
7546
  distanceRange?: {
7221
7547
  step?: number | undefined;
7222
7548
  min?: number | undefined;
@@ -7311,6 +7637,40 @@ declare const Field: z.ZodObject<{
7311
7637
  searchLabel?: string | undefined;
7312
7638
  detailsLabel?: string | undefined;
7313
7639
  } | undefined;
7640
+ search?: {
7641
+ value?: string | undefined;
7642
+ button?: {
7643
+ label?: string | undefined;
7644
+ position?: "inside" | "outside" | undefined;
7645
+ } | undefined;
7646
+ placeholder?: string | undefined;
7647
+ prefix?: {
7648
+ default?: {
7649
+ text?: string | undefined;
7650
+ icon?: string | undefined;
7651
+ } | undefined;
7652
+ } | undefined;
7653
+ suffix?: {
7654
+ default?: {
7655
+ text?: string | undefined;
7656
+ icon?: string | undefined;
7657
+ } | undefined;
7658
+ } | undefined;
7659
+ clearable?: boolean | undefined;
7660
+ noResultsText?: string | undefined;
7661
+ autocomplete?: boolean | undefined;
7662
+ mode?: "address" | "postcode" | undefined;
7663
+ locationButton?: {
7664
+ icon?: string | undefined;
7665
+ position?: "left" | "right" | undefined;
7666
+ } | undefined;
7667
+ mappedResults?: {
7668
+ mapping: Record<string, {
7669
+ value: string;
7670
+ key: string;
7671
+ }[]>;
7672
+ } | undefined;
7673
+ } | undefined;
7314
7674
  apiKey?: string | undefined;
7315
7675
  region?: string | undefined;
7316
7676
  center?: {
@@ -7336,23 +7696,6 @@ declare const Field: z.ZodObject<{
7336
7696
  maxLocations?: number | undefined;
7337
7697
  distanceUnit?: "km" | "mi" | undefined;
7338
7698
  distanceFormat?: "short" | "long" | undefined;
7339
- search?: {
7340
- value?: string | undefined;
7341
- button?: {
7342
- label?: string | undefined;
7343
- position?: "inside" | "outside" | undefined;
7344
- } | undefined;
7345
- placeholder?: string | undefined;
7346
- clearable?: boolean | undefined;
7347
- noResultsText?: string | undefined;
7348
- autocomplete?: boolean | undefined;
7349
- mode?: "address" | "postcode" | undefined;
7350
- showLocationButton?: boolean | undefined;
7351
- locationButton?: {
7352
- icon?: string | undefined;
7353
- position?: "left" | "right" | undefined;
7354
- } | undefined;
7355
- } | undefined;
7356
7699
  distanceRange?: {
7357
7700
  step?: number | undefined;
7358
7701
  min?: number | undefined;
@@ -7647,6 +7990,40 @@ declare const Field: z.ZodObject<{
7647
7990
  searchLabel?: string | undefined;
7648
7991
  detailsLabel?: string | undefined;
7649
7992
  } | undefined;
7993
+ search?: {
7994
+ value?: string | undefined;
7995
+ button?: {
7996
+ label?: string | undefined;
7997
+ position?: "inside" | "outside" | undefined;
7998
+ } | undefined;
7999
+ placeholder?: string | undefined;
8000
+ prefix?: {
8001
+ default?: {
8002
+ text?: string | undefined;
8003
+ icon?: string | undefined;
8004
+ } | undefined;
8005
+ } | undefined;
8006
+ suffix?: {
8007
+ default?: {
8008
+ text?: string | undefined;
8009
+ icon?: string | undefined;
8010
+ } | undefined;
8011
+ } | undefined;
8012
+ clearable?: boolean | undefined;
8013
+ noResultsText?: string | undefined;
8014
+ autocomplete?: boolean | undefined;
8015
+ mode?: "address" | "postcode" | undefined;
8016
+ locationButton?: {
8017
+ icon?: string | undefined;
8018
+ position?: "left" | "right" | undefined;
8019
+ } | undefined;
8020
+ mappedResults?: {
8021
+ mapping: Record<string, {
8022
+ value: string;
8023
+ key: string;
8024
+ }[]>;
8025
+ } | undefined;
8026
+ } | undefined;
7650
8027
  apiKey?: string | undefined;
7651
8028
  region?: string | undefined;
7652
8029
  center?: {
@@ -7672,23 +8049,6 @@ declare const Field: z.ZodObject<{
7672
8049
  maxLocations?: number | undefined;
7673
8050
  distanceUnit?: "km" | "mi" | undefined;
7674
8051
  distanceFormat?: "short" | "long" | undefined;
7675
- search?: {
7676
- value?: string | undefined;
7677
- button?: {
7678
- label?: string | undefined;
7679
- position?: "inside" | "outside" | undefined;
7680
- } | undefined;
7681
- placeholder?: string | undefined;
7682
- clearable?: boolean | undefined;
7683
- noResultsText?: string | undefined;
7684
- autocomplete?: boolean | undefined;
7685
- mode?: "address" | "postcode" | undefined;
7686
- showLocationButton?: boolean | undefined;
7687
- locationButton?: {
7688
- icon?: string | undefined;
7689
- position?: "left" | "right" | undefined;
7690
- } | undefined;
7691
- } | undefined;
7692
8052
  distanceRange?: {
7693
8053
  step?: number | undefined;
7694
8054
  min?: number | undefined;
@@ -7869,6 +8229,40 @@ declare const Field: z.ZodObject<{
7869
8229
  searchLabel?: string | undefined;
7870
8230
  detailsLabel?: string | undefined;
7871
8231
  } | undefined;
8232
+ search?: {
8233
+ value?: string | undefined;
8234
+ button?: {
8235
+ label?: string | undefined;
8236
+ position?: "inside" | "outside" | undefined;
8237
+ } | undefined;
8238
+ placeholder?: string | undefined;
8239
+ prefix?: {
8240
+ default?: {
8241
+ text?: string | undefined;
8242
+ icon?: string | undefined;
8243
+ } | undefined;
8244
+ } | undefined;
8245
+ suffix?: {
8246
+ default?: {
8247
+ text?: string | undefined;
8248
+ icon?: string | undefined;
8249
+ } | undefined;
8250
+ } | undefined;
8251
+ clearable?: boolean | undefined;
8252
+ noResultsText?: string | undefined;
8253
+ autocomplete?: boolean | undefined;
8254
+ mode?: "address" | "postcode" | undefined;
8255
+ locationButton?: {
8256
+ icon?: string | undefined;
8257
+ position?: "left" | "right" | undefined;
8258
+ } | undefined;
8259
+ mappedResults?: {
8260
+ mapping: Record<string, {
8261
+ value: string;
8262
+ key: string;
8263
+ }[]>;
8264
+ } | undefined;
8265
+ } | undefined;
7872
8266
  apiKey?: string | undefined;
7873
8267
  region?: string | undefined;
7874
8268
  center?: {
@@ -7894,23 +8288,6 @@ declare const Field: z.ZodObject<{
7894
8288
  maxLocations?: number | undefined;
7895
8289
  distanceUnit?: "km" | "mi" | undefined;
7896
8290
  distanceFormat?: "short" | "long" | undefined;
7897
- search?: {
7898
- value?: string | undefined;
7899
- button?: {
7900
- label?: string | undefined;
7901
- position?: "inside" | "outside" | undefined;
7902
- } | undefined;
7903
- placeholder?: string | undefined;
7904
- clearable?: boolean | undefined;
7905
- noResultsText?: string | undefined;
7906
- autocomplete?: boolean | undefined;
7907
- mode?: "address" | "postcode" | undefined;
7908
- showLocationButton?: boolean | undefined;
7909
- locationButton?: {
7910
- icon?: string | undefined;
7911
- position?: "left" | "right" | undefined;
7912
- } | undefined;
7913
- } | undefined;
7914
8291
  distanceRange?: {
7915
8292
  step?: number | undefined;
7916
8293
  min?: number | undefined;
@@ -8106,7 +8483,6 @@ declare const Field: z.ZodObject<{
8106
8483
  type?: "email" | "phone" | "url" | undefined;
8107
8484
  icon?: string | undefined;
8108
8485
  }>>>;
8109
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
8110
8486
  }, "strip", z.ZodTypeAny, {
8111
8487
  lat: number;
8112
8488
  lng: number;
@@ -8117,7 +8493,6 @@ declare const Field: z.ZodObject<{
8117
8493
  type?: "email" | "phone" | "url" | undefined;
8118
8494
  icon?: string | undefined;
8119
8495
  }> | undefined;
8120
- attributes?: Record<string, any> | undefined;
8121
8496
  }, {
8122
8497
  lat: number;
8123
8498
  lng: number;
@@ -8128,7 +8503,6 @@ declare const Field: z.ZodObject<{
8128
8503
  type?: "email" | "phone" | "url" | undefined;
8129
8504
  icon?: string | undefined;
8130
8505
  }> | undefined;
8131
- attributes?: Record<string, any> | undefined;
8132
8506
  }>, z.ZodObject<{
8133
8507
  datetime: z.ZodString;
8134
8508
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -8151,7 +8525,6 @@ declare const Field: z.ZodObject<{
8151
8525
  type?: "email" | "phone" | "url" | undefined;
8152
8526
  icon?: string | undefined;
8153
8527
  }> | undefined;
8154
- attributes?: Record<string, any> | undefined;
8155
8528
  } | {
8156
8529
  datetime: string;
8157
8530
  meta?: Record<string, any> | undefined;
@@ -8168,7 +8541,6 @@ declare const Field: z.ZodObject<{
8168
8541
  type?: "email" | "phone" | "url" | undefined;
8169
8542
  icon?: string | undefined;
8170
8543
  }> | undefined;
8171
- attributes?: Record<string, any> | undefined;
8172
8544
  } | {
8173
8545
  datetime: string;
8174
8546
  meta?: Record<string, any> | undefined;
@@ -8213,7 +8585,6 @@ declare const Field: z.ZodObject<{
8213
8585
  type?: "email" | "phone" | "url" | undefined;
8214
8586
  icon?: string | undefined;
8215
8587
  }> | undefined;
8216
- attributes?: Record<string, any> | undefined;
8217
8588
  } | {
8218
8589
  datetime: string;
8219
8590
  meta?: Record<string, any> | undefined;
@@ -8227,7 +8598,6 @@ declare const Field: z.ZodObject<{
8227
8598
  type?: "email" | "phone" | "url" | undefined;
8228
8599
  icon?: string | undefined;
8229
8600
  }> | undefined;
8230
- attributes?: Record<string, any> | undefined;
8231
8601
  } | {
8232
8602
  datetime: string;
8233
8603
  meta?: Record<string, any> | undefined;
@@ -8244,7 +8614,6 @@ declare const Field: z.ZodObject<{
8244
8614
  type?: "email" | "phone" | "url" | undefined;
8245
8615
  icon?: string | undefined;
8246
8616
  }> | undefined;
8247
- attributes?: Record<string, any> | undefined;
8248
8617
  } | {
8249
8618
  datetime: string;
8250
8619
  meta?: Record<string, any> | undefined;
@@ -8252,6 +8621,7 @@ declare const Field: z.ZodObject<{
8252
8621
  disabled?: boolean | undefined;
8253
8622
  description?: string | undefined;
8254
8623
  image?: string | undefined;
8624
+ attributes?: Record<string, any> | undefined;
8255
8625
  }[] | undefined;
8256
8626
  label?: string | undefined;
8257
8627
  multiple?: boolean | undefined;
@@ -8267,6 +8637,40 @@ declare const Field: z.ZodObject<{
8267
8637
  searchLabel?: string | undefined;
8268
8638
  detailsLabel?: string | undefined;
8269
8639
  } | undefined;
8640
+ search?: {
8641
+ value?: string | undefined;
8642
+ button?: {
8643
+ label?: string | undefined;
8644
+ position?: "inside" | "outside" | undefined;
8645
+ } | undefined;
8646
+ placeholder?: string | undefined;
8647
+ prefix?: {
8648
+ default?: {
8649
+ text?: string | undefined;
8650
+ icon?: string | undefined;
8651
+ } | undefined;
8652
+ } | undefined;
8653
+ suffix?: {
8654
+ default?: {
8655
+ text?: string | undefined;
8656
+ icon?: string | undefined;
8657
+ } | undefined;
8658
+ } | undefined;
8659
+ clearable?: boolean | undefined;
8660
+ noResultsText?: string | undefined;
8661
+ autocomplete?: boolean | undefined;
8662
+ mode?: "address" | "postcode" | undefined;
8663
+ locationButton?: {
8664
+ icon?: string | undefined;
8665
+ position?: "left" | "right" | undefined;
8666
+ } | undefined;
8667
+ mappedResults?: {
8668
+ mapping: Record<string, {
8669
+ value: string;
8670
+ key: string;
8671
+ }[]>;
8672
+ } | undefined;
8673
+ } | undefined;
8270
8674
  apiKey?: string | undefined;
8271
8675
  region?: string | undefined;
8272
8676
  center?: {
@@ -8292,23 +8696,6 @@ declare const Field: z.ZodObject<{
8292
8696
  maxLocations?: number | undefined;
8293
8697
  distanceUnit?: "km" | "mi" | undefined;
8294
8698
  distanceFormat?: "short" | "long" | undefined;
8295
- search?: {
8296
- value?: string | undefined;
8297
- button?: {
8298
- label?: string | undefined;
8299
- position?: "inside" | "outside" | undefined;
8300
- } | undefined;
8301
- placeholder?: string | undefined;
8302
- clearable?: boolean | undefined;
8303
- noResultsText?: string | undefined;
8304
- autocomplete?: boolean | undefined;
8305
- mode?: "address" | "postcode" | undefined;
8306
- showLocationButton?: boolean | undefined;
8307
- locationButton?: {
8308
- icon?: string | undefined;
8309
- position?: "left" | "right" | undefined;
8310
- } | undefined;
8311
- } | undefined;
8312
8699
  distanceRange?: {
8313
8700
  step?: number | undefined;
8314
8701
  min?: number | undefined;
@@ -8494,7 +8881,6 @@ declare const Field: z.ZodObject<{
8494
8881
  type?: "email" | "phone" | "url" | undefined;
8495
8882
  icon?: string | undefined;
8496
8883
  }> | undefined;
8497
- attributes?: Record<string, any> | undefined;
8498
8884
  } | {
8499
8885
  datetime: string;
8500
8886
  meta?: Record<string, any> | undefined;
@@ -8524,7 +8910,6 @@ declare const Field: z.ZodObject<{
8524
8910
  type?: "email" | "phone" | "url" | undefined;
8525
8911
  icon?: string | undefined;
8526
8912
  }> | undefined;
8527
- attributes?: Record<string, any> | undefined;
8528
8913
  } | {
8529
8914
  datetime: string;
8530
8915
  meta?: Record<string, any> | undefined;
@@ -8538,7 +8923,6 @@ declare const Field: z.ZodObject<{
8538
8923
  type?: "email" | "phone" | "url" | undefined;
8539
8924
  icon?: string | undefined;
8540
8925
  }> | undefined;
8541
- attributes?: Record<string, any> | undefined;
8542
8926
  } | {
8543
8927
  datetime: string;
8544
8928
  meta?: Record<string, any> | undefined;
@@ -8555,7 +8939,6 @@ declare const Field: z.ZodObject<{
8555
8939
  type?: "email" | "phone" | "url" | undefined;
8556
8940
  icon?: string | undefined;
8557
8941
  }> | undefined;
8558
- attributes?: Record<string, any> | undefined;
8559
8942
  } | {
8560
8943
  datetime: string;
8561
8944
  meta?: Record<string, any> | undefined;
@@ -8563,6 +8946,7 @@ declare const Field: z.ZodObject<{
8563
8946
  disabled?: boolean | undefined;
8564
8947
  description?: string | undefined;
8565
8948
  image?: string | undefined;
8949
+ attributes?: Record<string, any> | undefined;
8566
8950
  }[] | undefined;
8567
8951
  label?: string | undefined;
8568
8952
  multiple?: boolean | undefined;
@@ -8578,6 +8962,40 @@ declare const Field: z.ZodObject<{
8578
8962
  searchLabel?: string | undefined;
8579
8963
  detailsLabel?: string | undefined;
8580
8964
  } | undefined;
8965
+ search?: {
8966
+ value?: string | undefined;
8967
+ button?: {
8968
+ label?: string | undefined;
8969
+ position?: "inside" | "outside" | undefined;
8970
+ } | undefined;
8971
+ placeholder?: string | undefined;
8972
+ prefix?: {
8973
+ default?: {
8974
+ text?: string | undefined;
8975
+ icon?: string | undefined;
8976
+ } | undefined;
8977
+ } | undefined;
8978
+ suffix?: {
8979
+ default?: {
8980
+ text?: string | undefined;
8981
+ icon?: string | undefined;
8982
+ } | undefined;
8983
+ } | undefined;
8984
+ clearable?: boolean | undefined;
8985
+ noResultsText?: string | undefined;
8986
+ autocomplete?: boolean | undefined;
8987
+ mode?: "address" | "postcode" | undefined;
8988
+ locationButton?: {
8989
+ icon?: string | undefined;
8990
+ position?: "left" | "right" | undefined;
8991
+ } | undefined;
8992
+ mappedResults?: {
8993
+ mapping: Record<string, {
8994
+ value: string;
8995
+ key: string;
8996
+ }[]>;
8997
+ } | undefined;
8998
+ } | undefined;
8581
8999
  apiKey?: string | undefined;
8582
9000
  region?: string | undefined;
8583
9001
  center?: {
@@ -8603,23 +9021,6 @@ declare const Field: z.ZodObject<{
8603
9021
  maxLocations?: number | undefined;
8604
9022
  distanceUnit?: "km" | "mi" | undefined;
8605
9023
  distanceFormat?: "short" | "long" | undefined;
8606
- search?: {
8607
- value?: string | undefined;
8608
- button?: {
8609
- label?: string | undefined;
8610
- position?: "inside" | "outside" | undefined;
8611
- } | undefined;
8612
- placeholder?: string | undefined;
8613
- clearable?: boolean | undefined;
8614
- noResultsText?: string | undefined;
8615
- autocomplete?: boolean | undefined;
8616
- mode?: "address" | "postcode" | undefined;
8617
- showLocationButton?: boolean | undefined;
8618
- locationButton?: {
8619
- icon?: string | undefined;
8620
- position?: "left" | "right" | undefined;
8621
- } | undefined;
8622
- } | undefined;
8623
9024
  distanceRange?: {
8624
9025
  step?: number | undefined;
8625
9026
  min?: number | undefined;
@@ -8805,7 +9206,6 @@ declare const Field: z.ZodObject<{
8805
9206
  type?: "email" | "phone" | "url" | undefined;
8806
9207
  icon?: string | undefined;
8807
9208
  }> | undefined;
8808
- attributes?: Record<string, any> | undefined;
8809
9209
  } | {
8810
9210
  datetime: string;
8811
9211
  meta?: Record<string, any> | undefined;
@@ -8825,12 +9225,14 @@ declare const Field: z.ZodObject<{
8825
9225
  }>;
8826
9226
  type Field = z.infer<typeof Field>;
8827
9227
  /**
8828
- * A schema that validates a field value which can be one of several types:
8829
- * - `string`
8830
- * - `number`
8831
- * - `boolean`
8832
- * - `Location`
8833
- * - `Availability`
9228
+ * Schema for validating field values that can be one of several primitive or complex types.
9229
+ *
9230
+ * Supports the following value types:
9231
+ * - string: Text values
9232
+ * - number: Numeric values
9233
+ * - boolean: True/false values
9234
+ * - Location: Geographic location objects
9235
+ * - Availability: Time slot availability objects
8834
9236
  */
8835
9237
  declare const FieldValue: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodObject<{
8836
9238
  lat: z.ZodNumber;
@@ -8852,7 +9254,6 @@ declare const FieldValue: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.
8852
9254
  type?: "email" | "phone" | "url" | undefined;
8853
9255
  icon?: string | undefined;
8854
9256
  }>>>;
8855
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
8856
9257
  }, "strip", z.ZodTypeAny, {
8857
9258
  lat: number;
8858
9259
  lng: number;
@@ -8863,7 +9264,6 @@ declare const FieldValue: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.
8863
9264
  type?: "email" | "phone" | "url" | undefined;
8864
9265
  icon?: string | undefined;
8865
9266
  }> | undefined;
8866
- attributes?: Record<string, any> | undefined;
8867
9267
  }, {
8868
9268
  lat: number;
8869
9269
  lng: number;
@@ -8874,7 +9274,6 @@ declare const FieldValue: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.
8874
9274
  type?: "email" | "phone" | "url" | undefined;
8875
9275
  icon?: string | undefined;
8876
9276
  }> | undefined;
8877
- attributes?: Record<string, any> | undefined;
8878
9277
  }>, z.ZodObject<{
8879
9278
  datetime: z.ZodString;
8880
9279
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -8887,21 +9286,21 @@ declare const FieldValue: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.
8887
9286
  }>]>;
8888
9287
  type FieldValue = z.infer<typeof FieldValue>;
8889
9288
  /**
8890
- * Schema for defining the properties of a map pin.
9289
+ * Schema for defining map pin styling and appearance.
8891
9290
  *
8892
- * @property {object} [content] - Object containing content properties.
8893
- * @property {string} [content.icon] - Optional icon name for the content.
8894
- * @property {string} [content.url] - Optional URL for the content.
8895
- * @property {string} [content.width] - Optional width of the content.
8896
- * @property {string} [content.height] - Optional height of the content.
8897
- * @property {number} [content.scale] - Optional scale of the content.
8898
- * @property {string} [background] - Optional background color of the map pin.
8899
- * @property {object} glyph - Object containing glyph properties.
8900
- * @property {string} [glyph.color] - Optional color of the glyph.
8901
- * @property {string} [glyph.url] - Optional URL for the glyph icon.
8902
- * @property {string} [glyph.icon] - Optional icon name for the glyph.
8903
- * @property {string} [borderColor] - Optional border color of the map pin.
8904
- * @property {number} [scale] - Optional scale of the map pin.
9291
+ * @property {Object} [content] - Content configuration for the map pin
9292
+ * @property {string} [content.icon] - Icon name to display in the pin
9293
+ * @property {string} [content.url] - URL for a custom icon image
9294
+ * @property {string} [content.width] - Width of the pin content
9295
+ * @property {string} [content.height] - Height of the pin content
9296
+ * @property {number} [content.scale] - Scale factor for the pin content
9297
+ * @property {string} [background] - Background color of the map pin
9298
+ * @property {Object} [glyph] - Glyph configuration for the map pin
9299
+ * @property {string} [glyph.color] - Color of the glyph icon
9300
+ * @property {string} [glyph.url] - URL for a custom glyph image
9301
+ * @property {string} [glyph.icon] - Icon name for the glyph
9302
+ * @property {string} [borderColor] - Border color of the map pin
9303
+ * @property {number} [scale] - Overall scale factor for the map pin
8905
9304
  */
8906
9305
  declare const MapPin: z.ZodObject<{
8907
9306
  content: z.ZodOptional<z.ZodObject<{
@@ -8974,11 +9373,10 @@ declare const MapPin: z.ZodObject<{
8974
9373
  }>;
8975
9374
  type MapPin = z.infer<typeof MapPin>;
8976
9375
  /**
8977
- * Schema for defining prefix and suffix text or icons.
9376
+ * Schema for defining prefix and suffix elements for input fields.
8978
9377
  *
8979
- * @property {string} [text] - Optional text to display as prefix or suffix.
8980
- * @property {string} [url] - Optional URL to link the prefix or suffix text.
8981
- * @property {string} [icon] - Optional icon name to display as prefix or suffix.
9378
+ * @property {string} [text] - Text content to display
9379
+ * @property {string} [icon] - Icon name to display
8982
9380
  */
8983
9381
  declare const AffixSlot: z.ZodObject<{
8984
9382
  text: z.ZodOptional<z.ZodString>;
@@ -8991,6 +9389,14 @@ declare const AffixSlot: z.ZodObject<{
8991
9389
  icon?: string | undefined;
8992
9390
  }>;
8993
9391
  type AffixSlot = z.infer<typeof AffixSlot>;
9392
+ /**
9393
+ * Schema defining properties that can be associated with a location.
9394
+ *
9395
+ * @property {string} name - The name of the property
9396
+ * @property {string} [value] - Optional value of the property
9397
+ * @property {string} [icon] - Optional icon name to display with the property
9398
+ * @property {"url" | "email" | "phone"} [type] - Optional type indicating how the property should be handled
9399
+ */
8994
9400
  declare const LocationProperty: z.ZodObject<{
8995
9401
  name: z.ZodString;
8996
9402
  value: z.ZodOptional<z.ZodString>;
@@ -9009,12 +9415,12 @@ declare const LocationProperty: z.ZodObject<{
9009
9415
  }>;
9010
9416
  type LocationProperty = z.infer<typeof LocationProperty>;
9011
9417
  /**
9012
- * Schema for validating location data.
9418
+ * Schema for validating location data with geographic coordinates.
9013
9419
  *
9014
- * @property {number} lat - Latitude value ranging from -90 to 90.
9015
- * @property {number} lng - Longitude value ranging from -180 to 180.
9016
- * @property {Record<string, any>} [meta] - Optional metadata as a record with string keys and any values.
9017
- * @property {Record<string, any>} [attributes] - Optional attributes as a record with string keys and any values.
9420
+ * @property {number} lat - Latitude coordinate ranging from -90 to 90 degrees
9421
+ * @property {number} lng - Longitude coordinate ranging from -180 to 180 degrees
9422
+ * @property {Record<string, any>} [meta] - Optional metadata as key-value pairs
9423
+ * @property {Record<string, LocationProperty>} [properties] - Optional properties associated with the location
9018
9424
  */
9019
9425
  declare const Location: z.ZodObject<{
9020
9426
  lat: z.ZodNumber;
@@ -9036,7 +9442,6 @@ declare const Location: z.ZodObject<{
9036
9442
  type?: "email" | "phone" | "url" | undefined;
9037
9443
  icon?: string | undefined;
9038
9444
  }>>>;
9039
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9040
9445
  }, "strip", z.ZodTypeAny, {
9041
9446
  lat: number;
9042
9447
  lng: number;
@@ -9047,7 +9452,6 @@ declare const Location: z.ZodObject<{
9047
9452
  type?: "email" | "phone" | "url" | undefined;
9048
9453
  icon?: string | undefined;
9049
9454
  }> | undefined;
9050
- attributes?: Record<string, any> | undefined;
9051
9455
  }, {
9052
9456
  lat: number;
9053
9457
  lng: number;
@@ -9058,14 +9462,13 @@ declare const Location: z.ZodObject<{
9058
9462
  type?: "email" | "phone" | "url" | undefined;
9059
9463
  icon?: string | undefined;
9060
9464
  }> | undefined;
9061
- attributes?: Record<string, any> | undefined;
9062
9465
  }>;
9063
9466
  type Location = z.infer<typeof Location>;
9064
9467
  /**
9065
- * Schema for validating availability data.
9468
+ * Schema for validating availability time slots.
9066
9469
  *
9067
- * @property {string} datetime - The date and time in ISO 8601 format.
9068
- * @property {Record<string, any>} [meta] - Optional metadata associated with the availability.
9470
+ * @property {string} datetime - ISO 8601 formatted date and time string
9471
+ * @property {Record<string, any>} [meta] - Optional metadata associated with the availability slot
9069
9472
  */
9070
9473
  declare const Availability: z.ZodObject<{
9071
9474
  datetime: z.ZodString;
@@ -9116,7 +9519,6 @@ declare const FlowContext: z.ZodObject<{
9116
9519
  type?: "email" | "phone" | "url" | undefined;
9117
9520
  icon?: string | undefined;
9118
9521
  }>>>;
9119
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9120
9522
  }, "strip", z.ZodTypeAny, {
9121
9523
  lat: number;
9122
9524
  lng: number;
@@ -9127,7 +9529,6 @@ declare const FlowContext: z.ZodObject<{
9127
9529
  type?: "email" | "phone" | "url" | undefined;
9128
9530
  icon?: string | undefined;
9129
9531
  }> | undefined;
9130
- attributes?: Record<string, any> | undefined;
9131
9532
  }, {
9132
9533
  lat: number;
9133
9534
  lng: number;
@@ -9138,7 +9539,6 @@ declare const FlowContext: z.ZodObject<{
9138
9539
  type?: "email" | "phone" | "url" | undefined;
9139
9540
  icon?: string | undefined;
9140
9541
  }> | undefined;
9141
- attributes?: Record<string, any> | undefined;
9142
9542
  }>, z.ZodObject<{
9143
9543
  datetime: z.ZodString;
9144
9544
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -9168,7 +9568,6 @@ declare const FlowContext: z.ZodObject<{
9168
9568
  type?: "email" | "phone" | "url" | undefined;
9169
9569
  icon?: string | undefined;
9170
9570
  }>>>;
9171
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9172
9571
  }, "strip", z.ZodTypeAny, {
9173
9572
  lat: number;
9174
9573
  lng: number;
@@ -9179,7 +9578,6 @@ declare const FlowContext: z.ZodObject<{
9179
9578
  type?: "email" | "phone" | "url" | undefined;
9180
9579
  icon?: string | undefined;
9181
9580
  }> | undefined;
9182
- attributes?: Record<string, any> | undefined;
9183
9581
  }, {
9184
9582
  lat: number;
9185
9583
  lng: number;
@@ -9190,7 +9588,6 @@ declare const FlowContext: z.ZodObject<{
9190
9588
  type?: "email" | "phone" | "url" | undefined;
9191
9589
  icon?: string | undefined;
9192
9590
  }> | undefined;
9193
- attributes?: Record<string, any> | undefined;
9194
9591
  }>, z.ZodObject<{
9195
9592
  datetime: z.ZodString;
9196
9593
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -9229,7 +9626,6 @@ declare const FlowContext: z.ZodObject<{
9229
9626
  type?: "email" | "phone" | "url" | undefined;
9230
9627
  icon?: string | undefined;
9231
9628
  }>>>;
9232
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9233
9629
  }, "strip", z.ZodTypeAny, {
9234
9630
  lat: number;
9235
9631
  lng: number;
@@ -9240,7 +9636,6 @@ declare const FlowContext: z.ZodObject<{
9240
9636
  type?: "email" | "phone" | "url" | undefined;
9241
9637
  icon?: string | undefined;
9242
9638
  }> | undefined;
9243
- attributes?: Record<string, any> | undefined;
9244
9639
  }, {
9245
9640
  lat: number;
9246
9641
  lng: number;
@@ -9251,7 +9646,6 @@ declare const FlowContext: z.ZodObject<{
9251
9646
  type?: "email" | "phone" | "url" | undefined;
9252
9647
  icon?: string | undefined;
9253
9648
  }> | undefined;
9254
- attributes?: Record<string, any> | undefined;
9255
9649
  }>, z.ZodObject<{
9256
9650
  datetime: z.ZodString;
9257
9651
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -9265,6 +9659,7 @@ declare const FlowContext: z.ZodObject<{
9265
9659
  image: z.ZodOptional<z.ZodString>;
9266
9660
  description: z.ZodOptional<z.ZodString>;
9267
9661
  disabled: z.ZodOptional<z.ZodBoolean>;
9662
+ attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9268
9663
  }, "strip", z.ZodTypeAny, {
9269
9664
  label: string;
9270
9665
  value?: string | number | boolean | {
@@ -9277,7 +9672,6 @@ declare const FlowContext: z.ZodObject<{
9277
9672
  type?: "email" | "phone" | "url" | undefined;
9278
9673
  icon?: string | undefined;
9279
9674
  }> | undefined;
9280
- attributes?: Record<string, any> | undefined;
9281
9675
  } | {
9282
9676
  datetime: string;
9283
9677
  meta?: Record<string, any> | undefined;
@@ -9285,6 +9679,7 @@ declare const FlowContext: z.ZodObject<{
9285
9679
  disabled?: boolean | undefined;
9286
9680
  description?: string | undefined;
9287
9681
  image?: string | undefined;
9682
+ attributes?: Record<string, any> | undefined;
9288
9683
  }, {
9289
9684
  label: string;
9290
9685
  value?: string | number | boolean | {
@@ -9297,7 +9692,6 @@ declare const FlowContext: z.ZodObject<{
9297
9692
  type?: "email" | "phone" | "url" | undefined;
9298
9693
  icon?: string | undefined;
9299
9694
  }> | undefined;
9300
- attributes?: Record<string, any> | undefined;
9301
9695
  } | {
9302
9696
  datetime: string;
9303
9697
  meta?: Record<string, any> | undefined;
@@ -9305,6 +9699,7 @@ declare const FlowContext: z.ZodObject<{
9305
9699
  disabled?: boolean | undefined;
9306
9700
  description?: string | undefined;
9307
9701
  image?: string | undefined;
9702
+ attributes?: Record<string, any> | undefined;
9308
9703
  }>, "many">>;
9309
9704
  required: z.ZodOptional<z.ZodBoolean>;
9310
9705
  configuration: z.ZodOptional<z.ZodObject<{
@@ -9626,8 +10021,7 @@ declare const FlowContext: z.ZodObject<{
9626
10021
  noResultsText: z.ZodOptional<z.ZodString>;
9627
10022
  autocomplete: z.ZodOptional<z.ZodBoolean>;
9628
10023
  clearable: z.ZodOptional<z.ZodBoolean>;
9629
- mode: z.ZodOptional<z.ZodEnum<["address", "postcode"]>>;
9630
- showLocationButton: z.ZodOptional<z.ZodBoolean>;
10024
+ mode: z.ZodOptional<z.ZodDefault<z.ZodEnum<["address", "postcode"]>>>;
9631
10025
  locationButton: z.ZodOptional<z.ZodObject<{
9632
10026
  icon: z.ZodOptional<z.ZodString>;
9633
10027
  position: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
@@ -9638,6 +10032,72 @@ declare const FlowContext: z.ZodObject<{
9638
10032
  icon?: string | undefined;
9639
10033
  position?: "left" | "right" | undefined;
9640
10034
  }>>;
10035
+ prefix: z.ZodOptional<z.ZodObject<{
10036
+ default: z.ZodOptional<z.ZodObject<{
10037
+ text: z.ZodOptional<z.ZodString>;
10038
+ icon: z.ZodOptional<z.ZodString>;
10039
+ }, "strip", z.ZodTypeAny, {
10040
+ text?: string | undefined;
10041
+ icon?: string | undefined;
10042
+ }, {
10043
+ text?: string | undefined;
10044
+ icon?: string | undefined;
10045
+ }>>;
10046
+ }, "strip", z.ZodTypeAny, {
10047
+ default?: {
10048
+ text?: string | undefined;
10049
+ icon?: string | undefined;
10050
+ } | undefined;
10051
+ }, {
10052
+ default?: {
10053
+ text?: string | undefined;
10054
+ icon?: string | undefined;
10055
+ } | undefined;
10056
+ }>>;
10057
+ suffix: z.ZodOptional<z.ZodObject<{
10058
+ default: z.ZodOptional<z.ZodObject<{
10059
+ text: z.ZodOptional<z.ZodString>;
10060
+ icon: z.ZodOptional<z.ZodString>;
10061
+ }, "strip", z.ZodTypeAny, {
10062
+ text?: string | undefined;
10063
+ icon?: string | undefined;
10064
+ }, {
10065
+ text?: string | undefined;
10066
+ icon?: string | undefined;
10067
+ }>>;
10068
+ }, "strip", z.ZodTypeAny, {
10069
+ default?: {
10070
+ text?: string | undefined;
10071
+ icon?: string | undefined;
10072
+ } | undefined;
10073
+ }, {
10074
+ default?: {
10075
+ text?: string | undefined;
10076
+ icon?: string | undefined;
10077
+ } | undefined;
10078
+ }>>;
10079
+ mappedResults: z.ZodOptional<z.ZodObject<{
10080
+ mapping: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
10081
+ key: z.ZodString;
10082
+ value: z.ZodString;
10083
+ }, "strip", z.ZodTypeAny, {
10084
+ value: string;
10085
+ key: string;
10086
+ }, {
10087
+ value: string;
10088
+ key: string;
10089
+ }>, "many">>;
10090
+ }, "strip", z.ZodTypeAny, {
10091
+ mapping: Record<string, {
10092
+ value: string;
10093
+ key: string;
10094
+ }[]>;
10095
+ }, {
10096
+ mapping: Record<string, {
10097
+ value: string;
10098
+ key: string;
10099
+ }[]>;
10100
+ }>>;
9641
10101
  }, "strip", z.ZodTypeAny, {
9642
10102
  value?: string | undefined;
9643
10103
  button?: {
@@ -9645,15 +10105,32 @@ declare const FlowContext: z.ZodObject<{
9645
10105
  position?: "inside" | "outside" | undefined;
9646
10106
  } | undefined;
9647
10107
  placeholder?: string | undefined;
10108
+ prefix?: {
10109
+ default?: {
10110
+ text?: string | undefined;
10111
+ icon?: string | undefined;
10112
+ } | undefined;
10113
+ } | undefined;
10114
+ suffix?: {
10115
+ default?: {
10116
+ text?: string | undefined;
10117
+ icon?: string | undefined;
10118
+ } | undefined;
10119
+ } | undefined;
9648
10120
  clearable?: boolean | undefined;
9649
10121
  noResultsText?: string | undefined;
9650
10122
  autocomplete?: boolean | undefined;
9651
10123
  mode?: "address" | "postcode" | undefined;
9652
- showLocationButton?: boolean | undefined;
9653
10124
  locationButton?: {
9654
10125
  icon?: string | undefined;
9655
10126
  position?: "left" | "right" | undefined;
9656
10127
  } | undefined;
10128
+ mappedResults?: {
10129
+ mapping: Record<string, {
10130
+ value: string;
10131
+ key: string;
10132
+ }[]>;
10133
+ } | undefined;
9657
10134
  }, {
9658
10135
  value?: string | undefined;
9659
10136
  button?: {
@@ -9661,15 +10138,32 @@ declare const FlowContext: z.ZodObject<{
9661
10138
  position?: "inside" | "outside" | undefined;
9662
10139
  } | undefined;
9663
10140
  placeholder?: string | undefined;
10141
+ prefix?: {
10142
+ default?: {
10143
+ text?: string | undefined;
10144
+ icon?: string | undefined;
10145
+ } | undefined;
10146
+ } | undefined;
10147
+ suffix?: {
10148
+ default?: {
10149
+ text?: string | undefined;
10150
+ icon?: string | undefined;
10151
+ } | undefined;
10152
+ } | undefined;
9664
10153
  clearable?: boolean | undefined;
9665
10154
  noResultsText?: string | undefined;
9666
10155
  autocomplete?: boolean | undefined;
9667
10156
  mode?: "address" | "postcode" | undefined;
9668
- showLocationButton?: boolean | undefined;
9669
10157
  locationButton?: {
9670
10158
  icon?: string | undefined;
9671
10159
  position?: "left" | "right" | undefined;
9672
10160
  } | undefined;
10161
+ mappedResults?: {
10162
+ mapping: Record<string, {
10163
+ value: string;
10164
+ key: string;
10165
+ }[]>;
10166
+ } | undefined;
9673
10167
  }>>;
9674
10168
  distanceRange: z.ZodOptional<z.ZodObject<{
9675
10169
  initial: z.ZodOptional<z.ZodNumber>;
@@ -10111,6 +10605,40 @@ declare const FlowContext: z.ZodObject<{
10111
10605
  searchLabel?: string | undefined;
10112
10606
  detailsLabel?: string | undefined;
10113
10607
  } | undefined;
10608
+ search?: {
10609
+ value?: string | undefined;
10610
+ button?: {
10611
+ label?: string | undefined;
10612
+ position?: "inside" | "outside" | undefined;
10613
+ } | undefined;
10614
+ placeholder?: string | undefined;
10615
+ prefix?: {
10616
+ default?: {
10617
+ text?: string | undefined;
10618
+ icon?: string | undefined;
10619
+ } | undefined;
10620
+ } | undefined;
10621
+ suffix?: {
10622
+ default?: {
10623
+ text?: string | undefined;
10624
+ icon?: string | undefined;
10625
+ } | undefined;
10626
+ } | undefined;
10627
+ clearable?: boolean | undefined;
10628
+ noResultsText?: string | undefined;
10629
+ autocomplete?: boolean | undefined;
10630
+ mode?: "address" | "postcode" | undefined;
10631
+ locationButton?: {
10632
+ icon?: string | undefined;
10633
+ position?: "left" | "right" | undefined;
10634
+ } | undefined;
10635
+ mappedResults?: {
10636
+ mapping: Record<string, {
10637
+ value: string;
10638
+ key: string;
10639
+ }[]>;
10640
+ } | undefined;
10641
+ } | undefined;
10114
10642
  apiKey?: string | undefined;
10115
10643
  region?: string | undefined;
10116
10644
  center?: {
@@ -10136,23 +10664,6 @@ declare const FlowContext: z.ZodObject<{
10136
10664
  maxLocations?: number | undefined;
10137
10665
  distanceUnit?: "km" | "mi" | undefined;
10138
10666
  distanceFormat?: "short" | "long" | undefined;
10139
- search?: {
10140
- value?: string | undefined;
10141
- button?: {
10142
- label?: string | undefined;
10143
- position?: "inside" | "outside" | undefined;
10144
- } | undefined;
10145
- placeholder?: string | undefined;
10146
- clearable?: boolean | undefined;
10147
- noResultsText?: string | undefined;
10148
- autocomplete?: boolean | undefined;
10149
- mode?: "address" | "postcode" | undefined;
10150
- showLocationButton?: boolean | undefined;
10151
- locationButton?: {
10152
- icon?: string | undefined;
10153
- position?: "left" | "right" | undefined;
10154
- } | undefined;
10155
- } | undefined;
10156
10667
  distanceRange?: {
10157
10668
  step?: number | undefined;
10158
10669
  min?: number | undefined;
@@ -10247,6 +10758,40 @@ declare const FlowContext: z.ZodObject<{
10247
10758
  searchLabel?: string | undefined;
10248
10759
  detailsLabel?: string | undefined;
10249
10760
  } | undefined;
10761
+ search?: {
10762
+ value?: string | undefined;
10763
+ button?: {
10764
+ label?: string | undefined;
10765
+ position?: "inside" | "outside" | undefined;
10766
+ } | undefined;
10767
+ placeholder?: string | undefined;
10768
+ prefix?: {
10769
+ default?: {
10770
+ text?: string | undefined;
10771
+ icon?: string | undefined;
10772
+ } | undefined;
10773
+ } | undefined;
10774
+ suffix?: {
10775
+ default?: {
10776
+ text?: string | undefined;
10777
+ icon?: string | undefined;
10778
+ } | undefined;
10779
+ } | undefined;
10780
+ clearable?: boolean | undefined;
10781
+ noResultsText?: string | undefined;
10782
+ autocomplete?: boolean | undefined;
10783
+ mode?: "address" | "postcode" | undefined;
10784
+ locationButton?: {
10785
+ icon?: string | undefined;
10786
+ position?: "left" | "right" | undefined;
10787
+ } | undefined;
10788
+ mappedResults?: {
10789
+ mapping: Record<string, {
10790
+ value: string;
10791
+ key: string;
10792
+ }[]>;
10793
+ } | undefined;
10794
+ } | undefined;
10250
10795
  apiKey?: string | undefined;
10251
10796
  region?: string | undefined;
10252
10797
  center?: {
@@ -10272,23 +10817,6 @@ declare const FlowContext: z.ZodObject<{
10272
10817
  maxLocations?: number | undefined;
10273
10818
  distanceUnit?: "km" | "mi" | undefined;
10274
10819
  distanceFormat?: "short" | "long" | undefined;
10275
- search?: {
10276
- value?: string | undefined;
10277
- button?: {
10278
- label?: string | undefined;
10279
- position?: "inside" | "outside" | undefined;
10280
- } | undefined;
10281
- placeholder?: string | undefined;
10282
- clearable?: boolean | undefined;
10283
- noResultsText?: string | undefined;
10284
- autocomplete?: boolean | undefined;
10285
- mode?: "address" | "postcode" | undefined;
10286
- showLocationButton?: boolean | undefined;
10287
- locationButton?: {
10288
- icon?: string | undefined;
10289
- position?: "left" | "right" | undefined;
10290
- } | undefined;
10291
- } | undefined;
10292
10820
  distanceRange?: {
10293
10821
  step?: number | undefined;
10294
10822
  min?: number | undefined;
@@ -10583,6 +11111,40 @@ declare const FlowContext: z.ZodObject<{
10583
11111
  searchLabel?: string | undefined;
10584
11112
  detailsLabel?: string | undefined;
10585
11113
  } | undefined;
11114
+ search?: {
11115
+ value?: string | undefined;
11116
+ button?: {
11117
+ label?: string | undefined;
11118
+ position?: "inside" | "outside" | undefined;
11119
+ } | undefined;
11120
+ placeholder?: string | undefined;
11121
+ prefix?: {
11122
+ default?: {
11123
+ text?: string | undefined;
11124
+ icon?: string | undefined;
11125
+ } | undefined;
11126
+ } | undefined;
11127
+ suffix?: {
11128
+ default?: {
11129
+ text?: string | undefined;
11130
+ icon?: string | undefined;
11131
+ } | undefined;
11132
+ } | undefined;
11133
+ clearable?: boolean | undefined;
11134
+ noResultsText?: string | undefined;
11135
+ autocomplete?: boolean | undefined;
11136
+ mode?: "address" | "postcode" | undefined;
11137
+ locationButton?: {
11138
+ icon?: string | undefined;
11139
+ position?: "left" | "right" | undefined;
11140
+ } | undefined;
11141
+ mappedResults?: {
11142
+ mapping: Record<string, {
11143
+ value: string;
11144
+ key: string;
11145
+ }[]>;
11146
+ } | undefined;
11147
+ } | undefined;
10586
11148
  apiKey?: string | undefined;
10587
11149
  region?: string | undefined;
10588
11150
  center?: {
@@ -10608,23 +11170,6 @@ declare const FlowContext: z.ZodObject<{
10608
11170
  maxLocations?: number | undefined;
10609
11171
  distanceUnit?: "km" | "mi" | undefined;
10610
11172
  distanceFormat?: "short" | "long" | undefined;
10611
- search?: {
10612
- value?: string | undefined;
10613
- button?: {
10614
- label?: string | undefined;
10615
- position?: "inside" | "outside" | undefined;
10616
- } | undefined;
10617
- placeholder?: string | undefined;
10618
- clearable?: boolean | undefined;
10619
- noResultsText?: string | undefined;
10620
- autocomplete?: boolean | undefined;
10621
- mode?: "address" | "postcode" | undefined;
10622
- showLocationButton?: boolean | undefined;
10623
- locationButton?: {
10624
- icon?: string | undefined;
10625
- position?: "left" | "right" | undefined;
10626
- } | undefined;
10627
- } | undefined;
10628
11173
  distanceRange?: {
10629
11174
  step?: number | undefined;
10630
11175
  min?: number | undefined;
@@ -10805,6 +11350,40 @@ declare const FlowContext: z.ZodObject<{
10805
11350
  searchLabel?: string | undefined;
10806
11351
  detailsLabel?: string | undefined;
10807
11352
  } | undefined;
11353
+ search?: {
11354
+ value?: string | undefined;
11355
+ button?: {
11356
+ label?: string | undefined;
11357
+ position?: "inside" | "outside" | undefined;
11358
+ } | undefined;
11359
+ placeholder?: string | undefined;
11360
+ prefix?: {
11361
+ default?: {
11362
+ text?: string | undefined;
11363
+ icon?: string | undefined;
11364
+ } | undefined;
11365
+ } | undefined;
11366
+ suffix?: {
11367
+ default?: {
11368
+ text?: string | undefined;
11369
+ icon?: string | undefined;
11370
+ } | undefined;
11371
+ } | undefined;
11372
+ clearable?: boolean | undefined;
11373
+ noResultsText?: string | undefined;
11374
+ autocomplete?: boolean | undefined;
11375
+ mode?: "address" | "postcode" | undefined;
11376
+ locationButton?: {
11377
+ icon?: string | undefined;
11378
+ position?: "left" | "right" | undefined;
11379
+ } | undefined;
11380
+ mappedResults?: {
11381
+ mapping: Record<string, {
11382
+ value: string;
11383
+ key: string;
11384
+ }[]>;
11385
+ } | undefined;
11386
+ } | undefined;
10808
11387
  apiKey?: string | undefined;
10809
11388
  region?: string | undefined;
10810
11389
  center?: {
@@ -10826,27 +11405,10 @@ declare const FlowContext: z.ZodObject<{
10826
11405
  rotate?: boolean | undefined;
10827
11406
  streetView?: boolean | undefined;
10828
11407
  } | undefined;
10829
- initialLocations?: number | undefined;
10830
- maxLocations?: number | undefined;
10831
- distanceUnit?: "km" | "mi" | undefined;
10832
- distanceFormat?: "short" | "long" | undefined;
10833
- search?: {
10834
- value?: string | undefined;
10835
- button?: {
10836
- label?: string | undefined;
10837
- position?: "inside" | "outside" | undefined;
10838
- } | undefined;
10839
- placeholder?: string | undefined;
10840
- clearable?: boolean | undefined;
10841
- noResultsText?: string | undefined;
10842
- autocomplete?: boolean | undefined;
10843
- mode?: "address" | "postcode" | undefined;
10844
- showLocationButton?: boolean | undefined;
10845
- locationButton?: {
10846
- icon?: string | undefined;
10847
- position?: "left" | "right" | undefined;
10848
- } | undefined;
10849
- } | undefined;
11408
+ initialLocations?: number | undefined;
11409
+ maxLocations?: number | undefined;
11410
+ distanceUnit?: "km" | "mi" | undefined;
11411
+ distanceFormat?: "short" | "long" | undefined;
10850
11412
  distanceRange?: {
10851
11413
  step?: number | undefined;
10852
11414
  min?: number | undefined;
@@ -11042,7 +11604,6 @@ declare const FlowContext: z.ZodObject<{
11042
11604
  type?: "email" | "phone" | "url" | undefined;
11043
11605
  icon?: string | undefined;
11044
11606
  }>>>;
11045
- attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
11046
11607
  }, "strip", z.ZodTypeAny, {
11047
11608
  lat: number;
11048
11609
  lng: number;
@@ -11053,7 +11614,6 @@ declare const FlowContext: z.ZodObject<{
11053
11614
  type?: "email" | "phone" | "url" | undefined;
11054
11615
  icon?: string | undefined;
11055
11616
  }> | undefined;
11056
- attributes?: Record<string, any> | undefined;
11057
11617
  }, {
11058
11618
  lat: number;
11059
11619
  lng: number;
@@ -11064,7 +11624,6 @@ declare const FlowContext: z.ZodObject<{
11064
11624
  type?: "email" | "phone" | "url" | undefined;
11065
11625
  icon?: string | undefined;
11066
11626
  }> | undefined;
11067
- attributes?: Record<string, any> | undefined;
11068
11627
  }>, z.ZodObject<{
11069
11628
  datetime: z.ZodString;
11070
11629
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -11087,7 +11646,6 @@ declare const FlowContext: z.ZodObject<{
11087
11646
  type?: "email" | "phone" | "url" | undefined;
11088
11647
  icon?: string | undefined;
11089
11648
  }> | undefined;
11090
- attributes?: Record<string, any> | undefined;
11091
11649
  } | {
11092
11650
  datetime: string;
11093
11651
  meta?: Record<string, any> | undefined;
@@ -11104,7 +11662,6 @@ declare const FlowContext: z.ZodObject<{
11104
11662
  type?: "email" | "phone" | "url" | undefined;
11105
11663
  icon?: string | undefined;
11106
11664
  }> | undefined;
11107
- attributes?: Record<string, any> | undefined;
11108
11665
  } | {
11109
11666
  datetime: string;
11110
11667
  meta?: Record<string, any> | undefined;
@@ -11149,7 +11706,6 @@ declare const FlowContext: z.ZodObject<{
11149
11706
  type?: "email" | "phone" | "url" | undefined;
11150
11707
  icon?: string | undefined;
11151
11708
  }> | undefined;
11152
- attributes?: Record<string, any> | undefined;
11153
11709
  } | {
11154
11710
  datetime: string;
11155
11711
  meta?: Record<string, any> | undefined;
@@ -11163,7 +11719,6 @@ declare const FlowContext: z.ZodObject<{
11163
11719
  type?: "email" | "phone" | "url" | undefined;
11164
11720
  icon?: string | undefined;
11165
11721
  }> | undefined;
11166
- attributes?: Record<string, any> | undefined;
11167
11722
  } | {
11168
11723
  datetime: string;
11169
11724
  meta?: Record<string, any> | undefined;
@@ -11180,7 +11735,6 @@ declare const FlowContext: z.ZodObject<{
11180
11735
  type?: "email" | "phone" | "url" | undefined;
11181
11736
  icon?: string | undefined;
11182
11737
  }> | undefined;
11183
- attributes?: Record<string, any> | undefined;
11184
11738
  } | {
11185
11739
  datetime: string;
11186
11740
  meta?: Record<string, any> | undefined;
@@ -11188,6 +11742,7 @@ declare const FlowContext: z.ZodObject<{
11188
11742
  disabled?: boolean | undefined;
11189
11743
  description?: string | undefined;
11190
11744
  image?: string | undefined;
11745
+ attributes?: Record<string, any> | undefined;
11191
11746
  }[] | undefined;
11192
11747
  label?: string | undefined;
11193
11748
  multiple?: boolean | undefined;
@@ -11203,6 +11758,40 @@ declare const FlowContext: z.ZodObject<{
11203
11758
  searchLabel?: string | undefined;
11204
11759
  detailsLabel?: string | undefined;
11205
11760
  } | undefined;
11761
+ search?: {
11762
+ value?: string | undefined;
11763
+ button?: {
11764
+ label?: string | undefined;
11765
+ position?: "inside" | "outside" | undefined;
11766
+ } | undefined;
11767
+ placeholder?: string | undefined;
11768
+ prefix?: {
11769
+ default?: {
11770
+ text?: string | undefined;
11771
+ icon?: string | undefined;
11772
+ } | undefined;
11773
+ } | undefined;
11774
+ suffix?: {
11775
+ default?: {
11776
+ text?: string | undefined;
11777
+ icon?: string | undefined;
11778
+ } | undefined;
11779
+ } | undefined;
11780
+ clearable?: boolean | undefined;
11781
+ noResultsText?: string | undefined;
11782
+ autocomplete?: boolean | undefined;
11783
+ mode?: "address" | "postcode" | undefined;
11784
+ locationButton?: {
11785
+ icon?: string | undefined;
11786
+ position?: "left" | "right" | undefined;
11787
+ } | undefined;
11788
+ mappedResults?: {
11789
+ mapping: Record<string, {
11790
+ value: string;
11791
+ key: string;
11792
+ }[]>;
11793
+ } | undefined;
11794
+ } | undefined;
11206
11795
  apiKey?: string | undefined;
11207
11796
  region?: string | undefined;
11208
11797
  center?: {
@@ -11228,23 +11817,6 @@ declare const FlowContext: z.ZodObject<{
11228
11817
  maxLocations?: number | undefined;
11229
11818
  distanceUnit?: "km" | "mi" | undefined;
11230
11819
  distanceFormat?: "short" | "long" | undefined;
11231
- search?: {
11232
- value?: string | undefined;
11233
- button?: {
11234
- label?: string | undefined;
11235
- position?: "inside" | "outside" | undefined;
11236
- } | undefined;
11237
- placeholder?: string | undefined;
11238
- clearable?: boolean | undefined;
11239
- noResultsText?: string | undefined;
11240
- autocomplete?: boolean | undefined;
11241
- mode?: "address" | "postcode" | undefined;
11242
- showLocationButton?: boolean | undefined;
11243
- locationButton?: {
11244
- icon?: string | undefined;
11245
- position?: "left" | "right" | undefined;
11246
- } | undefined;
11247
- } | undefined;
11248
11820
  distanceRange?: {
11249
11821
  step?: number | undefined;
11250
11822
  min?: number | undefined;
@@ -11430,7 +12002,6 @@ declare const FlowContext: z.ZodObject<{
11430
12002
  type?: "email" | "phone" | "url" | undefined;
11431
12003
  icon?: string | undefined;
11432
12004
  }> | undefined;
11433
- attributes?: Record<string, any> | undefined;
11434
12005
  } | {
11435
12006
  datetime: string;
11436
12007
  meta?: Record<string, any> | undefined;
@@ -11460,7 +12031,6 @@ declare const FlowContext: z.ZodObject<{
11460
12031
  type?: "email" | "phone" | "url" | undefined;
11461
12032
  icon?: string | undefined;
11462
12033
  }> | undefined;
11463
- attributes?: Record<string, any> | undefined;
11464
12034
  } | {
11465
12035
  datetime: string;
11466
12036
  meta?: Record<string, any> | undefined;
@@ -11474,7 +12044,6 @@ declare const FlowContext: z.ZodObject<{
11474
12044
  type?: "email" | "phone" | "url" | undefined;
11475
12045
  icon?: string | undefined;
11476
12046
  }> | undefined;
11477
- attributes?: Record<string, any> | undefined;
11478
12047
  } | {
11479
12048
  datetime: string;
11480
12049
  meta?: Record<string, any> | undefined;
@@ -11491,7 +12060,6 @@ declare const FlowContext: z.ZodObject<{
11491
12060
  type?: "email" | "phone" | "url" | undefined;
11492
12061
  icon?: string | undefined;
11493
12062
  }> | undefined;
11494
- attributes?: Record<string, any> | undefined;
11495
12063
  } | {
11496
12064
  datetime: string;
11497
12065
  meta?: Record<string, any> | undefined;
@@ -11499,6 +12067,7 @@ declare const FlowContext: z.ZodObject<{
11499
12067
  disabled?: boolean | undefined;
11500
12068
  description?: string | undefined;
11501
12069
  image?: string | undefined;
12070
+ attributes?: Record<string, any> | undefined;
11502
12071
  }[] | undefined;
11503
12072
  label?: string | undefined;
11504
12073
  multiple?: boolean | undefined;
@@ -11514,6 +12083,40 @@ declare const FlowContext: z.ZodObject<{
11514
12083
  searchLabel?: string | undefined;
11515
12084
  detailsLabel?: string | undefined;
11516
12085
  } | undefined;
12086
+ search?: {
12087
+ value?: string | undefined;
12088
+ button?: {
12089
+ label?: string | undefined;
12090
+ position?: "inside" | "outside" | undefined;
12091
+ } | undefined;
12092
+ placeholder?: string | undefined;
12093
+ prefix?: {
12094
+ default?: {
12095
+ text?: string | undefined;
12096
+ icon?: string | undefined;
12097
+ } | undefined;
12098
+ } | undefined;
12099
+ suffix?: {
12100
+ default?: {
12101
+ text?: string | undefined;
12102
+ icon?: string | undefined;
12103
+ } | undefined;
12104
+ } | undefined;
12105
+ clearable?: boolean | undefined;
12106
+ noResultsText?: string | undefined;
12107
+ autocomplete?: boolean | undefined;
12108
+ mode?: "address" | "postcode" | undefined;
12109
+ locationButton?: {
12110
+ icon?: string | undefined;
12111
+ position?: "left" | "right" | undefined;
12112
+ } | undefined;
12113
+ mappedResults?: {
12114
+ mapping: Record<string, {
12115
+ value: string;
12116
+ key: string;
12117
+ }[]>;
12118
+ } | undefined;
12119
+ } | undefined;
11517
12120
  apiKey?: string | undefined;
11518
12121
  region?: string | undefined;
11519
12122
  center?: {
@@ -11539,23 +12142,6 @@ declare const FlowContext: z.ZodObject<{
11539
12142
  maxLocations?: number | undefined;
11540
12143
  distanceUnit?: "km" | "mi" | undefined;
11541
12144
  distanceFormat?: "short" | "long" | undefined;
11542
- search?: {
11543
- value?: string | undefined;
11544
- button?: {
11545
- label?: string | undefined;
11546
- position?: "inside" | "outside" | undefined;
11547
- } | undefined;
11548
- placeholder?: string | undefined;
11549
- clearable?: boolean | undefined;
11550
- noResultsText?: string | undefined;
11551
- autocomplete?: boolean | undefined;
11552
- mode?: "address" | "postcode" | undefined;
11553
- showLocationButton?: boolean | undefined;
11554
- locationButton?: {
11555
- icon?: string | undefined;
11556
- position?: "left" | "right" | undefined;
11557
- } | undefined;
11558
- } | undefined;
11559
12145
  distanceRange?: {
11560
12146
  step?: number | undefined;
11561
12147
  min?: number | undefined;
@@ -11741,7 +12327,6 @@ declare const FlowContext: z.ZodObject<{
11741
12327
  type?: "email" | "phone" | "url" | undefined;
11742
12328
  icon?: string | undefined;
11743
12329
  }> | undefined;
11744
- attributes?: Record<string, any> | undefined;
11745
12330
  } | {
11746
12331
  datetime: string;
11747
12332
  meta?: Record<string, any> | undefined;
@@ -11928,7 +12513,6 @@ declare const FlowContext: z.ZodObject<{
11928
12513
  type?: "email" | "phone" | "url" | undefined;
11929
12514
  icon?: string | undefined;
11930
12515
  }> | undefined;
11931
- attributes?: Record<string, any> | undefined;
11932
12516
  } | {
11933
12517
  datetime: string;
11934
12518
  meta?: Record<string, any> | undefined;
@@ -11942,7 +12526,6 @@ declare const FlowContext: z.ZodObject<{
11942
12526
  type?: "email" | "phone" | "url" | undefined;
11943
12527
  icon?: string | undefined;
11944
12528
  }> | undefined;
11945
- attributes?: Record<string, any> | undefined;
11946
12529
  } | {
11947
12530
  datetime: string;
11948
12531
  meta?: Record<string, any> | undefined;
@@ -11959,7 +12542,6 @@ declare const FlowContext: z.ZodObject<{
11959
12542
  type?: "email" | "phone" | "url" | undefined;
11960
12543
  icon?: string | undefined;
11961
12544
  }> | undefined;
11962
- attributes?: Record<string, any> | undefined;
11963
12545
  } | {
11964
12546
  datetime: string;
11965
12547
  meta?: Record<string, any> | undefined;
@@ -11967,6 +12549,7 @@ declare const FlowContext: z.ZodObject<{
11967
12549
  disabled?: boolean | undefined;
11968
12550
  description?: string | undefined;
11969
12551
  image?: string | undefined;
12552
+ attributes?: Record<string, any> | undefined;
11970
12553
  }[] | undefined;
11971
12554
  label?: string | undefined;
11972
12555
  multiple?: boolean | undefined;
@@ -11982,6 +12565,40 @@ declare const FlowContext: z.ZodObject<{
11982
12565
  searchLabel?: string | undefined;
11983
12566
  detailsLabel?: string | undefined;
11984
12567
  } | undefined;
12568
+ search?: {
12569
+ value?: string | undefined;
12570
+ button?: {
12571
+ label?: string | undefined;
12572
+ position?: "inside" | "outside" | undefined;
12573
+ } | undefined;
12574
+ placeholder?: string | undefined;
12575
+ prefix?: {
12576
+ default?: {
12577
+ text?: string | undefined;
12578
+ icon?: string | undefined;
12579
+ } | undefined;
12580
+ } | undefined;
12581
+ suffix?: {
12582
+ default?: {
12583
+ text?: string | undefined;
12584
+ icon?: string | undefined;
12585
+ } | undefined;
12586
+ } | undefined;
12587
+ clearable?: boolean | undefined;
12588
+ noResultsText?: string | undefined;
12589
+ autocomplete?: boolean | undefined;
12590
+ mode?: "address" | "postcode" | undefined;
12591
+ locationButton?: {
12592
+ icon?: string | undefined;
12593
+ position?: "left" | "right" | undefined;
12594
+ } | undefined;
12595
+ mappedResults?: {
12596
+ mapping: Record<string, {
12597
+ value: string;
12598
+ key: string;
12599
+ }[]>;
12600
+ } | undefined;
12601
+ } | undefined;
11985
12602
  apiKey?: string | undefined;
11986
12603
  region?: string | undefined;
11987
12604
  center?: {
@@ -12007,23 +12624,6 @@ declare const FlowContext: z.ZodObject<{
12007
12624
  maxLocations?: number | undefined;
12008
12625
  distanceUnit?: "km" | "mi" | undefined;
12009
12626
  distanceFormat?: "short" | "long" | undefined;
12010
- search?: {
12011
- value?: string | undefined;
12012
- button?: {
12013
- label?: string | undefined;
12014
- position?: "inside" | "outside" | undefined;
12015
- } | undefined;
12016
- placeholder?: string | undefined;
12017
- clearable?: boolean | undefined;
12018
- noResultsText?: string | undefined;
12019
- autocomplete?: boolean | undefined;
12020
- mode?: "address" | "postcode" | undefined;
12021
- showLocationButton?: boolean | undefined;
12022
- locationButton?: {
12023
- icon?: string | undefined;
12024
- position?: "left" | "right" | undefined;
12025
- } | undefined;
12026
- } | undefined;
12027
12627
  distanceRange?: {
12028
12628
  step?: number | undefined;
12029
12629
  min?: number | undefined;
@@ -12209,7 +12809,6 @@ declare const FlowContext: z.ZodObject<{
12209
12809
  type?: "email" | "phone" | "url" | undefined;
12210
12810
  icon?: string | undefined;
12211
12811
  }> | undefined;
12212
- attributes?: Record<string, any> | undefined;
12213
12812
  } | {
12214
12813
  datetime: string;
12215
12814
  meta?: Record<string, any> | undefined;
@@ -12286,7 +12885,6 @@ declare const FlowContext: z.ZodObject<{
12286
12885
  type?: "email" | "phone" | "url" | undefined;
12287
12886
  icon?: string | undefined;
12288
12887
  }> | undefined;
12289
- attributes?: Record<string, any> | undefined;
12290
12888
  } | {
12291
12889
  datetime: string;
12292
12890
  meta?: Record<string, any> | undefined;
@@ -12300,7 +12898,6 @@ declare const FlowContext: z.ZodObject<{
12300
12898
  type?: "email" | "phone" | "url" | undefined;
12301
12899
  icon?: string | undefined;
12302
12900
  }> | undefined;
12303
- attributes?: Record<string, any> | undefined;
12304
12901
  } | {
12305
12902
  datetime: string;
12306
12903
  meta?: Record<string, any> | undefined;
@@ -12317,7 +12914,6 @@ declare const FlowContext: z.ZodObject<{
12317
12914
  type?: "email" | "phone" | "url" | undefined;
12318
12915
  icon?: string | undefined;
12319
12916
  }> | undefined;
12320
- attributes?: Record<string, any> | undefined;
12321
12917
  } | {
12322
12918
  datetime: string;
12323
12919
  meta?: Record<string, any> | undefined;
@@ -12325,6 +12921,7 @@ declare const FlowContext: z.ZodObject<{
12325
12921
  disabled?: boolean | undefined;
12326
12922
  description?: string | undefined;
12327
12923
  image?: string | undefined;
12924
+ attributes?: Record<string, any> | undefined;
12328
12925
  }[] | undefined;
12329
12926
  label?: string | undefined;
12330
12927
  multiple?: boolean | undefined;
@@ -12340,6 +12937,40 @@ declare const FlowContext: z.ZodObject<{
12340
12937
  searchLabel?: string | undefined;
12341
12938
  detailsLabel?: string | undefined;
12342
12939
  } | undefined;
12940
+ search?: {
12941
+ value?: string | undefined;
12942
+ button?: {
12943
+ label?: string | undefined;
12944
+ position?: "inside" | "outside" | undefined;
12945
+ } | undefined;
12946
+ placeholder?: string | undefined;
12947
+ prefix?: {
12948
+ default?: {
12949
+ text?: string | undefined;
12950
+ icon?: string | undefined;
12951
+ } | undefined;
12952
+ } | undefined;
12953
+ suffix?: {
12954
+ default?: {
12955
+ text?: string | undefined;
12956
+ icon?: string | undefined;
12957
+ } | undefined;
12958
+ } | undefined;
12959
+ clearable?: boolean | undefined;
12960
+ noResultsText?: string | undefined;
12961
+ autocomplete?: boolean | undefined;
12962
+ mode?: "address" | "postcode" | undefined;
12963
+ locationButton?: {
12964
+ icon?: string | undefined;
12965
+ position?: "left" | "right" | undefined;
12966
+ } | undefined;
12967
+ mappedResults?: {
12968
+ mapping: Record<string, {
12969
+ value: string;
12970
+ key: string;
12971
+ }[]>;
12972
+ } | undefined;
12973
+ } | undefined;
12343
12974
  apiKey?: string | undefined;
12344
12975
  region?: string | undefined;
12345
12976
  center?: {
@@ -12365,23 +12996,6 @@ declare const FlowContext: z.ZodObject<{
12365
12996
  maxLocations?: number | undefined;
12366
12997
  distanceUnit?: "km" | "mi" | undefined;
12367
12998
  distanceFormat?: "short" | "long" | undefined;
12368
- search?: {
12369
- value?: string | undefined;
12370
- button?: {
12371
- label?: string | undefined;
12372
- position?: "inside" | "outside" | undefined;
12373
- } | undefined;
12374
- placeholder?: string | undefined;
12375
- clearable?: boolean | undefined;
12376
- noResultsText?: string | undefined;
12377
- autocomplete?: boolean | undefined;
12378
- mode?: "address" | "postcode" | undefined;
12379
- showLocationButton?: boolean | undefined;
12380
- locationButton?: {
12381
- icon?: string | undefined;
12382
- position?: "left" | "right" | undefined;
12383
- } | undefined;
12384
- } | undefined;
12385
12999
  distanceRange?: {
12386
13000
  step?: number | undefined;
12387
13001
  min?: number | undefined;
@@ -12567,7 +13181,6 @@ declare const FlowContext: z.ZodObject<{
12567
13181
  type?: "email" | "phone" | "url" | undefined;
12568
13182
  icon?: string | undefined;
12569
13183
  }> | undefined;
12570
- attributes?: Record<string, any> | undefined;
12571
13184
  } | {
12572
13185
  datetime: string;
12573
13186
  meta?: Record<string, any> | undefined;
@@ -12678,7 +13291,6 @@ declare const FlowContext: z.ZodObject<{
12678
13291
  type?: "email" | "phone" | "url" | undefined;
12679
13292
  icon?: string | undefined;
12680
13293
  }> | undefined;
12681
- attributes?: Record<string, any> | undefined;
12682
13294
  } | {
12683
13295
  datetime: string;
12684
13296
  meta?: Record<string, any> | undefined;
@@ -12692,7 +13304,6 @@ declare const FlowContext: z.ZodObject<{
12692
13304
  type?: "email" | "phone" | "url" | undefined;
12693
13305
  icon?: string | undefined;
12694
13306
  }> | undefined;
12695
- attributes?: Record<string, any> | undefined;
12696
13307
  } | {
12697
13308
  datetime: string;
12698
13309
  meta?: Record<string, any> | undefined;
@@ -12709,7 +13320,6 @@ declare const FlowContext: z.ZodObject<{
12709
13320
  type?: "email" | "phone" | "url" | undefined;
12710
13321
  icon?: string | undefined;
12711
13322
  }> | undefined;
12712
- attributes?: Record<string, any> | undefined;
12713
13323
  } | {
12714
13324
  datetime: string;
12715
13325
  meta?: Record<string, any> | undefined;
@@ -12717,6 +13327,7 @@ declare const FlowContext: z.ZodObject<{
12717
13327
  disabled?: boolean | undefined;
12718
13328
  description?: string | undefined;
12719
13329
  image?: string | undefined;
13330
+ attributes?: Record<string, any> | undefined;
12720
13331
  }[] | undefined;
12721
13332
  label?: string | undefined;
12722
13333
  multiple?: boolean | undefined;
@@ -12732,6 +13343,40 @@ declare const FlowContext: z.ZodObject<{
12732
13343
  searchLabel?: string | undefined;
12733
13344
  detailsLabel?: string | undefined;
12734
13345
  } | undefined;
13346
+ search?: {
13347
+ value?: string | undefined;
13348
+ button?: {
13349
+ label?: string | undefined;
13350
+ position?: "inside" | "outside" | undefined;
13351
+ } | undefined;
13352
+ placeholder?: string | undefined;
13353
+ prefix?: {
13354
+ default?: {
13355
+ text?: string | undefined;
13356
+ icon?: string | undefined;
13357
+ } | undefined;
13358
+ } | undefined;
13359
+ suffix?: {
13360
+ default?: {
13361
+ text?: string | undefined;
13362
+ icon?: string | undefined;
13363
+ } | undefined;
13364
+ } | undefined;
13365
+ clearable?: boolean | undefined;
13366
+ noResultsText?: string | undefined;
13367
+ autocomplete?: boolean | undefined;
13368
+ mode?: "address" | "postcode" | undefined;
13369
+ locationButton?: {
13370
+ icon?: string | undefined;
13371
+ position?: "left" | "right" | undefined;
13372
+ } | undefined;
13373
+ mappedResults?: {
13374
+ mapping: Record<string, {
13375
+ value: string;
13376
+ key: string;
13377
+ }[]>;
13378
+ } | undefined;
13379
+ } | undefined;
12735
13380
  apiKey?: string | undefined;
12736
13381
  region?: string | undefined;
12737
13382
  center?: {
@@ -12757,23 +13402,6 @@ declare const FlowContext: z.ZodObject<{
12757
13402
  maxLocations?: number | undefined;
12758
13403
  distanceUnit?: "km" | "mi" | undefined;
12759
13404
  distanceFormat?: "short" | "long" | undefined;
12760
- search?: {
12761
- value?: string | undefined;
12762
- button?: {
12763
- label?: string | undefined;
12764
- position?: "inside" | "outside" | undefined;
12765
- } | undefined;
12766
- placeholder?: string | undefined;
12767
- clearable?: boolean | undefined;
12768
- noResultsText?: string | undefined;
12769
- autocomplete?: boolean | undefined;
12770
- mode?: "address" | "postcode" | undefined;
12771
- showLocationButton?: boolean | undefined;
12772
- locationButton?: {
12773
- icon?: string | undefined;
12774
- position?: "left" | "right" | undefined;
12775
- } | undefined;
12776
- } | undefined;
12777
13405
  distanceRange?: {
12778
13406
  step?: number | undefined;
12779
13407
  min?: number | undefined;
@@ -12959,7 +13587,6 @@ declare const FlowContext: z.ZodObject<{
12959
13587
  type?: "email" | "phone" | "url" | undefined;
12960
13588
  icon?: string | undefined;
12961
13589
  }> | undefined;
12962
- attributes?: Record<string, any> | undefined;
12963
13590
  } | {
12964
13591
  datetime: string;
12965
13592
  meta?: Record<string, any> | undefined;
@@ -13048,7 +13675,6 @@ declare const FlowContext: z.ZodObject<{
13048
13675
  type?: "email" | "phone" | "url" | undefined;
13049
13676
  icon?: string | undefined;
13050
13677
  }> | undefined;
13051
- attributes?: Record<string, any> | undefined;
13052
13678
  } | {
13053
13679
  datetime: string;
13054
13680
  meta?: Record<string, any> | undefined;
@@ -13062,7 +13688,6 @@ declare const FlowContext: z.ZodObject<{
13062
13688
  type?: "email" | "phone" | "url" | undefined;
13063
13689
  icon?: string | undefined;
13064
13690
  }> | undefined;
13065
- attributes?: Record<string, any> | undefined;
13066
13691
  } | {
13067
13692
  datetime: string;
13068
13693
  meta?: Record<string, any> | undefined;
@@ -13079,7 +13704,6 @@ declare const FlowContext: z.ZodObject<{
13079
13704
  type?: "email" | "phone" | "url" | undefined;
13080
13705
  icon?: string | undefined;
13081
13706
  }> | undefined;
13082
- attributes?: Record<string, any> | undefined;
13083
13707
  } | {
13084
13708
  datetime: string;
13085
13709
  meta?: Record<string, any> | undefined;
@@ -13087,6 +13711,7 @@ declare const FlowContext: z.ZodObject<{
13087
13711
  disabled?: boolean | undefined;
13088
13712
  description?: string | undefined;
13089
13713
  image?: string | undefined;
13714
+ attributes?: Record<string, any> | undefined;
13090
13715
  }[] | undefined;
13091
13716
  label?: string | undefined;
13092
13717
  multiple?: boolean | undefined;
@@ -13102,6 +13727,40 @@ declare const FlowContext: z.ZodObject<{
13102
13727
  searchLabel?: string | undefined;
13103
13728
  detailsLabel?: string | undefined;
13104
13729
  } | undefined;
13730
+ search?: {
13731
+ value?: string | undefined;
13732
+ button?: {
13733
+ label?: string | undefined;
13734
+ position?: "inside" | "outside" | undefined;
13735
+ } | undefined;
13736
+ placeholder?: string | undefined;
13737
+ prefix?: {
13738
+ default?: {
13739
+ text?: string | undefined;
13740
+ icon?: string | undefined;
13741
+ } | undefined;
13742
+ } | undefined;
13743
+ suffix?: {
13744
+ default?: {
13745
+ text?: string | undefined;
13746
+ icon?: string | undefined;
13747
+ } | undefined;
13748
+ } | undefined;
13749
+ clearable?: boolean | undefined;
13750
+ noResultsText?: string | undefined;
13751
+ autocomplete?: boolean | undefined;
13752
+ mode?: "address" | "postcode" | undefined;
13753
+ locationButton?: {
13754
+ icon?: string | undefined;
13755
+ position?: "left" | "right" | undefined;
13756
+ } | undefined;
13757
+ mappedResults?: {
13758
+ mapping: Record<string, {
13759
+ value: string;
13760
+ key: string;
13761
+ }[]>;
13762
+ } | undefined;
13763
+ } | undefined;
13105
13764
  apiKey?: string | undefined;
13106
13765
  region?: string | undefined;
13107
13766
  center?: {
@@ -13127,23 +13786,6 @@ declare const FlowContext: z.ZodObject<{
13127
13786
  maxLocations?: number | undefined;
13128
13787
  distanceUnit?: "km" | "mi" | undefined;
13129
13788
  distanceFormat?: "short" | "long" | undefined;
13130
- search?: {
13131
- value?: string | undefined;
13132
- button?: {
13133
- label?: string | undefined;
13134
- position?: "inside" | "outside" | undefined;
13135
- } | undefined;
13136
- placeholder?: string | undefined;
13137
- clearable?: boolean | undefined;
13138
- noResultsText?: string | undefined;
13139
- autocomplete?: boolean | undefined;
13140
- mode?: "address" | "postcode" | undefined;
13141
- showLocationButton?: boolean | undefined;
13142
- locationButton?: {
13143
- icon?: string | undefined;
13144
- position?: "left" | "right" | undefined;
13145
- } | undefined;
13146
- } | undefined;
13147
13789
  distanceRange?: {
13148
13790
  step?: number | undefined;
13149
13791
  min?: number | undefined;
@@ -13329,7 +13971,6 @@ declare const FlowContext: z.ZodObject<{
13329
13971
  type?: "email" | "phone" | "url" | undefined;
13330
13972
  icon?: string | undefined;
13331
13973
  }> | undefined;
13332
- attributes?: Record<string, any> | undefined;
13333
13974
  } | {
13334
13975
  datetime: string;
13335
13976
  meta?: Record<string, any> | undefined;