@btst/stack 2.6.0 → 2.6.2

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 (165) hide show
  1. package/dist/components/auto-form/index.cjs +8 -0
  2. package/dist/components/auto-form/index.d.cts +26 -0
  3. package/dist/components/auto-form/index.d.mts +26 -0
  4. package/dist/components/auto-form/index.d.ts +26 -0
  5. package/dist/components/auto-form/index.mjs +1 -0
  6. package/dist/components/empty/index.cjs +12 -0
  7. package/dist/components/empty/index.d.cts +15 -0
  8. package/dist/components/empty/index.d.mts +15 -0
  9. package/dist/components/empty/index.d.ts +15 -0
  10. package/dist/components/empty/index.mjs +1 -0
  11. package/dist/components/form-builder/index.cjs +16 -0
  12. package/dist/components/form-builder/index.d.cts +385 -0
  13. package/dist/components/form-builder/index.d.mts +385 -0
  14. package/dist/components/form-builder/index.d.ts +385 -0
  15. package/dist/components/form-builder/index.mjs +4 -0
  16. package/dist/components/markdown/index.cjs +9 -0
  17. package/dist/components/markdown/index.d.cts +30 -0
  18. package/dist/components/markdown/index.d.mts +30 -0
  19. package/dist/components/markdown/index.d.ts +30 -0
  20. package/dist/components/markdown/index.mjs +2 -0
  21. package/dist/components/markdown/style.css +394 -0
  22. package/dist/components/minimal-tiptap/style.css +548 -0
  23. package/dist/components/multi-select/index.cjs +7 -0
  24. package/dist/components/multi-select/index.d.cts +78 -0
  25. package/dist/components/multi-select/index.d.mts +78 -0
  26. package/dist/components/multi-select/index.d.ts +78 -0
  27. package/dist/components/multi-select/index.mjs +1 -0
  28. package/dist/components/search-select/index.cjs +7 -0
  29. package/dist/components/search-select/index.d.cts +15 -0
  30. package/dist/components/search-select/index.d.mts +15 -0
  31. package/dist/components/search-select/index.d.ts +15 -0
  32. package/dist/components/search-select/index.mjs +1 -0
  33. package/dist/components/stepped-auto-form/index.cjs +7 -0
  34. package/dist/components/stepped-auto-form/index.d.cts +37 -0
  35. package/dist/components/stepped-auto-form/index.d.mts +37 -0
  36. package/dist/components/stepped-auto-form/index.d.ts +37 -0
  37. package/dist/components/stepped-auto-form/index.mjs +1 -0
  38. package/dist/components/ui-builder/style.css +552 -0
  39. package/dist/node_modules/.pnpm/@dnd-kit_core@6.3.1_react-dom@19.2.0_react@19.2.0__react@19.2.0/node_modules/@dnd-kit/core/dist/core.esm.cjs +1 -1
  40. package/dist/node_modules/.pnpm/@dnd-kit_core@6.3.1_react-dom@19.2.0_react@19.2.0__react@19.2.0/node_modules/@dnd-kit/core/dist/core.esm.mjs +1 -1
  41. package/dist/node_modules/.pnpm/@dnd-kit_sortable@10.0.0_@dnd-kit_core@6.3.1_react-dom@19.2.0_react@19.2.0__react@19.2.0__react@19.2.0/node_modules/@dnd-kit/sortable/dist/sortable.esm.mjs +2 -2
  42. package/dist/node_modules/.pnpm/@floating-ui_core@1.7.3/node_modules/@floating-ui/core/dist/floating-ui.core.mjs +1 -1
  43. package/dist/node_modules/.pnpm/@floating-ui_dom@1.7.4/node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs +3 -3
  44. package/dist/node_modules/.pnpm/@floating-ui_react-dom@2.1.6_react-dom@19.2.0_react@19.2.0__react@19.2.0/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs +1 -1
  45. package/dist/packages/stack/src/plugins/ai-chat/client/components/chat-layout.cjs +20 -2
  46. package/dist/packages/stack/src/plugins/ai-chat/client/components/chat-layout.mjs +20 -2
  47. package/dist/packages/stack/src/plugins/blog/client/components/forms/markdown-editor-with-overrides.cjs +23 -0
  48. package/dist/packages/stack/src/plugins/blog/client/components/forms/markdown-editor-with-overrides.mjs +21 -0
  49. package/dist/packages/stack/src/plugins/blog/client/components/forms/markdown-editor.cjs +11 -12
  50. package/dist/packages/stack/src/plugins/blog/client/components/forms/markdown-editor.mjs +11 -12
  51. package/dist/packages/stack/src/plugins/blog/client/components/forms/post-forms.cjs +2 -2
  52. package/dist/packages/stack/src/plugins/blog/client/components/forms/post-forms.mjs +2 -2
  53. package/dist/packages/stack/src/plugins/blog/client/components/shared/search-input.cjs +0 -3
  54. package/dist/packages/stack/src/plugins/blog/client/components/shared/search-input.mjs +1 -1
  55. package/dist/packages/stack/src/plugins/blog/client/components/shared/search-modal.cjs +0 -3
  56. package/dist/packages/stack/src/plugins/blog/client/components/shared/search-modal.mjs +1 -1
  57. package/dist/packages/ui/src/components/auto-form/index.cjs +12 -2
  58. package/dist/packages/ui/src/components/auto-form/index.mjs +9 -2
  59. package/dist/packages/ui/src/components/auto-form/stepped-auto-form.cjs +2 -2
  60. package/dist/packages/ui/src/components/empty.cjs +28 -0
  61. package/dist/packages/ui/src/components/empty.mjs +27 -1
  62. package/dist/packages/ui/src/components/form-builder/components/index.mjs +2 -2
  63. package/dist/packages/ui/src/components/form-builder/edit-field-dialog.cjs +1 -1
  64. package/dist/packages/ui/src/components/form-builder/index.mjs +2 -2
  65. package/dist/packages/ui/src/components/form.mjs +1 -1
  66. package/dist/packages/ui/src/components/kanban.mjs +1 -1
  67. package/dist/packages/ui/src/components/multi-select.mjs +2 -2
  68. package/dist/packages/ui/src/components/ui-builder/internal/config-panel.cjs +1 -1
  69. package/dist/packages/ui/src/components/ui-builder/internal/props-panel.cjs +1 -1
  70. package/dist/plugins/ai-chat/client/components/index.d.cts +1 -1
  71. package/dist/plugins/ai-chat/client/components/index.d.mts +1 -1
  72. package/dist/plugins/ai-chat/client/components/index.d.ts +1 -1
  73. package/dist/plugins/ai-chat/client/index.d.cts +2 -2
  74. package/dist/plugins/ai-chat/client/index.d.mts +2 -2
  75. package/dist/plugins/ai-chat/client/index.d.ts +2 -2
  76. package/dist/plugins/blog/api/index.d.cts +2 -2
  77. package/dist/plugins/blog/api/index.d.mts +2 -2
  78. package/dist/plugins/blog/api/index.d.ts +2 -2
  79. package/dist/plugins/blog/client/hooks/index.d.cts +2 -2
  80. package/dist/plugins/blog/client/hooks/index.d.mts +2 -2
  81. package/dist/plugins/blog/client/hooks/index.d.ts +2 -2
  82. package/dist/plugins/blog/client/index.d.cts +2 -2
  83. package/dist/plugins/blog/client/index.d.mts +2 -2
  84. package/dist/plugins/blog/client/index.d.ts +2 -2
  85. package/dist/plugins/blog/query-keys.d.cts +2 -2
  86. package/dist/plugins/blog/query-keys.d.mts +2 -2
  87. package/dist/plugins/blog/query-keys.d.ts +2 -2
  88. package/dist/plugins/cms/client/index.d.cts +1 -1
  89. package/dist/plugins/cms/client/index.d.mts +1 -1
  90. package/dist/plugins/cms/client/index.d.ts +1 -1
  91. package/dist/plugins/form-builder/client/components/index.d.cts +1 -1
  92. package/dist/plugins/form-builder/client/components/index.d.mts +1 -1
  93. package/dist/plugins/form-builder/client/components/index.d.ts +1 -1
  94. package/dist/plugins/form-builder/client/index.d.cts +1 -1
  95. package/dist/plugins/form-builder/client/index.d.mts +1 -1
  96. package/dist/plugins/form-builder/client/index.d.ts +1 -1
  97. package/dist/plugins/kanban/api/index.d.cts +1 -1
  98. package/dist/plugins/kanban/api/index.d.mts +1 -1
  99. package/dist/plugins/kanban/api/index.d.ts +1 -1
  100. package/dist/plugins/kanban/query-keys.d.cts +1 -1
  101. package/dist/plugins/kanban/query-keys.d.mts +1 -1
  102. package/dist/plugins/kanban/query-keys.d.ts +1 -1
  103. package/dist/plugins/ui-builder/client/components/index.d.cts +2 -2
  104. package/dist/plugins/ui-builder/client/components/index.d.mts +2 -2
  105. package/dist/plugins/ui-builder/client/components/index.d.ts +2 -2
  106. package/dist/plugins/ui-builder/client/hooks/index.d.cts +3 -3
  107. package/dist/plugins/ui-builder/client/hooks/index.d.mts +3 -3
  108. package/dist/plugins/ui-builder/client/hooks/index.d.ts +3 -3
  109. package/dist/plugins/ui-builder/client/index.d.cts +3 -3
  110. package/dist/plugins/ui-builder/client/index.d.mts +3 -3
  111. package/dist/plugins/ui-builder/client/index.d.ts +3 -3
  112. package/dist/plugins/ui-builder/index.d.cts +3 -3
  113. package/dist/plugins/ui-builder/index.d.mts +3 -3
  114. package/dist/plugins/ui-builder/index.d.ts +3 -3
  115. package/dist/shared/{stack.B2DwzF3r.d.ts → stack.ASwEoINr.d.ts} +1 -1
  116. package/dist/shared/{stack.C5ZSOJGJ.d.cts → stack.B1srlBud.d.mts} +1 -1
  117. package/dist/shared/{stack.CQAZwXhV.d.cts → stack.B8vT-Yt4.d.mts} +3 -3
  118. package/dist/shared/{stack.D3BsrpAz.d.ts → stack.BAT540yW.d.ts} +3 -3
  119. package/dist/shared/{stack.D0QupDcQ.d.ts → stack.BK9Z2dcL.d.ts} +1 -1
  120. package/dist/shared/{stack.CNLHlv7r.d.mts → stack.BwA7trxA.d.cts} +3 -3
  121. package/dist/shared/{stack.Cl7ok_cY.d.cts → stack.CFECM0ew.d.cts} +1 -1
  122. package/dist/shared/stack.CZMWR72v.d.cts +10 -0
  123. package/dist/shared/stack.CZMWR72v.d.mts +10 -0
  124. package/dist/shared/stack.CZMWR72v.d.ts +10 -0
  125. package/dist/shared/{stack.VMmQdbsJ.d.mts → stack.DVtk5CNw.d.mts} +1 -1
  126. package/dist/shared/{stack.B8_74ror.d.ts → stack.DXnclTG7.d.ts} +4 -4
  127. package/dist/shared/{stack.CL4mKxe7.d.mts → stack.DaZM10cp.d.cts} +4 -4
  128. package/dist/shared/{stack.Dq4qVr1F.d.mts → stack.DmpPDPxA.d.cts} +1 -1
  129. package/dist/shared/{stack.C21-LFX8.d.cts → stack.cfCkioTe.d.mts} +4 -4
  130. package/dist/shared/stack.fdi94T4S.d.cts +291 -0
  131. package/dist/shared/stack.fdi94T4S.d.mts +291 -0
  132. package/dist/shared/stack.fdi94T4S.d.ts +291 -0
  133. package/dist/shared/{stack.BV9hnvu4.d.cts → stack.sba323Ml.d.cts} +2 -0
  134. package/dist/shared/{stack.BV9hnvu4.d.mts → stack.sba323Ml.d.mts} +2 -0
  135. package/dist/shared/{stack.BV9hnvu4.d.ts → stack.sba323Ml.d.ts} +2 -0
  136. package/package.json +97 -3
  137. package/src/components/auto-form/index.ts +12 -0
  138. package/src/components/empty/index.ts +8 -0
  139. package/src/components/form-builder/index.ts +23 -0
  140. package/src/components/kanban/index.ts +9 -0
  141. package/src/components/markdown/index.ts +5 -0
  142. package/src/components/markdown/style.css +3 -0
  143. package/src/components/minimal-tiptap/index.ts +5 -0
  144. package/src/components/minimal-tiptap/style.css +1 -0
  145. package/src/components/multi-select/index.ts +5 -0
  146. package/src/components/search-select/index.ts +1 -0
  147. package/src/components/stepped-auto-form/index.ts +5 -0
  148. package/src/components/ui-builder/index.ts +50 -0
  149. package/src/components/ui-builder/style.css +5 -0
  150. package/src/plugins/ai-chat/client/components/chat-layout.tsx +22 -1
  151. package/src/plugins/blog/client/components/forms/markdown-editor-with-overrides.tsx +29 -0
  152. package/src/plugins/blog/client/components/forms/markdown-editor.tsx +24 -21
  153. package/src/plugins/blog/client/components/forms/post-forms.tsx +2 -2
  154. package/src/plugins/blog/client/components/shared/posts-list.tsx +1 -1
  155. package/src/plugins/blog/client/components/shared/search-input.tsx +0 -2
  156. package/src/plugins/blog/client/components/shared/search-modal.tsx +0 -2
  157. package/dist/shared/stack.8nldKomx.d.cts +0 -114
  158. package/dist/shared/stack.8nldKomx.d.mts +0 -114
  159. package/dist/shared/stack.8nldKomx.d.ts +0 -114
  160. package/dist/shared/{stack.BWp0hcm9.d.cts → stack.BQmuNl5p.d.cts} +3 -3
  161. package/dist/shared/{stack.BWp0hcm9.d.mts → stack.BQmuNl5p.d.mts} +3 -3
  162. package/dist/shared/{stack.BWp0hcm9.d.ts → stack.BQmuNl5p.d.ts} +3 -3
  163. package/dist/shared/{stack.Ba_Ks8qi.d.mts → stack.CxaFNQCV.d.mts} +9 -9
  164. package/dist/shared/{stack.DMobugrZ.d.ts → stack.j75TpKh2.d.ts} +9 -9
  165. package/dist/shared/{stack.CFqqZUes.d.cts → stack.n1_i1p2B.d.cts} +9 -9
