@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.
Files changed (37) hide show
  1. package/dist/components/ui/data-table.js +238 -237
  2. package/dist/components/ui/effect-form.js +169 -170
  3. package/dist/components/ui/form.js +112 -113
  4. package/dist/components/ui/icon-input.js +40 -43
  5. package/dist/components/ui/pagination.js +2 -2
  6. package/dist/components/ui/sidebar-layout.js +66 -71
  7. package/dist/components/ui/theme-switcher.js +3 -3
  8. package/dist/components/ui/virtualized-combobox.js +31 -34
  9. package/dist/lib/docs.js +133 -138
  10. package/dist/lib/docs.server.js +23 -47
  11. package/dist/lib/documentation-toolkit.js +24 -48
  12. package/dist/lib/httpapi-cli.js +7 -7
  13. package/dist/lib/httpapi-client.js +3 -3
  14. package/dist/lib/httpapi-helpers.js +11 -11
  15. package/dist/lib/httpapi-mcp.js +2 -2
  16. package/dist/lib/httpapi-toolkit.js +2 -2
  17. package/dist/lib/query.d.ts +16 -6
  18. package/dist/lib/query.js +17 -8
  19. package/dist/lib/seo.js +2 -2
  20. package/dist/lib/webfetch-toolkit.js +6 -6
  21. package/dist/services/agent/client/index.js +127 -128
  22. package/dist/services/agent/schema.js +5 -5
  23. package/dist/services/file-extraction/index.js +4 -4
  24. package/dist/services/file-extraction/schema.js +2 -2
  25. package/dist/services/health/index.js +9 -9
  26. package/dist/services/notification/channels/ses/index.js +2 -2
  27. package/dist/services/notification/channels/ses/schema.js +2 -2
  28. package/dist/services/notification/client/index.js +5 -5
  29. package/dist/services/notification/index.js +2 -2
  30. package/dist/services/notification/persistence/drizzle.js +2 -2
  31. package/dist/services/notification/persistence/index.js +15 -15
  32. package/dist/services/notification/persistence/schema.js +12 -12
  33. package/dist/services/notification/public.js +7 -7
  34. package/dist/services/notification/schema.js +2 -2
  35. package/dist/services/s3/index.js +2 -2
  36. package/dist/services/s3/schema.js +2 -2
  37. package/package.json +1 -1
@@ -132,10 +132,10 @@ var makeAgentApiGroup = (resource) => {
132
132
  })));
133
133
  };
134
134
  export {
135
- makeAgentReference,
136
- makeAgentApiGroup,
137
- AgentToolMetadata,
138
- AgentMarkdownCodeBlock,
135
+ AGENT_REFERENCE_LIMIT,
139
136
  AgentEvent,
140
- AGENT_REFERENCE_LIMIT
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
- defaultFileExtractionOptions,
115
- OutputFormat2 as OutputFormat,
116
- FileExtractionService,
114
+ FileExtractedTextSchema,
117
115
  FileExtractionFailed,
118
- FileExtractedTextSchema
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
- FileExtractionFailed,
13
- FileExtractedTextSchema
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
- healthHandler,
177
- HealthUpResponse,
178
- HealthStatus,
179
- HealthService,
180
- HealthResponse,
181
- HealthDownResponse,
182
- HealthCheckResult,
183
- HealthCheckOutcome,
176
+ HealthApiGroup,
184
177
  HealthCheckData,
185
- HealthApiGroup
178
+ HealthCheckOutcome,
179
+ HealthCheckResult,
180
+ HealthDownResponse,
181
+ HealthResponse,
182
+ HealthService,
183
+ HealthStatus,
184
+ HealthUpResponse,
185
+ healthHandler
186
186
  };
@@ -144,6 +144,6 @@ var buildDestination = (email) => {
144
144
  return destination;
145
145
  };
146
146
  export {
147
- SesNotificationConfig,
148
- SesNotificationChannel
147
+ SesNotificationChannel,
148
+ SesNotificationConfig
149
149
  };
@@ -30,6 +30,6 @@ var SesEmailNotification = Schema.Struct({
30
30
  ]
31
31
  });
32
32
  export {
33
- SesEmailNotification,
34
- SesEmailAddress
33
+ SesEmailAddress,
34
+ SesEmailNotification
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
- notificationMenuMessages,
1119
- NotificationMenuTrigger,
1120
- NotificationMenu,
1121
- NotificationListItem,
1118
+ NotificationEmpty,
1122
1119
  NotificationList,
1123
- NotificationEmpty
1120
+ NotificationListItem,
1121
+ NotificationMenu,
1122
+ NotificationMenuTrigger,
1123
+ notificationMenuMessages
1124
1124
  };
@@ -92,6 +92,6 @@ class NotificationService extends Context2.Service()("NotificationService", {
92
92
  ]);
93
93
  }
94
94
  export {
95
- NotificationService,
96
- NotificationPersistenceStore
95
+ NotificationPersistenceStore,
96
+ NotificationService
97
97
  };
@@ -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
- notifications,
211
+ notificationDeliveries,
212
212
  notificationSettings,
213
- notificationDeliveries
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
- notifications,
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
- EmailDeliveryPayloadV1
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
- decodeNotificationDeliveryPayload,
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
- EmailDeliveryPayloadV1
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
- notificationMenuMessages,
1212
- NotificationService,
1213
- NotificationPersistenceStore,
1214
- NotificationMenuTrigger,
1215
- NotificationMenu,
1216
- NotificationListItem,
1211
+ NotificationEmpty,
1217
1212
  NotificationList,
1218
- NotificationEmpty
1213
+ NotificationListItem,
1214
+ NotificationMenu,
1215
+ NotificationMenuTrigger,
1216
+ NotificationPersistenceStore,
1217
+ NotificationService,
1218
+ notificationMenuMessages
1219
1219
  };
@@ -25,6 +25,6 @@ class NotificationSendError extends Schema.TaggedError()("NotificationSendError"
25
25
  }) {
26
26
  }
27
27
  export {
28
- NotificationSendError,
29
- NotificationMessageSchema
28
+ NotificationMessageSchema,
29
+ NotificationSendError
30
30
  };
@@ -206,6 +206,6 @@ class S3Service extends Context.Service()("S3Service", {
206
206
  static testLayer = (service) => Layer.succeed(this, service);
207
207
  }
208
208
  export {
209
- S3ServiceConfig,
210
- S3Service
209
+ S3Service,
210
+ S3ServiceConfig
211
211
  };
@@ -31,7 +31,7 @@ class S3ServiceError extends Schema.TaggedError()("S3ServiceError", {
31
31
  }) {
32
32
  }
33
33
  export {
34
- S3ServiceError,
34
+ PresignUploadPayload,
35
35
  PresignedUpload,
36
- PresignUploadPayload
36
+ S3ServiceError
37
37
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@krak-stack/registry",
3
- "version": "0.1.27",
3
+ "version": "0.1.28",
4
4
  "description": "Tree-shakable KrakStack components and Effect services.",
5
5
  "license": "MIT",
6
6
  "repository": {