@embeddable.com/sdk-core 3.13.3-next.0 → 3.13.3-next.1

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.13.3-next.0",
3
+ "version": "3.13.3-next.1",
4
4
  "description": "Core Embeddable SDK module responsible for web-components bundling and publishing.",
5
5
  "keywords": [
6
6
  "embeddable",
package/src/push.ts CHANGED
@@ -229,10 +229,17 @@ export async function sendBuildByApiKey(
229
229
  form.set("file", file, "embeddable-build.zip");
230
230
 
231
231
  const metadataBlob = new Blob(
232
- [JSON.stringify({ authorEmail: email, description: message })],
232
+ [
233
+ JSON.stringify({
234
+ pushModels: ctx.pushModels,
235
+ pushComponents: ctx.pushComponents,
236
+ authorEmail: email,
237
+ description: message,
238
+ }),
239
+ ],
233
240
  { type: "application/json" },
234
241
  );
235
- form.set("metadata", metadataBlob, "metadata.json");
242
+ form.set("request", metadataBlob, "request.json");
236
243
 
237
244
  const response = await uploadFile(
238
245
  form,