@embeddable.com/sdk-core 4.0.2 → 4.0.3-next.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.2",
3
+ "version": "4.0.3-next.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
@@ -226,6 +226,7 @@ const securityContextSchema = z.array(
226
226
  securityContext: z.object({}), // can be any object
227
227
  environment: z.string().optional(),
228
228
  useQueryRewrite: z.boolean().optional(),
229
+ dataProvider: z.string().optional(),
229
230
  })
230
231
  .strict(),
231
232
  );