@embeddable.com/sdk-core 4.0.3 → 4.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@embeddable.com/sdk-core",
3
- "version": "4.0.3",
3
+ "version": "4.1.0",
4
4
  "description": "Core Embeddable SDK module responsible for web-components bundling and publishing.",
5
5
  "keywords": [
6
6
  "embeddable",
package/src/validate.ts CHANGED
@@ -227,6 +227,7 @@ const securityContextSchema = z.array(
227
227
  environment: z.string().optional(),
228
228
  useQueryRewrite: z.boolean().optional(),
229
229
  dataProvider: z.string().optional(),
230
+ roles: z.array(z.string()).optional(),
230
231
  })
231
232
  .strict(),
232
233
  );