@wise/dynamic-flow-client 3.31.0 → 3.31.1

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/build/main.js CHANGED
@@ -5978,6 +5978,12 @@ var sizeSchema = z.union([
5978
5978
  z.literal("lg"),
5979
5979
  z.literal("xl")
5980
5980
  ]);
5981
+ var autocapitalizationTypeSchema = z.union([
5982
+ z.literal("none"),
5983
+ z.literal("characters"),
5984
+ z.literal("sentences"),
5985
+ z.literal("words")
5986
+ ]);
5981
5987
  var alignSchema = z.union([z.literal("left"), z.literal("center"), z.literal("right")]);
5982
5988
  var iconSchema = z.union([iconNamedSchema, iconTextSchema]);
5983
5989
  var autocompleteTokenSchema = z.union([
@@ -6693,6 +6699,7 @@ var stringSchemaSchema = z.lazy(
6693
6699
  minimum: z.string().optional(),
6694
6700
  maximum: z.string().optional(),
6695
6701
  pattern: z.string().optional(),
6702
+ autocapitalization: autocapitalizationTypeSchema.optional(),
6696
6703
  $id: z.string().optional(),
6697
6704
  title: z.string().optional(),
6698
6705
  description: z.string().optional(),