@wise/dynamic-flow-types 3.10.0-experimental-a003e45 → 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 +696 -695
- package/build/main.mjs +696 -695
- package/build/next/layout/DecisionLayoutOption.d.ts +4 -0
- package/build/renderers/DecisionRendererProps.d.ts +2 -1
- package/build/zod/schemas.d.ts +1498 -1498
- package/build/zod/schemas.ts +1 -0
- package/package.json +1 -1
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
|
|