@neetru/sdk 2.1.1 → 2.2.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.
Files changed (64) hide show
  1. package/CHANGELOG.md +42 -1
  2. package/dist/auth.cjs +127 -0
  3. package/dist/auth.cjs.map +1 -1
  4. package/dist/auth.d.cts +4 -2
  5. package/dist/auth.d.ts +4 -2
  6. package/dist/auth.mjs +127 -1
  7. package/dist/auth.mjs.map +1 -1
  8. package/dist/catalog.cjs.map +1 -1
  9. package/dist/catalog.d.cts +1 -1
  10. package/dist/catalog.d.ts +1 -1
  11. package/dist/catalog.mjs.map +1 -1
  12. package/dist/checkout.cjs.map +1 -1
  13. package/dist/checkout.d.cts +1 -1
  14. package/dist/checkout.d.ts +1 -1
  15. package/dist/checkout.mjs.map +1 -1
  16. package/dist/db.cjs.map +1 -1
  17. package/dist/db.d.cts +1 -1
  18. package/dist/db.d.ts +1 -1
  19. package/dist/db.mjs.map +1 -1
  20. package/dist/entitlements.cjs.map +1 -1
  21. package/dist/entitlements.d.cts +1 -1
  22. package/dist/entitlements.d.ts +1 -1
  23. package/dist/entitlements.mjs.map +1 -1
  24. package/dist/errors.cjs.map +1 -1
  25. package/dist/errors.d.cts +1 -1
  26. package/dist/errors.d.ts +1 -1
  27. package/dist/errors.mjs.map +1 -1
  28. package/dist/index.cjs +123 -0
  29. package/dist/index.cjs.map +1 -1
  30. package/dist/index.d.cts +2 -2
  31. package/dist/index.d.ts +2 -2
  32. package/dist/index.mjs +123 -0
  33. package/dist/index.mjs.map +1 -1
  34. package/dist/mocks.cjs +55 -0
  35. package/dist/mocks.cjs.map +1 -1
  36. package/dist/mocks.d.cts +21 -1
  37. package/dist/mocks.d.ts +21 -1
  38. package/dist/mocks.mjs +55 -0
  39. package/dist/mocks.mjs.map +1 -1
  40. package/dist/notifications.cjs.map +1 -1
  41. package/dist/notifications.d.cts +1 -1
  42. package/dist/notifications.d.ts +1 -1
  43. package/dist/notifications.mjs.map +1 -1
  44. package/dist/react.d.cts +1 -1
  45. package/dist/react.d.ts +1 -1
  46. package/dist/support.cjs.map +1 -1
  47. package/dist/support.d.cts +1 -1
  48. package/dist/support.d.ts +1 -1
  49. package/dist/support.mjs.map +1 -1
  50. package/dist/telemetry.cjs.map +1 -1
  51. package/dist/telemetry.d.cts +1 -1
  52. package/dist/telemetry.d.ts +1 -1
  53. package/dist/telemetry.mjs.map +1 -1
  54. package/dist/{types-V1EfjR1p.d.ts → types-CvTje138.d.ts} +45 -1
  55. package/dist/{types-Cfb-qeDg.d.cts → types-DlDxttiG.d.cts} +45 -1
  56. package/dist/usage.cjs.map +1 -1
  57. package/dist/usage.d.cts +1 -1
  58. package/dist/usage.d.ts +1 -1
  59. package/dist/usage.mjs.map +1 -1
  60. package/dist/webhooks.cjs.map +1 -1
  61. package/dist/webhooks.d.cts +1 -1
  62. package/dist/webhooks.d.ts +1 -1
  63. package/dist/webhooks.mjs.map +1 -1
  64. package/package.json +2 -1
package/dist/auth.d.cts CHANGED
@@ -1,9 +1,11 @@
1
- import { o as NeetruClientConfig, N as NeetruClient } from './types-Cfb-qeDg.cjs';
1
+ import { o as NeetruClientConfig, N as NeetruClient } from './types-DlDxttiG.cjs';
2
2
  import './collection-ref-DqAAhuhX.cjs';
3
3
  import '@neetru/realtime-protocol';
4
4
  import 'drizzle-orm/node-postgres';
5
5
  import './errors.cjs';
6
6
 
7
+ /** Limpa o cache de JWKS — uso exclusivo em testes. */
8
+ declare function __resetJwksCacheForTests(): void;
7
9
  /**
8
10
  * Cria uma instância imutável do cliente Neetru SDK.
9
11
  *
@@ -26,4 +28,4 @@ import './errors.cjs';
26
28
  */
27
29
  declare function createNeetruClient(config?: NeetruClientConfig): NeetruClient;
28
30
 
