shellbase 0.12.0 → 0.12.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/config.js +3 -1
  2. package/package.json +1 -1
package/dist/config.js CHANGED
@@ -11,7 +11,9 @@ export const CLI_AUTH_SESSIONS_TABLE_ID = '01a00aa0-802d-7730-88ba-b831b7405188'
11
11
  export const WEB_APP_URL = 'https://shellbase.web.connectbase.world';
12
12
  export const WEB_LOGIN_URL = `${WEB_APP_URL}/login`;
13
13
  // 앱을 닫아둔 폰에 알림을 보내주는 서버 함수 (push.ts). 발송은 서버만 할 수 있어서 이걸 부른다.
14
- export const PUSH_FUNCTION_ID = process.env.SHELLBASE_PUSH_FUNCTION ?? 'shellbase-notify';
14
+ // 이름이 아니라 **함수 id(UUID)** 불러야 한다 — 이름으로 부르면 `invalid function ID` 가 난다(실측).
15
+ // 이 앱의 모든 사용자가 같은 함수를 부르지만, 알림은 함수가 호출자 본인(ctx.memberId)에게만 보낸다.
16
+ export const PUSH_FUNCTION_ID = process.env.SHELLBASE_PUSH_FUNCTION ?? '01a01f8f-6ef8-7335-ba55-dc095587ba6d';
15
17
  export const CONFIG_DIR = path.join(os.homedir(), '.shellbase');
16
18
  export const CREDENTIALS_PATH = path.join(CONFIG_DIR, 'credentials.json');
17
19
  // 폰이 보내는 제어 프레임(세션 끄기 / 새 세션 열기)에 함께 실어 보내는 확인 문자열.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shellbase",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "description": "내 컴퓨터 터미널(특히 Claude Code 세션)을 폰 브라우저로 실시간 접속하게 해주는 데스크톱 에이전트",
5
5
  "type": "module",
6
6
  "bin": {