@wise/dynamic-flow-types 3.10.0 → 3.11.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/main.js
CHANGED
|
@@ -565,7 +565,8 @@ var decisionLayoutOptionSchema = import_zod.z.lazy(
|
|
|
565
565
|
supportingValues: supportingValuesSchema.optional(),
|
|
566
566
|
inlineAlert: inlineAlertSchema.optional(),
|
|
567
567
|
media: mediaSchema.optional(),
|
|
568
|
-
analyticsId: import_zod.z.string().optional()
|
|
568
|
+
analyticsId: import_zod.z.string().optional(),
|
|
569
|
+
keywords: import_zod.z.array(import_zod.z.string()).optional()
|
|
569
570
|
})
|
|
570
571
|
);
|
|
571
572
|
var sectionLayoutCallToActionSchema = import_zod.z.lazy(
|
package/build/main.mjs
CHANGED
|
@@ -537,7 +537,8 @@ var decisionLayoutOptionSchema = z.lazy(
|
|
|
537
537
|
supportingValues: supportingValuesSchema.optional(),
|
|
538
538
|
inlineAlert: inlineAlertSchema.optional(),
|
|
539
539
|
media: mediaSchema.optional(),
|
|
540
|
-
analyticsId: z.string().optional()
|
|
540
|
+
analyticsId: z.string().optional(),
|
|
541
|
+
keywords: z.array(z.string()).optional()
|
|
541
542
|
})
|
|
542
543
|
);
|
|
543
544
|
var sectionLayoutCallToActionSchema = z.lazy(
|
|
@@ -17,9 +17,10 @@ export type DecisionOption = {
|
|
|
17
17
|
href?: string;
|
|
18
18
|
icon?: Icon;
|
|
19
19
|
image?: Image;
|
|
20
|
+
keywords?: string[];
|
|
20
21
|
media?: Media;
|
|
21
|
-
title: string;
|
|
22
22
|
tag?: string;
|
|
23
|
+
title: string;
|
|
23
24
|
/** @experimental This feature may be changed in the future without notice. */
|
|
24
25
|
additionalText?: string;
|
|
25
26
|
/** @experimental This feature may be changed in the future without notice. */
|
package/build/zod/schemas.ts
CHANGED
|
@@ -1124,6 +1124,7 @@ export const decisionLayoutOptionSchema: z.ZodSchema<DecisionLayoutOption> = z.l
|
|
|
1124
1124
|
inlineAlert: inlineAlertSchema.optional(),
|
|
1125
1125
|
media: mediaSchema.optional(),
|
|
1126
1126
|
analyticsId: z.string().optional(),
|
|
1127
|
+
keywords: z.array(z.string()).optional(),
|
|
1127
1128
|
}),
|
|
1128
1129
|
);
|
|
1129
1130
|
|