29
- export { createNeetruClient };
31
+ export { __resetJwksCacheForTests, createNeetruClient };
package/dist/auth.d.ts CHANGED
@@ -1,9 +1,11 @@
1
- import { o as NeetruClientConfig, N as NeetruClient } from './types-V1EfjR1p.js';
1
+ import { o as NeetruClientConfig, N as NeetruClient } from './types-CvTje138.js';
2
2
  import './collection-ref-DqAAhuhX.js';
3
3
  import '@neetru/realtime-protocol';
4
4
  import 'drizzle-orm/node-postgres';
5
5
  import './errors.js';
6
6
 
7
+ /** Limpa o cache de JWKS — uso exclusivo em testes. */
8
+ declare function __resetJwksCacheForTests(): void;
7
9
  /**
8
10
  * Cria uma instância imutável do cliente Neetru SDK.
9
11
  *
@@ -26,4 +28,4 @@ import './errors.js';
26
28
  */
27
29
  declare function createNeetruClient(config?: NeetruClientConfig): NeetruClient;
28
30
 
29
- export { createNeetruClient };
31
+ export { __resetJwksCacheForTests, createNeetruClient };
package/dist/auth.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ import { jwtVerify, createRemoteJWKSet } from 'jose';
1
2
  import { openDB } from 'idb';
2
3
 
3
4
  var __defProp = Object.defineProperty;
@@ -4843,6 +4844,61 @@ var MockAuth = class {
4843
4844
  this._listeners.delete(listener);
4844
4845
  };
4845
4846
  }
4847
+ /**
4848
+ * Mock de `verifyToken` — decodifica o JWT sem verificar assinatura (pra testes).
4849
+ * Em dev, retorna o user atual do mock se já estiver logado. Aceita qualquer token
4850
+ * não-vazio sem chamar rede.
4851
+ *
4852
+ * Para simular falhas em testes, use `MockAuth.__mockVerifyToken(fn)`.
4853
+ */
4854
+ async verifyToken(token) {
4855
+ if (this._verifyTokenOverride) {
4856
+ return this._verifyTokenOverride(token);
4857
+ }
4858
+ if (!token) {
4859
+ throw Object.assign(new Error("Token inv\xE1lido"), { code: "token_invalid_signature" });
4860
+ }
4861
+ try {
4862
+ const parts = token.split(".");
4863
+ if (parts.length === 3) {
4864
+ const b64 = parts[1].replace(/-/g, "+").replace(/_/g, "/");
4865
+ const pad = "=".repeat((4 - b64.length % 4) % 4);
4866
+ const decoded = JSON.parse(
4867
+ typeof atob === "function" ? atob(b64 + pad) : Buffer.from(b64 + pad, "base64").toString("utf-8")
4868
+ );
4869
+ if (typeof decoded.sub === "string") {
4870
+ return {
4871
+ uid: decoded.sub,
4872
+ email: typeof decoded.email === "string" ? decoded.email : "",
4873
+ emailVerified: typeof decoded.email_verified === "boolean" ? decoded.email_verified : void 0,
4874
+ displayName: typeof decoded.name === "string" ? decoded.name : void 0,
4875
+ photoURL: typeof decoded.picture === "string" ? decoded.picture : void 0,
4876
+ isStaff: decoded.is_staff === true,
4877
+ isCustomer: decoded.is_customer === true,
4878
+ tenantId: typeof decoded.tenant_id === "string" ? decoded.tenant_id : void 0,
4879
+ ...decoded
4880
+ };
4881
+ }
4882
+ }
4883
+ } catch {
4884
+ }
4885
+ if (this._user) return this._user;
4886
+ throw Object.assign(new Error("Nenhum user mock dispon\xEDvel"), { code: "token_invalid_signature" });
4887
+ }
4888
+ _verifyTokenOverride = null;
4889
+ /**
4890
+ * Injeta override pra `verifyToken` em testes — permite simular expiração,
4891
+ * assinatura inválida etc sem precisar de JWT real.
4892
+ *
4893
+ * @example
4894
+ * ```ts
4895
+ * const mock = new MockAuth(null);
4896
+ * mock.__mockVerifyToken(async () => { throw new NeetruError('token_expired', '...'); });
4897
+ * ```
4898
+ */
4899
+ __mockVerifyToken(fn) {
4900
+ this._verifyTokenOverride = fn;
4901
+ }
4846
4902
  /** Helper de tests — força um user state arbitrário. */
4847
4903
  __setUser(user) {
4848
4904
  this._user = user;
@@ -5016,6 +5072,37 @@ function resolveEnv(configEnv) {
5016
5072
  }
5017
5073
  return "prod";
5018
5074
  }
