Merge branch 'dev'

This commit is contained in:
Owen 2025-10-07 15:08:32 -07:00
commit 4435d9a248
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
22 changed files with 232 additions and 2397 deletions

View file

@ -137,7 +137,8 @@ export const targets = sqliteTable("targets", {
path: text("path"),
pathMatchType: text("pathMatchType"), // exact, prefix, regex
rewritePath: text("rewritePath"), // if set, rewrites the path to this value before sending to the target
rewritePathType: text("rewritePathType") // exact, prefix, regex, stripPrefix
rewritePathType: text("rewritePathType"), // exact, prefix, regex, stripPrefix
priority: integer("priority").notNull().default(100)
});
export const targetHealthCheck = sqliteTable("targetHealthCheck", {