@krak-stack/registry 0.1.25 → 0.1.27

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 (44) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +5 -0
  3. package/dist/components/ui/data-table.js +212 -207
  4. package/dist/components/ui/effect-form.js +170 -169
  5. package/dist/components/ui/form.js +113 -112
  6. package/dist/components/ui/icon-input.js +43 -40
  7. package/dist/components/ui/pagination.js +2 -2
  8. package/dist/components/ui/sidebar-layout.d.ts +5 -2
  9. package/dist/components/ui/sidebar-layout.js +88 -80
  10. package/dist/components/ui/theme-switcher.js +3 -3
  11. package/dist/components/ui/virtualized-combobox.js +34 -31
  12. package/dist/lib/docs.d.ts +3 -1
  13. package/dist/lib/docs.js +181 -162
  14. package/dist/lib/docs.server.js +62 -36
  15. package/dist/lib/documentation-toolkit.js +63 -37
  16. package/dist/lib/httpapi-cli.js +7 -7
  17. package/dist/lib/httpapi-client.js +3 -3
  18. package/dist/lib/httpapi-helpers.js +11 -11
  19. package/dist/lib/httpapi-mcp.js +2 -2
  20. package/dist/lib/httpapi-toolkit.js +2 -2
  21. package/dist/lib/query.js +7 -7
  22. package/dist/lib/seo.js +2 -2
  23. package/dist/lib/webfetch-toolkit.js +6 -6
  24. package/dist/services/agent/client/index.js +129 -128
  25. package/dist/services/agent/schema.js +5 -5
  26. package/dist/services/file-extraction/index.js +4 -4
  27. package/dist/services/file-extraction/schema.js +2 -2
  28. package/dist/services/health/index.js +9 -9
  29. package/dist/services/notification/channels/ses/index.d.ts +2 -2
  30. package/dist/services/notification/channels/ses/index.js +2 -2
  31. package/dist/services/notification/channels/ses/schema.js +2 -2
  32. package/dist/services/notification/client/index.js +5 -5
  33. package/dist/services/notification/index.js +2 -2
  34. package/dist/services/notification/persistence/drizzle.d.ts +868 -0
  35. package/dist/services/notification/persistence/drizzle.js +2 -2
  36. package/dist/services/notification/persistence/index.d.ts +2 -0
  37. package/dist/services/notification/persistence/index.js +15 -15
  38. package/dist/services/notification/persistence/schema.d.ts +143 -0
  39. package/dist/services/notification/persistence/schema.js +12 -12
  40. package/dist/services/notification/public.js +7 -7
  41. package/dist/services/notification/schema.js +2 -2
  42. package/dist/services/s3/index.js +2 -2
  43. package/dist/services/s3/schema.js +2 -2
  44. package/package.json +2 -2
@@ -132,10 +132,10 @@ var makeAgentApiGroup = (resource) => {
132
132
  })));
133
133
  };
134
134
  export {
135
- AGENT_REFERENCE_LIMIT,
136
- AgentEvent,
137
- AgentMarkdownCodeBlock,
138
- AgentToolMetadata,
135
+ makeAgentReference,
139
136
  makeAgentApiGroup,
140
- makeAgentReference
137
+ AgentToolMetadata,
138
+ AgentMarkdownCodeBlock,
139
+ AgentEvent,
140
+ AGENT_REFERENCE_LIMIT
141
141
  };
@@ -111,9 +111,9 @@ class FileExtractionService extends Context.Service()("FileExtractionService", {
111
111
  static testLayer = (service) => Layer.succeed(this, service);
112
112
  }
113
113
  export {
114
- FileExtractedTextSchema,
115
- FileExtractionFailed,
116
- FileExtractionService,
114
+ defaultFileExtractionOptions,
117
115
  OutputFormat2 as OutputFormat,
118
- defaultFileExtractionOptions
116
+ FileExtractionService,
117
+ FileExtractionFailed,
118
+ FileExtractedTextSchema
119
119
  };
@@ -9,6 +9,6 @@ var FileExtractedTextSchema = Schema.Struct({
9
9
  class FileExtractionFailed extends Schema.TaggedError()("FileExtractionFailed", { message: Schema.String }) {
10
10
  }
11
11
  export {
12
- FileExtractedTextSchema,
13
- FileExtractionFailed
12
+ FileExtractionFailed,
13
+ FileExtractedTextSchema
14
14
  };
@@ -173,14 +173,14 @@ class HealthService extends Context.Service()("@krak-stack/registry/HealthServic
173
173
  static layerWith = (options) => Layer.effect(this, this.make).pipe(Layer.provide(HealthServiceConfig.layerWith(options)));
174
174
  }
175
175
  export {
176
- HealthApiGroup,
177
- HealthCheckData,
178
- HealthCheckOutcome,
179
- HealthCheckResult,
180
- HealthDownResponse,
181
- HealthResponse,
182
- HealthService,
183
- HealthStatus,
176
+ healthHandler,
184
177
  HealthUpResponse,
185
- healthHandler
178
+ HealthStatus,
179
+ HealthService,
180
+ HealthResponse,
181
+ HealthDownResponse,
182
+ HealthCheckResult,
183
+ HealthCheckOutcome,
184
+ HealthCheckData,
185
+ HealthApiGroup
186
186
  };
@@ -1,7 +1,7 @@
1
1
  import { Config, Context, Effect, Layer, Redacted } from "effect";
2
- import { type NotificationChannel } from "..";
2
+ import { type NotificationChannel } from "../index.js";
3
3
  import { SesEmailNotification } from "./schema.js";
4
- declare module ".." {
4
+ declare module "../index.js" {
5
5
  interface NotificationChannels {
6
6
  readonly email: SesEmailNotification;
7
7
  }
@@ -144,6 +144,6 @@ var buildDestination = (email) => {
144
144
  return destination;
145
145
  };
146
146
  export {
147
- SesNotificationChannel,
148
- SesNotificationConfig
147
+ SesNotificationConfig,
148
+ SesNotificationChannel
149
149
  };
@@ -30,6 +30,6 @@ var SesEmailNotification = Schema.Struct({
30
30
  ]
31
31
  });
32
32
  export {
33
- SesEmailAddress,
34
- SesEmailNotification
33
+ SesEmailNotification,
34
+ SesEmailAddress
35
35
  };
@@ -1115,10 +1115,10 @@ var formatNotificationDate = (value, locale) => {
1115
1115
  };
1116
1116
  var notificationTitle = (notification) => Schema.is(Schema.String)(notification.title) ? notification.title : defaultMessages.en.notifications;
1117
1117
  export {
1118
- NotificationEmpty,
1119
- NotificationList,
1120
- NotificationListItem,
1121
- NotificationMenu,
1118
+ notificationMenuMessages,
1122
1119
  NotificationMenuTrigger,
1123
- notificationMenuMessages
1120
+ NotificationMenu,
1121
+ NotificationListItem,
1122
+ NotificationList,
1123
+ NotificationEmpty
1124
1124
  };
@@ -92,6 +92,6 @@ class NotificationService extends Context2.Service()("NotificationService", {
92
92
  ]);
93
93
  }
94
94
  export {
95
- NotificationPersistenceStore,
96
- NotificationService
95
+ NotificationService,
96
+ NotificationPersistenceStore
97
97
  };