5075
+ var _jwksCache = /* @__PURE__ */ new Map();
5076
+ var DEFAULT_JWKS_TTL_MS = 60 * 60 * 1e3;
5077
+ function _getJwks(jwksUrl, cacheTtlMs) {
5078
+ const now = Date.now();
5079
+ const cached = _jwksCache.get(jwksUrl);
5080
+ if (cached && now - cached.createdAt < cacheTtlMs) {
5081
+ return cached.jwks;
5082
+ }
5083
+ const jwks = createRemoteJWKSet(new URL(jwksUrl));
5084
+ _jwksCache.set(jwksUrl, { jwks, createdAt: now });
5085
+ return jwks;
5086
+ }
5087
+ function __resetJwksCacheForTests() {
5088
+ _jwksCache.clear();
5089
+ }
5090
+ function _jwtPayloadToUser(payload) {
5091
+ const sub = payload.sub ?? "";
5092
+ const email = typeof payload.email === "string" ? payload.email : "";
5093
+ return {
5094
+ uid: sub,
5095
+ email,
5096
+ emailVerified: typeof payload.email_verified === "boolean" ? payload.email_verified : void 0,
5097
+ displayName: typeof payload.name === "string" ? payload.name : void 0,
5098
+ photoURL: typeof payload.picture === "string" ? payload.picture : void 0,
5099
+ isStaff: payload.is_staff === true,
5100
+ isCustomer: payload.is_customer === true,
5101
+ tenantId: typeof payload.tenant_id === "string" ? payload.tenant_id : void 0,
5102
+ // Spreads todos os claims originais (aud, iss, iat, exp, etc).
5103
+ ...payload
5104
+ };
5105
+ }
5019
5106
  function createOidcAuthNamespace(config) {
5020
5107
  const STORAGE_KEY = "neetru_id_token";
5021
5108
  const listeners = /* @__PURE__ */ new Set();
@@ -5123,6 +5210,45 @@ function createOidcAuthNamespace(config) {
5123
5210
  return () => {
5124
5211
  listeners.delete(listener);
5125
5212
  };
5213
+ },
5214
+ async verifyToken(token, options) {
5215
+ if (!token || typeof token !== "string") {
5216
+ throw new NeetruError("token_invalid_signature", "token must be a non-empty string");
5217
+ }
5218
+ const overrideAuthUrl = typeof globalThis.NEETRU_AUTH_URL === "string" ? globalThis.NEETRU_AUTH_URL : null;
5219
+ const idpOrigin = overrideAuthUrl ?? config.baseUrl.replace(/^https?:\/\/api\./, "https://auth.");
5220
+ const issuer = idpOrigin;
5221
+ const jwksUrl = `${idpOrigin}/api/v1/oauth/.well-known/jwks.json`;
5222
+ const cacheTtlMs = options?.jwksCacheTtlMs ?? DEFAULT_JWKS_TTL_MS;
5223
+ const audience = config.apiKey ? config.apiKey.split("_")[1] ?? void 0 : void 0;
5224
+ const jwks = _getJwks(jwksUrl, cacheTtlMs);
5225
+ try {
5226
+ const { payload } = await jwtVerify(token, jwks, {
5227
+ issuer,
5228
+ ...audience ? { audience } : {},
5229
+ algorithms: ["RS256"]
5230
+ });
5231
+ return _jwtPayloadToUser(payload);
5232
+ } catch (err) {
5233
+ const errName = err?.code ?? err?.name ?? "";
5234
+ const errMsg = err?.message ?? String(err);
5235
+ if (errName === "ERR_JWT_EXPIRED") {
5236
+ throw new NeetruError("token_expired", `Token expired: ${errMsg}`);
5237
+ }
5238
+ if (errName === "ERR_JWS_SIGNATURE_VERIFICATION_FAILED") {
5239
+ throw new NeetruError("token_invalid_signature", `Token signature invalid: ${errMsg}`);
5240
+ }
5241
+ if (errName === "ERR_JWT_CLAIM_VALIDATION_FAILED") {
5242
+ if (errMsg.includes('"aud"') || errMsg.includes("audience")) {
5243
+ throw new NeetruError("token_invalid_audience", `Token audience mismatch: ${errMsg}`);
5244
+ }
5245
+ if (errMsg.includes('"iss"') || errMsg.includes("issuer")) {
5246
+ throw new NeetruError("token_invalid_issuer", `Token issuer mismatch: ${errMsg}`);
5247
+ }
5248
+ throw new NeetruError("token_invalid_signature", `Token claim validation failed: ${errMsg}`);
5249
+ }
5250
+ throw new NeetruError("token_invalid_signature", `Token verification failed: ${errMsg}`);
5251
+ }
5126
5252
  }
5127
5253
  };
5128
5254
  }
@@ -5169,6 +5295,6 @@ function createNeetruClient(config = {}) {
5169
5295
  return client;
5170
5296
  }
5171
5297
 
5172
- export { createNeetruClient };
5298
+ export { __resetJwksCacheForTests, createNeetruClient };
5173
5299
  //# sourceMappingURL=auth.mjs.map
5174
5300
  //# sourceMappingURL=auth.mjs.map