@@ -1,7 +1,7 @@
1
1
  import '@tanstack/react-query';
2
- export { d as createBlogQueryKeys } from '../../shared/stack.CL4mKxe7.mjs';
2
+ export { d as createBlogQueryKeys } from '../../shared/stack.cfCkioTe.mjs';
3
3
  import '@btst/stack/plugins/client';
4
- import '../../shared/stack.BWp0hcm9.mjs';
4
+ import '../../shared/stack.BQmuNl5p.mjs';
5
5
  import '@btst/stack/plugins/api';
6
6
  import 'better-call';
7
7
  import '@btst/db';
@@ -1,7 +1,7 @@
1
1
  import '@tanstack/react-query';
2
- export { d as createBlogQueryKeys } from '../../shared/stack.B8_74ror.js';
2
+ export { d as createBlogQueryKeys } from '../../shared/stack.DXnclTG7.js';
3
3
  import '@btst/stack/plugins/client';
4
- import '../../shared/stack.BWp0hcm9.js';
4
+ import '../../shared/stack.BQmuNl5p.js';
5
5
  import '@btst/stack/plugins/api';
6
6
  import 'better-call';
7
7
  import '@btst/db';
@@ -2,7 +2,7 @@ import * as _btst_stack_plugins_client from '@btst/stack/plugins/client';
2
2
  import * as _btst_yar from '@btst/yar';
