feat: sync langpack and auth updates

Sync telesrv commits 49f9bab and 04d9563 into the public mirror. Exclude private docs and runtime key material per sync rules.
This commit is contained in:
A 2026-07-18 00:07:41 +08:00
parent 6af61f26ba
commit 1292540350
244 changed files with 1552172 additions and 27668 deletions

View file

@ -10,5 +10,8 @@ import (
type LangPackStore interface {
GetPack(ctx context.Context, langPack, langCode string, fromVersion int) (domain.LangPack, error)
GetStrings(ctx context.Context, langPack, langCode string, keys []string) (domain.LangPack, error)
ListLanguages(ctx context.Context, langPack string) ([]domain.LangPackLanguage, error)
GetSeedCatalog(ctx context.Context, catalog string) (domain.LangPackSeedCatalog, error)
ReconcileSeed(ctx context.Context, seed domain.LangPackSeed) (int, error)
UpsertPack(ctx context.Context, pack domain.LangPack) error
}