@rixl/sdk 0.11.0 → 0.12.0
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -675,7 +675,7 @@ if (copies > 1) console.warn(`[@rixl/sdk] ${copies} copies of this package were
|
|
|
675
675
|
* simply never been configured. Captured from the client itself rather than
|
|
676
676
|
* hardcoded so it stays correct if the generator input ever moves.
|
|
677
677
|
*/
|
|
678
|
-
const placeholderBaseUrl = shared("placeholderBaseUrl", () => client.getConfig().baseUrl);
|
|
678
|
+
const placeholderBaseUrl = shared("placeholderBaseUrl", () => client.getConfig().baseUrl ?? "https://raw.githubusercontent.com");
|
|
679
679
|
const clients = shared("clients", () => /* @__PURE__ */ new Set());
|
|
680
680
|
/** Setup applied to every client copy, including ones registered later. */
|
|
681
681
|
const initializers = shared("clientInitializers", () => []);
|