3
3
  import { ComponentType } from 'react';
4
4
  import { QueryClient } from '@tanstack/react-query';
5
- import { A as AutoFormInputComponentProps } from '../../../shared/stack.8nldKomx.cjs';
5
+ import { A as AutoFormInputComponentProps } from '../../../shared/stack.fdi94T4S.cjs';
6
6
  export { b as FormSchemaMetadata, F as FormStep, f as formSchemaToZod, a as getStepGroupMap, g as getSteps, h as hasSteps, z as zodToFormSchema } from '../../../shared/stack.Co034Fpm.cjs';
7
7
  import * as react_jsx_runtime from 'react/jsx-runtime';
8
8
  import 'react-hook-form';
@@ -2,7 +2,7 @@ import * as _btst_stack_plugins_client from '@btst/stack/plugins/client';
2
2
  import * as _btst_yar from '@btst/yar';
3
3
  import { ComponentType } from 'react';
4
4
  import { QueryClient } from '@tanstack/react-query';
5
- import { A as AutoFormInputComponentProps } from '../../../shared/stack.8nldKomx.mjs';
5
+ import { A as AutoFormInputComponentProps } from '../../../shared/stack.fdi94T4S.mjs';
6
6
  export { b as FormSchemaMetadata, F as FormStep, f as formSchemaToZod, a as getStepGroupMap, g as getSteps, h as hasSteps, z as zodToFormSchema } from '../../../shared/stack.Co034Fpm.mjs';
7
7
  import * as react_jsx_runtime from 'react/jsx-runtime';
8
8
  import 'react-hook-form';
@@ -2,7 +2,7 @@ import * as _btst_stack_plugins_client from '@btst/stack/plugins/client';
2
2
  import * as _btst_yar from '@btst/yar';
3
3
  import { ComponentType } from 'react';
4
4
  import { QueryClient } from '@tanstack/react-query';
5
- import { A as AutoFormInputComponentProps } from '../../../shared/stack.8nldKomx.js';
5
+ import { A as AutoFormInputComponentProps } from '../../../shared/stack.fdi94T4S.js';
6
6
  export { b as FormSchemaMetadata, F as FormStep, f as formSchemaToZod, a as getStepGroupMap, g as getSteps, h as hasSteps, z as zodToFormSchema } from '../../../shared/stack.Co034Fpm.js';
7
7
  import * as react_jsx_runtime from 'react/jsx-runtime';
8
8
  import 'react-hook-form';
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { ComponentType } from 'react';
3
- import { A as AutoFormInputComponentProps } from '../../../../shared/stack.8nldKomx.cjs';
3
+ import { A as AutoFormInputComponentProps } from '../../../../shared/stack.fdi94T4S.cjs';
4
4
  import { a as SerializedFormSubmission } from '../../../../shared/stack.BozPgbrZ.cjs';
5
5
  import 'react-hook-form';
6
6
  import 'zod';
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { ComponentType } from 'react';
3
- import { A as AutoFormInputComponentProps } from '../../../../shared/stack.8nldKomx.mjs';
3
+ import { A as AutoFormInputComponentProps } from '../../../../shared/stack.fdi94T4S.mjs';
4
4
  import { a as SerializedFormSubmission } from '../../../../shared/stack.BozPgbrZ.mjs';
5
5
  import 'react-hook-form';
6
6
  import 'zod';
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { ComponentType } from 'react';
3
- import { A as AutoFormInputComponentProps } from '../../../../shared/stack.8nldKomx.js';
3
+ import { A as AutoFormInputComponentProps } from '../../../../shared/stack.fdi94T4S.js';
4
4
  import { a as SerializedFormSubmission } from '../../../../shared/stack.BozPgbrZ.js';
5
5
  import 'react-hook-form';
6
6
  import 'zod';
@@ -2,7 +2,7 @@ import * as _btst_stack_plugins_client from '@btst/stack/plugins/client';
2
2
  import * as _btst_yar from '@btst/yar';
3
3
  import { ComponentType } from 'react';
4
4
  import { QueryClient } from '@tanstack/react-query';
