connectbase-client 3.8.1 → 3.10.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.mjs CHANGED
@@ -49,6 +49,40 @@ function createTimeoutController(options = {}) {
49
49
  };
50
50
  }
51
51
 
52
+ // src/core/recent-calls.ts
53
+ var DEFAULT_CAPACITY = 20;
54
+ var MAX_CAPACITY = 50;
55
+ var RecentCallsBuffer = class {
56
+ constructor(capacity = DEFAULT_CAPACITY) {
57
+ this.buf = [];
58
+ this.capacity = Math.min(Math.max(1, capacity), MAX_CAPACITY);
59
+ }
60
+ push(call) {
61
+ if (this.buf.length >= this.capacity) {
62
+ this.buf.shift();
63
+ }
64
+ this.buf.push(call);
65
+ }
66
+ /**
67
+ * 시간순(오래된 → 최신) 복사본 반환. 호출자가 mutate 해도 내부에 영향 없음.
68
+ */
69
+ snapshot() {
70
+ return this.buf.slice();
71
+ }
72
+ clear() {
73
+ this.buf = [];
74
+ }
75
+ };
76
+ function sanitizePathForBreadcrumb(rawUrl) {
77
+ try {
78
+ const u = rawUrl.startsWith("http") ? new URL(rawUrl) : new URL(rawUrl, "http://x");
79
+ return u.pathname || rawUrl;
80
+ } catch {
81
+ const idx = rawUrl.indexOf("?");
82
+ return idx >= 0 ? rawUrl.slice(0, idx) : rawUrl;
83
+ }
84
+ }
85
+
52
86
  // src/core/http.ts
53
87
  var TOKEN_STORAGE_KEY = "cb_auth_tokens";
