@carlonicora/nextjs-jsonapi 1.79.0 → 1.80.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 (81) hide show
  1. package/dist/{AssistantMessageInterface-DWnbd6J7.d.ts → AssistantMessageInterface-BpEhx2pC.d.ts} +18 -1
  2. package/dist/{AssistantMessageInterface-Mla6kgPe.d.mts → AssistantMessageInterface-DJ3Me16Y.d.mts} +18 -1
  3. package/dist/{BlockNoteEditor-6CBDTVKV.mjs → BlockNoteEditor-3M5PD3BZ.mjs} +4 -4
  4. package/dist/{BlockNoteEditor-EH4HWI7H.js → BlockNoteEditor-YLTPJPTV.js} +14 -14
  5. package/dist/{BlockNoteEditor-EH4HWI7H.js.map → BlockNoteEditor-YLTPJPTV.js.map} +1 -1
  6. package/dist/billing/index.js +346 -346
  7. package/dist/billing/index.mjs +3 -3
  8. package/dist/{chunk-ZDP3MBUI.js → chunk-4NOQNTFI.js} +1151 -740
  9. package/dist/chunk-4NOQNTFI.js.map +1 -0
  10. package/dist/{chunk-BKM5U3DE.mjs → chunk-6UMB5LTQ.mjs} +98 -7
  11. package/dist/chunk-6UMB5LTQ.mjs.map +1 -0
  12. package/dist/{chunk-5IEWLLLD.js → chunk-N4YZ45SK.js} +115 -24
  13. package/dist/chunk-N4YZ45SK.js.map +1 -0
  14. package/dist/{chunk-ENRSFVOS.mjs → chunk-NQV5RDCK.mjs} +1112 -701
  15. package/dist/chunk-NQV5RDCK.mjs.map +1 -0
  16. package/dist/{chunk-MEWXQEVE.mjs → chunk-PV5V6CVW.mjs} +2 -2
  17. package/dist/{chunk-TWDSDTHU.js → chunk-ZEJSPTHS.js} +7 -7
  18. package/dist/{chunk-TWDSDTHU.js.map → chunk-ZEJSPTHS.js.map} +1 -1
  19. package/dist/client/index.js +4 -4
  20. package/dist/client/index.mjs +3 -3
  21. package/dist/components/index.d.mts +25 -7
  22. package/dist/components/index.d.ts +25 -7
  23. package/dist/components/index.js +6 -4
  24. package/dist/components/index.js.map +1 -1
  25. package/dist/components/index.mjs +5 -3
  26. package/dist/contexts/index.d.mts +1 -1
  27. package/dist/contexts/index.d.ts +1 -1
  28. package/dist/contexts/index.js +4 -4
  29. package/dist/contexts/index.mjs +3 -3
  30. package/dist/core/index.d.mts +35 -3
  31. package/dist/core/index.d.ts +35 -3
  32. package/dist/core/index.js +6 -2
  33. package/dist/core/index.js.map +1 -1
  34. package/dist/core/index.mjs +5 -1
  35. package/dist/index.d.mts +2 -2
  36. package/dist/index.d.ts +2 -2
  37. package/dist/index.js +7 -3
  38. package/dist/index.js.map +1 -1
  39. package/dist/index.mjs +6 -2
  40. package/dist/server/index.js +3 -3
  41. package/dist/server/index.mjs +1 -1
  42. package/package.json +1 -1
  43. package/src/core/index.ts +2 -0
  44. package/src/core/registry/ModuleRegistry.ts +1 -0
  45. package/src/features/assistant/components/parts/AssistantThread.tsx +1 -1
  46. package/src/features/assistant-message/AssistantMessageModule.ts +4 -0
  47. package/src/features/assistant-message/components/MessageItem.tsx +7 -7
  48. package/src/features/assistant-message/components/MessageList.tsx +1 -1
  49. package/src/features/assistant-message/components/__tests__/MessageItem.spec.tsx +11 -7
  50. package/src/features/assistant-message/components/index.ts +1 -0
  51. package/src/features/assistant-message/components/parts/MessageSourcesContainer.tsx +135 -0
  52. package/src/features/assistant-message/components/parts/MessageSourcesPanel.tsx +151 -0
  53. package/src/features/assistant-message/components/parts/RelevanceMeter.tsx +29 -0
  54. package/src/features/assistant-message/components/parts/__tests__/MessageSourcesPanel.spec.tsx +70 -0
  55. package/src/features/assistant-message/components/parts/tabs/CitationsTab.tsx +105 -0
  56. package/src/features/assistant-message/components/parts/tabs/ContentsTab.tsx +88 -0
  57. package/src/features/assistant-message/components/parts/tabs/ReferencesTab.tsx +51 -0
  58. package/src/features/assistant-message/components/parts/tabs/SuggestedQuestionsTab.tsx +24 -0
  59. package/src/features/assistant-message/components/parts/tabs/UsersTab.tsx +142 -0
  60. package/src/features/assistant-message/data/AssistantMessage.ts +20 -0
  61. package/src/features/assistant-message/data/AssistantMessageInterface.ts +2 -0
  62. package/src/features/assistant-message/data/AssistantMessageService.ts +13 -4
  63. package/src/features/assistant-message/data/__tests__/AssistantMessage.citations.spec.ts +65 -0
  64. package/src/features/assistant-message/data/__tests__/AssistantMessage.spec.ts +8 -0
  65. package/src/features/chunk/ChunkModule.ts +18 -0
  66. package/src/features/chunk/data/Chunk.ts +49 -0
  67. package/src/features/chunk/data/ChunkInput.ts +3 -0
  68. package/src/features/chunk/data/ChunkInterface.ts +18 -0
  69. package/src/features/chunk/data/__tests__/Chunk.spec.ts +83 -0
  70. package/src/features/chunk/data/index.ts +3 -0
  71. package/src/features/chunk/index.ts +2 -0
  72. package/dist/chunk-5IEWLLLD.js.map +0 -1
  73. package/dist/chunk-BKM5U3DE.mjs.map +0 -1
  74. package/dist/chunk-ENRSFVOS.mjs.map +0 -1
  75. package/dist/chunk-ZDP3MBUI.js.map +0 -1
  76. package/src/features/assistant-message/components/parts/ReferenceBadges.tsx +0 -46
  77. package/src/features/assistant-message/components/parts/SuggestedFollowUps.tsx +0 -52
  78. package/src/features/assistant-message/components/parts/__tests__/ReferenceBadges.spec.tsx +0 -59
  79. package/src/features/assistant-message/components/parts/__tests__/SuggestedFollowUps.spec.tsx +0 -29
  80. /package/dist/{BlockNoteEditor-6CBDTVKV.mjs.map → BlockNoteEditor-3M5PD3BZ.mjs.map} +0 -0
  81. /package/dist/{chunk-MEWXQEVE.mjs.map → chunk-PV5V6CVW.mjs.map} +0 -0