5
- import { A as AutoFormInputComponentProps } from '../../../shared/stack.8nldKomx.cjs';
5
+ import { A as AutoFormInputComponentProps } from '../../../shared/stack.fdi94T4S.cjs';
6
6
  export { b as FormSchemaMetadata, F as FormStep, f as formSchemaToZod, a as getStepGroupMap, g as getSteps, h as hasSteps, z as zodToFormSchema } from '../../../shared/stack.Co034Fpm.cjs';
7
7
  import 'react-hook-form';
8
8
  import 'zod';
@@ -2,7 +2,7 @@ import * as _btst_stack_plugins_client from '@btst/stack/plugins/client';
2
2
  import * as _btst_yar from '@btst/yar';
3
3
  import { ComponentType } from 'react';
4
4
  import { QueryClient } from '@tanstack/react-query';
5
- import { A as AutoFormInputComponentProps } from '../../../shared/stack.8nldKomx.mjs';
5
+ import { A as AutoFormInputComponentProps } from '../../../shared/stack.fdi94T4S.mjs';
6
6
  export { b as FormSchemaMetadata, F as FormStep, f as formSchemaToZod, a as getStepGroupMap, g as getSteps, h as hasSteps, z as zodToFormSchema } from '../../../shared/stack.Co034Fpm.mjs';
7
7
  import 'react-hook-form';
8
8
  import 'zod';
@@ -2,7 +2,7 @@ import * as _btst_stack_plugins_client from '@btst/stack/plugins/client';
2
2
  import * as _btst_yar from '@btst/yar';
3
3
  import { ComponentType } from 'react';
4
4
  import { QueryClient } from '@tanstack/react-query';
5
- import { A as AutoFormInputComponentProps } from '../../../shared/stack.8nldKomx.js';
5
+ import { A as AutoFormInputComponentProps } from '../../../shared/stack.fdi94T4S.js';
6
6
  export { b as FormSchemaMetadata, F as FormStep, f as formSchemaToZod, a as getStepGroupMap, g as getSteps, h as hasSteps, z as zodToFormSchema } from '../../../shared/stack.Co034Fpm.js';
7
7
  import 'react-hook-form';
8
8
  import 'zod';
@@ -1,4 +1,4 @@
1
- export { B as BoardListResult, C as CreateKanbanTaskInput, i as KANBAN_QUERY_KEYS, b as KanbanApiContext, K as KanbanApiRouter, c as KanbanBackendHooks, a as KanbanRouteKey, e as createKanbanTask, f as findOrCreateKanbanBoard, g as getAllBoards, d as getBoardById, h as getKanbanColumnsByBoardId, k as kanbanBackendPlugin } from '../../../shared/stack.CFqqZUes.cjs';
1
+ export { B as BoardListResult, C as CreateKanbanTaskInput, i as KANBAN_QUERY_KEYS, b as KanbanApiContext, K as KanbanApiRouter, c as KanbanBackendHooks, a as KanbanRouteKey, e as createKanbanTask, f as findOrCreateKanbanBoard, g as getAllBoards, d as getBoardById, h as getKanbanColumnsByBoardId, k as kanbanBackendPlugin } from '../../../shared/stack.n1_i1p2B.cjs';
2
2
  import { B as BoardWithColumns, S as SerializedBoardWithColumns, C as ColumnWithTasks, a as SerializedColumn, T as Task, b as SerializedTask } from '../../../shared/stack.DJaKVY7v.cjs';
3
3
  import '@btst/stack/plugins/api';
4
4
  import 'better-call';
@@ -1,4 +1,4 @@
1
- export { B as BoardListResult, C as CreateKanbanTaskInput, i as KANBAN_QUERY_KEYS, b as KanbanApiContext, K as KanbanApiRouter, c as KanbanBackendHooks, a as KanbanRouteKey, e as createKanbanTask, f as findOrCreateKanbanBoard, g as getAllBoards, d as getBoardById, h as getKanbanColumnsByBoardId, k as kanbanBackendPlugin } from '../../../shared/stack.Ba_Ks8qi.mjs';
1
+ export { B as BoardListResult, C as CreateKanbanTaskInput, i as KANBAN_QUERY_KEYS, b as KanbanApiContext, K as KanbanApiRouter, c as KanbanBackendHooks, a as KanbanRouteKey, e as createKanbanTask, f as findOrCreateKanbanBoard, g as getAllBoards, d as getBoardById, h as getKanbanColumnsByBoardId, k as kanbanBackendPlugin } from '../../../shared/stack.CxaFNQCV.mjs';
2
2
  import { B as BoardWithColumns, S as SerializedBoardWithColumns, C as ColumnWithTasks, a as SerializedColumn, T as Task, b as SerializedTask } from '../../../shared/stack.DJaKVY7v.mjs';
3
3
  import '@btst/stack/plugins/api';
4
4
  import 'better-call';
@@ -1,4 +1,4 @@
1
- export { B as BoardListResult, C as CreateKanbanTaskInput, i as KANBAN_QUERY_KEYS, b as KanbanApiContext, K as KanbanApiRouter, c as KanbanBackendHooks, a as KanbanRouteKey, e as createKanbanTask, f as findOrCreateKanbanBoard, g as getAllBoards, d as getBoardById, h as getKanbanColumnsByBoardId, k as kanbanBackendPlugin } from '../../../shared/stack.DMobugrZ.js';
1
+ export { B as BoardListResult, C as CreateKanbanTaskInput, i as KANBAN_QUERY_KEYS, b as KanbanApiContext, K as KanbanApiRouter, c as KanbanBackendHooks, a as KanbanRouteKey, e as createKanbanTask, f as findOrCreateKanbanBoard, g as getAllBoards, d as getBoardById, h as getKanbanColumnsByBoardId, k as kanbanBackendPlugin } from '../../../shared/stack.j75TpKh2.js';
2
2
  import { B as BoardWithColumns, S as SerializedBoardWithColumns, C as ColumnWithTasks, a as SerializedColumn, T as Task, b as SerializedTask } from '../../../shared/stack.DJaKVY7v.js';
3
3
  import '@btst/stack/plugins/api';
4
4
  import 'better-call';
@@ -1,5 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { K as KanbanApiRouter, j as BoardsListDiscriminator } from '../../shared/stack.CFqqZUes.cjs';
2
+ import { K as KanbanApiRouter, j as BoardsListDiscriminator } from '../../shared/stack.n1_i1p2B.cjs';
3
3
  import { createApiClient } from '@btst/stack/plugins/client';
4
4
  import { S as SerializedBoardWithColumns } from '../../shared/stack.DJaKVY7v.cjs';
5
5
  import '@btst/stack/plugins/api';
@@ -1,5 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { K as KanbanApiRouter, j as BoardsListDiscriminator } from '../../shared/stack.Ba_Ks8qi.mjs';
2
+ import { K as KanbanApiRouter, j as BoardsListDiscriminator } from '../../shared/stack.CxaFNQCV.mjs';
3
3
  import { createApiClient } from '@btst/stack/plugins/client';
