@embeddable.com/sdk-core 3.9.12 → 3.9.13

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": "3.9.12",
3
+ "version": "3.9.13",
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
@@ -252,6 +252,7 @@ const securityContextSchema = z.array(
252
252
  name: z.string(),
253
253
  securityContext: z.object({}), // can be any object
254
254
  environment: z.string().optional(),
255
+ useQueryRewrite: z.boolean().optional(),
255
256
  })
256
257
  .strict(),
257
258
  );