54
88
  var HttpClient = class {
@@ -59,11 +93,24 @@ var HttpClient = class {
59
93
  // 밀리초 단위로 서버에 재시도 요청이 쏟아지는 것을 차단.
60
94
  this.refreshFailureCount = 0;
61
95
  this.refreshLockedUntil = 0;
96
+ /**
97
+ * 최근 API 호출 breadcrumb (PII strip 후 저장). platform_issue 발행 시 자동 첨부 가능.
98
+ * `client.support.getRecentCalls()` 로 외부 노출.
99
+ */
100
+ this.recentCalls = new RecentCallsBuffer();
62
101
  this.config = { ...config };
63
102
  this.storageKey = this.buildStorageKey();
64
103
  this.warnIfUnsafePersistence();
65
104
  this.restoreTokens();
66
105
  }
106
+ /** 최근 호출 ring buffer 스냅샷 (시간순). */
107
+ getRecentCalls() {
108
+ return this.recentCalls.snapshot();
109
+ }
110
+ /** 최근 호출 buffer clear (테스트/프라이버시 처리). */
111
+ clearRecentCalls() {
112
+ this.recentCalls.clear();
113
+ }
67
114
  warnIfUnsafePersistence() {
68
115
  if (typeof window === "undefined") return;
69
116
  if (this.config.persistence === "localStorage") {
@@ -220,6 +267,7 @@ var HttpClient = class {
220
267
  const { signal, cleanup } = createTimeoutController({
221
268
  timeout: this.config.requestTimeoutMs ?? DEFAULT_REQUEST_TIMEOUT_MS
222
269
  });
270
+ let failureKind = "transient";
223
271
  try {
224
272
  const headers = {
225
273
  "Content-Type": "application/json"
@@ -238,7 +286,28 @@ var HttpClient = class {
238
286
  signal
239
287
  });
240
288
  if (!response.ok) {
241
- throw new Error("Token refresh failed");
289
+ const status = response.status;
290
+ let oauthError;
291
+ try {
292
+ const errBody = await response.clone().json();
293
+ if (errBody && typeof errBody.error === "string") {
294
+ oauthError = errBody.error;
295
+ } else if (errBody && typeof errBody.code === "string") {
296
+ oauthError = errBody.code;
297
+ }
298
+ } catch {
299
+ }
300
+ if (status >= 500) {
301
+ throw new Error(`Token refresh failed (${status})`);
302
+ }
303
+ if (status === 401 || status === 403 || status === 400 && (oauthError === "invalid_grant" || oauthError === "invalid_token")) {
304
+ failureKind = "permanent";
305
+ } else {
306
+ failureKind = "client_bug";
307
+ }
308
+ throw new Error(
309
+ `Token refresh failed (${status}${oauthError ? ` ${oauthError}` : ""})`
310
+ );
242
311
  }
243
312
  const data = await response.json();
244
313
  if (!data || typeof data.access_token !== "string") {
@@ -258,17 +327,35 @@ var HttpClient = class {
258
327
  this.refreshFailureCount = 0;
259
328
  this.refreshLockedUntil = 0;
260
329
  return data.access_token;
261
- } catch {
330
+ } catch (e) {
331
+ const baseMsg = e instanceof Error ? e.message : "Token refresh failed";
262
332
  this.refreshFailureCount++;
263
333
  const backoffMs = Math.min(
264
334
  500 * 2 ** Math.max(0, this.refreshFailureCount - 1),
265
335
  3e4
266
336
  );
267
337
  this.refreshLockedUntil = Date.now() + backoffMs;
268
- this.clearTokens();
269
- this.config.onTokenExpired?.();
270
- const error = new AuthError("Token refresh failed. Please login again.");
338
+ if (failureKind === "permanent") {
339
+ this.clearTokens();
340
+ this.config.onTokenExpired?.();
341
+ const error2 = new AuthError(`${baseMsg}. Please login again.`);
342
+ this.emitError(error2);
343
+ this.config.onAuthError?.(error2);
344
+ throw error2;
345
+ }
346
+ if (failureKind === "client_bug") {
347
+ const error2 = new AuthError(
348
+ `${baseMsg}. Client request invalid; tokens preserved.`
349
+ );
350
+ this.emitError(error2);
351
+ this.config.onAuthError?.(error2);
352
+ throw error2;
353
+ }
354
+ const error = new AuthError(
355
+ `${baseMsg}. Transient failure; tokens preserved, will retry after backoff.`
356
+ );
271
357
  this.emitError(error);
358
+ this.config.onTransientRefreshFailure?.(error);
272
359
  this.config.onAuthError?.(error);
273
360
  throw error;
274
361
  } finally {
@@ -397,14 +484,24 @@ var HttpClient = class {
397
484
  timeout: config?.timeout ?? this.config.requestTimeoutMs ?? DEFAULT_REQUEST_TIMEOUT_MS,
398
485
  signal: config?.signal
399
486
  });
487
+ const startedAt = Date.now();
488
+ let status = 0;
400
489
  try {
401
490
  const response = await fetch(`${this.config.baseUrl}${url}`, {
402
491
  ...init,
403
492
  credentials: "include",
404
493
  signal
405
494
  });
495
+ status = response.status;
406
496
  return await this.handleResponse(response);
407
497
  } finally {
498
+ this.recentCalls.push({
499
+ method: (init.method || "GET").toUpperCase(),
500
+ path: sanitizePathForBreadcrumb(url),
501
+ status,
502
+ duration_ms: Date.now() - startedAt,
503
+ timestamp: (/* @__PURE__ */ new Date()).toISOString()
504
+ });
408
505
  cleanup();
409
506
  }
410
507
  }
@@ -8358,8 +8455,8 @@ var AnalyticsAPI = class {
8358
8455
  * @example
8359
8456
  * ```ts
8360
8457
  * // 로그인 성공 직후
8361
- * await cb.auth.signIn({ email, password })
8362
- * cb.analytics.identify(member.id)
8458
+ * const member = await cb.auth.signInMember({ login_id, password })
8459
+ * cb.analytics.identify(member.member_id)
8363
8460
  * ```
8364
8461
  */
8365
8462
  identify(memberId) {
@@ -8941,6 +9038,174 @@ var AnalyticsAPI = class {
8941
9038
  }
8942
9039
  };
8943
9040
 
9041
+ // src/api/support.ts
9042
+ var SupportAPI = class {
9043
+ constructor(http) {
9044
+ this.http = http;
9045
+ }
9046
+ /**
9047
+ * 앱 운영자에게 이슈/문의/요청을 발행한다.
9048
+ *
9049
+ * 로그인된 사용자(AppMember)면 신뢰 등급이 높고 reporter_member_id 가 자동으로 채워진다.
9050
+ * 익명 발행도 가능하나 운영자가 reCAPTCHA 를 활성화한 경우 `recaptchaToken` 이 권장된다.
9051
+ *
9052
+ * @returns 발행된 이슈 id + 초기 status (`open`) + 생성 시각.
9053
+ * @throws ApiError — 본문 길이 초과 / 쿼터 초과(429) / reCAPTCHA 거부(403) 등.
9054
+ */
9055
+ async reportIssue(req) {
9056
+ const body = {
9057
+ title: req.title,
9058
+ body: req.body,
9059
+ category: req.category,
9060
+ metadata: req.metadata
9061
+ };
9062
+ if (req.anonymousEmail) body.anonymous_email = req.anonymousEmail;
9063
+ if (req.recaptchaToken) body.recaptcha_token = req.recaptchaToken;
9064
+ return this.http.post("/v1/public/reports", body);
9065
+ }
9066
+ /**
9067
+ * ConnectBase 플랫폼 자체 버그/요청/문의를 발행한다.
9068
+ *
9069
+ * `reportIssue` 와 다른 점: target 이 앱 운영자가 아닌 **ConnectBase 운영팀**.
9070
+ * SDK 가 자체 버그를 던지거나, 결제/문서/플랫폼 동작이 이상할 때 사용.
9071
+ *
9072
+ * 자동 첨부 (opt-out 가능):
9073
+ * - SDK 버전 + 플랫폼 (web/node)
9074
+ * - 마지막 N(20)개 API 호출 breadcrumb (PII strip 후)
9075
+ * - error 객체의 stack trace (sanitize)
9076
+ *
9077
+ * @example SDK 가 throw 한 에러를 자동 첨부해서 발행
9078
+ * ```typescript
9079
+ * try {
9080
+ * await cb.functions.invoke('foo', {})
9081
+ * } catch (err) {
9082
+ * await cb.support.reportPlatformBug({
9083
+ * title: 'functions.invoke 가 504 만 반환',
9084
+ * body: '같은 인자로 5분 째 504. 콘솔에선 정상.',
9085
+ * category: 'sdk',
9086
+ * severity: 'high',
9087
+ * error: err as Error,
9088
+ * })
9089
+ * }
9090
+ * ```
9091
+ */
9092
+ async reportPlatformBug(req) {
9093
+ const attachContext = req.attachAutomaticContext !== false;
9094
+ const body = {
9095
+ title: req.title,
9096
+ body: req.body,
9097
+ category: req.category ?? "other",
9098
+ severity: req.severity ?? "medium",
9099
+ metadata: req.metadata
9100
+ };
9101
+ if (req.reporterEmail) body.reporter_email = req.reporterEmail;
9102
+ if (req.recaptchaToken) body.recaptcha_token = req.recaptchaToken;
9103
+ if (attachContext) {
9104
+ body.sdk_version = req.sdkVersion ?? detectSdkVersion();
9105
+ body.sdk_platform = req.sdkPlatform ?? detectSdkPlatform();
9106
+ body.environment = req.environment ?? "unknown";
9107
+ if (req.error) {
9108
+ body.stack_trace = sanitizeStackTrace(req.error.stack ?? String(req.error));
9109
+ } else if (req.stackTrace) {
9110
+ body.stack_trace = sanitizeStackTrace(req.stackTrace);
9111
+ }
9112
+ const calls = req.recentApiCalls ?? this.http.getRecentCalls();
9113
+ if (calls.length > 0) {
9114
+ body.recent_api_calls = calls;
9115
+ }
9116
+ }
9117
+ return this.http.post(
9118
+ "/v1/public/platform-issues",
9119
+ body
9120
+ );
9121
+ }
9122
+ /** 디버깅용: 마지막 N개 API 호출 breadcrumb. PII 제거 후 저장돼있다. */
9123
+ getRecentApiCalls() {
9124
+ return this.http.getRecentCalls();
9125
+ }
9126
+ /** breadcrumb buffer 비우기 (사용자 명시적 요청 / 프라이버시). */
9127
+ clearRecentApiCalls() {
9128
+ this.http.clearRecentCalls();
9129
+ }
9130
+ /**
9131
+ * Platform issue 의 reply thread 조회.
9132
+ *
9133
+ * 본인이 발행한 issue 만 조회 가능 (server-side ownership guard). admin 의 internal 메모는 응답 제외.
9134
+ *
9135
+ * @param issueId - `reportPlatformBug` 가 반환한 id
9136
+ * @throws ApiError 404 — 본인 issue 가 아니거나 존재하지 않음
9137
+ */
9138
+ async listPlatformIssueReplies(issueId) {
9139
+ const res = await this.http.get(
9140
+ `/v1/public/platform-issues/${issueId}/comments`
9141
+ );
9142
+ return res.comments;
9143
+ }
9144
+ /**
9145
+ * Platform issue 에 follow-up reply 작성.
9146
+ *
9147
+ * 단말 상태(resolved/wontfix/duplicate) issue 는 reply 거부 — 새 issue 발행 권장.
9148
+ */
9149
+ async replyToPlatformIssue(issueId, body) {
9150
+ return this.http.post(
9151
+ `/v1/public/platform-issues/${issueId}/comments`,
9152
+ { body }
9153
+ );
9154
+ }
9155
+ /**
9156
+ * 본인이 발행한 platform issue 의 처리 진행 상황을 단건 조회.
9157
+ *
9158
+ * AI 가 "내가 발행한 이슈 처리됐어?" 를 폴링하는 표준 경로. status / resolution_note /
9159
+ * triage_summary / external_links 로 ConnectBase 운영팀의 처리 상태를 확인.
9160
+ *
9161
+ * @throws ApiError 404 — 본인 issue 가 아니거나 존재하지 않음
9162
+ */
9163
+ async getPlatformIssue(issueId) {
9164
+ return this.http.get(
9165
+ `/v1/public/platform-issues/${issueId}`
9166
+ );
9167
+ }
9168
+ /**
9169
+ * 본인 app 으로 발행한 platform issue 목록 (cursor 페이지네이션).
9170
+ *
9171
+ * status/severity/category 필터 + `since_updated_at` 으로 미해결만 폴링하는 사용 패턴 권장:
9172
+ *
9173
+ * ```typescript
9174
+ * const { issues } = await cb.support.listMyPlatformIssues({ status: ['open', 'triaged', 'in_progress'] })
9175
+ * ```
9176
+ */
9177
+ async listMyPlatformIssues(opts = {}) {
9178
+ const params = new URLSearchParams();
9179
+ for (const s of opts.status ?? []) params.append("status", s);
9180
+ for (const s of opts.severity ?? []) params.append("severity", s);
9181
+ for (const s of opts.category ?? []) params.append("category", s);
9182
+ if (opts.sinceUpdatedAt) params.set("since_updated_at", opts.sinceUpdatedAt);
9183
+ if (opts.cursor) params.set("cursor", opts.cursor);
9184
+ if (typeof opts.limit === "number") params.set("limit", String(opts.limit));
9185
+ const query = params.toString();
9186
+ return this.http.get(
9187
+ `/v1/public/platform-issues${query ? "?" + query : ""}`
9188
+ );
9189
+ }
9190
+ };
9191
+ function detectSdkVersion() {
9192
+ if (typeof __SDK_VERSION__ !== "undefined" && __SDK_VERSION__) {
9193
+ return __SDK_VERSION__;
9194
+ }
9195
+ return "unknown";
9196
+ }
9197
+ function detectSdkPlatform() {
9198
+ return typeof window !== "undefined" && typeof document !== "undefined" ? "web" : "node";
9199
+ }
9200
+ function sanitizeStackTrace(raw) {
9201
+ let s = raw;
9202
+ s = s.replace(/(\(|\s|^)(?:file:\/\/)?\/[^\s)]+\/([^\s/)]+)(:\d+:\d+)?/g, "$1$2$3");
9203
+ s = s.replace(/(https?:\/\/[^\s)?]+)\?[^\s)]*/g, "$1");
9204
+ const max = 32 * 1024;
9205
+ if (s.length > max) s = s.slice(0, max) + "\n\u2026[truncated]";
9206
+ return s;
9207
+ }
9208
+
8944
9209
  // src/types/knowledge.ts
8945
9210
  var AUTH_MEMBER_ID_TOKEN = "$auth.member_id";
8946
9211
 
@@ -9605,7 +9870,8 @@ var ConnectBase = class {
9605
9870
  onError: config.onError,
9606
9871
  onTokenRefresh: config.onTokenRefresh,
9607
9872
  onAuthError: config.onAuthError,
9608
- onTokenExpired: config.onTokenExpired
9873
+ onTokenExpired: config.onTokenExpired,
9874
+ onTransientRefreshFailure: config.onTransientRefreshFailure
9609
9875
  };
9610
9876
  this.http = new HttpClient(httpConfig);
9611
9877
  this.auth = new AuthAPI(this.http);
@@ -9629,6 +9895,7 @@ var ConnectBase = class {
9629
9895
  this.queue = new QueueAPI(this.http);
9630
9896
  this.analytics = new AnalyticsAPI(this.http);
9631
9897
  this.endpoint = new EndpointAPI(this.http);
9898
+ this.support = new SupportAPI(this.http);
9632
9899
  this.auth._attachAnalytics(this.analytics);
9633
9900
  const shouldAutoRestore = config.autoRestoreSession ?? true;
9634
9901
  if (shouldAutoRestore && typeof window !== "undefined") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "connectbase-client",
3
- "version": "3.8.1",
3
+ "version": "3.10.0",
4
4
  "description": "Connect Base JavaScript/TypeScript SDK for browser and Node.js",
5
5
  "repository": {
6
6
  "type": "git",