@krak-stack/registry 0.1.27 → 0.1.28
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/dist/components/ui/data-table.js +238 -237
- package/dist/components/ui/effect-form.js +169 -170
- package/dist/components/ui/form.js +112 -113
- package/dist/components/ui/icon-input.js +40 -43
- package/dist/components/ui/pagination.js +2 -2
- package/dist/components/ui/sidebar-layout.js +66 -71
- package/dist/components/ui/theme-switcher.js +3 -3
- package/dist/components/ui/virtualized-combobox.js +31 -34
- package/dist/lib/docs.js +133 -138
- package/dist/lib/docs.server.js +23 -47
- package/dist/lib/documentation-toolkit.js +24 -48
- 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.d.ts +16 -6
- package/dist/lib/query.js +17 -8
- package/dist/lib/seo.js +2 -2
- package/dist/lib/webfetch-toolkit.js +6 -6
- package/dist/services/agent/client/index.js +127 -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.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.js +2 -2
- package/dist/services/notification/persistence/index.js +15 -15
- 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 +1 -1
|
@@ -132,10 +132,10 @@ var makeAgentApiGroup = (resource) => {
|
|
|
132
132
|
})));
|
|
133
133
|
};
|
|
134
134
|
export {
|
|
135
|
-
|
|
136
|
-
makeAgentApiGroup,
|
|
137
|
-
AgentToolMetadata,
|
|
138
|
-
AgentMarkdownCodeBlock,
|
|
135
|
+
AGENT_REFERENCE_LIMIT,
|
|
139
136
|
AgentEvent,
|
|
140
|
-
|
|
137
|
+
AgentMarkdownCodeBlock,
|
|
138
|
+
AgentToolMetadata,
|
|
139
|
+
makeAgentApiGroup,
|
|
140
|
+
makeAgentReference
|
|
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
|
-
OutputFormat2 as OutputFormat,
|
|
116
|
-
FileExtractionService,
|
|
114
|
+
FileExtractedTextSchema,
|
|
117
115
|
FileExtractionFailed,
|
|
118
|
-
|
|
116
|
+
FileExtractionService,
|
|
117
|
+
OutputFormat2 as OutputFormat,
|
|
118
|
+
defaultFileExtractionOptions
|
|
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
|
+
FileExtractedTextSchema,
|
|
13
|
+
FileExtractionFailed
|
|
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
|
-
HealthUpResponse,
|
|
178
|
-
HealthStatus,
|
|
179
|
-
HealthService,
|
|
180
|
-
HealthResponse,
|
|
181
|
-
HealthDownResponse,
|
|
182
|
-
HealthCheckResult,
|
|
183
|
-
HealthCheckOutcome,
|
|
176
|
+
HealthApiGroup,
|
|
184
177
|
HealthCheckData,
|
|
185
|
-
|
|
178
|
+
HealthCheckOutcome,
|
|
179
|
+
HealthCheckResult,
|
|
180
|
+
HealthDownResponse,
|
|
181
|
+
HealthResponse,
|
|
182
|
+
HealthService,
|
|
183
|
+
HealthStatus,
|
|
184
|
+
HealthUpResponse,
|
|
185
|
+
healthHandler
|
|
186
186
|
};
|
|
@@ -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
|
-
NotificationMenuTrigger,
|
|
1120
|
-
NotificationMenu,
|
|
1121
|
-
NotificationListItem,
|
|
1118
|
+
NotificationEmpty,
|
|
1122
1119
|
NotificationList,
|
|
1123
|
-
|
|
1120
|
+
NotificationListItem,
|
|
1121
|
+
NotificationMenu,
|
|
1122
|
+
NotificationMenuTrigger,
|
|
1123
|
+
notificationMenuMessages
|
|
1124
1124
|
};
|
|
@@ -208,7 +208,7 @@ var notificationDeliveries = pgTable("notification_deliveries", {
|
|
|
208
208
|
check("notification_deliveries_lease_check", sql`(${table.claimedBy} is null and ${table.leaseExpiresAt} is null) or (${table.claimedBy} is not null and ${table.leaseExpiresAt} is not null)`)
|
|
209
209
|
]);
|
|
210
210
|
export {
|
|
211
|
-
|
|
211
|
+
notificationDeliveries,
|
|
212
212
|
notificationSettings,
|
|
213
|
-
|
|
213
|
+
notifications
|
|
214
214
|
};
|
|
@@ -208,20 +208,20 @@ var notificationDeliveries = pgTable("notification_deliveries", {
|
|
|
208
208
|
check("notification_deliveries_lease_check", sql`(${table.claimedBy} is null and ${table.leaseExpiresAt} is null) or (${table.claimedBy} is not null and ${table.leaseExpiresAt} is not null)`)
|
|
209
209
|
]);
|
|
210
210
|
export {
|
|
211
|
-
|
|
212
|
-
notificationSettings,
|
|
213
|
-
notificationDeliveries,
|
|
214
|
-
decodeNotificationDeliveryPayload,
|
|
215
|
-
PersistedNotificationDeliveryPayload,
|
|
216
|
-
NotificationSettingSchema,
|
|
217
|
-
NotificationSettingId,
|
|
218
|
-
NotificationId,
|
|
219
|
-
NotificationDeliveryStatus,
|
|
220
|
-
NotificationDeliverySchema,
|
|
221
|
-
NotificationDeliveryPurpose,
|
|
222
|
-
NotificationDeliveryId,
|
|
223
|
-
NOTIFICATION_DELIVERY_STATUSES,
|
|
224
|
-
NOTIFICATION_DELIVERY_PURPOSES,
|
|
211
|
+
EmailDeliveryPayloadV1,
|
|
225
212
|
InboxNotificationSchema,
|
|
226
|
-
|
|
213
|
+
NOTIFICATION_DELIVERY_PURPOSES,
|
|
214
|
+
NOTIFICATION_DELIVERY_STATUSES,
|
|
215
|
+
NotificationDeliveryId,
|
|
216
|
+
NotificationDeliveryPurpose,
|
|
217
|
+
NotificationDeliverySchema,
|
|
218
|
+
NotificationDeliveryStatus,
|
|
219
|
+
NotificationId,
|
|
220
|
+
NotificationSettingId,
|
|
221
|
+
NotificationSettingSchema,
|
|
222
|
+
PersistedNotificationDeliveryPayload,
|
|
223
|
+
decodeNotificationDeliveryPayload,
|
|
224
|
+
notificationDeliveries,
|
|
225
|
+
notificationSettings,
|
|
226
|
+
notifications
|
|
227
227
|
};
|
|
@@ -102,17 +102,17 @@ var PersistedNotificationDeliveryPayload = Schema.Union([
|
|
|
102
102
|
]).annotate({ identifier: "PersistedNotificationDeliveryPayload" });
|
|
103
103
|
var decodeNotificationDeliveryPayload = Schema.decodeUnknownEffect(PersistedNotificationDeliveryPayload);
|
|
104
104
|
export {
|
|
105
|
-
|
|
106
|
-
PersistedNotificationDeliveryPayload,
|
|
107
|
-
NotificationSettingSchema,
|
|
108
|
-
NotificationSettingId,
|
|
109
|
-
NotificationId,
|
|
110
|
-
NotificationDeliveryStatus,
|
|
111
|
-
NotificationDeliverySchema,
|
|
112
|
-
NotificationDeliveryPurpose,
|
|
113
|
-
NotificationDeliveryId,
|
|
114
|
-
NOTIFICATION_DELIVERY_STATUSES,
|
|
115
|
-
NOTIFICATION_DELIVERY_PURPOSES,
|
|
105
|
+
EmailDeliveryPayloadV1,
|
|
116
106
|
InboxNotificationSchema,
|
|
117
|
-
|
|
107
|
+
NOTIFICATION_DELIVERY_PURPOSES,
|
|
108
|
+
NOTIFICATION_DELIVERY_STATUSES,
|
|
109
|
+
NotificationDeliveryId,
|
|
110
|
+
NotificationDeliveryPurpose,
|
|
111
|
+
NotificationDeliverySchema,
|
|
112
|
+
NotificationDeliveryStatus,
|
|
113
|
+
NotificationId,
|
|
114
|
+
NotificationSettingId,
|
|
115
|
+
NotificationSettingSchema,
|
|
116
|
+
PersistedNotificationDeliveryPayload,
|
|
117
|
+
decodeNotificationDeliveryPayload
|
|
118
118
|
};
|
|
@@ -1208,12 +1208,12 @@ var formatNotificationDate = (value, locale) => {
|
|
|
1208
1208
|
};
|
|
1209
1209
|
var notificationTitle = (notification) => Schema2.is(Schema2.String)(notification.title) ? notification.title : defaultMessages.en.notifications;
|
|
1210
1210
|
export {
|
|
1211
|
-
|
|
1212
|
-
NotificationService,
|
|
1213
|
-
NotificationPersistenceStore,
|
|
1214
|
-
NotificationMenuTrigger,
|
|
1215
|
-
NotificationMenu,
|
|
1216
|
-
NotificationListItem,
|
|
1211
|
+
NotificationEmpty,
|
|
1217
1212
|
NotificationList,
|
|
1218
|
-
|
|
1213
|
+
NotificationListItem,
|
|
1214
|
+
NotificationMenu,
|
|
1215
|
+
NotificationMenuTrigger,
|
|
1216
|
+
NotificationPersistenceStore,
|
|
1217
|
+
NotificationService,
|
|
1218
|
+
notificationMenuMessages
|
|
1219
1219
|
};
|