@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.
- package/build/spec/main.js +2 -1
- package/build/spec/main.mjs +2 -1
- package/build/spec/step/Step.d.ts +4 -0
- package/build/zod/schemas.ts +1 -0
- package/package.json +1 -1
package/build/spec/main.js
CHANGED
|
@@ -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(
|
package/build/spec/main.mjs
CHANGED
|
@@ -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
|
};
|
package/build/zod/schemas.ts
CHANGED