rivia 0.0.97 → 0.0.98

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4521,7 +4521,7 @@ var ProductManagement = /* @__PURE__ */ function() {
4521
4521
  footerRow.appendChild(riviaLabel);
4522
4522
  footerRow.appendChild(riviaBtn);
4523
4523
  riviaBtn.addEventListener("click", () => {
4524
- const baseUrl = `https://${state.config.workspace}.rivia.ai/users/changelog?userId=${state.pmUserId || ""}`;
4524
+ const baseUrl = `http://${state.config.workspace}.rivia.ai/users/changelog?userId=${state.pmUserId || ""}`;
4525
4525
  const url = new URL(baseUrl);
4526
4526
  window.open(url.toString(), "_blank");
4527
4527
  });
@@ -4570,7 +4570,7 @@ var ProductManagement = /* @__PURE__ */ function() {
4570
4570
  if (state.config.initialData) {
4571
4571
  return state.config.initialData;
4572
4572
  }
4573
- let urlStr = `https://demoapi.rivia.ai/change_logs_by_workspace_name`;
4573
+ let urlStr = `https://demoapi.rivia.ai/latest3_change_logs_by_workspace_name`;
4574
4574
  if (!urlStr) throw new Error("apiUrl is not configured");
4575
4575
  if (id) {
4576
4576
  if (urlStr.includes("{id}")) urlStr = urlStr.replace("{id}", encodeURIComponent(id));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rivia",
3
- "version": "0.0.97",
3
+ "version": "0.0.98",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",