4
4
  import { S as SerializedBoardWithColumns } from '../../shared/stack.DJaKVY7v.mjs';
5
5
  import '@btst/stack/plugins/api';
@@ -1,5 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { K as KanbanApiRouter, j as BoardsListDiscriminator } from '../../shared/stack.DMobugrZ.js';
2
+ import { K as KanbanApiRouter, j as BoardsListDiscriminator } from '../../shared/stack.j75TpKh2.js';
3
3
  import { createApiClient } from '@btst/stack/plugins/client';
4
4
  import { S as SerializedBoardWithColumns } from '../../shared/stack.DJaKVY7v.js';
5
5
  import '@btst/stack/plugins/api';
@@ -1,8 +1,8 @@
1
1
  import { ComponentType, ReactNode } from 'react';
2
- import { a as ComponentRegistry, P as PropValue, F as FunctionRegistry } from '../../../../shared/stack.C5ZSOJGJ.cjs';
2
+ import { a as ComponentRegistry, P as PropValue, F as FunctionRegistry } from '../../../../shared/stack.DmpPDPxA.cjs';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import 'zod';
5
- import '../../../../shared/stack.8nldKomx.cjs';
5
+ import '../../../../shared/stack.fdi94T4S.cjs';
6
6
  import 'react-hook-form';
7
7
 
