mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-05 12:44:22 +00:00
chore(generated): sync node types/zod with TLS verification fields (#4757)
Regenerated frontend types from the model.Node change in the previous commit (adds tlsVerifyMode and pinnedCertSha256).
This commit is contained in:
parent
56ec359041
commit
01d2ec5061
2 changed files with 4 additions and 0 deletions
|
|
@ -333,10 +333,12 @@ export interface Node {
|
||||||
name: string;
|
name: string;
|
||||||
onlineCount: number;
|
onlineCount: number;
|
||||||
panelVersion: string;
|
panelVersion: string;
|
||||||
|
pinnedCertSha256: string;
|
||||||
port: number;
|
port: number;
|
||||||
remark: string;
|
remark: string;
|
||||||
scheme: string;
|
scheme: string;
|
||||||
status: string;
|
status: string;
|
||||||
|
tlsVerifyMode: string;
|
||||||
updatedAt: number;
|
updatedAt: number;
|
||||||
uptimeSecs: number;
|
uptimeSecs: number;
|
||||||
xrayVersion: string;
|
xrayVersion: string;
|
||||||
|
|
|
||||||
|
|
@ -350,10 +350,12 @@ export const NodeSchema = z.object({
|
||||||
name: z.string(),
|
name: z.string(),
|
||||||
onlineCount: z.number().int(),
|
onlineCount: z.number().int(),
|
||||||
panelVersion: z.string(),
|
panelVersion: z.string(),
|
||||||
|
pinnedCertSha256: z.string(),
|
||||||
port: z.number().int().min(1).max(65535),
|
port: z.number().int().min(1).max(65535),
|
||||||
remark: z.string(),
|
remark: z.string(),
|
||||||
scheme: z.enum(['http', 'https']),
|
scheme: z.enum(['http', 'https']),
|
||||||
status: z.string(),
|
status: z.string(),
|
||||||
|
tlsVerifyMode: z.enum(['verify', 'skip', 'pin']),
|
||||||
updatedAt: z.number().int(),
|
updatedAt: z.number().int(),
|
||||||
uptimeSecs: z.number().int(),
|
uptimeSecs: z.number().int(),
|
||||||
xrayVersion: z.string(),
|
xrayVersion: z.string(),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue