@onlive.ai/flow-client 0.1.61 → 0.1.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/client.service.cjs +2 -2
- package/client/client.service.js +2 -2
- package/client/client.service.spec.cjs +2 -2
- package/client/client.service.spec.js +2 -2
- package/client/client.types.cjs +2 -2
- package/client/client.types.d.cts +349 -168
- package/client/client.types.d.ts +349 -168
- package/client/client.types.js +2 -2
- package/flow.types.cjs +1 -1
- package/flow.types.js +1 -1
- package/index.cjs +2 -2
- package/index.js +2 -2
- package/package.json +2 -2
- package/schema-generator.cjs +1 -1
- package/schema-generator.js +1 -1
- package/tracking/tracking.service.cjs +1 -1
- package/tracking/tracking.service.js +1 -1
- package/tracking/tracking.types.cjs +1 -1
- package/tracking/tracking.types.js +1 -1
package/client/client.types.d.ts
CHANGED
|
@@ -3644,26 +3644,47 @@ declare const Step: z.ZodObject<{
|
|
|
3644
3644
|
} | undefined;
|
|
3645
3645
|
}>>;
|
|
3646
3646
|
mappedResults: z.ZodOptional<z.ZodObject<{
|
|
3647
|
-
mapping: z.
|
|
3648
|
-
|
|
3649
|
-
|
|
3647
|
+
mapping: z.ZodArray<z.ZodObject<{
|
|
3648
|
+
terms: z.ZodArray<z.ZodString, "many">;
|
|
3649
|
+
values: z.ZodArray<z.ZodObject<{
|
|
3650
|
+
key: z.ZodString;
|
|
3651
|
+
value: z.ZodString;
|
|
3652
|
+
}, "strip", z.ZodTypeAny, {
|
|
3653
|
+
value: string;
|
|
3654
|
+
key: string;
|
|
3655
|
+
}, {
|
|
3656
|
+
value: string;
|
|
3657
|
+
key: string;
|
|
3658
|
+
}>, "many">;
|
|
3650
3659
|
}, "strip", z.ZodTypeAny, {
|
|
3651
|
-
|
|
3652
|
-
|
|
3660
|
+
values: {
|
|
3661
|
+
value: string;
|
|
3662
|
+
key: string;
|
|
3663
|
+
}[];
|
|
3664
|
+
terms: string[];
|
|
3653
3665
|
}, {
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3666
|
+
values: {
|
|
3667
|
+
value: string;
|
|
3668
|
+
key: string;
|
|
3669
|
+
}[];
|
|
3670
|
+
terms: string[];
|
|
3671
|
+
}>, "many">;
|
|
3657
3672
|
}, "strip", z.ZodTypeAny, {
|
|
3658
|
-
mapping:
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3673
|
+
mapping: {
|
|
3674
|
+
values: {
|
|
3675
|
+
value: string;
|
|
3676
|
+
key: string;
|
|
3677
|
+
}[];
|
|
3678
|
+
terms: string[];
|
|
3679
|
+
}[];
|
|
3662
3680
|
}, {
|
|
3663
|
-
mapping:
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3681
|
+
mapping: {
|
|
3682
|
+
values: {
|
|
3683
|
+
value: string;
|
|
3684
|
+
key: string;
|
|
3685
|
+
}[];
|
|
3686
|
+
terms: string[];
|
|
3687
|
+
}[];
|
|
3667
3688
|
}>>;
|
|
3668
3689
|
}, "strip", z.ZodTypeAny, {
|
|
3669
3690
|
value?: string | undefined;
|
|
@@ -3694,10 +3715,13 @@ declare const Step: z.ZodObject<{
|
|
|
3694
3715
|
position?: "left" | "right" | undefined;
|
|
3695
3716
|
} | undefined;
|
|
3696
3717
|
mappedResults?: {
|
|
3697
|
-
mapping:
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3718
|
+
mapping: {
|
|
3719
|
+
values: {
|
|
3720
|
+
value: string;
|
|
3721
|
+
key: string;
|
|
3722
|
+
}[];
|
|
3723
|
+
terms: string[];
|
|
3724
|
+
}[];
|
|
3701
3725
|
} | undefined;
|
|
3702
3726
|
}, {
|
|
3703
3727
|
value?: string | undefined;
|
|
@@ -3728,10 +3752,13 @@ declare const Step: z.ZodObject<{
|
|
|
3728
3752
|
position?: "left" | "right" | undefined;
|
|
3729
3753
|
} | undefined;
|
|
3730
3754
|
mappedResults?: {
|
|
3731
|
-
mapping:
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
|
|
3755
|
+
mapping: {
|
|
3756
|
+
values: {
|
|
3757
|
+
value: string;
|
|
3758
|
+
key: string;
|
|
3759
|
+
}[];
|
|
3760
|
+
terms: string[];
|
|
3761
|
+
}[];
|
|
3735
3762
|
} | undefined;
|
|
3736
3763
|
}>>;
|
|
3737
3764
|
distanceRange: z.ZodOptional<z.ZodObject<{
|
|
@@ -4167,6 +4194,7 @@ declare const Step: z.ZodObject<{
|
|
|
4167
4194
|
action: string;
|
|
4168
4195
|
} | undefined;
|
|
4169
4196
|
}>>;
|
|
4197
|
+
forcePolyfills: z.ZodOptional<z.ZodBoolean>;
|
|
4170
4198
|
}, "strip", z.ZodTypeAny, {
|
|
4171
4199
|
options?: {
|
|
4172
4200
|
component?: "carousel" | "list-button" | "list-radio" | undefined;
|
|
@@ -4203,10 +4231,13 @@ declare const Step: z.ZodObject<{
|
|
|
4203
4231
|
position?: "left" | "right" | undefined;
|
|
4204
4232
|
} | undefined;
|
|
4205
4233
|
mappedResults?: {
|
|
4206
|
-
mapping:
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4234
|
+
mapping: {
|
|
4235
|
+
values: {
|
|
4236
|
+
value: string;
|
|
4237
|
+
key: string;
|
|
4238
|
+
}[];
|
|
4239
|
+
terms: string[];
|
|
4240
|
+
}[];
|
|
4210
4241
|
} | undefined;
|
|
4211
4242
|
} | undefined;
|
|
4212
4243
|
apiKey?: string | undefined;
|
|
@@ -4321,6 +4352,7 @@ declare const Step: z.ZodObject<{
|
|
|
4321
4352
|
action: string;
|
|
4322
4353
|
} | undefined;
|
|
4323
4354
|
} | undefined;
|
|
4355
|
+
forcePolyfills?: boolean | undefined;
|
|
4324
4356
|
}, {
|
|
4325
4357
|
options?: {
|
|
4326
4358
|
component?: "carousel" | "list-button" | "list-radio" | undefined;
|
|
@@ -4357,10 +4389,13 @@ declare const Step: z.ZodObject<{
|
|
|
4357
4389
|
position?: "left" | "right" | undefined;
|
|
4358
4390
|
} | undefined;
|
|
4359
4391
|
mappedResults?: {
|
|
4360
|
-
mapping:
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4392
|
+
mapping: {
|
|
4393
|
+
values: {
|
|
4394
|
+
value: string;
|
|
4395
|
+
key: string;
|
|
4396
|
+
}[];
|
|
4397
|
+
terms: string[];
|
|
4398
|
+
}[];
|
|
4364
4399
|
} | undefined;
|
|
4365
4400
|
} | undefined;
|
|
4366
4401
|
apiKey?: string | undefined;
|
|
@@ -4475,6 +4510,7 @@ declare const Step: z.ZodObject<{
|
|
|
4475
4510
|
action: string;
|
|
4476
4511
|
} | undefined;
|
|
4477
4512
|
} | undefined;
|
|
4513
|
+
forcePolyfills?: boolean | undefined;
|
|
4478
4514
|
}>>;
|
|
4479
4515
|
calendar: z.ZodOptional<z.ZodObject<{
|
|
4480
4516
|
current: z.ZodOptional<z.ZodObject<{
|
|
@@ -4711,10 +4747,13 @@ declare const Step: z.ZodObject<{
|
|
|
4711
4747
|
position?: "left" | "right" | undefined;
|
|
4712
4748
|
} | undefined;
|
|
4713
4749
|
mappedResults?: {
|
|
4714
|
-
mapping:
|
|
4715
|
-
|
|
4716
|
-
|
|
4717
|
-
|
|
4750
|
+
mapping: {
|
|
4751
|
+
values: {
|
|
4752
|
+
value: string;
|
|
4753
|
+
key: string;
|
|
4754
|
+
}[];
|
|
4755
|
+
terms: string[];
|
|
4756
|
+
}[];
|
|
4718
4757
|
} | undefined;
|
|
4719
4758
|
} | undefined;
|
|
4720
4759
|
apiKey?: string | undefined;
|
|
@@ -4829,6 +4868,7 @@ declare const Step: z.ZodObject<{
|
|
|
4829
4868
|
action: string;
|
|
4830
4869
|
} | undefined;
|
|
4831
4870
|
} | undefined;
|
|
4871
|
+
forcePolyfills?: boolean | undefined;
|
|
4832
4872
|
} | undefined;
|
|
4833
4873
|
input?: {
|
|
4834
4874
|
step?: number | undefined;
|
|
@@ -5003,10 +5043,13 @@ declare const Step: z.ZodObject<{
|
|
|
5003
5043
|
position?: "left" | "right" | undefined;
|
|
5004
5044
|
} | undefined;
|
|
5005
5045
|
mappedResults?: {
|
|
5006
|
-
mapping:
|
|
5007
|
-
|
|
5008
|
-
|
|
5009
|
-
|
|
5046
|
+
mapping: {
|
|
5047
|
+
values: {
|
|
5048
|
+
value: string;
|
|
5049
|
+
key: string;
|
|
5050
|
+
}[];
|
|
5051
|
+
terms: string[];
|
|
5052
|
+
}[];
|
|
5010
5053
|
} | undefined;
|
|
5011
5054
|
} | undefined;
|
|
5012
5055
|
apiKey?: string | undefined;
|
|
@@ -5121,6 +5164,7 @@ declare const Step: z.ZodObject<{
|
|
|
5121
5164
|
action: string;
|
|
5122
5165
|
} | undefined;
|
|
5123
5166
|
} | undefined;
|
|
5167
|
+
forcePolyfills?: boolean | undefined;
|
|
5124
5168
|
} | undefined;
|
|
5125
5169
|
input?: {
|
|
5126
5170
|
step?: number | undefined;
|
|
@@ -5801,10 +5845,13 @@ declare const Step: z.ZodObject<{
|
|
|
5801
5845
|
position?: "left" | "right" | undefined;
|
|
5802
5846
|
} | undefined;
|
|
5803
5847
|
mappedResults?: {
|
|
5804
|
-
mapping:
|
|
5805
|
-
|
|
5806
|
-
|
|
5807
|
-
|
|
5848
|
+
mapping: {
|
|
5849
|
+
values: {
|
|
5850
|
+
value: string;
|
|
5851
|
+
key: string;
|
|
5852
|
+
}[];
|
|
5853
|
+
terms: string[];
|
|
5854
|
+
}[];
|
|
5808
5855
|
} | undefined;
|
|
5809
5856
|
} | undefined;
|
|
5810
5857
|
apiKey?: string | undefined;
|
|
@@ -5919,6 +5966,7 @@ declare const Step: z.ZodObject<{
|
|
|
5919
5966
|
action: string;
|
|
5920
5967
|
} | undefined;
|
|
5921
5968
|
} | undefined;
|
|
5969
|
+
forcePolyfills?: boolean | undefined;
|
|
5922
5970
|
} | undefined;
|
|
5923
5971
|
input?: {
|
|
5924
5972
|
step?: number | undefined;
|
|
@@ -6300,10 +6348,13 @@ declare const Step: z.ZodObject<{
|
|
|
6300
6348
|
position?: "left" | "right" | undefined;
|
|
6301
6349
|
} | undefined;
|
|
6302
6350
|
mappedResults?: {
|
|
6303
|
-
mapping:
|
|
6304
|
-
|
|
6305
|
-
|
|
6306
|
-
|
|
6351
|
+
mapping: {
|
|
6352
|
+
values: {
|
|
6353
|
+
value: string;
|
|
6354
|
+
key: string;
|
|
6355
|
+
}[];
|
|
6356
|
+
terms: string[];
|
|
6357
|
+
}[];
|
|
6307
6358
|
} | undefined;
|
|
6308
6359
|
} | undefined;
|
|
6309
6360
|
apiKey?: string | undefined;
|
|
@@ -6418,6 +6469,7 @@ declare const Step: z.ZodObject<{
|
|
|
6418
6469
|
action: string;
|
|
6419
6470
|
} | undefined;
|
|
6420
6471
|
} | undefined;
|
|
6472
|
+
forcePolyfills?: boolean | undefined;
|
|
6421
6473
|
} | undefined;
|
|
6422
6474
|
input?: {
|
|
6423
6475
|
step?: number | undefined;
|
|
@@ -6998,10 +7050,13 @@ declare const Step: z.ZodObject<{
|
|
|
6998
7050
|
position?: "left" | "right" | undefined;
|
|
6999
7051
|
} | undefined;
|
|
7000
7052
|
mappedResults?: {
|
|
7001
|
-
mapping:
|
|
7002
|
-
|
|
7003
|
-
|
|
7004
|
-
|
|
7053
|
+
mapping: {
|
|
7054
|
+
values: {
|
|
7055
|
+
value: string;
|
|
7056
|
+
key: string;
|
|
7057
|
+
}[];
|
|
7058
|
+
terms: string[];
|
|
7059
|
+
}[];
|
|
7005
7060
|
} | undefined;
|
|
7006
7061
|
} | undefined;
|
|
7007
7062
|
apiKey?: string | undefined;
|
|
@@ -7116,6 +7171,7 @@ declare const Step: z.ZodObject<{
|
|
|
7116
7171
|
action: string;
|
|
7117
7172
|
} | undefined;
|
|
7118
7173
|
} | undefined;
|
|
7174
|
+
forcePolyfills?: boolean | undefined;
|
|
7119
7175
|
} | undefined;
|
|
7120
7176
|
input?: {
|
|
7121
7177
|
step?: number | undefined;
|
|
@@ -7554,10 +7610,13 @@ declare const Step: z.ZodObject<{
|
|
|
7554
7610
|
position?: "left" | "right" | undefined;
|
|
7555
7611
|
} | undefined;
|
|
7556
7612
|
mappedResults?: {
|
|
7557
|
-
mapping:
|
|
7558
|
-
|
|
7559
|
-
|
|
7560
|
-
|
|
7613
|
+
mapping: {
|
|
7614
|
+
values: {
|
|
7615
|
+
value: string;
|
|
7616
|
+
key: string;
|
|
7617
|
+
}[];
|
|
7618
|
+
terms: string[];
|
|
7619
|
+
}[];
|
|
7561
7620
|
} | undefined;
|
|
7562
7621
|
} | undefined;
|
|
7563
7622
|
apiKey?: string | undefined;
|
|
@@ -7672,6 +7731,7 @@ declare const Step: z.ZodObject<{
|
|
|
7672
7731
|
action: string;
|
|
7673
7732
|
} | undefined;
|
|
7674
7733
|
} | undefined;
|
|
7734
|
+
forcePolyfills?: boolean | undefined;
|
|
7675
7735
|
} | undefined;
|
|
7676
7736
|
input?: {
|
|
7677
7737
|
step?: number | undefined;
|
|
@@ -8286,6 +8346,7 @@ type ActionEvent = z.infer<typeof ActionEvent>;
|
|
|
8286
8346
|
* @property {Object} [configuration.map.infoWindow.button] - Button configuration inside info windows.
|
|
8287
8347
|
* @property {string} configuration.map.infoWindow.button.label - Label text for the info window button.
|
|
8288
8348
|
* @property {string} configuration.map.infoWindow.button.action - Action identifier for the info window button.
|
|
8349
|
+
* @property {Object} [configuration.map.forcePolyfills] - Polyfill configuration for map features.
|
|
8289
8350
|
* @property {Object} [configuration.calendar] - Configuration for calendar component.
|
|
8290
8351
|
* @property {Object} [configuration.calendar.current] - Current date display configuration.
|
|
8291
8352
|
* @property {number} [configuration.calendar.current.month] - Current month (0-11, where 0 is January).
|
|
@@ -9738,26 +9799,47 @@ declare const Field: z.ZodObject<{
|
|
|
9738
9799
|
} | undefined;
|
|
9739
9800
|
}>>;
|
|
9740
9801
|
mappedResults: z.ZodOptional<z.ZodObject<{
|
|
9741
|
-
mapping: z.
|
|
9742
|
-
|
|
9743
|
-
|
|
9802
|
+
mapping: z.ZodArray<z.ZodObject<{
|
|
9803
|
+
terms: z.ZodArray<z.ZodString, "many">;
|
|
9804
|
+
values: z.ZodArray<z.ZodObject<{
|
|
9805
|
+
key: z.ZodString;
|
|
9806
|
+
value: z.ZodString;
|
|
9807
|
+
}, "strip", z.ZodTypeAny, {
|
|
9808
|
+
value: string;
|
|
9809
|
+
key: string;
|
|
9810
|
+
}, {
|
|
9811
|
+
value: string;
|
|
9812
|
+
key: string;
|
|
9813
|
+
}>, "many">;
|
|
9744
9814
|
}, "strip", z.ZodTypeAny, {
|
|
9745
|
-
|
|
9746
|
-
|
|
9815
|
+
values: {
|
|
9816
|
+
value: string;
|
|
9817
|
+
key: string;
|
|
9818
|
+
}[];
|
|
9819
|
+
terms: string[];
|
|
9747
9820
|
}, {
|
|
9748
|
-
|
|
9749
|
-
|
|
9750
|
-
|
|
9821
|
+
values: {
|
|
9822
|
+
value: string;
|
|
9823
|
+
key: string;
|
|
9824
|
+
}[];
|
|
9825
|
+
terms: string[];
|
|
9826
|
+
}>, "many">;
|
|
9751
9827
|
}, "strip", z.ZodTypeAny, {
|
|
9752
|
-
mapping:
|
|
9753
|
-
|
|
9754
|
-
|
|
9755
|
-
|
|
9828
|
+
mapping: {
|
|
9829
|
+
values: {
|
|
9830
|
+
value: string;
|
|
9831
|
+
key: string;
|
|
9832
|
+
}[];
|
|
9833
|
+
terms: string[];
|
|
9834
|
+
}[];
|
|
9756
9835
|
}, {
|
|
9757
|
-
mapping:
|
|
9758
|
-
|
|
9759
|
-
|
|
9760
|
-
|
|
9836
|
+
mapping: {
|
|
9837
|
+
values: {
|
|
9838
|
+
value: string;
|
|
9839
|
+
key: string;
|
|
9840
|
+
}[];
|
|
9841
|
+
terms: string[];
|
|
9842
|
+
}[];
|
|
9761
9843
|
}>>;
|
|
9762
9844
|
}, "strip", z.ZodTypeAny, {
|
|
9763
9845
|
value?: string | undefined;
|
|
@@ -9788,10 +9870,13 @@ declare const Field: z.ZodObject<{
|
|
|
9788
9870
|
position?: "left" | "right" | undefined;
|
|
9789
9871
|
} | undefined;
|
|
9790
9872
|
mappedResults?: {
|
|
9791
|
-
mapping:
|
|
9792
|
-
|
|
9793
|
-
|
|
9794
|
-
|
|
9873
|
+
mapping: {
|
|
9874
|
+
values: {
|
|
9875
|
+
value: string;
|
|
9876
|
+
key: string;
|
|
9877
|
+
}[];
|
|
9878
|
+
terms: string[];
|
|
9879
|
+
}[];
|
|
9795
9880
|
} | undefined;
|
|
9796
9881
|
}, {
|
|
9797
9882
|
value?: string | undefined;
|
|
@@ -9822,10 +9907,13 @@ declare const Field: z.ZodObject<{
|
|
|
9822
9907
|
position?: "left" | "right" | undefined;
|
|
9823
9908
|
} | undefined;
|
|
9824
9909
|
mappedResults?: {
|
|
9825
|
-
mapping:
|
|
9826
|
-
|
|
9827
|
-
|
|
9828
|
-
|
|
9910
|
+
mapping: {
|
|
9911
|
+
values: {
|
|
9912
|
+
value: string;
|
|
9913
|
+
key: string;
|
|
9914
|
+
}[];
|
|
9915
|
+
terms: string[];
|
|
9916
|
+
}[];
|
|
9829
9917
|
} | undefined;
|
|
9830
9918
|
}>>;
|
|
9831
9919
|
distanceRange: z.ZodOptional<z.ZodObject<{
|
|
@@ -10261,6 +10349,7 @@ declare const Field: z.ZodObject<{
|
|
|
10261
10349
|
action: string;
|
|
10262
10350
|
} | undefined;
|
|
10263
10351
|
}>>;
|
|
10352
|
+
forcePolyfills: z.ZodOptional<z.ZodBoolean>;
|
|
10264
10353
|
}, "strip", z.ZodTypeAny, {
|
|
10265
10354
|
options?: {
|
|
10266
10355
|
component?: "carousel" | "list-button" | "list-radio" | undefined;
|
|
@@ -10297,10 +10386,13 @@ declare const Field: z.ZodObject<{
|
|
|
10297
10386
|
position?: "left" | "right" | undefined;
|
|
10298
10387
|
} | undefined;
|
|
10299
10388
|
mappedResults?: {
|
|
10300
|
-
mapping:
|
|
10301
|
-
|
|
10302
|
-
|
|
10303
|
-
|
|
10389
|
+
mapping: {
|
|
10390
|
+
values: {
|
|
10391
|
+
value: string;
|
|
10392
|
+
key: string;
|
|
10393
|
+
}[];
|
|
10394
|
+
terms: string[];
|
|
10395
|
+
}[];
|
|
10304
10396
|
} | undefined;
|
|
10305
10397
|
} | undefined;
|
|
10306
10398
|
apiKey?: string | undefined;
|
|
@@ -10415,6 +10507,7 @@ declare const Field: z.ZodObject<{
|
|
|
10415
10507
|
action: string;
|
|
10416
10508
|
} | undefined;
|
|
10417
10509
|
} | undefined;
|
|
10510
|
+
forcePolyfills?: boolean | undefined;
|
|
10418
10511
|
}, {
|
|
10419
10512
|
options?: {
|
|
10420
10513
|
component?: "carousel" | "list-button" | "list-radio" | undefined;
|
|
@@ -10451,10 +10544,13 @@ declare const Field: z.ZodObject<{
|
|
|
10451
10544
|
position?: "left" | "right" | undefined;
|
|
10452
10545
|
} | undefined;
|
|
10453
10546
|
mappedResults?: {
|
|
10454
|
-
mapping:
|
|
10455
|
-
|
|
10456
|
-
|
|
10457
|
-
|
|
10547
|
+
mapping: {
|
|
10548
|
+
values: {
|
|
10549
|
+
value: string;
|
|
10550
|
+
key: string;
|
|
10551
|
+
}[];
|
|
10552
|
+
terms: string[];
|
|
10553
|
+
}[];
|
|
10458
10554
|
} | undefined;
|
|
10459
10555
|
} | undefined;
|
|
10460
10556
|
apiKey?: string | undefined;
|
|
@@ -10569,6 +10665,7 @@ declare const Field: z.ZodObject<{
|
|
|
10569
10665
|
action: string;
|
|
10570
10666
|
} | undefined;
|
|
10571
10667
|
} | undefined;
|
|
10668
|
+
forcePolyfills?: boolean | undefined;
|
|
10572
10669
|
}>>;
|
|
10573
10670
|
calendar: z.ZodOptional<z.ZodObject<{
|
|
10574
10671
|
current: z.ZodOptional<z.ZodObject<{
|
|
@@ -10805,10 +10902,13 @@ declare const Field: z.ZodObject<{
|
|
|
10805
10902
|
position?: "left" | "right" | undefined;
|
|
10806
10903
|
} | undefined;
|
|
10807
10904
|
mappedResults?: {
|
|
10808
|
-
mapping:
|
|
10809
|
-
|
|
10810
|
-
|
|
10811
|
-
|
|
10905
|
+
mapping: {
|
|
10906
|
+
values: {
|
|
10907
|
+
value: string;
|
|
10908
|
+
key: string;
|
|
10909
|
+
}[];
|
|
10910
|
+
terms: string[];
|
|
10911
|
+
}[];
|
|
10812
10912
|
} | undefined;
|
|
10813
10913
|
} | undefined;
|
|
10814
10914
|
apiKey?: string | undefined;
|
|
@@ -10923,6 +11023,7 @@ declare const Field: z.ZodObject<{
|
|
|
10923
11023
|
action: string;
|
|
10924
11024
|
} | undefined;
|
|
10925
11025
|
} | undefined;
|
|
11026
|
+
forcePolyfills?: boolean | undefined;
|
|
10926
11027
|
} | undefined;
|
|
10927
11028
|
input?: {
|
|
10928
11029
|
step?: number | undefined;
|
|
@@ -11097,10 +11198,13 @@ declare const Field: z.ZodObject<{
|
|
|
11097
11198
|
position?: "left" | "right" | undefined;
|
|
11098
11199
|
} | undefined;
|
|
11099
11200
|
mappedResults?: {
|
|
11100
|
-
mapping:
|
|
11101
|
-
|
|
11102
|
-
|
|
11103
|
-
|
|
11201
|
+
mapping: {
|
|
11202
|
+
values: {
|
|
11203
|
+
value: string;
|
|
11204
|
+
key: string;
|
|
11205
|
+
}[];
|
|
11206
|
+
terms: string[];
|
|
11207
|
+
}[];
|
|
11104
11208
|
} | undefined;
|
|
11105
11209
|
} | undefined;
|
|
11106
11210
|
apiKey?: string | undefined;
|
|
@@ -11215,6 +11319,7 @@ declare const Field: z.ZodObject<{
|
|
|
11215
11319
|
action: string;
|
|
11216
11320
|
} | undefined;
|
|
11217
11321
|
} | undefined;
|
|
11322
|
+
forcePolyfills?: boolean | undefined;
|
|
11218
11323
|
} | undefined;
|
|
11219
11324
|
input?: {
|
|
11220
11325
|
step?: number | undefined;
|
|
@@ -11895,10 +12000,13 @@ declare const Field: z.ZodObject<{
|
|
|
11895
12000
|
position?: "left" | "right" | undefined;
|
|
11896
12001
|
} | undefined;
|
|
11897
12002
|
mappedResults?: {
|
|
11898
|
-
mapping:
|
|
11899
|
-
|
|
11900
|
-
|
|
11901
|
-
|
|
12003
|
+
mapping: {
|
|
12004
|
+
values: {
|
|
12005
|
+
value: string;
|
|
12006
|
+
key: string;
|
|
12007
|
+
}[];
|
|
12008
|
+
terms: string[];
|
|
12009
|
+
}[];
|
|
11902
12010
|
} | undefined;
|
|
11903
12011
|
} | undefined;
|
|
11904
12012
|
apiKey?: string | undefined;
|
|
@@ -12013,6 +12121,7 @@ declare const Field: z.ZodObject<{
|
|
|
12013
12121
|
action: string;
|
|
12014
12122
|
} | undefined;
|
|
12015
12123
|
} | undefined;
|
|
12124
|
+
forcePolyfills?: boolean | undefined;
|
|
12016
12125
|
} | undefined;
|
|
12017
12126
|
input?: {
|
|
12018
12127
|
step?: number | undefined;
|
|
@@ -12394,10 +12503,13 @@ declare const Field: z.ZodObject<{
|
|
|
12394
12503
|
position?: "left" | "right" | undefined;
|
|
12395
12504
|
} | undefined;
|
|
12396
12505
|
mappedResults?: {
|
|
12397
|
-
mapping:
|
|
12398
|
-
|
|
12399
|
-
|
|
12400
|
-
|
|
12506
|
+
mapping: {
|
|
12507
|
+
values: {
|
|
12508
|
+
value: string;
|
|
12509
|
+
key: string;
|
|
12510
|
+
}[];
|
|
12511
|
+
terms: string[];
|
|
12512
|
+
}[];
|
|
12401
12513
|
} | undefined;
|
|
12402
12514
|
} | undefined;
|
|
12403
12515
|
apiKey?: string | undefined;
|
|
@@ -12512,6 +12624,7 @@ declare const Field: z.ZodObject<{
|
|
|
12512
12624
|
action: string;
|
|
12513
12625
|
} | undefined;
|
|
12514
12626
|
} | undefined;
|
|
12627
|
+
forcePolyfills?: boolean | undefined;
|
|
12515
12628
|
} | undefined;
|
|
12516
12629
|
input?: {
|
|
12517
12630
|
step?: number | undefined;
|
|
@@ -14407,26 +14520,47 @@ declare const FlowContext: z.ZodObject<{
|
|
|
14407
14520
|
} | undefined;
|
|
14408
14521
|
}>>;
|
|
14409
14522
|
mappedResults: z.ZodOptional<z.ZodObject<{
|
|
14410
|
-
mapping: z.
|
|
14411
|
-
|
|
14412
|
-
|
|
14523
|
+
mapping: z.ZodArray<z.ZodObject<{
|
|
14524
|
+
terms: z.ZodArray<z.ZodString, "many">;
|
|
14525
|
+
values: z.ZodArray<z.ZodObject<{
|
|
14526
|
+
key: z.ZodString;
|
|
14527
|
+
value: z.ZodString;
|
|
14528
|
+
}, "strip", z.ZodTypeAny, {
|
|
14529
|
+
value: string;
|
|
14530
|
+
key: string;
|
|
14531
|
+
}, {
|
|
14532
|
+
value: string;
|
|
14533
|
+
key: string;
|
|
14534
|
+
}>, "many">;
|
|
14413
14535
|
}, "strip", z.ZodTypeAny, {
|
|
14414
|
-
|
|
14415
|
-
|
|
14536
|
+
values: {
|
|
14537
|
+
value: string;
|
|
14538
|
+
key: string;
|
|
14539
|
+
}[];
|
|
14540
|
+
terms: string[];
|
|
14416
14541
|
}, {
|
|
14417
|
-
|
|
14418
|
-
|
|
14419
|
-
|
|
14542
|
+
values: {
|
|
14543
|
+
value: string;
|
|
14544
|
+
key: string;
|
|
14545
|
+
}[];
|
|
14546
|
+
terms: string[];
|
|
14547
|
+
}>, "many">;
|
|
14420
14548
|
}, "strip", z.ZodTypeAny, {
|
|
14421
|
-
mapping:
|
|
14422
|
-
|
|
14423
|
-
|
|
14424
|
-
|
|
14549
|
+
mapping: {
|
|
14550
|
+
values: {
|
|
14551
|
+
value: string;
|
|
14552
|
+
key: string;
|
|
14553
|
+
}[];
|
|
14554
|
+
terms: string[];
|
|
14555
|
+
}[];
|
|
14425
14556
|
}, {
|
|
14426
|
-
mapping:
|
|
14427
|
-
|
|
14428
|
-
|
|
14429
|
-
|
|
14557
|
+
mapping: {
|
|
14558
|
+
values: {
|
|
14559
|
+
value: string;
|
|
14560
|
+
key: string;
|
|
14561
|
+
}[];
|
|
14562
|
+
terms: string[];
|
|
14563
|
+
}[];
|
|
14430
14564
|
}>>;
|
|
14431
14565
|
}, "strip", z.ZodTypeAny, {
|
|
14432
14566
|
value?: string | undefined;
|
|
@@ -14457,10 +14591,13 @@ declare const FlowContext: z.ZodObject<{
|
|
|
14457
14591
|
position?: "left" | "right" | undefined;
|
|
14458
14592
|
} | undefined;
|
|
14459
14593
|
mappedResults?: {
|
|
14460
|
-
mapping:
|
|
14461
|
-
|
|
14462
|
-
|
|
14463
|
-
|
|
14594
|
+
mapping: {
|
|
14595
|
+
values: {
|
|
14596
|
+
value: string;
|
|
14597
|
+
key: string;
|
|
14598
|
+
}[];
|
|
14599
|
+
terms: string[];
|
|
14600
|
+
}[];
|
|
14464
14601
|
} | undefined;
|
|
14465
14602
|
}, {
|
|
14466
14603
|
value?: string | undefined;
|
|
@@ -14491,10 +14628,13 @@ declare const FlowContext: z.ZodObject<{
|
|
|
14491
14628
|
position?: "left" | "right" | undefined;
|
|
14492
14629
|
} | undefined;
|
|
14493
14630
|
mappedResults?: {
|
|
14494
|
-
mapping:
|
|
14495
|
-
|
|
14496
|
-
|
|
14497
|
-
|
|
14631
|
+
mapping: {
|
|
14632
|
+
values: {
|
|
14633
|
+
value: string;
|
|
14634
|
+
key: string;
|
|
14635
|
+
}[];
|
|
14636
|
+
terms: string[];
|
|
14637
|
+
}[];
|
|
14498
14638
|
} | undefined;
|
|
14499
14639
|
}>>;
|
|
14500
14640
|
distanceRange: z.ZodOptional<z.ZodObject<{
|
|
@@ -14930,6 +15070,7 @@ declare const FlowContext: z.ZodObject<{
|
|
|
14930
15070
|
action: string;
|
|
14931
15071
|
} | undefined;
|
|
14932
15072
|
}>>;
|
|
15073
|
+
forcePolyfills: z.ZodOptional<z.ZodBoolean>;
|
|
14933
15074
|
}, "strip", z.ZodTypeAny, {
|
|
14934
15075
|
options?: {
|
|
14935
15076
|
component?: "carousel" | "list-button" | "list-radio" | undefined;
|
|
@@ -14966,10 +15107,13 @@ declare const FlowContext: z.ZodObject<{
|
|
|
14966
15107
|
position?: "left" | "right" | undefined;
|
|
14967
15108
|
} | undefined;
|
|
14968
15109
|
mappedResults?: {
|
|
14969
|
-
mapping:
|
|
14970
|
-
|
|
14971
|
-
|
|
14972
|
-
|
|
15110
|
+
mapping: {
|
|
15111
|
+
values: {
|
|
15112
|
+
value: string;
|
|
15113
|
+
key: string;
|
|
15114
|
+
}[];
|
|
15115
|
+
terms: string[];
|
|
15116
|
+
}[];
|
|
14973
15117
|
} | undefined;
|
|
14974
15118
|
} | undefined;
|
|
14975
15119
|
apiKey?: string | undefined;
|
|
@@ -15084,6 +15228,7 @@ declare const FlowContext: z.ZodObject<{
|
|
|
15084
15228
|
action: string;
|
|
15085
15229
|
} | undefined;
|
|
15086
15230
|
} | undefined;
|
|
15231
|
+
forcePolyfills?: boolean | undefined;
|
|
15087
15232
|
}, {
|
|
15088
15233
|
options?: {
|
|
15089
15234
|
component?: "carousel" | "list-button" | "list-radio" | undefined;
|
|
@@ -15120,10 +15265,13 @@ declare const FlowContext: z.ZodObject<{
|
|
|
15120
15265
|
position?: "left" | "right" | undefined;
|
|
15121
15266
|
} | undefined;
|
|
15122
15267
|
mappedResults?: {
|
|
15123
|
-
mapping:
|
|
15124
|
-
|
|
15125
|
-
|
|
15126
|
-
|
|
15268
|
+
mapping: {
|
|
15269
|
+
values: {
|
|
15270
|
+
value: string;
|
|
15271
|
+
key: string;
|
|
15272
|
+
}[];
|
|
15273
|
+
terms: string[];
|
|
15274
|
+
}[];
|
|
15127
15275
|
} | undefined;
|
|
15128
15276
|
} | undefined;
|
|
15129
15277
|
apiKey?: string | undefined;
|
|
@@ -15238,6 +15386,7 @@ declare const FlowContext: z.ZodObject<{
|
|
|
15238
15386
|
action: string;
|
|
15239
15387
|
} | undefined;
|
|
15240
15388
|
} | undefined;
|
|
15389
|
+
forcePolyfills?: boolean | undefined;
|
|
15241
15390
|
}>>;
|
|
15242
15391
|
calendar: z.ZodOptional<z.ZodObject<{
|
|
15243
15392
|
current: z.ZodOptional<z.ZodObject<{
|
|
@@ -15474,10 +15623,13 @@ declare const FlowContext: z.ZodObject<{
|
|
|
15474
15623
|
position?: "left" | "right" | undefined;
|
|
15475
15624
|
} | undefined;
|
|
15476
15625
|
mappedResults?: {
|
|
15477
|
-
mapping:
|
|
15478
|
-
|
|
15479
|
-
|
|
15480
|
-
|
|
15626
|
+
mapping: {
|
|
15627
|
+
values: {
|
|
15628
|
+
value: string;
|
|
15629
|
+
key: string;
|
|
15630
|
+
}[];
|
|
15631
|
+
terms: string[];
|
|
15632
|
+
}[];
|
|
15481
15633
|
} | undefined;
|
|
15482
15634
|
} | undefined;
|
|
15483
15635
|
apiKey?: string | undefined;
|
|
@@ -15592,6 +15744,7 @@ declare const FlowContext: z.ZodObject<{
|
|
|
15592
15744
|
action: string;
|
|
15593
15745
|
} | undefined;
|
|
15594
15746
|
} | undefined;
|
|
15747
|
+
forcePolyfills?: boolean | undefined;
|
|
15595
15748
|
} | undefined;
|
|
15596
15749
|
input?: {
|
|
15597
15750
|
step?: number | undefined;
|
|
@@ -15766,10 +15919,13 @@ declare const FlowContext: z.ZodObject<{
|
|
|
15766
15919
|
position?: "left" | "right" | undefined;
|
|
15767
15920
|
} | undefined;
|
|
15768
15921
|
mappedResults?: {
|
|
15769
|
-
mapping:
|
|
15770
|
-
|
|
15771
|
-
|
|
15772
|
-
|
|
15922
|
+
mapping: {
|
|
15923
|
+
values: {
|
|
15924
|
+
value: string;
|
|
15925
|
+
key: string;
|
|
15926
|
+
}[];
|
|
15927
|
+
terms: string[];
|
|
15928
|
+
}[];
|
|
15773
15929
|
} | undefined;
|
|
15774
15930
|
} | undefined;
|
|
15775
15931
|
apiKey?: string | undefined;
|
|
@@ -15884,6 +16040,7 @@ declare const FlowContext: z.ZodObject<{
|
|
|
15884
16040
|
action: string;
|
|
15885
16041
|
} | undefined;
|
|
15886
16042
|
} | undefined;
|
|
16043
|
+
forcePolyfills?: boolean | undefined;
|
|
15887
16044
|
} | undefined;
|
|
15888
16045
|
input?: {
|
|
15889
16046
|
step?: number | undefined;
|
|
@@ -16564,10 +16721,13 @@ declare const FlowContext: z.ZodObject<{
|
|
|
16564
16721
|
position?: "left" | "right" | undefined;
|
|
16565
16722
|
} | undefined;
|
|
16566
16723
|
mappedResults?: {
|
|
16567
|
-
mapping:
|
|
16568
|
-
|
|
16569
|
-
|
|
16570
|
-
|
|
16724
|
+
mapping: {
|
|
16725
|
+
values: {
|
|
16726
|
+
value: string;
|
|
16727
|
+
key: string;
|
|
16728
|
+
}[];
|
|
16729
|
+
terms: string[];
|
|
16730
|
+
}[];
|
|
16571
16731
|
} | undefined;
|
|
16572
16732
|
} | undefined;
|
|
16573
16733
|
apiKey?: string | undefined;
|
|
@@ -16682,6 +16842,7 @@ declare const FlowContext: z.ZodObject<{
|
|
|
16682
16842
|
action: string;
|
|
16683
16843
|
} | undefined;
|
|
16684
16844
|
} | undefined;
|
|
16845
|
+
forcePolyfills?: boolean | undefined;
|
|
16685
16846
|
} | undefined;
|
|
16686
16847
|
input?: {
|
|
16687
16848
|
step?: number | undefined;
|
|
@@ -17063,10 +17224,13 @@ declare const FlowContext: z.ZodObject<{
|
|
|
17063
17224
|
position?: "left" | "right" | undefined;
|
|
17064
17225
|
} | undefined;
|
|
17065
17226
|
mappedResults?: {
|
|
17066
|
-
mapping:
|
|
17067
|
-
|
|
17068
|
-
|
|
17069
|
-
|
|
17227
|
+
mapping: {
|
|
17228
|
+
values: {
|
|
17229
|
+
value: string;
|
|
17230
|
+
key: string;
|
|
17231
|
+
}[];
|
|
17232
|
+
terms: string[];
|
|
17233
|
+
}[];
|
|
17070
17234
|
} | undefined;
|
|
17071
17235
|
} | undefined;
|
|
17072
17236
|
apiKey?: string | undefined;
|
|
@@ -17181,6 +17345,7 @@ declare const FlowContext: z.ZodObject<{
|
|
|
17181
17345
|
action: string;
|
|
17182
17346
|
} | undefined;
|
|
17183
17347
|
} | undefined;
|
|
17348
|
+
forcePolyfills?: boolean | undefined;
|
|
17184
17349
|
} | undefined;
|
|
17185
17350
|
input?: {
|
|
17186
17351
|
step?: number | undefined;
|
|
@@ -17761,10 +17926,13 @@ declare const FlowContext: z.ZodObject<{
|
|
|
17761
17926
|
position?: "left" | "right" | undefined;
|
|
17762
17927
|
} | undefined;
|
|
17763
17928
|
mappedResults?: {
|
|
17764
|
-
mapping:
|
|
17765
|
-
|
|
17766
|
-
|
|
17767
|
-
|
|
17929
|
+
mapping: {
|
|
17930
|
+
values: {
|
|
17931
|
+
value: string;
|
|
17932
|
+
key: string;
|
|
17933
|
+
}[];
|
|
17934
|
+
terms: string[];
|
|
17935
|
+
}[];
|
|
17768
17936
|
} | undefined;
|
|
17769
17937
|
} | undefined;
|
|
17770
17938
|
apiKey?: string | undefined;
|
|
@@ -17879,6 +18047,7 @@ declare const FlowContext: z.ZodObject<{
|
|
|
17879
18047
|
action: string;
|
|
17880
18048
|
} | undefined;
|
|
17881
18049
|
} | undefined;
|
|
18050
|
+
forcePolyfills?: boolean | undefined;
|
|
17882
18051
|
} | undefined;
|
|
17883
18052
|
input?: {
|
|
17884
18053
|
step?: number | undefined;
|
|
@@ -18317,10 +18486,13 @@ declare const FlowContext: z.ZodObject<{
|
|
|
18317
18486
|
position?: "left" | "right" | undefined;
|
|
18318
18487
|
} | undefined;
|
|
18319
18488
|
mappedResults?: {
|
|
18320
|
-
mapping:
|
|
18321
|
-
|
|
18322
|
-
|
|
18323
|
-
|
|
18489
|
+
mapping: {
|
|
18490
|
+
values: {
|
|
18491
|
+
value: string;
|
|
18492
|
+
key: string;
|
|
18493
|
+
}[];
|
|
18494
|
+
terms: string[];
|
|
18495
|
+
}[];
|
|
18324
18496
|
} | undefined;
|
|
18325
18497
|
} | undefined;
|
|
18326
18498
|
apiKey?: string | undefined;
|
|
@@ -18435,6 +18607,7 @@ declare const FlowContext: z.ZodObject<{
|
|
|
18435
18607
|
action: string;
|
|
18436
18608
|
} | undefined;
|
|
18437
18609
|
} | undefined;
|
|
18610
|
+
forcePolyfills?: boolean | undefined;
|
|
18438
18611
|
} | undefined;
|
|
18439
18612
|
input?: {
|
|
18440
18613
|
step?: number | undefined;
|
|
@@ -18907,10 +19080,13 @@ declare const FlowContext: z.ZodObject<{
|
|
|
18907
19080
|
position?: "left" | "right" | undefined;
|
|
18908
19081
|
} | undefined;
|
|
18909
19082
|
mappedResults?: {
|
|
18910
|
-
mapping:
|
|
18911
|
-
|
|
18912
|
-
|
|
18913
|
-
|
|
19083
|
+
mapping: {
|
|
19084
|
+
values: {
|
|
19085
|
+
value: string;
|
|
19086
|
+
key: string;
|
|
19087
|
+
}[];
|
|
19088
|
+
terms: string[];
|
|
19089
|
+
}[];
|
|
18914
19090
|
} | undefined;
|
|
18915
19091
|
} | undefined;
|
|
18916
19092
|
apiKey?: string | undefined;
|
|
@@ -19025,6 +19201,7 @@ declare const FlowContext: z.ZodObject<{
|
|
|
19025
19201
|
action: string;
|
|
19026
19202
|
} | undefined;
|
|
19027
19203
|
} | undefined;
|
|
19204
|
+
forcePolyfills?: boolean | undefined;
|
|
19028
19205
|
} | undefined;
|
|
19029
19206
|
input?: {
|
|
19030
19207
|
step?: number | undefined;
|
|
@@ -19475,10 +19652,13 @@ declare const FlowContext: z.ZodObject<{
|
|
|
19475
19652
|
position?: "left" | "right" | undefined;
|
|
19476
19653
|
} | undefined;
|
|
19477
19654
|
mappedResults?: {
|
|
19478
|
-
mapping:
|
|
19479
|
-
|
|
19480
|
-
|
|
19481
|
-
|
|
19655
|
+
mapping: {
|
|
19656
|
+
values: {
|
|
19657
|
+
value: string;
|
|
19658
|
+
key: string;
|
|
19659
|
+
}[];
|
|
19660
|
+
terms: string[];
|
|
19661
|
+
}[];
|
|
19482
19662
|
} | undefined;
|
|
19483
19663
|
} | undefined;
|
|
19484
19664
|
apiKey?: string | undefined;
|
|
@@ -19593,6 +19773,7 @@ declare const FlowContext: z.ZodObject<{
|
|
|
19593
19773
|
action: string;
|
|
19594
19774
|
} | undefined;
|
|
19595
19775
|
} | undefined;
|
|
19776
|
+
forcePolyfills?: boolean | undefined;
|
|
19596
19777
|
} | undefined;
|
|
19597
19778
|
input?: {
|
|
19598
19779
|
step?: number | undefined;
|