@wise/dynamic-flow-types 4.6.0 → 4.7.0

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.
@@ -827,7 +827,8 @@ var stepSchema = import_zod.z.lazy(
827
827
  control: import_zod.z.string().optional(),
828
828
  refreshAfter: import_zod.z.string().optional(),
829
829
  toolbar: toolbarSchema.optional(),
830
- tags: import_zod.z.array(import_zod.z.string()).optional()
830
+ tags: import_zod.z.array(import_zod.z.string()).optional(),
831
+ footer: import_zod.z.array(layoutSchema).optional()
831
832
  })
832
833
  );
833
834
  var schemaSchema = import_zod.z.lazy(
@@ -798,7 +798,8 @@ var stepSchema = z.lazy(
798
798
  control: z.string().optional(),
799
799
  refreshAfter: z.string().optional(),
800
800
  toolbar: toolbarSchema.optional(),
801
- tags: z.array(z.string()).optional()
801
+ tags: z.array(z.string()).optional(),
802
+ footer: z.array(layoutSchema).optional()
802
803
  })
803
804
  );
804
805
  var schemaSchema = z.lazy(
@@ -108,4 +108,8 @@ export type Step = {
108
108
  * An optional list of identifiers used to configure renderers.
109
109
  */
110
110
  tags?: string[];
111
+ /**
112
+ * A layout which should occupy the footer of the step. If the client doesn't support a separate footer, this content will appear as if it was appended to the layout array.
113
+ */
114
+ footer?: Layout[];
111
115
  };
@@ -614,6 +614,7 @@ export const stepSchema: z.ZodSchema<Step> = z.lazy(() =>
614
614
  refreshAfter: z.string().optional(),
615
615
  toolbar: toolbarSchema.optional(),
616
616
  tags: z.array(z.string()).optional(),
617
+ footer: z.array(layoutSchema).optional(),
617
618
  }),
618
619
  );
619
620
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/dynamic-flow-types",
3
- "version": "4.6.0",
3
+ "version": "4.7.0",
4
4
  "description": "Dynamic Flow TypeScript Types",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {