@wise/dynamic-flow-types 3.1.3 → 3.1.4

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.
@@ -10,13 +10,13 @@ export type AlertRendererProps = BaseRendererProps & {
10
10
  };
11
11
  export type AlertCallToActionLink = {
12
12
  type: 'link';
13
+ title: string;
13
14
  accessibilityDescription?: string;
14
15
  href: string;
15
- title: string;
16
16
  };
17
17
  export type AlertCallToAction = {
18
18
  type: 'action';
19
- accessibilityDescription?: string;
20
19
  title: string;
20
+ accessibilityDescription?: string;
21
21
  onClick: () => void;
22
22
  };
@@ -22,14 +22,14 @@ export type ListItem = {
22
22
  export type ListCallToAction = ListCallToActionLink | ListCallToActionAction;
23
23
  export type ListCallToActionLink = {
24
24
  type: 'link';
25
+ title: string;
25
26
  accessibilityDescription?: string;
26
27
  href: string;
27
- title: string;
28
28
  onClick: () => void;
29
29
  };
30
30
  export type ListCallToActionAction = {
31
31
  type: 'action';
32
- accessibilityDescription?: string;
33
32
  title: string;
33
+ accessibilityDescription?: string;
34
34
  onClick: () => void;
35
35
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/dynamic-flow-types",
3
- "version": "3.1.3",
3
+ "version": "3.1.4",
4
4
  "description": "Dynamic Flow TypeScript Types",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -35,7 +35,7 @@
35
35
  "esbuild": "0.25.2",
36
36
  "npm-run-all2": "7.0.2",
37
37
  "ts-to-zod": "3.6.1",
38
- "typescript": "5.8.2"
38
+ "typescript": "5.8.3"
39
39
  },
40
40
  "dependencies": {
41
41
  "zod": "3.24.2"