@neetru/sdk 3.1.9 → 3.1.10

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 (51) hide show
  1. package/dist/ai.cjs +304 -0
  2. package/dist/ai.cjs.map +1 -0
  3. package/dist/ai.d.cts +3 -0
  4. package/dist/ai.d.ts +3 -0
  5. package/dist/ai.mjs +302 -0
  6. package/dist/ai.mjs.map +1 -0
  7. package/dist/auth.cjs +283 -1
  8. package/dist/auth.cjs.map +1 -1
  9. package/dist/auth.d.cts +1 -1
  10. package/dist/auth.d.ts +1 -1
  11. package/dist/auth.mjs +283 -1
  12. package/dist/auth.mjs.map +1 -1
  13. package/dist/catalog.d.cts +1 -1
  14. package/dist/catalog.d.ts +1 -1
  15. package/dist/checkout.d.cts +1 -1
  16. package/dist/checkout.d.ts +1 -1
  17. package/dist/db-react.d.cts +1 -1
  18. package/dist/db-react.d.ts +1 -1
  19. package/dist/db.d.cts +1 -1
  20. package/dist/db.d.ts +1 -1
  21. package/dist/entitlements.d.cts +1 -1
  22. package/dist/entitlements.d.ts +1 -1
  23. package/dist/firestore-compat.d.cts +1 -1
  24. package/dist/firestore-compat.d.ts +1 -1
  25. package/dist/index.cjs +286 -2
  26. package/dist/index.cjs.map +1 -1
  27. package/dist/index.d.cts +3 -3
  28. package/dist/index.d.ts +3 -3
  29. package/dist/index.mjs +285 -3
  30. package/dist/index.mjs.map +1 -1
  31. package/dist/mocks.cjs +52 -0
  32. package/dist/mocks.cjs.map +1 -1
  33. package/dist/mocks.d.cts +20 -2
  34. package/dist/mocks.d.ts +20 -2
  35. package/dist/mocks.mjs +52 -1
  36. package/dist/mocks.mjs.map +1 -1
  37. package/dist/notifications.d.cts +1 -1
  38. package/dist/notifications.d.ts +1 -1
  39. package/dist/react.d.cts +1 -1
  40. package/dist/react.d.ts +1 -1
  41. package/dist/support.d.cts +1 -1
  42. package/dist/support.d.ts +1 -1
  43. package/dist/telemetry.d.cts +1 -1
  44. package/dist/telemetry.d.ts +1 -1
  45. package/dist/{types-DDiVzgCT.d.cts → types-Cog9S-tC.d.cts} +84 -1
  46. package/dist/{types-HWDOUmlC.d.ts → types-dagUxKYz.d.ts} +84 -1
  47. package/dist/usage.d.cts +1 -1
  48. package/dist/usage.d.ts +1 -1
  49. package/dist/webhooks.d.cts +1 -1
  50. package/dist/webhooks.d.ts +1 -1
  51. package/package.json +6 -1
@@ -1,3 +1,3 @@
1
- export { z as MockWebhooks, a2 as RegisterWebhookInput, am as VerifyWebhookRequestOptions, an as VerifyWebhookRequestResult, ao as WebhookEndpoint, ap as WebhookEvent, aq as WebhookScopeOptions, ar as WebhookTestResult, as as WebhooksNamespace, ay as createWebhooksNamespace, aF as verifyWebhookRequest, aG as verifyWebhookSignature } from './types-DDiVzgCT.cjs';
1
+ export { P as MockWebhooks, aa as RegisterWebhookInput, au as VerifyWebhookRequestOptions, av as VerifyWebhookRequestResult, aw as WebhookEndpoint, ax as WebhookEvent, ay as WebhookScopeOptions, az as WebhookTestResult, aA as WebhooksNamespace, aH as createWebhooksNamespace, aO as verifyWebhookRequest, aP as verifyWebhookSignature } from './types-Cog9S-tC.cjs';
2
2
  import 'drizzle-orm/node-postgres';
3
3
  import './errors.cjs';
@@ -1,3 +1,3 @@
1
- export { z as MockWebhooks, a2 as RegisterWebhookInput, am as VerifyWebhookRequestOptions, an as VerifyWebhookRequestResult, ao as WebhookEndpoint, ap as WebhookEvent, aq as WebhookScopeOptions, ar as WebhookTestResult, as as WebhooksNamespace, ay as createWebhooksNamespace, aF as verifyWebhookRequest, aG as verifyWebhookSignature } from './types-HWDOUmlC.js';
1
+ export { P as MockWebhooks, aa as RegisterWebhookInput, au as VerifyWebhookRequestOptions, av as VerifyWebhookRequestResult, aw as WebhookEndpoint, ax as WebhookEvent, ay as WebhookScopeOptions, az as WebhookTestResult, aA as WebhooksNamespace, aH as createWebhooksNamespace, aO as verifyWebhookRequest, aP as verifyWebhookSignature } from './types-dagUxKYz.js';
2
2
  import 'drizzle-orm/node-postgres';
3
3
  import './errors.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neetru/sdk",
3
- "version": "3.1.9",
3
+ "version": "3.1.10",
4
4
  "description": "Neetru SDK 3.0 — biblioteca runtime universal (browser/Node/Edge) para consumir o ecossistema Neetru. Paths canonical /api/sdk/v1/*, productId obrigatório, Idempotency-Key em mutations, WebCrypto signatures, baseUrl allowlist fail-closed.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -86,6 +86,11 @@
86
86
  "types": "./dist/notifications.d.ts",
87
87
  "import": "./dist/notifications.mjs",
88
88
  "require": "./dist/notifications.cjs"
89
+ },
90
+ "./ai": {
91
+ "types": "./dist/ai.d.ts",
92
+ "import": "./dist/ai.mjs",
93
+ "require": "./dist/ai.cjs"
89
94
  }
90
95
  },
91
96
  "peerDependencies": {