@@ -1 +1 @@
1
- {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/components/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,8j0BAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/components/index.js"}
1
+ {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/components/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,ko0BAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/components/index.js"}
@@ -251,6 +251,7 @@ import {
251
251
  Logout,
252
252
  MessageItem,
253
253
  MessageList,
254
+ MessageSourcesPanel,
254
255
  ModeToggleSwitch,
255
256
  MultiSelect,
256
257
  MultipleSelector,
@@ -446,14 +447,14 @@ import {
446
447
  useEditorDialog,
447
448
  useFileUpload,
448
449
  useSidebar
449
- } from "../chunk-ENRSFVOS.mjs";
450
- import "../chunk-MEWXQEVE.mjs";
450
+ } from "../chunk-NQV5RDCK.mjs";
451
+ import "../chunk-PV5V6CVW.mjs";
451
452
  import {
452
453
  getIcon,
453
454
  getIconByModule,
454
455
  getIconByModuleName,
455
456
  getInitials
456
- } from "../chunk-BKM5U3DE.mjs";
457
+ } from "../chunk-6UMB5LTQ.mjs";
457
458
  import "../chunk-AUXK7QSA.mjs";
458
459
  import "../chunk-C7C7VY4F.mjs";
459
460
  import "../chunk-BTKJFMFL.mjs";
@@ -716,6 +717,7 @@ export {
716
717
  Logout,
717
718
  MessageItem,
718
719
  MessageList,
720
+ MessageSourcesPanel,
719
721
  ModeToggleSwitch,
720
722
  MultiSelect,
721
723
  MultipleSelector,
@@ -4,7 +4,7 @@ import { J as JsonApiHydratedDataInterface } from '../ApiDataInterface-BcZeXy5X.
4
4
  import { j as CompanyInterface, N as NotificationInterface, l as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action } from '../notification.interface-DLZGtV7Z.mjs';
5
5
  import { O as OnboardingProviderProps, a as OnboardingContextValue } from '../onboarding.interface-Djyl9qYu.mjs';
6
6
  export { D as DEFAULT_ONBOARDING_LABELS, g as OnboardingCardRenderProps, f as OnboardingLabels, c as OnboardingStepConfig, b as OnboardingStepSide, d as OnboardingTourConfig, e as OnboardingTourPaths } from '../onboarding.interface-Djyl9qYu.mjs';
7
- import { a as HowToInterface, c as AssistantMessageInterface, B as BreadcrumbItemData } from '../AssistantMessageInterface-Mla6kgPe.mjs';
7
+ import { a as HowToInterface, c as AssistantMessageInterface, B as BreadcrumbItemData } from '../AssistantMessageInterface-DJ3Me16Y.mjs';
8
8
  import { R as RbacMatrix, A as ActionType, P as PermissionValue } from '../RbacTypes-BTbr27Ew.mjs';
9
9
  import { a as AssistantInterface } from '../AssistantInterface-BYgI5z1-.mjs';
10
10
  import { u as useSocket } from '../useSocket-BkxHHujj.mjs';
@@ -4,7 +4,7 @@ import { J as JsonApiHydratedDataInterface } from '../ApiDataInterface-BcZeXy5X.
4
4
  import { j as CompanyInterface, N as NotificationInterface, l as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action } from '../notification.interface-aLEJbA_g.js';
5
5
  import { O as OnboardingProviderProps, a as OnboardingContextValue } from '../onboarding.interface-Djyl9qYu.js';
6
6
  export { D as DEFAULT_ONBOARDING_LABELS, g as OnboardingCardRenderProps, f as OnboardingLabels, c as OnboardingStepConfig, b as OnboardingStepSide, d as OnboardingTourConfig, e as OnboardingTourPaths } from '../onboarding.interface-Djyl9qYu.js';
7
- import { a as HowToInterface, c as AssistantMessageInterface, B as BreadcrumbItemData } from '../AssistantMessageInterface-DWnbd6J7.js';
7
+ import { a as HowToInterface, c as AssistantMessageInterface, B as BreadcrumbItemData } from '../AssistantMessageInterface-BpEhx2pC.js';
8
8
  import { R as RbacMatrix, A as ActionType, P as PermissionValue } from '../RbacTypes-BTbr27Ew.js';
9
9
  import { a as AssistantInterface } from '../AssistantInterface-DfDcz0gJ.js';
10
10
  import { u as useSocket } from '../useSocket-CMDjWFYm.js';
@@ -31,9 +31,9 @@
31
31
 
32
32
 
33
33
 
34
- var _chunkZDP3MBUIjs = require('../chunk-ZDP3MBUI.js');
35
- require('../chunk-TWDSDTHU.js');
36
- require('../chunk-5IEWLLLD.js');
34
+ var _chunk4NOQNTFIjs = require('../chunk-4NOQNTFI.js');
35
+ require('../chunk-ZEJSPTHS.js');
36
+ require('../chunk-N4YZ45SK.js');
37
37
  require('../chunk-LXKSUWAV.js');
38
38
  require('../chunk-IBS6NI7D.js');
39
39
  require('../chunk-4MN547K7.js');
@@ -71,5 +71,5 @@ require('../chunk-7QVYU63E.js');
71
71
 
72
72
 
73
73
 
74
- exports.AssistantProvider = _chunkZDP3MBUIjs.AssistantProvider; exports.CommonProvider = _chunkZDP3MBUIjs.CommonProvider; exports.CompanyProvider = _chunkZDP3MBUIjs.CompanyProvider; exports.CurrentUserProvider = _chunkZDP3MBUIjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkZDP3MBUIjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkZDP3MBUIjs.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkZDP3MBUIjs.HeaderLeftContentProvider; exports.HowToProvider = _chunkZDP3MBUIjs.HowToProvider; exports.NotificationContextProvider = _chunkZDP3MBUIjs.NotificationContextProvider; exports.OnboardingProvider = _chunkZDP3MBUIjs.OnboardingProvider; exports.RbacProvider = _chunkZDP3MBUIjs.RbacProvider; exports.RoleProvider = _chunkZDP3MBUIjs.RoleProvider; exports.SharedProvider = _chunkZDP3MBUIjs.SharedProvider; exports.SocketContext = _chunkZDP3MBUIjs.SocketContext; exports.SocketProvider = _chunkZDP3MBUIjs.SocketProvider; exports.UserProvider = _chunkZDP3MBUIjs.UserProvider; exports.recentPagesAtom = _chunkZDP3MBUIjs.recentPagesAtom; exports.useAssistantContext = _chunkZDP3MBUIjs.useAssistantContext; exports.useCommonContext = _chunkZDP3MBUIjs.useCommonContext; exports.useCompanyContext = _chunkZDP3MBUIjs.useCompanyContext; exports.useCurrentUserContext = _chunkZDP3MBUIjs.useCurrentUserContext; exports.useHeaderChildren = _chunkZDP3MBUIjs.useHeaderChildren; exports.useHeaderLeftContent = _chunkZDP3MBUIjs.useHeaderLeftContent; exports.useHowToContext = _chunkZDP3MBUIjs.useHowToContext; exports.useNotificationContext = _chunkZDP3MBUIjs.useNotificationContext; exports.useOnboarding = _chunkZDP3MBUIjs.useOnboarding; exports.useRbacContext = _chunkZDP3MBUIjs.useRbacContext; exports.useRoleContext = _chunkZDP3MBUIjs.useRoleContext; exports.useSharedContext = _chunkZDP3MBUIjs.useSharedContext; exports.useSocketContext = _chunkZDP3MBUIjs.useSocketContext; exports.useUserContext = _chunkZDP3MBUIjs.useUserContext;
74
+ exports.AssistantProvider = _chunk4NOQNTFIjs.AssistantProvider; exports.CommonProvider = _chunk4NOQNTFIjs.CommonProvider; exports.CompanyProvider = _chunk4NOQNTFIjs.CompanyProvider; exports.CurrentUserProvider = _chunk4NOQNTFIjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunk4NOQNTFIjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunk4NOQNTFIjs.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunk4NOQNTFIjs.HeaderLeftContentProvider; exports.HowToProvider = _chunk4NOQNTFIjs.HowToProvider; exports.NotificationContextProvider = _chunk4NOQNTFIjs.NotificationContextProvider; exports.OnboardingProvider = _chunk4NOQNTFIjs.OnboardingProvider; exports.RbacProvider = _chunk4NOQNTFIjs.RbacProvider; exports.RoleProvider = _chunk4NOQNTFIjs.RoleProvider; exports.SharedProvider = _chunk4NOQNTFIjs.SharedProvider; exports.SocketContext = _chunk4NOQNTFIjs.SocketContext; exports.SocketProvider = _chunk4NOQNTFIjs.SocketProvider; exports.UserProvider = _chunk4NOQNTFIjs.UserProvider; exports.recentPagesAtom = _chunk4NOQNTFIjs.recentPagesAtom; exports.useAssistantContext = _chunk4NOQNTFIjs.useAssistantContext; exports.useCommonContext = _chunk4NOQNTFIjs.useCommonContext; exports.useCompanyContext = _chunk4NOQNTFIjs.useCompanyContext; exports.useCurrentUserContext = _chunk4NOQNTFIjs.useCurrentUserContext; exports.useHeaderChildren = _chunk4NOQNTFIjs.useHeaderChildren; exports.useHeaderLeftContent = _chunk4NOQNTFIjs.useHeaderLeftContent; exports.useHowToContext = _chunk4NOQNTFIjs.useHowToContext; exports.useNotificationContext = _chunk4NOQNTFIjs.useNotificationContext; exports.useOnboarding = _chunk4NOQNTFIjs.useOnboarding; exports.useRbacContext = _chunk4NOQNTFIjs.useRbacContext; exports.useRoleContext = _chunk4NOQNTFIjs.useRoleContext; exports.useSharedContext = _chunk4NOQNTFIjs.useSharedContext; exports.useSocketContext = _chunk4NOQNTFIjs.useSocketContext; exports.useUserContext = _chunk4NOQNTFIjs.useUserContext;
75
75
  //# sourceMappingURL=index.js.map
@@ -31,9 +31,9 @@ import {
31
31
  useSharedContext,
32
32
  useSocketContext,
33
33
  useUserContext
34
- } from "../chunk-ENRSFVOS.mjs";
35
- import "../chunk-MEWXQEVE.mjs";
36
- import "../chunk-BKM5U3DE.mjs";
34
+ } from "../chunk-NQV5RDCK.mjs";
35
+ import "../chunk-PV5V6CVW.mjs";
36
+ import "../chunk-6UMB5LTQ.mjs";
37
37
  import "../chunk-AUXK7QSA.mjs";
38
38
  import "../chunk-C7C7VY4F.mjs";
39
39
  import "../chunk-BTKJFMFL.mjs";
@@ -7,8 +7,8 @@ import { b as AbstractService, i as TwoFactorChallengeInterface, c as NextRef, d
7
7
  export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, N as NotificationService, P as PushService, R as RoleService, S as S3Service, e as SelfRef, T as TotalRef, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from '../s3.service-CVgLWaDc.mjs';
8
8
  import { M as ModuleWithPermissions, g as PermissionUser, A as Action, f as PermissionModule, h as ModuleFactory, l as RoleInterface, R as RoleInput, U as UserInterface, j as CompanyInterface, m as UserInput, i as CompanyInput, C as ContentInterface, a as ContentInput, N as NotificationInterface, k as NotificationInput } from '../notification.interface-DLZGtV7Z.mjs';
9
9
  export { d as ModuleDefinition, c as ModulePermissionDefinition, b as PageUrl, P as PermissionCheck, e as PermissionConfig } from '../notification.interface-DLZGtV7Z.mjs';
10
- import { a as HowToInterface, H as HowToInput, c as AssistantMessageInterface, A as AssistantMessageRole, b as AssistantMessageInput } from '../AssistantMessageInterface-Mla6kgPe.mjs';
11
- export { B as BreadcrumbItemData } from '../AssistantMessageInterface-Mla6kgPe.mjs';
10
+ import { a as HowToInterface, H as HowToInput, c as AssistantMessageInterface, A as AssistantMessageRole, d as ChunkInterface, C as ChunkRelationshipMeta, b as AssistantMessageInput } from '../AssistantMessageInterface-DJ3Me16Y.mjs';
11
+ export { B as BreadcrumbItemData } from '../AssistantMessageInterface-DJ3Me16Y.mjs';
12
12
  export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-Ck5lkQ5d.mjs';
13
13
  import { ClassValue } from 'clsx';
14
14
  export { ClassValue } from 'clsx';
@@ -236,6 +236,7 @@ interface FoundationModuleDefinitions {
236
236
  HowTo: ModuleWithPermissions;
237
237
  Assistant: ModuleWithPermissions;
238
238
  AssistantMessage: ModuleWithPermissions;
239
+ Chunk: ModuleWithPermissions;
239
240
  Billing: ModuleWithPermissions;
240
241
  StripeCustomer: ModuleWithPermissions;
241
242
  StripePaymentMethod: ModuleWithPermissions;
@@ -1849,6 +1850,7 @@ declare class AssistantMessage extends AbstractApiData implements AssistantMessa
1849
1850
  private _inputTokens?;
1850
1851
  private _outputTokens?;
1851
1852
  private _references?;
1853
+ private _citations?;
1852
1854
  get role(): AssistantMessageRole;
1853
1855
  get content(): string;
1854
1856
  get position(): number;
@@ -1856,6 +1858,7 @@ declare class AssistantMessage extends AbstractApiData implements AssistantMessa
1856
1858
  get inputTokens(): number | undefined;
1857
1859
  get outputTokens(): number | undefined;
1858
1860
  get references(): ApiDataInterface[];
1861
+ get citations(): (ChunkInterface & ChunkRelationshipMeta)[];
1859
1862
  rehydrate(data: JsonApiHydratedDataInterface): this;
1860
1863
  createJsonApi(data: AssistantMessageInput): {
1861
1864
  data: {
@@ -1897,6 +1900,35 @@ declare class AssistantMessageService extends AbstractService {
1897
1900
  }): Promise<void>;
1898
1901
  }
1899
1902
 
1903
+ declare const ChunkModule: (factory: ModuleFactory) => ModuleWithPermissions;
1904
+
1905
+ declare class Chunk extends AbstractApiData implements ChunkInterface {
1906
+ private _content?;
1907
+ private _nodeId?;
1908
+ private _nodeType?;
1909
+ private _imagePath?;
1910
+ private _source?;
1911
+ get content(): string;
1912
+ get nodeId(): string | undefined;
1913
+ get nodeType(): string | undefined;
1914
+ get imagePath(): string | undefined;
1915
+ get source(): ApiDataInterface | undefined;
1916
+ rehydrate(data: JsonApiHydratedDataInterface): this;
1917
+ createJsonApi(): {
1918
+ data: {
1919
+ type: string;
1920
+ id: string;
1921
+ attributes: {};
1922
+ relationships: {};
1923
+ };
1924
+ included: never[];
1925
+ };
1926
+ }
1927
+
1928
+ type ChunkInput = {
1929
+ id: string;
1930
+ };
1931
+
1900
1932
  declare class Notification extends AbstractApiData implements NotificationInterface {
1901
1933
  private _notificationType?;
1902
1934
  private _isRead?;
@@ -2261,4 +2293,4 @@ declare class AuditLogService extends AbstractService {
2261
2293
 
2262
2294
  declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
2263
2295
 
2264
- export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema };
2296
+ export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema };
@@ -7,8 +7,8 @@ import { b as AbstractService, i as TwoFactorChallengeInterface, c as NextRef, d
7
7
  export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, N as NotificationService, P as PushService, R as RoleService, S as S3Service, e as SelfRef, T as TotalRef, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from '../s3.service-SLlX0Zbz.js';
8
8
  import { M as ModuleWithPermissions, g as PermissionUser, A as Action, f as PermissionModule, h as ModuleFactory, l as RoleInterface, R as RoleInput, U as UserInterface, j as CompanyInterface, m as UserInput, i as CompanyInput, C as ContentInterface, a as ContentInput, N as NotificationInterface, k as NotificationInput } from '../notification.interface-aLEJbA_g.js';
9
9
  export { d as ModuleDefinition, c as ModulePermissionDefinition, b as PageUrl, P as PermissionCheck, e as PermissionConfig } from '../notification.interface-aLEJbA_g.js';
10
- import { a as HowToInterface, H as HowToInput, c as AssistantMessageInterface, A as AssistantMessageRole, b as AssistantMessageInput } from '../AssistantMessageInterface-DWnbd6J7.js';
11
- export { B as BreadcrumbItemData } from '../AssistantMessageInterface-DWnbd6J7.js';
10
+ import { a as HowToInterface, H as HowToInput, c as AssistantMessageInterface, A as AssistantMessageRole, d as ChunkInterface, C as ChunkRelationshipMeta, b as AssistantMessageInput } from '../AssistantMessageInterface-BpEhx2pC.js';
11
+ export { B as BreadcrumbItemData } from '../AssistantMessageInterface-BpEhx2pC.js';
12
12
  export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-Ck5lkQ5d.js';
13
13
  import { ClassValue } from 'clsx';
14
14
  export { ClassValue } from 'clsx';
@@ -236,6 +236,7 @@ interface FoundationModuleDefinitions {
236
236
  HowTo: ModuleWithPermissions;
237
237
  Assistant: ModuleWithPermissions;
238
238
  AssistantMessage: ModuleWithPermissions;
239
+ Chunk: ModuleWithPermissions;
239
240
  Billing: ModuleWithPermissions;
240
241
  StripeCustomer: ModuleWithPermissions;
241
242
  StripePaymentMethod: ModuleWithPermissions;
@@ -1849,6 +1850,7 @@ declare class AssistantMessage extends AbstractApiData implements AssistantMessa
1849
1850
  private _inputTokens?;
1850
1851
  private _outputTokens?;
1851
1852
  private _references?;
1853
+ private _citations?;
1852
1854
  get role(): AssistantMessageRole;
1853
1855
  get content(): string;
1854
1856
  get position(): number;
@@ -1856,6 +1858,7 @@ declare class AssistantMessage extends AbstractApiData implements AssistantMessa
1856
1858
  get inputTokens(): number | undefined;
1857
1859
  get outputTokens(): number | undefined;
1858
1860
  get references(): ApiDataInterface[];
1861
+ get citations(): (ChunkInterface & ChunkRelationshipMeta)[];
1859
1862
  rehydrate(data: JsonApiHydratedDataInterface): this;
1860
1863
  createJsonApi(data: AssistantMessageInput): {
1861
1864
  data: {
@@ -1897,6 +1900,35 @@ declare class AssistantMessageService extends AbstractService {
1897
1900
  }): Promise<void>;
1898
1901
  }
1899
1902
 
1903
+ declare const ChunkModule: (factory: ModuleFactory) => ModuleWithPermissions;
1904
+
1905
+ declare class Chunk extends AbstractApiData implements ChunkInterface {
1906
+ private _content?;
1907
+ private _nodeId?;
1908
+ private _nodeType?;
1909
+ private _imagePath?;
1910
+ private _source?;
1911
+ get content(): string;
1912
+ get nodeId(): string | undefined;
1913
+ get nodeType(): string | undefined;
1914
+ get imagePath(): string | undefined;
1915
+ get source(): ApiDataInterface | undefined;
1916
+ rehydrate(data: JsonApiHydratedDataInterface): this;
1917
+ createJsonApi(): {
1918
+ data: {
1919
+ type: string;
1920
+ id: string;
1921
+ attributes: {};
1922
+ relationships: {};
1923
+ };
1924
+ included: never[];
1925
+ };
1926
+ }
1927
+
1928
+ type ChunkInput = {
1929
+ id: string;
1930
+ };
1931
+
1900
1932
  declare class Notification extends AbstractApiData implements NotificationInterface {
1901
1933
  private _notificationType?;
1902
1934
  private _isRead?;
@@ -2261,4 +2293,4 @@ declare class AuditLogService extends AbstractService {
2261
2293
 
2262
2294
  declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
2263
2295
 
2264
- export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema };
2296
+ export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema };
@@ -170,7 +170,9 @@
170
170
 
171
171
 
172
172
 
173
- var _chunk5IEWLLLDjs = require('../chunk-5IEWLLLD.js');
173
+
174
+
175
+ var _chunkN4YZ45SKjs = require('../chunk-N4YZ45SK.js');
174
176
  require('../chunk-LXKSUWAV.js');
175
177
  require('../chunk-IBS6NI7D.js');
176
178
 
@@ -367,5 +369,7 @@ require('../chunk-7QVYU63E.js');
367
369
 
368
370
 
369
371
 
370
- exports.AVAILABLE_OAUTH_SCOPES = _chunk5IEWLLLDjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunk5IEWLLLDjs.AbstractApiData; exports.AbstractService = _chunk5IEWLLLDjs.AbstractService; exports.Action = _chunk5IEWLLLDjs.Action; exports.Assistant = _chunk5IEWLLLDjs.Assistant; exports.AssistantMessage = _chunk5IEWLLLDjs.AssistantMessage; exports.AssistantMessageModule = _chunk5IEWLLLDjs.AssistantMessageModule; exports.AssistantMessageService = _chunk5IEWLLLDjs.AssistantMessageService; exports.AssistantModule = _chunk5IEWLLLDjs.AssistantModule; exports.AssistantService = _chunk5IEWLLLDjs.AssistantService; exports.AuditLog = _chunk5IEWLLLDjs.AuditLog; exports.AuditLogModule = _chunk5IEWLLLDjs.AuditLogModule; exports.AuditLogService = _chunk5IEWLLLDjs.AuditLogService; exports.Auth = _chunk5IEWLLLDjs.Auth; exports.AuthComponent = _chunk5IEWLLLDjs.AuthComponent; exports.AuthModule = _chunk5IEWLLLDjs.AuthModule; exports.AuthService = _chunk5IEWLLLDjs.AuthService; exports.AuthorModule = _chunk5IEWLLLDjs.AuthorModule; exports.BackupCodeVerify = _chunk5IEWLLLDjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunk5IEWLLLDjs.BackupCodeVerifyModule; exports.Billing = _chunk5IEWLLLDjs.Billing; exports.BillingModule = _chunk5IEWLLLDjs.BillingModule; exports.BillingService = _chunk5IEWLLLDjs.BillingService; exports.BlockNoteDiffUtil = _chunk5IEWLLLDjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunk5IEWLLLDjs.BlockNoteWordDiffRendererUtil; exports.ClientAbstractService = _chunk5IEWLLLDjs.ClientAbstractService; exports.ClientHttpMethod = _chunk5IEWLLLDjs.ClientHttpMethod; exports.Company = _chunk5IEWLLLDjs.Company; exports.CompanyFields = _chunk5IEWLLLDjs.CompanyFields; exports.CompanyModule = _chunk5IEWLLLDjs.CompanyModule; exports.CompanyService = _chunk5IEWLLLDjs.CompanyService; exports.Content = _chunk5IEWLLLDjs.Content; exports.ContentFields = _chunk5IEWLLLDjs.ContentFields; exports.ContentModule = _chunk5IEWLLLDjs.ContentModule; exports.ContentService = _chunk5IEWLLLDjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunk5IEWLLLDjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunk5IEWLLLDjs.EndpointCreator; exports.Feature = _chunk5IEWLLLDjs.Feature; exports.FeatureModule = _chunk5IEWLLLDjs.FeatureModule; exports.FeatureService = _chunk5IEWLLLDjs.FeatureService; exports.HowTo = _chunk5IEWLLLDjs.HowTo; exports.HowToFields = _chunk5IEWLLLDjs.HowToFields; exports.HowToModule = _chunk5IEWLLLDjs.HowToModule; exports.HowToService = _chunk5IEWLLLDjs.HowToService; exports.HttpMethod = _chunk5IEWLLLDjs.HttpMethod; exports.InvoiceStatus = _chunk5IEWLLLDjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunk5IEWLLLDjs.Module; exports.ModuleModule = _chunk5IEWLLLDjs.ModuleModule; exports.ModulePathsModule = _chunk5IEWLLLDjs.ModulePathsModule; exports.ModuleRegistrar = _chunk5IEWLLLDjs.ModuleRegistrar; exports.ModuleRegistry = _chunk5IEWLLLDjs.ModuleRegistry; exports.Modules = _chunk5IEWLLLDjs.Modules; exports.Notification = _chunk5IEWLLLDjs.Notification; exports.NotificationFields = _chunk5IEWLLLDjs.NotificationFields; exports.NotificationModule = _chunk5IEWLLLDjs.NotificationModule; exports.NotificationService = _chunk5IEWLLLDjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunk5IEWLLLDjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunk5IEWLLLDjs.OAuthClient; exports.OAuthModule = _chunk5IEWLLLDjs.OAuthModule; exports.OAuthService = _chunk5IEWLLLDjs.OAuthService; exports.Passkey = _chunk5IEWLLLDjs.Passkey; exports.PasskeyAuthenticationOptions = _chunk5IEWLLLDjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunk5IEWLLLDjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunk5IEWLLLDjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunk5IEWLLLDjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunk5IEWLLLDjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunk5IEWLLLDjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunk5IEWLLLDjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunk5IEWLLLDjs.PasskeyRename; exports.PasskeyRenameModule = _chunk5IEWLLLDjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunk5IEWLLLDjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunk5IEWLLLDjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunk5IEWLLLDjs.PaymentMethod; exports.PermissionMappingModule = _chunk5IEWLLLDjs.PermissionMappingModule; exports.Push = _chunk5IEWLLLDjs.Push; exports.PushModule = _chunk5IEWLLLDjs.PushModule; exports.PushService = _chunk5IEWLLLDjs.PushService; exports.RbacMatrixModule = _chunk5IEWLLLDjs.RbacMatrixModule; exports.ReferralModule = _chunk5IEWLLLDjs.ReferralModule; exports.ReferralService = _chunk5IEWLLLDjs.ReferralService; exports.ReferralStats = _chunk5IEWLLLDjs.ReferralStats; exports.ReferralStatsModule = _chunk5IEWLLLDjs.ReferralStatsModule; exports.RehydrationFactory = _chunk5IEWLLLDjs.RehydrationFactory; exports.Role = _chunk5IEWLLLDjs.Role; exports.RoleFields = _chunk5IEWLLLDjs.RoleFields; exports.RoleModule = _chunk5IEWLLLDjs.RoleModule; exports.RoleService = _chunk5IEWLLLDjs.RoleService; exports.S3 = _chunk5IEWLLLDjs.S3; exports.S3Module = _chunk5IEWLLLDjs.S3Module; exports.S3Service = _chunk5IEWLLLDjs.S3Service; exports.StripeCustomer = _chunk5IEWLLLDjs.StripeCustomer; exports.StripeCustomerModule = _chunk5IEWLLLDjs.StripeCustomerModule; exports.StripeCustomerService = _chunk5IEWLLLDjs.StripeCustomerService; exports.StripeInvoice = _chunk5IEWLLLDjs.StripeInvoice; exports.StripeInvoiceModule = _chunk5IEWLLLDjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunk5IEWLLLDjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunk5IEWLLLDjs.StripePaymentMethodModule; exports.StripePrice = _chunk5IEWLLLDjs.StripePrice; exports.StripePriceModule = _chunk5IEWLLLDjs.StripePriceModule; exports.StripePriceService = _chunk5IEWLLLDjs.StripePriceService; exports.StripeProduct = _chunk5IEWLLLDjs.StripeProduct; exports.StripeProductModule = _chunk5IEWLLLDjs.StripeProductModule; exports.StripeProductService = _chunk5IEWLLLDjs.StripeProductService; exports.StripePromotionCode = _chunk5IEWLLLDjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunk5IEWLLLDjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunk5IEWLLLDjs.StripePromotionCodeService; exports.StripeSubscription = _chunk5IEWLLLDjs.StripeSubscription; exports.StripeSubscriptionModule = _chunk5IEWLLLDjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunk5IEWLLLDjs.StripeSubscriptionService; exports.StripeUsage = _chunk5IEWLLLDjs.StripeUsage; exports.StripeUsageModule = _chunk5IEWLLLDjs.StripeUsageModule; exports.StripeUsageService = _chunk5IEWLLLDjs.StripeUsageService; exports.SubscriptionStatus = _chunk5IEWLLLDjs.SubscriptionStatus; exports.TableOptions = _chunk5IEWLLLDjs.TableOptions; exports.TotpAuthenticator = _chunk5IEWLLLDjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunk5IEWLLLDjs.TotpAuthenticatorModule; exports.TotpSetup = _chunk5IEWLLLDjs.TotpSetup; exports.TotpSetupModule = _chunk5IEWLLLDjs.TotpSetupModule; exports.TotpVerify = _chunk5IEWLLLDjs.TotpVerify; exports.TotpVerifyLogin = _chunk5IEWLLLDjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunk5IEWLLLDjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunk5IEWLLLDjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunk5IEWLLLDjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunk5IEWLLLDjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunk5IEWLLLDjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunk5IEWLLLDjs.TwoFactorEnableModule; exports.TwoFactorService = _chunk5IEWLLLDjs.TwoFactorService; exports.TwoFactorStatus = _chunk5IEWLLLDjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunk5IEWLLLDjs.TwoFactorStatusModule; exports.User = _chunk5IEWLLLDjs.User; exports.UserFields = _chunk5IEWLLLDjs.UserFields; exports.UserModule = _chunk5IEWLLLDjs.UserModule; exports.UserService = _chunk5IEWLLLDjs.UserService; exports.Waitlist = _chunk5IEWLLLDjs.Waitlist; exports.WaitlistModule = _chunk5IEWLLLDjs.WaitlistModule; exports.WaitlistService = _chunk5IEWLLLDjs.WaitlistService; exports.WaitlistStats = _chunk5IEWLLLDjs.WaitlistStats; exports.WaitlistStatsModule = _chunk5IEWLLLDjs.WaitlistStatsModule; exports.checkPermissions = _chunk5IEWLLLDjs.checkPermissions; exports.checkPermissionsFromServer = _chunk5IEWLLLDjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunk5IEWLLLDjs.clearLastApiTotal; exports.cn = _chunk5IEWLLLDjs.cn; exports.composeRefs = _chunk5IEWLLLDjs.composeRefs; exports.createJsonApiInclusion = _chunk5IEWLLLDjs.createJsonApiInclusion; exports.dismissToast = _chunk5IEWLLLDjs.dismissToast; exports.entityObjectSchema = _chunk5IEWLLLDjs.entityObjectSchema; exports.exists = _chunk5IEWLLLDjs.exists; exports.formatDate = _chunk5IEWLLLDjs.formatDate; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunk5IEWLLLDjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunk5IEWLLLDjs.getGlobalErrorHandler; exports.getIcon = _chunk5IEWLLLDjs.getIcon; exports.getIconByModule = _chunk5IEWLLLDjs.getIconByModule; exports.getIconByModuleName = _chunk5IEWLLLDjs.getIconByModuleName; exports.getInitials = _chunk5IEWLLLDjs.getInitials; exports.getLastApiTotal = _chunk5IEWLLLDjs.getLastApiTotal; exports.getLucideIcon = _chunk5IEWLLLDjs.getLucideIcon; exports.getLucideIconByModule = _chunk5IEWLLLDjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunk5IEWLLLDjs.getLucideIconByModuleName; exports.getTableComponents = _chunk5IEWLLLDjs.getTableComponents; exports.getTableOptions = _chunk5IEWLLLDjs.getTableOptions; exports.getValueFromPath = _chunk5IEWLLLDjs.getValueFromPath; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.rehydrate = _chunk5IEWLLLDjs.rehydrate; exports.rehydrateList = _chunk5IEWLLLDjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunk5IEWLLLDjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunk5IEWLLLDjs.setGlobalErrorHandler; exports.showCustomToast = _chunk5IEWLLLDjs.showCustomToast; exports.showError = _chunk5IEWLLLDjs.showError; exports.showToast = _chunk5IEWLLLDjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunk5IEWLLLDjs.useComposedRefs; exports.useIsMobile = _chunk5IEWLLLDjs.useIsMobile; exports.userObjectSchema = _chunk5IEWLLLDjs.userObjectSchema;
372
+
373
+
374
+ exports.AVAILABLE_OAUTH_SCOPES = _chunkN4YZ45SKjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkN4YZ45SKjs.AbstractApiData; exports.AbstractService = _chunkN4YZ45SKjs.AbstractService; exports.Action = _chunkN4YZ45SKjs.Action; exports.Assistant = _chunkN4YZ45SKjs.Assistant; exports.AssistantMessage = _chunkN4YZ45SKjs.AssistantMessage; exports.AssistantMessageModule = _chunkN4YZ45SKjs.AssistantMessageModule; exports.AssistantMessageService = _chunkN4YZ45SKjs.AssistantMessageService; exports.AssistantModule = _chunkN4YZ45SKjs.AssistantModule; exports.AssistantService = _chunkN4YZ45SKjs.AssistantService; exports.AuditLog = _chunkN4YZ45SKjs.AuditLog; exports.AuditLogModule = _chunkN4YZ45SKjs.AuditLogModule; exports.AuditLogService = _chunkN4YZ45SKjs.AuditLogService; exports.Auth = _chunkN4YZ45SKjs.Auth; exports.AuthComponent = _chunkN4YZ45SKjs.AuthComponent; exports.AuthModule = _chunkN4YZ45SKjs.AuthModule; exports.AuthService = _chunkN4YZ45SKjs.AuthService; exports.AuthorModule = _chunkN4YZ45SKjs.AuthorModule; exports.BackupCodeVerify = _chunkN4YZ45SKjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkN4YZ45SKjs.BackupCodeVerifyModule; exports.Billing = _chunkN4YZ45SKjs.Billing; exports.BillingModule = _chunkN4YZ45SKjs.BillingModule; exports.BillingService = _chunkN4YZ45SKjs.BillingService; exports.BlockNoteDiffUtil = _chunkN4YZ45SKjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkN4YZ45SKjs.BlockNoteWordDiffRendererUtil; exports.Chunk = _chunkN4YZ45SKjs.Chunk; exports.ChunkModule = _chunkN4YZ45SKjs.ChunkModule; exports.ClientAbstractService = _chunkN4YZ45SKjs.ClientAbstractService; exports.ClientHttpMethod = _chunkN4YZ45SKjs.ClientHttpMethod; exports.Company = _chunkN4YZ45SKjs.Company; exports.CompanyFields = _chunkN4YZ45SKjs.CompanyFields; exports.CompanyModule = _chunkN4YZ45SKjs.CompanyModule; exports.CompanyService = _chunkN4YZ45SKjs.CompanyService; exports.Content = _chunkN4YZ45SKjs.Content; exports.ContentFields = _chunkN4YZ45SKjs.ContentFields; exports.ContentModule = _chunkN4YZ45SKjs.ContentModule; exports.ContentService = _chunkN4YZ45SKjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkN4YZ45SKjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunkN4YZ45SKjs.EndpointCreator; exports.Feature = _chunkN4YZ45SKjs.Feature; exports.FeatureModule = _chunkN4YZ45SKjs.FeatureModule; exports.FeatureService = _chunkN4YZ45SKjs.FeatureService; exports.HowTo = _chunkN4YZ45SKjs.HowTo; exports.HowToFields = _chunkN4YZ45SKjs.HowToFields; exports.HowToModule = _chunkN4YZ45SKjs.HowToModule; exports.HowToService = _chunkN4YZ45SKjs.HowToService; exports.HttpMethod = _chunkN4YZ45SKjs.HttpMethod; exports.InvoiceStatus = _chunkN4YZ45SKjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunkN4YZ45SKjs.Module; exports.ModuleModule = _chunkN4YZ45SKjs.ModuleModule; exports.ModulePathsModule = _chunkN4YZ45SKjs.ModulePathsModule; exports.ModuleRegistrar = _chunkN4YZ45SKjs.ModuleRegistrar; exports.ModuleRegistry = _chunkN4YZ45SKjs.ModuleRegistry; exports.Modules = _chunkN4YZ45SKjs.Modules; exports.Notification = _chunkN4YZ45SKjs.Notification; exports.NotificationFields = _chunkN4YZ45SKjs.NotificationFields; exports.NotificationModule = _chunkN4YZ45SKjs.NotificationModule; exports.NotificationService = _chunkN4YZ45SKjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkN4YZ45SKjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkN4YZ45SKjs.OAuthClient; exports.OAuthModule = _chunkN4YZ45SKjs.OAuthModule; exports.OAuthService = _chunkN4YZ45SKjs.OAuthService; exports.Passkey = _chunkN4YZ45SKjs.Passkey; exports.PasskeyAuthenticationOptions = _chunkN4YZ45SKjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkN4YZ45SKjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkN4YZ45SKjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkN4YZ45SKjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkN4YZ45SKjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkN4YZ45SKjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkN4YZ45SKjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkN4YZ45SKjs.PasskeyRename; exports.PasskeyRenameModule = _chunkN4YZ45SKjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkN4YZ45SKjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkN4YZ45SKjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkN4YZ45SKjs.PaymentMethod; exports.PermissionMappingModule = _chunkN4YZ45SKjs.PermissionMappingModule; exports.Push = _chunkN4YZ45SKjs.Push; exports.PushModule = _chunkN4YZ45SKjs.PushModule; exports.PushService = _chunkN4YZ45SKjs.PushService; exports.RbacMatrixModule = _chunkN4YZ45SKjs.RbacMatrixModule; exports.ReferralModule = _chunkN4YZ45SKjs.ReferralModule; exports.ReferralService = _chunkN4YZ45SKjs.ReferralService; exports.ReferralStats = _chunkN4YZ45SKjs.ReferralStats; exports.ReferralStatsModule = _chunkN4YZ45SKjs.ReferralStatsModule; exports.RehydrationFactory = _chunkN4YZ45SKjs.RehydrationFactory; exports.Role = _chunkN4YZ45SKjs.Role; exports.RoleFields = _chunkN4YZ45SKjs.RoleFields; exports.RoleModule = _chunkN4YZ45SKjs.RoleModule; exports.RoleService = _chunkN4YZ45SKjs.RoleService; exports.S3 = _chunkN4YZ45SKjs.S3; exports.S3Module = _chunkN4YZ45SKjs.S3Module; exports.S3Service = _chunkN4YZ45SKjs.S3Service; exports.StripeCustomer = _chunkN4YZ45SKjs.StripeCustomer; exports.StripeCustomerModule = _chunkN4YZ45SKjs.StripeCustomerModule; exports.StripeCustomerService = _chunkN4YZ45SKjs.StripeCustomerService; exports.StripeInvoice = _chunkN4YZ45SKjs.StripeInvoice; exports.StripeInvoiceModule = _chunkN4YZ45SKjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunkN4YZ45SKjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkN4YZ45SKjs.StripePaymentMethodModule; exports.StripePrice = _chunkN4YZ45SKjs.StripePrice; exports.StripePriceModule = _chunkN4YZ45SKjs.StripePriceModule; exports.StripePriceService = _chunkN4YZ45SKjs.StripePriceService; exports.StripeProduct = _chunkN4YZ45SKjs.StripeProduct; exports.StripeProductModule = _chunkN4YZ45SKjs.StripeProductModule; exports.StripeProductService = _chunkN4YZ45SKjs.StripeProductService; exports.StripePromotionCode = _chunkN4YZ45SKjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunkN4YZ45SKjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkN4YZ45SKjs.StripePromotionCodeService; exports.StripeSubscription = _chunkN4YZ45SKjs.StripeSubscription; exports.StripeSubscriptionModule = _chunkN4YZ45SKjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkN4YZ45SKjs.StripeSubscriptionService; exports.StripeUsage = _chunkN4YZ45SKjs.StripeUsage; exports.StripeUsageModule = _chunkN4YZ45SKjs.StripeUsageModule; exports.StripeUsageService = _chunkN4YZ45SKjs.StripeUsageService; exports.SubscriptionStatus = _chunkN4YZ45SKjs.SubscriptionStatus; exports.TableOptions = _chunkN4YZ45SKjs.TableOptions; exports.TotpAuthenticator = _chunkN4YZ45SKjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkN4YZ45SKjs.TotpAuthenticatorModule; exports.TotpSetup = _chunkN4YZ45SKjs.TotpSetup; exports.TotpSetupModule = _chunkN4YZ45SKjs.TotpSetupModule; exports.TotpVerify = _chunkN4YZ45SKjs.TotpVerify; exports.TotpVerifyLogin = _chunkN4YZ45SKjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkN4YZ45SKjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkN4YZ45SKjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunkN4YZ45SKjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkN4YZ45SKjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkN4YZ45SKjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkN4YZ45SKjs.TwoFactorEnableModule; exports.TwoFactorService = _chunkN4YZ45SKjs.TwoFactorService; exports.TwoFactorStatus = _chunkN4YZ45SKjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkN4YZ45SKjs.TwoFactorStatusModule; exports.User = _chunkN4YZ45SKjs.User; exports.UserFields = _chunkN4YZ45SKjs.UserFields; exports.UserModule = _chunkN4YZ45SKjs.UserModule; exports.UserService = _chunkN4YZ45SKjs.UserService; exports.Waitlist = _chunkN4YZ45SKjs.Waitlist; exports.WaitlistModule = _chunkN4YZ45SKjs.WaitlistModule; exports.WaitlistService = _chunkN4YZ45SKjs.WaitlistService; exports.WaitlistStats = _chunkN4YZ45SKjs.WaitlistStats; exports.WaitlistStatsModule = _chunkN4YZ45SKjs.WaitlistStatsModule; exports.checkPermissions = _chunkN4YZ45SKjs.checkPermissions; exports.checkPermissionsFromServer = _chunkN4YZ45SKjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunkN4YZ45SKjs.clearLastApiTotal; exports.cn = _chunkN4YZ45SKjs.cn; exports.composeRefs = _chunkN4YZ45SKjs.composeRefs; exports.createJsonApiInclusion = _chunkN4YZ45SKjs.createJsonApiInclusion; exports.dismissToast = _chunkN4YZ45SKjs.dismissToast; exports.entityObjectSchema = _chunkN4YZ45SKjs.entityObjectSchema; exports.exists = _chunkN4YZ45SKjs.exists; exports.formatDate = _chunkN4YZ45SKjs.formatDate; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkN4YZ45SKjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkN4YZ45SKjs.getGlobalErrorHandler; exports.getIcon = _chunkN4YZ45SKjs.getIcon; exports.getIconByModule = _chunkN4YZ45SKjs.getIconByModule; exports.getIconByModuleName = _chunkN4YZ45SKjs.getIconByModuleName; exports.getInitials = _chunkN4YZ45SKjs.getInitials; exports.getLastApiTotal = _chunkN4YZ45SKjs.getLastApiTotal; exports.getLucideIcon = _chunkN4YZ45SKjs.getLucideIcon; exports.getLucideIconByModule = _chunkN4YZ45SKjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkN4YZ45SKjs.getLucideIconByModuleName; exports.getTableComponents = _chunkN4YZ45SKjs.getTableComponents; exports.getTableOptions = _chunkN4YZ45SKjs.getTableOptions; exports.getValueFromPath = _chunkN4YZ45SKjs.getValueFromPath; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.rehydrate = _chunkN4YZ45SKjs.rehydrate; exports.rehydrateList = _chunkN4YZ45SKjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkN4YZ45SKjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkN4YZ45SKjs.setGlobalErrorHandler; exports.showCustomToast = _chunkN4YZ45SKjs.showCustomToast; exports.showError = _chunkN4YZ45SKjs.showError; exports.showToast = _chunkN4YZ45SKjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunkN4YZ45SKjs.useComposedRefs; exports.useIsMobile = _chunkN4YZ45SKjs.useIsMobile; exports.userObjectSchema = _chunkN4YZ45SKjs.userObjectSchema;
371
375
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/core/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,usVAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/core/index.js"}
1
+ {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/core/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,myVAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/core/index.js"}
@@ -24,6 +24,8 @@ import {
24
24
  BillingService,
25
25
  BlockNoteDiffUtil,
26
26
  BlockNoteWordDiffRendererUtil,
27
+ Chunk,
28
+ ChunkModule,
27
29
  ClientAbstractService,
28
30
  ClientHttpMethod,
29
31
  Company,
@@ -170,7 +172,7 @@ import {
170
172
  useComposedRefs,
171
173
  useIsMobile,
172
174
  userObjectSchema
173
- } from "../chunk-BKM5U3DE.mjs";
175
+ } from "../chunk-6UMB5LTQ.mjs";
174
176
  import "../chunk-AUXK7QSA.mjs";
175
177
  import "../chunk-C7C7VY4F.mjs";
176
178
  import {
@@ -211,6 +213,8 @@ export {
211
213
  BillingService,
212
214
  BlockNoteDiffUtil,
213
215
  BlockNoteWordDiffRendererUtil,
216
+ Chunk,
217
+ ChunkModule,
214
218
  ClientAbstractService,
215
219
  ClientHttpMethod,
216
220
  Company,
package/dist/index.d.mts CHANGED
@@ -3,10 +3,10 @@ import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from './ApiD
3
3
  export { A as ApiRequestDataTypeInterface, F as FieldSelector, G as GetterKeys, c as createJsonApiInclusion } from './ApiRequestDataTypeInterface-CYEcRUrh.mjs';
4
4
  export { A as ApiResponseInterface } from './ApiResponseInterface-rsXRL_Hn.mjs';
5
5
  import { AbstractApiData } from './core/index.mjs';
6
- export { AppModuleDefinitions, Assistant, AssistantMessage, AssistantMessageModule, AssistantMessageService, AssistantModule, AssistantService, AuditLog, AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthModule, AuthorModule, BackupCodeVerify, BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, ClientTotalRef, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, HowTo, HowToFields, HowToModule, HowToService, InviteValidation, JsonApiDataFactory, Module, ModuleDefinitions, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, Modules, Notification, NotificationFields, NotificationModule, OAuthClient, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, PasskeyAuthenticationOptionsInput, PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyModule, PasskeyRegistrationOptions, PasskeyRegistrationOptionsInput, PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PermissionMappingModule, Push, PushInput, PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, Role, RoleModule, S3, S3Module, SearchResultInterface, StripeCustomer, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceModule, StripePriceService, StripeProduct, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageModule, StripeUsageService, TableOptions, ToastOptions, TotpAuthenticator, TotpAuthenticatorModule, TotpSetup, TotpSetupInput, TotpSetupInterface, TotpSetupModule, TotpVerify, TotpVerifyInput, TotpVerifyLogin, TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, TwoFactorChallengeInput, TwoFactorChallengeModule, TwoFactorEnable, TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, TwoFactorStatusInterface, TwoFactorStatusModule, User, UserModule, UserObject, Waitlist, WaitlistInput, WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, WaitlistStatsInterface, WaitlistStatsModule, WaitlistStatus, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema } from './core/index.mjs';
6
+ export { AppModuleDefinitions, Assistant, AssistantMessage, AssistantMessageModule, AssistantMessageService, AssistantModule, AssistantService, AuditLog, AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthModule, AuthorModule, BackupCodeVerify, BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, ChunkInput, ChunkModule, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, ClientTotalRef, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, HowTo, HowToFields, HowToModule, HowToService, InviteValidation, JsonApiDataFactory, Module, ModuleDefinitions, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, Modules, Notification, NotificationFields, NotificationModule, OAuthClient, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, PasskeyAuthenticationOptionsInput, PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyModule, PasskeyRegistrationOptions, PasskeyRegistrationOptionsInput, PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PermissionMappingModule, Push, PushInput, PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, Role, RoleModule, S3, S3Module, SearchResultInterface, StripeCustomer, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceModule, StripePriceService, StripeProduct, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageModule, StripeUsageService, TableOptions, ToastOptions, TotpAuthenticator, TotpAuthenticatorModule, TotpSetup, TotpSetupInput, TotpSetupInterface, TotpSetupModule, TotpVerify, TotpVerifyInput, TotpVerifyLogin, TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, TwoFactorChallengeInput, TwoFactorChallengeModule, TwoFactorEnable, TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, TwoFactorStatusInterface, TwoFactorStatusModule, User, UserModule, UserObject, Waitlist, WaitlistInput, WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, WaitlistStatsInterface, WaitlistStatsModule, WaitlistStatus, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema } from './core/index.mjs';
7
7
  import { b as AbstractService } from './s3.service-CVgLWaDc.mjs';
8
8
  export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, c as NextRef, N as NotificationService, d as PreviousRef, P as PushService, R as RoleService, j as S3Input, k as S3Interface, S as S3Service, e as SelfRef, T as TotalRef, i as TwoFactorChallengeInterface, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from './s3.service-CVgLWaDc.mjs';
9
- export { b as AssistantMessageInput, c as AssistantMessageInterface, A as AssistantMessageRole, B as BreadcrumbItemData, H as HowToInput, a as HowToInterface } from './AssistantMessageInterface-Mla6kgPe.mjs';
9
+ export { b as AssistantMessageInput, c as AssistantMessageInterface, A as AssistantMessageRole, B as BreadcrumbItemData, d as ChunkInterface, C as ChunkRelationshipMeta, H as HowToInput, a as HowToInterface } from './AssistantMessageInterface-DJ3Me16Y.mjs';
10
10
  export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-Ck5lkQ5d.mjs';
11
11
  export { ClassValue } from 'clsx';
12
12
  export { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from './AuthComponent-BKI0ZbtD.mjs';
package/dist/index.d.ts CHANGED
@@ -3,10 +3,10 @@ import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from './ApiD
3
3
  export { A as ApiRequestDataTypeInterface, F as FieldSelector, G as GetterKeys, c as createJsonApiInclusion } from './ApiRequestDataTypeInterface-CYEcRUrh.js';
4
4
  export { A as ApiResponseInterface } from './ApiResponseInterface-CWLvSCvS.js';
5
5
  import { AbstractApiData } from './core/index.js';
6
- export { AppModuleDefinitions, Assistant, AssistantMessage, AssistantMessageModule, AssistantMessageService, AssistantModule, AssistantService, AuditLog, AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthModule, AuthorModule, BackupCodeVerify, BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, ClientTotalRef, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, HowTo, HowToFields, HowToModule, HowToService, InviteValidation, JsonApiDataFactory, Module, ModuleDefinitions, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, Modules, Notification, NotificationFields, NotificationModule, OAuthClient, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, PasskeyAuthenticationOptionsInput, PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyModule, PasskeyRegistrationOptions, PasskeyRegistrationOptionsInput, PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PermissionMappingModule, Push, PushInput, PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, Role, RoleModule, S3, S3Module, SearchResultInterface, StripeCustomer, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceModule, StripePriceService, StripeProduct, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageModule, StripeUsageService, TableOptions, ToastOptions, TotpAuthenticator, TotpAuthenticatorModule, TotpSetup, TotpSetupInput, TotpSetupInterface, TotpSetupModule, TotpVerify, TotpVerifyInput, TotpVerifyLogin, TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, TwoFactorChallengeInput, TwoFactorChallengeModule, TwoFactorEnable, TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, TwoFactorStatusInterface, TwoFactorStatusModule, User, UserModule, UserObject, Waitlist, WaitlistInput, WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, WaitlistStatsInterface, WaitlistStatsModule, WaitlistStatus, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema } from './core/index.js';
6
+ export { AppModuleDefinitions, Assistant, AssistantMessage, AssistantMessageModule, AssistantMessageService, AssistantModule, AssistantService, AuditLog, AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthModule, AuthorModule, BackupCodeVerify, BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, ChunkInput, ChunkModule, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, ClientTotalRef, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, HowTo, HowToFields, HowToModule, HowToService, InviteValidation, JsonApiDataFactory, Module, ModuleDefinitions, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, Modules, Notification, NotificationFields, NotificationModule, OAuthClient, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, PasskeyAuthenticationOptionsInput, PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyModule, PasskeyRegistrationOptions, PasskeyRegistrationOptionsInput, PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PermissionMappingModule, Push, PushInput, PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, Role, RoleModule, S3, S3Module, SearchResultInterface, StripeCustomer, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceModule, StripePriceService, StripeProduct, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageModule, StripeUsageService, TableOptions, ToastOptions, TotpAuthenticator, TotpAuthenticatorModule, TotpSetup, TotpSetupInput, TotpSetupInterface, TotpSetupModule, TotpVerify, TotpVerifyInput, TotpVerifyLogin, TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, TwoFactorChallengeInput, TwoFactorChallengeModule, TwoFactorEnable, TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, TwoFactorStatusInterface, TwoFactorStatusModule, User, UserModule, UserObject, Waitlist, WaitlistInput, WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, WaitlistStatsInterface, WaitlistStatsModule, WaitlistStatus, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema } from './core/index.js';
7
7
  import { b as AbstractService } from './s3.service-SLlX0Zbz.js';
8
8
  export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, c as NextRef, N as NotificationService, d as PreviousRef, P as PushService, R as RoleService, j as S3Input, k as S3Interface, S as S3Service, e as SelfRef, T as TotalRef, i as TwoFactorChallengeInterface, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from './s3.service-SLlX0Zbz.js';
9
- export { b as AssistantMessageInput, c as AssistantMessageInterface, A as AssistantMessageRole, B as BreadcrumbItemData, H as HowToInput, a as HowToInterface } from './AssistantMessageInterface-DWnbd6J7.js';
9
+ export { b as AssistantMessageInput, c as AssistantMessageInterface, A as AssistantMessageRole, B as BreadcrumbItemData, d as ChunkInterface, C as ChunkRelationshipMeta, H as HowToInput, a as HowToInterface } from './AssistantMessageInterface-BpEhx2pC.js';
10
10
  export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-Ck5lkQ5d.js';
11
11
  export { ClassValue } from 'clsx';
12
12
  export { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from './AuthComponent-B6DIk8Vf.js';
package/dist/index.js CHANGED
@@ -17,7 +17,7 @@
17
17
 
18
18
 
19
19
 
20
- var _chunkTWDSDTHUjs = require('./chunk-TWDSDTHU.js');
20
+ var _chunkZEJSPTHSjs = require('./chunk-ZEJSPTHS.js');
21
21
 
22
22
 
23
23
 
@@ -195,7 +195,9 @@ var _chunkTWDSDTHUjs = require('./chunk-TWDSDTHU.js');
195
195
 
196
196
 
197
197
 
198
- var _chunk5IEWLLLDjs = require('./chunk-5IEWLLLD.js');
198
+
199
+
200
+ var _chunkN4YZ45SKjs = require('./chunk-N4YZ45SK.js');
199
201
  require('./chunk-LXKSUWAV.js');
200
202
  require('./chunk-IBS6NI7D.js');
201
203
 
@@ -415,5 +417,7 @@ require('./chunk-7QVYU63E.js');
415
417
 
416
418
 
417
419
 
418
- exports.ACTION_TYPES = _chunkTWDSDTHUjs.ACTION_TYPES; exports.AVAILABLE_OAUTH_SCOPES = _chunk5IEWLLLDjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunk5IEWLLLDjs.AbstractApiData; exports.AbstractService = _chunk5IEWLLLDjs.AbstractService; exports.Action = _chunk5IEWLLLDjs.Action; exports.Assistant = _chunk5IEWLLLDjs.Assistant; exports.AssistantMessage = _chunk5IEWLLLDjs.AssistantMessage; exports.AssistantMessageModule = _chunk5IEWLLLDjs.AssistantMessageModule; exports.AssistantMessageService = _chunk5IEWLLLDjs.AssistantMessageService; exports.AssistantModule = _chunk5IEWLLLDjs.AssistantModule; exports.AssistantService = _chunk5IEWLLLDjs.AssistantService; exports.AuditLog = _chunk5IEWLLLDjs.AuditLog; exports.AuditLogModule = _chunk5IEWLLLDjs.AuditLogModule; exports.AuditLogService = _chunk5IEWLLLDjs.AuditLogService; exports.Auth = _chunk5IEWLLLDjs.Auth; exports.AuthComponent = _chunk5IEWLLLDjs.AuthComponent; exports.AuthModule = _chunk5IEWLLLDjs.AuthModule; exports.AuthService = _chunk5IEWLLLDjs.AuthService; exports.AuthorModule = _chunk5IEWLLLDjs.AuthorModule; exports.BackupCodeVerify = _chunk5IEWLLLDjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunk5IEWLLLDjs.BackupCodeVerifyModule; exports.Billing = _chunk5IEWLLLDjs.Billing; exports.BillingModule = _chunk5IEWLLLDjs.BillingModule; exports.BillingService = _chunk5IEWLLLDjs.BillingService; exports.BlockNoteDiffUtil = _chunk5IEWLLLDjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunk5IEWLLLDjs.BlockNoteWordDiffRendererUtil; exports.COMPANY_ADMINISTRATOR_ROLE_ID = _chunkTWDSDTHUjs.COMPANY_ADMINISTRATOR_ROLE_ID; exports.ClientAbstractService = _chunk5IEWLLLDjs.ClientAbstractService; exports.ClientHttpMethod = _chunk5IEWLLLDjs.ClientHttpMethod; exports.Company = _chunk5IEWLLLDjs.Company; exports.CompanyFields = _chunk5IEWLLLDjs.CompanyFields; exports.CompanyModule = _chunk5IEWLLLDjs.CompanyModule; exports.CompanyService = _chunk5IEWLLLDjs.CompanyService; exports.Content = _chunk5IEWLLLDjs.Content; exports.ContentFields = _chunk5IEWLLLDjs.ContentFields; exports.ContentModule = _chunk5IEWLLLDjs.ContentModule; exports.ContentService = _chunk5IEWLLLDjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunk5IEWLLLDjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunk5IEWLLLDjs.EndpointCreator; exports.Feature = _chunk5IEWLLLDjs.Feature; exports.FeatureModule = _chunk5IEWLLLDjs.FeatureModule; exports.FeatureService = _chunk5IEWLLLDjs.FeatureService; exports.HowTo = _chunk5IEWLLLDjs.HowTo; exports.HowToFields = _chunk5IEWLLLDjs.HowToFields; exports.HowToModule = _chunk5IEWLLLDjs.HowToModule; exports.HowToService = _chunk5IEWLLLDjs.HowToService; exports.HttpMethod = _chunk5IEWLLLDjs.HttpMethod; exports.InvoiceStatus = _chunk5IEWLLLDjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunk5IEWLLLDjs.Module; exports.ModuleModule = _chunk5IEWLLLDjs.ModuleModule; exports.ModulePaths = _chunk5IEWLLLDjs.ModulePaths; exports.ModulePathsModule = _chunk5IEWLLLDjs.ModulePathsModule; exports.ModuleRegistrar = _chunk5IEWLLLDjs.ModuleRegistrar; exports.ModuleRegistry = _chunk5IEWLLLDjs.ModuleRegistry; exports.Modules = _chunk5IEWLLLDjs.Modules; exports.Notification = _chunk5IEWLLLDjs.Notification; exports.NotificationFields = _chunk5IEWLLLDjs.NotificationFields; exports.NotificationModule = _chunk5IEWLLLDjs.NotificationModule; exports.NotificationService = _chunk5IEWLLLDjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunk5IEWLLLDjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunk5IEWLLLDjs.OAuthClient; exports.OAuthModule = _chunk5IEWLLLDjs.OAuthModule; exports.OAuthService = _chunk5IEWLLLDjs.OAuthService; exports.Passkey = _chunk5IEWLLLDjs.Passkey; exports.PasskeyAuthenticationOptions = _chunk5IEWLLLDjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunk5IEWLLLDjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunk5IEWLLLDjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunk5IEWLLLDjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunk5IEWLLLDjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunk5IEWLLLDjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunk5IEWLLLDjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunk5IEWLLLDjs.PasskeyRename; exports.PasskeyRenameModule = _chunk5IEWLLLDjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunk5IEWLLLDjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunk5IEWLLLDjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunk5IEWLLLDjs.PaymentMethod; exports.PermissionMapping = _chunk5IEWLLLDjs.PermissionMapping; exports.PermissionMappingModule = _chunk5IEWLLLDjs.PermissionMappingModule; exports.Push = _chunk5IEWLLLDjs.Push; exports.PushModule = _chunk5IEWLLLDjs.PushModule; exports.PushService = _chunk5IEWLLLDjs.PushService; exports.RbacMatrixModel = _chunk5IEWLLLDjs.RbacMatrixModel; exports.RbacMatrixModule = _chunk5IEWLLLDjs.RbacMatrixModule; exports.RbacService = _chunkTWDSDTHUjs.RbacService; exports.ReferralModule = _chunk5IEWLLLDjs.ReferralModule; exports.ReferralService = _chunk5IEWLLLDjs.ReferralService; exports.ReferralStats = _chunk5IEWLLLDjs.ReferralStats; exports.ReferralStatsModule = _chunk5IEWLLLDjs.ReferralStatsModule; exports.RehydrationFactory = _chunk5IEWLLLDjs.RehydrationFactory; exports.Role = _chunk5IEWLLLDjs.Role; exports.RoleFields = _chunk5IEWLLLDjs.RoleFields; exports.RoleModule = _chunk5IEWLLLDjs.RoleModule; exports.RoleService = _chunk5IEWLLLDjs.RoleService; exports.S3 = _chunk5IEWLLLDjs.S3; exports.S3Module = _chunk5IEWLLLDjs.S3Module; exports.S3Service = _chunk5IEWLLLDjs.S3Service; exports.StripeCustomer = _chunk5IEWLLLDjs.StripeCustomer; exports.StripeCustomerModule = _chunk5IEWLLLDjs.StripeCustomerModule; exports.StripeCustomerService = _chunk5IEWLLLDjs.StripeCustomerService; exports.StripeInvoice = _chunk5IEWLLLDjs.StripeInvoice; exports.StripeInvoiceModule = _chunk5IEWLLLDjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunk5IEWLLLDjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunk5IEWLLLDjs.StripePaymentMethodModule; exports.StripePrice = _chunk5IEWLLLDjs.StripePrice; exports.StripePriceModule = _chunk5IEWLLLDjs.StripePriceModule; exports.StripePriceService = _chunk5IEWLLLDjs.StripePriceService; exports.StripeProduct = _chunk5IEWLLLDjs.StripeProduct; exports.StripeProductModule = _chunk5IEWLLLDjs.StripeProductModule; exports.StripeProductService = _chunk5IEWLLLDjs.StripeProductService; exports.StripePromotionCode = _chunk5IEWLLLDjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunk5IEWLLLDjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunk5IEWLLLDjs.StripePromotionCodeService; exports.StripeSubscription = _chunk5IEWLLLDjs.StripeSubscription; exports.StripeSubscriptionModule = _chunk5IEWLLLDjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunk5IEWLLLDjs.StripeSubscriptionService; exports.StripeUsage = _chunk5IEWLLLDjs.StripeUsage; exports.StripeUsageModule = _chunk5IEWLLLDjs.StripeUsageModule; exports.StripeUsageService = _chunk5IEWLLLDjs.StripeUsageService; exports.SubscriptionStatus = _chunk5IEWLLLDjs.SubscriptionStatus; exports.TableOptions = _chunk5IEWLLLDjs.TableOptions; exports.TotpAuthenticator = _chunk5IEWLLLDjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunk5IEWLLLDjs.TotpAuthenticatorModule; exports.TotpSetup = _chunk5IEWLLLDjs.TotpSetup; exports.TotpSetupModule = _chunk5IEWLLLDjs.TotpSetupModule; exports.TotpVerify = _chunk5IEWLLLDjs.TotpVerify; exports.TotpVerifyLogin = _chunk5IEWLLLDjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunk5IEWLLLDjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunk5IEWLLLDjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunk5IEWLLLDjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunk5IEWLLLDjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunk5IEWLLLDjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunk5IEWLLLDjs.TwoFactorEnableModule; exports.TwoFactorService = _chunk5IEWLLLDjs.TwoFactorService; exports.TwoFactorStatus = _chunk5IEWLLLDjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunk5IEWLLLDjs.TwoFactorStatusModule; exports.User = _chunk5IEWLLLDjs.User; exports.UserFields = _chunk5IEWLLLDjs.UserFields; exports.UserModule = _chunk5IEWLLLDjs.UserModule; exports.UserService = _chunk5IEWLLLDjs.UserService; exports.Waitlist = _chunk5IEWLLLDjs.Waitlist; exports.WaitlistModule = _chunk5IEWLLLDjs.WaitlistModule; exports.WaitlistService = _chunk5IEWLLLDjs.WaitlistService; exports.WaitlistStats = _chunk5IEWLLLDjs.WaitlistStats; exports.WaitlistStatsModule = _chunk5IEWLLLDjs.WaitlistStatsModule; exports.checkPermissions = _chunk5IEWLLLDjs.checkPermissions; exports.checkPermissionsFromServer = _chunk5IEWLLLDjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunk5IEWLLLDjs.clearLastApiTotal; exports.cn = _chunk5IEWLLLDjs.cn; exports.composeRefs = _chunk5IEWLLLDjs.composeRefs; exports.configureAuth = _chunk5IEWLLLDjs.configureAuth; exports.configureI18n = _chunkTWDSDTHUjs.configureI18n; exports.configureJsonApi = _chunkTWDSDTHUjs.configureJsonApi; exports.configureLogin = _chunkTWDSDTHUjs.configureLogin; exports.configureReferral = _chunkTWDSDTHUjs.configureReferral; exports.configureRoles = _chunkTWDSDTHUjs.configureRoles; exports.configureWaitlist = _chunkTWDSDTHUjs.configureWaitlist; exports.createJsonApiInclusion = _chunk5IEWLLLDjs.createJsonApiInclusion; exports.dismissToast = _chunk5IEWLLLDjs.dismissToast; exports.entityObjectSchema = _chunk5IEWLLLDjs.entityObjectSchema; exports.exists = _chunk5IEWLLLDjs.exists; exports.formatDate = _chunk5IEWLLLDjs.formatDate; exports.getApiUrl = _chunkTWDSDTHUjs.getApiUrl; exports.getAppUrl = _chunkTWDSDTHUjs.getAppUrl; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunk5IEWLLLDjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunk5IEWLLLDjs.getGlobalErrorHandler; exports.getIcon = _chunk5IEWLLLDjs.getIcon; exports.getIconByModule = _chunk5IEWLLLDjs.getIconByModule; exports.getIconByModuleName = _chunk5IEWLLLDjs.getIconByModuleName; exports.getInitials = _chunk5IEWLLLDjs.getInitials; exports.getLastApiTotal = _chunk5IEWLLLDjs.getLastApiTotal; exports.getLucideIcon = _chunk5IEWLLLDjs.getLucideIcon; exports.getLucideIconByModule = _chunk5IEWLLLDjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunk5IEWLLLDjs.getLucideIconByModuleName; exports.getReferralConfig = _chunkTWDSDTHUjs.getReferralConfig; exports.getRoleId = _chunkTWDSDTHUjs.getRoleId; exports.getStripePublishableKey = _chunkTWDSDTHUjs.getStripePublishableKey; exports.getTableComponents = _chunk5IEWLLLDjs.getTableComponents; exports.getTableOptions = _chunk5IEWLLLDjs.getTableOptions; exports.getTokenHandler = _chunk5IEWLLLDjs.getTokenHandler; exports.getTrackablePages = _chunkTWDSDTHUjs.getTrackablePages; exports.getValueFromPath = _chunk5IEWLLLDjs.getValueFromPath; exports.getWaitlistConfig = _chunkTWDSDTHUjs.getWaitlistConfig; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.isReferralEnabled = _chunkTWDSDTHUjs.isReferralEnabled; exports.isRolesConfigured = _chunkTWDSDTHUjs.isRolesConfigured; exports.rehydrate = _chunk5IEWLLLDjs.rehydrate; exports.rehydrateList = _chunk5IEWLLLDjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunk5IEWLLLDjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunk5IEWLLLDjs.setGlobalErrorHandler; exports.showCustomToast = _chunk5IEWLLLDjs.showCustomToast; exports.showError = _chunk5IEWLLLDjs.showError; exports.showToast = _chunk5IEWLLLDjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunk5IEWLLLDjs.useComposedRefs; exports.useIsMobile = _chunk5IEWLLLDjs.useIsMobile; exports.userObjectSchema = _chunk5IEWLLLDjs.userObjectSchema;
420
+
421
+
422
+ exports.ACTION_TYPES = _chunkZEJSPTHSjs.ACTION_TYPES; exports.AVAILABLE_OAUTH_SCOPES = _chunkN4YZ45SKjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkN4YZ45SKjs.AbstractApiData; exports.AbstractService = _chunkN4YZ45SKjs.AbstractService; exports.Action = _chunkN4YZ45SKjs.Action; exports.Assistant = _chunkN4YZ45SKjs.Assistant; exports.AssistantMessage = _chunkN4YZ45SKjs.AssistantMessage; exports.AssistantMessageModule = _chunkN4YZ45SKjs.AssistantMessageModule; exports.AssistantMessageService = _chunkN4YZ45SKjs.AssistantMessageService; exports.AssistantModule = _chunkN4YZ45SKjs.AssistantModule; exports.AssistantService = _chunkN4YZ45SKjs.AssistantService; exports.AuditLog = _chunkN4YZ45SKjs.AuditLog; exports.AuditLogModule = _chunkN4YZ45SKjs.AuditLogModule; exports.AuditLogService = _chunkN4YZ45SKjs.AuditLogService; exports.Auth = _chunkN4YZ45SKjs.Auth; exports.AuthComponent = _chunkN4YZ45SKjs.AuthComponent; exports.AuthModule = _chunkN4YZ45SKjs.AuthModule; exports.AuthService = _chunkN4YZ45SKjs.AuthService; exports.AuthorModule = _chunkN4YZ45SKjs.AuthorModule; exports.BackupCodeVerify = _chunkN4YZ45SKjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkN4YZ45SKjs.BackupCodeVerifyModule; exports.Billing = _chunkN4YZ45SKjs.Billing; exports.BillingModule = _chunkN4YZ45SKjs.BillingModule; exports.BillingService = _chunkN4YZ45SKjs.BillingService; exports.BlockNoteDiffUtil = _chunkN4YZ45SKjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkN4YZ45SKjs.BlockNoteWordDiffRendererUtil; exports.COMPANY_ADMINISTRATOR_ROLE_ID = _chunkZEJSPTHSjs.COMPANY_ADMINISTRATOR_ROLE_ID; exports.Chunk = _chunkN4YZ45SKjs.Chunk; exports.ChunkModule = _chunkN4YZ45SKjs.ChunkModule; exports.ClientAbstractService = _chunkN4YZ45SKjs.ClientAbstractService; exports.ClientHttpMethod = _chunkN4YZ45SKjs.ClientHttpMethod; exports.Company = _chunkN4YZ45SKjs.Company; exports.CompanyFields = _chunkN4YZ45SKjs.CompanyFields; exports.CompanyModule = _chunkN4YZ45SKjs.CompanyModule; exports.CompanyService = _chunkN4YZ45SKjs.CompanyService; exports.Content = _chunkN4YZ45SKjs.Content; exports.ContentFields = _chunkN4YZ45SKjs.ContentFields; exports.ContentModule = _chunkN4YZ45SKjs.ContentModule; exports.ContentService = _chunkN4YZ45SKjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkN4YZ45SKjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunkN4YZ45SKjs.EndpointCreator; exports.Feature = _chunkN4YZ45SKjs.Feature; exports.FeatureModule = _chunkN4YZ45SKjs.FeatureModule; exports.FeatureService = _chunkN4YZ45SKjs.FeatureService; exports.HowTo = _chunkN4YZ45SKjs.HowTo; exports.HowToFields = _chunkN4YZ45SKjs.HowToFields; exports.HowToModule = _chunkN4YZ45SKjs.HowToModule; exports.HowToService = _chunkN4YZ45SKjs.HowToService; exports.HttpMethod = _chunkN4YZ45SKjs.HttpMethod; exports.InvoiceStatus = _chunkN4YZ45SKjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunkN4YZ45SKjs.Module; exports.ModuleModule = _chunkN4YZ45SKjs.ModuleModule; exports.ModulePaths = _chunkN4YZ45SKjs.ModulePaths; exports.ModulePathsModule = _chunkN4YZ45SKjs.ModulePathsModule; exports.ModuleRegistrar = _chunkN4YZ45SKjs.ModuleRegistrar; exports.ModuleRegistry = _chunkN4YZ45SKjs.ModuleRegistry; exports.Modules = _chunkN4YZ45SKjs.Modules; exports.Notification = _chunkN4YZ45SKjs.Notification; exports.NotificationFields = _chunkN4YZ45SKjs.NotificationFields; exports.NotificationModule = _chunkN4YZ45SKjs.NotificationModule; exports.NotificationService = _chunkN4YZ45SKjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkN4YZ45SKjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkN4YZ45SKjs.OAuthClient; exports.OAuthModule = _chunkN4YZ45SKjs.OAuthModule; exports.OAuthService = _chunkN4YZ45SKjs.OAuthService; exports.Passkey = _chunkN4YZ45SKjs.Passkey; exports.PasskeyAuthenticationOptions = _chunkN4YZ45SKjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkN4YZ45SKjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkN4YZ45SKjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkN4YZ45SKjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkN4YZ45SKjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkN4YZ45SKjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkN4YZ45SKjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkN4YZ45SKjs.PasskeyRename; exports.PasskeyRenameModule = _chunkN4YZ45SKjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkN4YZ45SKjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkN4YZ45SKjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkN4YZ45SKjs.PaymentMethod; exports.PermissionMapping = _chunkN4YZ45SKjs.PermissionMapping; exports.PermissionMappingModule = _chunkN4YZ45SKjs.PermissionMappingModule; exports.Push = _chunkN4YZ45SKjs.Push; exports.PushModule = _chunkN4YZ45SKjs.PushModule; exports.PushService = _chunkN4YZ45SKjs.PushService; exports.RbacMatrixModel = _chunkN4YZ45SKjs.RbacMatrixModel; exports.RbacMatrixModule = _chunkN4YZ45SKjs.RbacMatrixModule; exports.RbacService = _chunkZEJSPTHSjs.RbacService; exports.ReferralModule = _chunkN4YZ45SKjs.ReferralModule; exports.ReferralService = _chunkN4YZ45SKjs.ReferralService; exports.ReferralStats = _chunkN4YZ45SKjs.ReferralStats; exports.ReferralStatsModule = _chunkN4YZ45SKjs.ReferralStatsModule; exports.RehydrationFactory = _chunkN4YZ45SKjs.RehydrationFactory; exports.Role = _chunkN4YZ45SKjs.Role; exports.RoleFields = _chunkN4YZ45SKjs.RoleFields; exports.RoleModule = _chunkN4YZ45SKjs.RoleModule; exports.RoleService = _chunkN4YZ45SKjs.RoleService; exports.S3 = _chunkN4YZ45SKjs.S3; exports.S3Module = _chunkN4YZ45SKjs.S3Module; exports.S3Service = _chunkN4YZ45SKjs.S3Service; exports.StripeCustomer = _chunkN4YZ45SKjs.StripeCustomer; exports.StripeCustomerModule = _chunkN4YZ45SKjs.StripeCustomerModule; exports.StripeCustomerService = _chunkN4YZ45SKjs.StripeCustomerService; exports.StripeInvoice = _chunkN4YZ45SKjs.StripeInvoice; exports.StripeInvoiceModule = _chunkN4YZ45SKjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunkN4YZ45SKjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkN4YZ45SKjs.StripePaymentMethodModule; exports.StripePrice = _chunkN4YZ45SKjs.StripePrice; exports.StripePriceModule = _chunkN4YZ45SKjs.StripePriceModule; exports.StripePriceService = _chunkN4YZ45SKjs.StripePriceService; exports.StripeProduct = _chunkN4YZ45SKjs.StripeProduct; exports.StripeProductModule = _chunkN4YZ45SKjs.StripeProductModule; exports.StripeProductService = _chunkN4YZ45SKjs.StripeProductService; exports.StripePromotionCode = _chunkN4YZ45SKjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunkN4YZ45SKjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkN4YZ45SKjs.StripePromotionCodeService; exports.StripeSubscription = _chunkN4YZ45SKjs.StripeSubscription; exports.StripeSubscriptionModule = _chunkN4YZ45SKjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkN4YZ45SKjs.StripeSubscriptionService; exports.StripeUsage = _chunkN4YZ45SKjs.StripeUsage; exports.StripeUsageModule = _chunkN4YZ45SKjs.StripeUsageModule; exports.StripeUsageService = _chunkN4YZ45SKjs.StripeUsageService; exports.SubscriptionStatus = _chunkN4YZ45SKjs.SubscriptionStatus; exports.TableOptions = _chunkN4YZ45SKjs.TableOptions; exports.TotpAuthenticator = _chunkN4YZ45SKjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkN4YZ45SKjs.TotpAuthenticatorModule; exports.TotpSetup = _chunkN4YZ45SKjs.TotpSetup; exports.TotpSetupModule = _chunkN4YZ45SKjs.TotpSetupModule; exports.TotpVerify = _chunkN4YZ45SKjs.TotpVerify; exports.TotpVerifyLogin = _chunkN4YZ45SKjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkN4YZ45SKjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkN4YZ45SKjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunkN4YZ45SKjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkN4YZ45SKjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkN4YZ45SKjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkN4YZ45SKjs.TwoFactorEnableModule; exports.TwoFactorService = _chunkN4YZ45SKjs.TwoFactorService; exports.TwoFactorStatus = _chunkN4YZ45SKjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkN4YZ45SKjs.TwoFactorStatusModule; exports.User = _chunkN4YZ45SKjs.User; exports.UserFields = _chunkN4YZ45SKjs.UserFields; exports.UserModule = _chunkN4YZ45SKjs.UserModule; exports.UserService = _chunkN4YZ45SKjs.UserService; exports.Waitlist = _chunkN4YZ45SKjs.Waitlist; exports.WaitlistModule = _chunkN4YZ45SKjs.WaitlistModule; exports.WaitlistService = _chunkN4YZ45SKjs.WaitlistService; exports.WaitlistStats = _chunkN4YZ45SKjs.WaitlistStats; exports.WaitlistStatsModule = _chunkN4YZ45SKjs.WaitlistStatsModule; exports.checkPermissions = _chunkN4YZ45SKjs.checkPermissions; exports.checkPermissionsFromServer = _chunkN4YZ45SKjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunkN4YZ45SKjs.clearLastApiTotal; exports.cn = _chunkN4YZ45SKjs.cn; exports.composeRefs = _chunkN4YZ45SKjs.composeRefs; exports.configureAuth = _chunkN4YZ45SKjs.configureAuth; exports.configureI18n = _chunkZEJSPTHSjs.configureI18n; exports.configureJsonApi = _chunkZEJSPTHSjs.configureJsonApi; exports.configureLogin = _chunkZEJSPTHSjs.configureLogin; exports.configureReferral = _chunkZEJSPTHSjs.configureReferral; exports.configureRoles = _chunkZEJSPTHSjs.configureRoles; exports.configureWaitlist = _chunkZEJSPTHSjs.configureWaitlist; exports.createJsonApiInclusion = _chunkN4YZ45SKjs.createJsonApiInclusion; exports.dismissToast = _chunkN4YZ45SKjs.dismissToast; exports.entityObjectSchema = _chunkN4YZ45SKjs.entityObjectSchema; exports.exists = _chunkN4YZ45SKjs.exists; exports.formatDate = _chunkN4YZ45SKjs.formatDate; exports.getApiUrl = _chunkZEJSPTHSjs.getApiUrl; exports.getAppUrl = _chunkZEJSPTHSjs.getAppUrl; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkN4YZ45SKjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkN4YZ45SKjs.getGlobalErrorHandler; exports.getIcon = _chunkN4YZ45SKjs.getIcon; exports.getIconByModule = _chunkN4YZ45SKjs.getIconByModule; exports.getIconByModuleName = _chunkN4YZ45SKjs.getIconByModuleName; exports.getInitials = _chunkN4YZ45SKjs.getInitials; exports.getLastApiTotal = _chunkN4YZ45SKjs.getLastApiTotal; exports.getLucideIcon = _chunkN4YZ45SKjs.getLucideIcon; exports.getLucideIconByModule = _chunkN4YZ45SKjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkN4YZ45SKjs.getLucideIconByModuleName; exports.getReferralConfig = _chunkZEJSPTHSjs.getReferralConfig; exports.getRoleId = _chunkZEJSPTHSjs.getRoleId; exports.getStripePublishableKey = _chunkZEJSPTHSjs.getStripePublishableKey; exports.getTableComponents = _chunkN4YZ45SKjs.getTableComponents; exports.getTableOptions = _chunkN4YZ45SKjs.getTableOptions; exports.getTokenHandler = _chunkN4YZ45SKjs.getTokenHandler; exports.getTrackablePages = _chunkZEJSPTHSjs.getTrackablePages; exports.getValueFromPath = _chunkN4YZ45SKjs.getValueFromPath; exports.getWaitlistConfig = _chunkZEJSPTHSjs.getWaitlistConfig; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.isReferralEnabled = _chunkZEJSPTHSjs.isReferralEnabled; exports.isRolesConfigured = _chunkZEJSPTHSjs.isRolesConfigured; exports.rehydrate = _chunkN4YZ45SKjs.rehydrate; exports.rehydrateList = _chunkN4YZ45SKjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkN4YZ45SKjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkN4YZ45SKjs.setGlobalErrorHandler; exports.showCustomToast = _chunkN4YZ45SKjs.showCustomToast; exports.showError = _chunkN4YZ45SKjs.showError; exports.showToast = _chunkN4YZ45SKjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunkN4YZ45SKjs.useComposedRefs; exports.useIsMobile = _chunkN4YZ45SKjs.useIsMobile; exports.userObjectSchema = _chunkN4YZ45SKjs.userObjectSchema;
419
423
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,mjYAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"}
1
+ {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,+oYAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"}