openmates 0.10.0-alpha.0 → 0.10.0-alpha.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.
@@ -1337,7 +1337,11 @@ async function generateEmbedShareBlob(embedId, embedKeyBytes, durationSeconds =
1337
1337
  function deriveWebOrigin(apiUrl) {
1338
1338
  try {
1339
1339
  const url = new URL(apiUrl);
1340
- url.hostname = url.hostname.replace(/^api\./, "");
1340
+ if (url.hostname === "api.dev.openmates.org") {
1341
+ url.hostname = "app.dev.openmates.org";
1342
+ } else {
1343
+ url.hostname = url.hostname.replace(/^api\./, "");
1344
+ }
1341
1345
  url.port = "";
1342
1346
  return url.origin;
1343
1347
  } catch {
package/dist/cli.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  getExtForLang,
4
4
  serializeToYaml
5
- } from "./chunk-KZRK26R5.js";
5
+ } from "./chunk-ZJKUUM2P.js";
6
6
  export {
7
7
  getExtForLang,
8
8
  serializeToYaml
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  getExtForLang,
7
7
  parseNewChatSuggestionText,
8
8
  serializeToYaml
9
- } from "./chunk-KZRK26R5.js";
9
+ } from "./chunk-ZJKUUM2P.js";
10
10
  export {
11
11
  MATE_NAMES,
12
12
  MEMORY_TYPE_REGISTRY,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmates",
3
- "version": "0.10.0-alpha.0",
3
+ "version": "0.10.0-alpha.1",
4
4
  "description": "OpenMates CLI and SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",