@remnawave/backend-contract 2.2.29 → 2.2.30
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.
| 
         @@ -23,11 +23,11 @@ exports.HostsSchema = zod_1.z.object({ 
     | 
|
| 
       23 
23 
     | 
    
         
             
                    configProfileUuid: zod_1.z.string().uuid().nullable(),
         
     | 
| 
       24 
24 
     | 
    
         
             
                    configProfileInboundUuid: zod_1.z.string().uuid().nullable(),
         
     | 
| 
       25 
25 
     | 
    
         
             
                }),
         
     | 
| 
       26 
     | 
    
         
            -
                serverDescription: zod_1.z.string().nullable(),
         
     | 
| 
      
 26 
     | 
    
         
            +
                serverDescription: zod_1.z.string().max(30).nullable(),
         
     | 
| 
       27 
27 
     | 
    
         
             
                tag: zod_1.z.string().nullable(),
         
     | 
| 
       28 
28 
     | 
    
         
             
                isHidden: zod_1.z.boolean().default(false),
         
     | 
| 
       29 
29 
     | 
    
         
             
                overrideSniFromAddress: zod_1.z.boolean().default(false),
         
     | 
| 
       30 
     | 
    
         
            -
                vlessRouteId: zod_1.z.number().int().nullable(),
         
     | 
| 
      
 30 
     | 
    
         
            +
                vlessRouteId: zod_1.z.number().int().min(0).max(65535).nullable(),
         
     | 
| 
       31 
31 
     | 
    
         
             
                allowInsecure: zod_1.z.boolean().default(false),
         
     | 
| 
       32 
32 
     | 
    
         
             
                shuffleHost: zod_1.z.boolean(),
         
     | 
| 
       33 
33 
     | 
    
         
             
                mihomoX25519: zod_1.z.boolean(),
         
     | 
| 
         @@ -23,11 +23,11 @@ exports.HostsSchema = zod_1.z.object({ 
     | 
|
| 
       23 
23 
     | 
    
         
             
                    configProfileUuid: zod_1.z.string().uuid().nullable(),
         
     | 
| 
       24 
24 
     | 
    
         
             
                    configProfileInboundUuid: zod_1.z.string().uuid().nullable(),
         
     | 
| 
       25 
25 
     | 
    
         
             
                }),
         
     | 
| 
       26 
     | 
    
         
            -
                serverDescription: zod_1.z.string().nullable(),
         
     | 
| 
      
 26 
     | 
    
         
            +
                serverDescription: zod_1.z.string().max(30).nullable(),
         
     | 
| 
       27 
27 
     | 
    
         
             
                tag: zod_1.z.string().nullable(),
         
     | 
| 
       28 
28 
     | 
    
         
             
                isHidden: zod_1.z.boolean().default(false),
         
     | 
| 
       29 
29 
     | 
    
         
             
                overrideSniFromAddress: zod_1.z.boolean().default(false),
         
     | 
| 
       30 
     | 
    
         
            -
                vlessRouteId: zod_1.z.number().int().nullable(),
         
     | 
| 
      
 30 
     | 
    
         
            +
                vlessRouteId: zod_1.z.number().int().min(0).max(65535).nullable(),
         
     | 
| 
       31 
31 
     | 
    
         
             
                allowInsecure: zod_1.z.boolean().default(false),
         
     | 
| 
       32 
32 
     | 
    
         
             
                shuffleHost: zod_1.z.boolean(),
         
     | 
| 
       33 
33 
     | 
    
         
             
                mihomoX25519: zod_1.z.boolean(),
         
     |