8
8
  interface PageRendererProps {
@@ -1,8 +1,8 @@
1
1
  import { ComponentType, ReactNode } from 'react';
2
- import { a as ComponentRegistry, P as PropValue, F as FunctionRegistry } from '../../../../shared/stack.Dq4qVr1F.mjs';
2
+ import { a as ComponentRegistry, P as PropValue, F as FunctionRegistry } from '../../../../shared/stack.B1srlBud.mjs';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import 'zod';
5
- import '../../../../shared/stack.8nldKomx.mjs';
5
+ import '../../../../shared/stack.fdi94T4S.mjs';
6
6
  import 'react-hook-form';
7
7
 
8
8
  interface PageRendererProps {
@@ -1,8 +1,8 @@
1
1
  import { ComponentType, ReactNode } from 'react';
2
- import { a as ComponentRegistry, P as PropValue, F as FunctionRegistry } from '../../../../shared/stack.D0QupDcQ.js';
2
+ import { a as ComponentRegistry, P as PropValue, F as FunctionRegistry } from '../../../../shared/stack.BK9Z2dcL.js';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import 'zod';
5
- import '../../../../shared/stack.8nldKomx.js';
5
+ import '../../../../shared/stack.fdi94T4S.js';
6
6
  import 'react-hook-form';
7
7
 
8
8
  interface PageRendererProps {
@@ -1,9 +1,9 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { S as SerializedUIBuilderPage } from '../../../../shared/stack.Cl7ok_cY.cjs';
3
- import { C as ComponentLayer, V as Variable } from '../../../../shared/stack.C5ZSOJGJ.cjs';
2
+ import { S as SerializedUIBuilderPage } from '../../../../shared/stack.CFECM0ew.cjs';
3
+ import { C as ComponentLayer, V as Variable } from '../../../../shared/stack.DmpPDPxA.cjs';
4
4
  import 'zod';
5
5
  import 'react';
6
- import '../../../../shared/stack.8nldKomx.cjs';
6
+ import '../../../../shared/stack.fdi94T4S.cjs';
7
7
  import 'react-hook-form';
8
8
  import 'react/jsx-runtime';
9
9
 
@@ -1,9 +1,9 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { S as SerializedUIBuilderPage } from '../../../../shared/stack.VMmQdbsJ.mjs';
3
- import { C as ComponentLayer, V as Variable } from '../../../../shared/stack.Dq4qVr1F.mjs';
2
+ import { S as SerializedUIBuilderPage } from '../../../../shared/stack.DVtk5CNw.mjs';
3
+ import { C as ComponentLayer, V as Variable } from '../../../../shared/stack.B1srlBud.mjs';
4
4
  import 'zod';
5
5
  import 'react';
6
- import '../../../../shared/stack.8nldKomx.mjs';
6
+ import '../../../../shared/stack.fdi94T4S.mjs';
7
7
  import 'react-hook-form';
8
8
  import 'react/jsx-runtime';
9
9
 
@@ -1,9 +1,9 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { S as SerializedUIBuilderPage } from '../../../../shared/stack.B2DwzF3r.js';
3
- import { C as ComponentLayer, V as Variable } from '../../../../shared/stack.D0QupDcQ.js';
2
+ import { S as SerializedUIBuilderPage } from '../../../../shared/stack.ASwEoINr.js';
3
+ import { C as ComponentLayer, V as Variable } from '../../../../shared/stack.BK9Z2dcL.js';
4
4
  import 'zod';
5
5
  import 'react';
6
- import '../../../../shared/stack.8nldKomx.js';
6
+ import '../../../../shared/stack.fdi94T4S.js';
7
7
  import 'react-hook-form';
8
8
  import 'react/jsx-runtime';
9
9
 
@@ -2,10 +2,10 @@ import * as _btst_stack_plugins_client from '@btst/stack/plugins/client';
2
2
  import * as _btst_yar from '@btst/yar';
3
3
  import React__default, { ComponentType } from 'react';
4
4
  import { QueryClient } from '@tanstack/react-query';
5
- import { c as UIBuilderClientHooks } from '../../../shared/stack.Cl7ok_cY.cjs';
6
- import { a as ComponentRegistry, b as FieldConfigFunction, C as ComponentLayer, F as FunctionRegistry } from '../../../shared/stack.C5ZSOJGJ.cjs';
5
+ import { c as UIBuilderClientHooks } from '../../../shared/stack.CFECM0ew.cjs';
6
+ import { a as ComponentRegistry, b as FieldConfigFunction, C as ComponentLayer, F as FunctionRegistry } from '../../../shared/stack.DmpPDPxA.cjs';
7
7
  import * as react_jsx_runtime from 'react/jsx-runtime';
8
- import { A as AutoFormInputComponentProps, F as FieldConfigItem } from '../../../shared/stack.8nldKomx.cjs';
8
+ import { A as AutoFormInputComponentProps, F as FieldConfigItem } from '../../../shared/stack.fdi94T4S.cjs';
9
9
  export { PageBuilderPage, PageListPage, PageRenderer, PageRendererProps, SuspensePageRenderer } from './components/index.cjs';
10
10
  export { CreateUIBuilderPageInput, UpdateUIBuilderPageInput, UseUIBuilderPagesOptions, UseUIBuilderPagesResult, useCreateUIBuilderPage, useDeleteUIBuilderPage, useSuspenseUIBuilderPage, useSuspenseUIBuilderPageBySlug, useSuspenseUIBuilderPages, useUIBuilderPage, useUIBuilderPageBySlug, useUIBuilderPages, useUpdateUIBuilderPage } from './hooks/index.cjs';
11
11
  import 'zod';
@@ -2,10 +2,10 @@ import * as _btst_stack_plugins_client from '@btst/stack/plugins/client';
2
2
  import * as _btst_yar from '@btst/yar';
3
3
  import React__default, { ComponentType } from 'react';
4
4
  import { QueryClient } from '@tanstack/react-query';
5
- import { c as UIBuilderClientHooks } from '../../../shared/stack.VMmQdbsJ.mjs';
6
- import { a as ComponentRegistry, b as FieldConfigFunction, C as ComponentLayer, F as FunctionRegistry } from '../../../shared/stack.Dq4qVr1F.mjs';
5
+ import { c as UIBuilderClientHooks } from '../../../shared/stack.DVtk5CNw.mjs';
6
+ import { a as ComponentRegistry, b as FieldConfigFunction, C as ComponentLayer, F as FunctionRegistry } from '../../../shared/stack.B1srlBud.mjs';
7
7
  import * as react_jsx_runtime from 'react/jsx-runtime';
8
- import { A as AutoFormInputComponentProps, F as FieldConfigItem } from '../../../shared/stack.8nldKomx.mjs';
8
+ import { A as AutoFormInputComponentProps, F as FieldConfigItem } from '../../../shared/stack.fdi94T4S.mjs';
9
9
  export { PageBuilderPage, PageListPage, PageRenderer, PageRendererProps, SuspensePageRenderer } from './components/index.mjs';
10
10
  export { CreateUIBuilderPageInput, UpdateUIBuilderPageInput, UseUIBuilderPagesOptions, UseUIBuilderPagesResult, useCreateUIBuilderPage, useDeleteUIBuilderPage, useSuspenseUIBuilderPage, useSuspenseUIBuilderPageBySlug, useSuspenseUIBuilderPages, useUIBuilderPage, useUIBuilderPageBySlug, useUIBuilderPages, useUpdateUIBuilderPage } from './hooks/index.mjs';
11
11
  import 'zod';
@@ -2,10 +2,10 @@ import * as _btst_stack_plugins_client from '@btst/stack/plugins/client';
2
2
  import * as _btst_yar from '@btst/yar';
3
3
  import React__default, { ComponentType } from 'react';
4
4
  import { QueryClient } from '@tanstack/react-query';
5
- import { c as UIBuilderClientHooks } from '../../../shared/stack.B2DwzF3r.js';
6
- import { a as ComponentRegistry, b as FieldConfigFunction, C as ComponentLayer, F as FunctionRegistry } from '../../../shared/stack.D0QupDcQ.js';
5
+ import { c as UIBuilderClientHooks } from '../../../shared/stack.ASwEoINr.js';
6
+ import { a as ComponentRegistry, b as FieldConfigFunction, C as ComponentLayer, F as FunctionRegistry } from '../../../shared/stack.BK9Z2dcL.js';
7
7
  import * as react_jsx_runtime from 'react/jsx-runtime';
8
- import { A as AutoFormInputComponentProps, F as FieldConfigItem } from '../../../shared/stack.8nldKomx.js';
8
+ import { A as AutoFormInputComponentProps, F as FieldConfigItem } from '../../../shared/stack.fdi94T4S.js';
9
9
  export { PageBuilderPage, PageListPage, PageRenderer, PageRendererProps, SuspensePageRenderer } from './components/index.js';
10
10
  export { CreateUIBuilderPageInput, UpdateUIBuilderPageInput, UseUIBuilderPagesOptions, UseUIBuilderPagesResult, useCreateUIBuilderPage, useDeleteUIBuilderPage, useSuspenseUIBuilderPage, useSuspenseUIBuilderPageBySlug, useSuspenseUIBuilderPages, useUIBuilderPage, useUIBuilderPageBySlug, useUIBuilderPages, useUpdateUIBuilderPage } from './hooks/index.js';
11
11
  import 'zod';
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { C as ContentTypeConfig } from '../../shared/stack.B8QD11QU.cjs';
3
- export { L as LoaderContext, b as PaginatedUIBuilderPages, P as ParsedUIBuilderPage, S as SerializedUIBuilderPage, c as UIBuilderClientHooks, a as UIBuilderPage, U as UIBuilderPageData } from '../../shared/stack.Cl7ok_cY.cjs';
4
- export { C as ComponentLayer, a as ComponentRegistry, F as FunctionRegistry, R as RegistryEntry, V as Variable } from '../../shared/stack.C5ZSOJGJ.cjs';
3
+ export { L as LoaderContext, b as PaginatedUIBuilderPages, P as ParsedUIBuilderPage, S as SerializedUIBuilderPage, c as UIBuilderClientHooks, a as UIBuilderPage, U as UIBuilderPageData } from '../../shared/stack.CFECM0ew.cjs';
4
+ export { C as ComponentLayer, a as ComponentRegistry, F as FunctionRegistry, R as RegistryEntry, V as Variable } from '../../shared/stack.DmpPDPxA.cjs';
5
5
  import 'react';
6
- import '../../shared/stack.8nldKomx.cjs';
6
+ import '../../shared/stack.fdi94T4S.cjs';
7
7
  import 'react-hook-form';
8
8
  import 'react/jsx-runtime';
9
9
 
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { C as ContentTypeConfig } from '../../shared/stack.B8QD11QU.mjs';
3
- export { L as LoaderContext, b as PaginatedUIBuilderPages, P as ParsedUIBuilderPage, S as SerializedUIBuilderPage, c as UIBuilderClientHooks, a as UIBuilderPage, U as UIBuilderPageData } from '../../shared/stack.VMmQdbsJ.mjs';
4
- export { C as ComponentLayer, a as ComponentRegistry, F as FunctionRegistry, R as RegistryEntry, V as Variable } from '../../shared/stack.Dq4qVr1F.mjs';
3
+ export { L as LoaderContext, b as PaginatedUIBuilderPages, P as ParsedUIBuilderPage, S as SerializedUIBuilderPage, c as UIBuilderClientHooks, a as UIBuilderPage, U as UIBuilderPageData } from '../../shared/stack.DVtk5CNw.mjs';
4
+ export { C as ComponentLayer, a as ComponentRegistry, F as FunctionRegistry, R as RegistryEntry, V as Variable } from '../../shared/stack.B1srlBud.mjs';
5
5
  import 'react';
6
- import '../../shared/stack.8nldKomx.mjs';
6
+ import '../../shared/stack.fdi94T4S.mjs';
7
7
  import 'react-hook-form';
8
8
  import 'react/jsx-runtime';
9
9
 
@@ -1,9 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  import { C as ContentTypeConfig } from '../../shared/stack.B8QD11QU.js';
3
- export { L as LoaderContext, b as PaginatedUIBuilderPages, P as ParsedUIBuilderPage, S as SerializedUIBuilderPage, c as UIBuilderClientHooks, a as UIBuilderPage, U as UIBuilderPageData } from '../../shared/stack.B2DwzF3r.js';
4
- export { C as ComponentLayer, a as ComponentRegistry, F as FunctionRegistry, R as RegistryEntry, V as Variable } from '../../shared/stack.D0QupDcQ.js';
3
+ export { L as LoaderContext, b as PaginatedUIBuilderPages, P as ParsedUIBuilderPage, S as SerializedUIBuilderPage, c as UIBuilderClientHooks, a as UIBuilderPage, U as UIBuilderPageData } from '../../shared/stack.ASwEoINr.js';
4
+ export { C as ComponentLayer, a as ComponentRegistry, F as FunctionRegistry, R as RegistryEntry, V as Variable } from '../../shared/stack.BK9Z2dcL.js';
5
5
  import 'react';
6
- import '../../shared/stack.8nldKomx.js';
6
+ import '../../shared/stack.fdi94T4S.js';
7
7
  import 'react-hook-form';
8
8
  import 'react/jsx-runtime';
9
9
 
@@ -1,4 +1,4 @@
1
- import { C as ComponentLayer, V as Variable } from './stack.D0QupDcQ.js';
1
+ import { C as ComponentLayer, V as Variable } from './stack.BK9Z2dcL.js';
2
2
 
3
3
  /**
4
4
  * UI Builder Page data structure
@@ -1,6 +1,6 @@
1
1
  import { ZodObject, ZodSchema, ZodTuple } from 'zod';
2
2
  import { ReactNode, ComponentType } from 'react';
3
- import { F as FieldConfigItem } from './stack.8nldKomx.cjs';
3
+ import { F as FieldConfigItem } from './stack.fdi94T4S.mjs';
4
4
 
5
5
  type PropValue = ReactNode | VariableReference | Record<string, any> | any[] | string | number | boolean | null | undefined;
6
6
  type ComponentProps<TProps extends Record<string, PropValue> = Record<string, PropValue>> = TProps;
@@ -1,5 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { S as SerializedPost, c as createPostSchema, u as updatePostSchema, a as SerializedTag } from './stack.BWp0hcm9.cjs';
2
+ import { S as SerializedPost, c as createPostSchema, u as updatePostSchema, a as SerializedTag } from './stack.BQmuNl5p.mjs';
3
3
  import { z } from 'zod';
4
4
 
5
5
  /**
@@ -135,14 +135,14 @@ declare function useCreatePost(): _tanstack_react_query.UseMutationResult<Serial
135
135
  name: string;
136
136
  slug: string;
137
137
  })[];
138
- published: boolean;
139
138
  title: string;
140
139
  content: string;
141
140
  excerpt: string;
141
+ published: boolean;
142
142
  slug?: string | undefined;
143
- publishedAt?: Date | undefined;
144
143
  createdAt?: Date | undefined;
145
144
  updatedAt?: Date | undefined;
145
+ publishedAt?: Date | undefined;
146
146
  image?: string | undefined;
147
147
  }, unknown>;
148
148
  /** Update an existing post by id */
@@ -1,5 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { S as SerializedPost, c as createPostSchema, u as updatePostSchema, a as SerializedTag } from './stack.BWp0hcm9.js';
2
+ import { S as SerializedPost, c as createPostSchema, u as updatePostSchema, a as SerializedTag } from './stack.BQmuNl5p.js';
3
3
  import { z } from 'zod';
4
4
 
5
5
  /**
@@ -135,14 +135,14 @@ declare function useCreatePost(): _tanstack_react_query.UseMutationResult<Serial
135
135
  name: string;
136
136
  slug: string;
137
137
  })[];
138
- published: boolean;
139
138
  title: string;
140
139
  content: string;
141
140
  excerpt: string;
141
+ published: boolean;
142
142
  slug?: string | undefined;
143
- publishedAt?: Date | undefined;
144
143
  createdAt?: Date | undefined;
145
144
  updatedAt?: Date | undefined;
145
+ publishedAt?: Date | undefined;
146
146
  image?: string | undefined;
147
147
  }, unknown>;
148
148
  /** Update an existing post by id */
@@ -1,6 +1,6 @@
1
1
  import { ZodObject, ZodSchema, ZodTuple } from 'zod';
2
2
  import { ReactNode, ComponentType } from 'react';
3
- import { F as FieldConfigItem } from './stack.8nldKomx.js';
3
+ import { F as FieldConfigItem } from './stack.fdi94T4S.js';
4
4
 
5
5
  type PropValue = ReactNode | VariableReference | Record<string, any> | any[] | string | number | boolean | null | undefined;
6
6
  type ComponentProps<TProps extends Record<string, PropValue> = Record<string, PropValue>> = TProps;
@@ -1,5 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { S as SerializedPost, c as createPostSchema, u as updatePostSchema, a as SerializedTag } from './stack.BWp0hcm9.mjs';
2
+ import { S as SerializedPost, c as createPostSchema, u as updatePostSchema, a as SerializedTag } from './stack.BQmuNl5p.cjs';
3
3
  import { z } from 'zod';
4
4
 
5
5
  /**
@@ -135,14 +135,14 @@ declare function useCreatePost(): _tanstack_react_query.UseMutationResult<Serial
135
135
  name: string;
136
136
  slug: string;
137
137
  })[];
138
- published: boolean;
139
138
  title: string;
140
139
  content: string;
141
140
  excerpt: string;
141
+ published: boolean;
142
142
  slug?: string | undefined;
143
- publishedAt?: Date | undefined;
144
143
  createdAt?: Date | undefined;
145
144
  updatedAt?: Date | undefined;
145
+ publishedAt?: Date | undefined;
146
146
  image?: string | undefined;
147
147
  }, unknown>;
148
148
  /** Update an existing post by id */
@@ -1,4 +1,4 @@
1
- import { C as ComponentLayer, V as Variable } from './stack.C5ZSOJGJ.cjs';
1
+ import { C as ComponentLayer, V as Variable } from './stack.DmpPDPxA.cjs';
2
2
 
3
3
  /**
4
4
  * UI Builder Page data structure
@@ -0,0 +1,10 @@
1
+ import { z } from 'zod';
2
+
3
+ /**
4
+ * Type for wrapped object schemas in Zod v4.
5
+ * In Zod v4, ZodEffects is replaced with ZodPipe for transforms.
6
+ * For autoform purposes, we mainly deal with objects that might be wrapped in optional/default/nullable.
7
+ */
8
+ type ZodObjectOrWrapped = z.ZodObject<any, any> | z.ZodType<any>;
9
+
10
+ export type { ZodObjectOrWrapped as Z };
@@ -0,0 +1,10 @@
1
+ import { z } from 'zod';
2
+
3
+ /**
4
+ * Type for wrapped object schemas in Zod v4.
5
+ * In Zod v4, ZodEffects is replaced with ZodPipe for transforms.
6
+ * For autoform purposes, we mainly deal with objects that might be wrapped in optional/default/nullable.
7
+ */
8
+ type ZodObjectOrWrapped = z.ZodObject<any, any> | z.ZodType<any>;
9
+
10
+ export type { ZodObjectOrWrapped as Z };
@@ -0,0 +1,10 @@
1
+ import { z } from 'zod';
2
+
3
+ /**
4
+ * Type for wrapped object schemas in Zod v4.
5
+ * In Zod v4, ZodEffects is replaced with ZodPipe for transforms.
6
+ * For autoform purposes, we mainly deal with objects that might be wrapped in optional/default/nullable.
7
+ */
8
+ type ZodObjectOrWrapped = z.ZodObject<any, any> | z.ZodType<any>;
9
+
10
+ export type { ZodObjectOrWrapped as Z };
@@ -1,4 +1,4 @@
1
- import { C as ComponentLayer, V as Variable } from './stack.Dq4qVr1F.mjs';
1
+ import { C as ComponentLayer, V as Variable } from './stack.B1srlBud.mjs';
2
2
 
3
3
  /**
4
4
  * UI Builder Page data structure
@@ -1,7 +1,7 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
2
  import { QueryClient } from '@tanstack/react-query';
3
3
  import { createApiClient } from '@btst/stack/plugins/client';
4
- import { P as Post, T as Tag, c as createPostSchema, u as updatePostSchema, S as SerializedPost, a as SerializedTag } from './stack.BWp0hcm9.js';
4
+ import { P as Post, T as Tag, c as createPostSchema, u as updatePostSchema, S as SerializedPost, a as SerializedTag } from './stack.BQmuNl5p.js';
5
5
  import * as _btst_stack_plugins_api from '@btst/stack/plugins/api';
6
6
  import * as better_call from 'better-call';
7
7
  import { Adapter } from '@btst/db';
@@ -218,15 +218,15 @@ declare const blogBackendPlugin: (hooks?: BlogBackendHooks) => _btst_stack_plugi
218
218
  name: z.ZodString;
219
219
  slug: z.ZodString;
220
220
  }, z.core.$strip>]>>>>;
221
+ title: z.ZodString;
221
222
  slug: z.ZodOptional<z.ZodString>;
222
- published: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
223
- publishedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
224
223
  createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
225
224
  updatedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
226
- title: z.ZodString;
225
+ publishedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
227
226
  content: z.ZodString;
228
227
  excerpt: z.ZodString;
229
228
  image: z.ZodOptional<z.ZodString>;
229
+ published: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
230
230
  }, z.core.$strip>;
231
231
  }, Post>;
232
232
  readonly updatePost: better_call.StrictEndpoint<"/posts/:id", {
@@ -1,7 +1,7 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
2
  import { QueryClient } from '@tanstack/react-query';
3
3
  import { createApiClient } from '@btst/stack/plugins/client';
4
- import { P as Post, T as Tag, c as createPostSchema, u as updatePostSchema, S as SerializedPost, a as SerializedTag } from './stack.BWp0hcm9.mjs';
4
+ import { P as Post, T as Tag, c as createPostSchema, u as updatePostSchema, S as SerializedPost, a as SerializedTag } from './stack.BQmuNl5p.cjs';
5
5
  import * as _btst_stack_plugins_api from '@btst/stack/plugins/api';
6
6
  import * as better_call from 'better-call';
7
7
  import { Adapter } from '@btst/db';
@@ -218,15 +218,15 @@ declare const blogBackendPlugin: (hooks?: BlogBackendHooks) => _btst_stack_plugi
218
218
  name: z.ZodString;
219
219
  slug: z.ZodString;
220
220
  }, z.core.$strip>]>>>>;
221
+ title: z.ZodString;
221
222
  slug: z.ZodOptional<z.ZodString>;
222
- published: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
223
- publishedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
224
223
  createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
225
224
  updatedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
226
- title: z.ZodString;
225
+ publishedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
227
226
  content: z.ZodString;
228
227
  excerpt: z.ZodString;
229
228
  image: z.ZodOptional<z.ZodString>;
229
+ published: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
230
230
  }, z.core.$strip>;
231
231
  }, Post>;
232
232
  readonly updatePost: better_call.StrictEndpoint<"/posts/:id", {
@@ -1,6 +1,6 @@
1
1
  import { ZodObject, ZodSchema, ZodTuple } from 'zod';
2
2
  import { ReactNode, ComponentType } from 'react';
3
- import { F as FieldConfigItem } from './stack.8nldKomx.mjs';
3
+ import { F as FieldConfigItem } from './stack.fdi94T4S.cjs';
4
4
 
5
5
  type PropValue = ReactNode | VariableReference | Record<string, any> | any[] | string | number | boolean | null | undefined;
6
6
  type ComponentProps<TProps extends Record<string, PropValue> = Record<string, PropValue>> = TProps;
@@ -1,7 +1,7 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
2
  import { QueryClient } from '@tanstack/react-query';
3
3
  import { createApiClient } from '@btst/stack/plugins/client';
4
- import { P as Post, T as Tag, c as createPostSchema, u as updatePostSchema, S as SerializedPost, a as SerializedTag } from './stack.BWp0hcm9.cjs';
4
+ import { P as Post, T as Tag, c as createPostSchema, u as updatePostSchema, S as SerializedPost, a as SerializedTag } from './stack.BQmuNl5p.mjs';
5
5
  import * as _btst_stack_plugins_api from '@btst/stack/plugins/api';
6
6
  import * as better_call from 'better-call';
7
7
  import { Adapter } from '@btst/db';
@@ -218,15 +218,15 @@ declare const blogBackendPlugin: (hooks?: BlogBackendHooks) => _btst_stack_plugi
218
218
  name: z.ZodString;
219
219
  slug: z.ZodString;
220
220
  }, z.core.$strip>]>>>>;
221
+ title: z.ZodString;
221
222
  slug: z.ZodOptional<z.ZodString>;
222
- published: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
223
- publishedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
224
223
  createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
225
224
  updatedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
226
- title: z.ZodString;
225
+ publishedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
227
226
  content: z.ZodString;
228
227
  excerpt: z.ZodString;
229
228
  image: z.ZodOptional<z.ZodString>;
229
+ published: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
230
230
  }, z.core.$strip>;
231
231
  }, Post>;
232
232
  readonly updatePost: better_call.StrictEndpoint<"/posts/:id", {