@neurodyn/react-model-viewer 0.0.0-canary-20260610104926 → 0.0.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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -5967,7 +5967,7 @@ function QRCode({ data, foreground, background, robustness = 'M', className, ...
5967
5967
  ...props
5968
5968
  });
5969
5969
  }
5970
- const MODEL_VIEWER_URL = "https://integrations-dev.vizbl.com/model-viewer";
5970
+ const MODEL_VIEWER_URL = "https://integrations.vizbl.com/model-viewer";
5971
5971
  const DEFAULT_API_TIMEOUT = 30000;
5972
5972
  function createDefaultClient(defaultBaseURL) {
5973
5973
  return axios.create({
@@ -6306,7 +6306,7 @@ function createApiClientRuntime({ clientName, configureFunctionName, defaultBase
6306
6306
  const runtime = createApiClientRuntime({
6307
6307
  clientName: 'API node client',
6308
6308
  configureFunctionName: 'configureNodeApiClient',
6309
- defaultBaseURL: "https://api-dev.vizbl.com"
6309
+ defaultBaseURL: "https://api.vizbl.com"
6310
6310
  });
6311
6311
  const configureNodeApiClientRuntime = runtime.configureClientRuntime;
6312
6312
  runtime.configureAccessTokenResolverRuntime;
@@ -7254,7 +7254,7 @@ function ModelViewerRoot({ tinuuid, apiKey, hid, layout = 'default', background
7254
7254
  });
7255
7255
  }
7256
7256
  configureNodeApiClient({
7257
- baseURL: "https://api-dev.vizbl.com"
7257
+ baseURL: "https://api.vizbl.com"
7258
7258
  });
7259
7259
  function ModelViewerDialog({ tinuuid, apiKey, hid, ...props }) {
7260
7260
  const [container, setContainer] = useState(null);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@neurodyn/react-model-viewer",
3
3
  "type": "module",
4
- "version": "0.0.0-canary-20260610104926",
4
+ "version": "0.0.1",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },