@prismer/runtime 1.9.0-hotfix.1 → 1.9.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.
@@ -31,13 +31,6 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
31
31
  ));
32
32
 
33
33
  // src/keychain.ts
34
- var keychain_exports = {};
35
- __export(keychain_exports, {
36
- Keychain: () => Keychain,
37
- KeychainAccessDeniedError: () => KeychainAccessDeniedError,
38
- KeychainOperationError: () => KeychainOperationError,
39
- NoKeychainBackendError: () => NoKeychainBackendError
40
- });
41
34
  function isMacAccessDenied(err) {
42
35
  if (typeof err !== "object" || err === null) return false;
43
36
  const rec = err;
@@ -8161,8 +8154,7 @@ var init_runner = __esm({
8161
8154
  // src/commands/pair.ts
8162
8155
  async function getAuthHeaders() {
8163
8156
  try {
8164
- const { Keychain: Keychain2 } = await Promise.resolve().then(() => (init_keychain(), keychain_exports));
8165
- const cfg = await loadConfig({ keychain: new Keychain2() }).catch(() => ({}));
8157
+ const cfg = await loadConfig().catch(() => ({}));
8166
8158
  if (cfg.apiKey) {
8167
8159
  return { "Authorization": `Bearer ${cfg.apiKey}` };
8168
8160
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prismer/runtime",
3
- "version": "1.9.0-hotfix.1",
3
+ "version": "1.9.0",
4
4
  "description": "Prismer Cloud v1.9.0 daemon runtime: agent supervisor, local HTTP API, event bus, CLI",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",