@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.
- package/LICENSE +21 -0
- package/README.md +5 -0
- package/dist/components/ui/data-table.js +212 -207
- package/dist/components/ui/effect-form.js +170 -169
- package/dist/components/ui/form.js +113 -112
- package/dist/components/ui/icon-input.js +43 -40
- package/dist/components/ui/pagination.js +2 -2
- package/dist/components/ui/sidebar-layout.d.ts +5 -2
- package/dist/components/ui/sidebar-layout.js +88 -80
- package/dist/components/ui/theme-switcher.js +3 -3
- package/dist/components/ui/virtualized-combobox.js +34 -31
- package/dist/lib/docs.d.ts +3 -1
- package/dist/lib/docs.js +181 -162
- package/dist/lib/docs.server.js +62 -36
- package/dist/lib/documentation-toolkit.js +63 -37
- package/dist/lib/httpapi-cli.js +7 -7
- package/dist/lib/httpapi-client.js +3 -3
- package/dist/lib/httpapi-helpers.js +11 -11
- package/dist/lib/httpapi-mcp.js +2 -2
- package/dist/lib/httpapi-toolkit.js +2 -2
- package/dist/lib/query.js +7 -7
- package/dist/lib/seo.js +2 -2
- package/dist/lib/webfetch-toolkit.js +6 -6
- package/dist/services/agent/client/index.js +129 -128
- package/dist/services/agent/schema.js +5 -5
- package/dist/services/file-extraction/index.js +4 -4
- package/dist/services/file-extraction/schema.js +2 -2
- package/dist/services/health/index.js +9 -9
- package/dist/services/notification/channels/ses/index.d.ts +2 -2
- package/dist/services/notification/channels/ses/index.js +2 -2
- package/dist/services/notification/channels/ses/schema.js +2 -2
- package/dist/services/notification/client/index.js +5 -5
- package/dist/services/notification/index.js +2 -2
- package/dist/services/notification/persistence/drizzle.d.ts +868 -0
- package/dist/services/notification/persistence/drizzle.js +2 -2
- package/dist/services/notification/persistence/index.d.ts +2 -0
- package/dist/services/notification/persistence/index.js +15 -15
- package/dist/services/notification/persistence/schema.d.ts +143 -0
- package/dist/services/notification/persistence/schema.js +12 -12
- package/dist/services/notification/public.js +7 -7
- package/dist/services/notification/schema.js +2 -2
- package/dist/services/s3/index.js +2 -2
- package/dist/services/s3/schema.js +2 -2
- package/package.json +2 -2
|
@@ -132,10 +132,10 @@ var makeAgentApiGroup = (resource) => {
|
|
|
132
132
|
})));
|
|
133
133
|
};
|
|
134
134
|
export {
|
|
135
|
-
|
|
136
|
-
AgentEvent,
|
|
137
|
-
AgentMarkdownCodeBlock,
|
|
138
|
-
AgentToolMetadata,
|
|
135
|
+
makeAgentReference,
|
|
139
136
|
makeAgentApiGroup,
|
|
140
|
-
|
|
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
|
-
|
|
115
|
-
FileExtractionFailed,
|
|
116
|
-
FileExtractionService,
|
|
114
|
+
defaultFileExtractionOptions,
|
|
117
115
|
OutputFormat2 as OutputFormat,
|
|
118
|
-
|
|
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
|
-
|
|
13
|
-
|
|
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
|
-
|
|
177
|
-
HealthCheckData,
|
|
178
|
-
HealthCheckOutcome,
|
|
179
|
-
HealthCheckResult,
|
|
180
|
-
HealthDownResponse,
|
|
181
|
-
HealthResponse,
|
|
182
|
-
HealthService,
|
|
183
|
-
HealthStatus,
|
|
176
|
+
healthHandler,
|
|
184
177
|
HealthUpResponse,
|
|
185
|
-
|
|
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
|
}
|
|
@@ -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
|
-
|
|
1119
|
-
NotificationList,
|
|
1120
|
-
NotificationListItem,
|
|
1121
|
-
NotificationMenu,
|
|
1118
|
+
notificationMenuMessages,
|
|
1122
1119
|
NotificationMenuTrigger,
|
|
1123
|
-
|
|
1120
|
+
NotificationMenu,
|
|
1121
|
+
NotificationListItem,
|
|
1122
|
+
NotificationList,
|
|
1123
|
+
NotificationEmpty
|
|
1124
1124
|
};
|