@remnawave/backend-contract 2.8.13 → 2.8.16

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 (29) hide show
  1. package/build/backend/commands/hosts/bulk/delete-many-hosts.command.d.ts +21 -14
  2. package/build/backend/commands/hosts/bulk/delete-many-hosts.command.d.ts.map +1 -1
  3. package/build/backend/commands/hosts/bulk/disable-many-hosts.command.d.ts +21 -14
  4. package/build/backend/commands/hosts/bulk/disable-many-hosts.command.d.ts.map +1 -1
  5. package/build/backend/commands/hosts/bulk/enable-many-hosts.command.d.ts +21 -14
  6. package/build/backend/commands/hosts/bulk/enable-many-hosts.command.d.ts.map +1 -1
  7. package/build/backend/commands/hosts/bulk/update-many-hosts.command.d.ts +31 -24
  8. package/build/backend/commands/hosts/bulk/update-many-hosts.command.d.ts.map +1 -1
  9. package/build/backend/commands/hosts/create.command.d.ts +30 -23
  10. package/build/backend/commands/hosts/create.command.d.ts.map +1 -1
  11. package/build/backend/commands/hosts/create.command.js +16 -16
  12. package/build/backend/commands/hosts/get-all.command.d.ts +21 -14
  13. package/build/backend/commands/hosts/get-all.command.d.ts.map +1 -1
  14. package/build/backend/commands/hosts/get-one.command.d.ts +21 -14
  15. package/build/backend/commands/hosts/get-one.command.d.ts.map +1 -1
  16. package/build/backend/commands/hosts/reorder.command.d.ts +11 -4
  17. package/build/backend/commands/hosts/reorder.command.d.ts.map +1 -1
  18. package/build/backend/commands/hosts/update.command.d.ts +43 -29
  19. package/build/backend/commands/hosts/update.command.d.ts.map +1 -1
  20. package/build/backend/commands/hosts/update.command.js +16 -16
  21. package/build/backend/constants/hosts/alpn.d.ts +1 -0
  22. package/build/backend/constants/hosts/alpn.d.ts.map +1 -1
  23. package/build/backend/models/hosts.schema.d.ts +16 -9
  24. package/build/backend/models/hosts.schema.d.ts.map +1 -1
  25. package/build/backend/models/hosts.schema.js +3 -3
  26. package/build/frontend/commands/hosts/create.command.js +16 -16
  27. package/build/frontend/commands/hosts/update.command.js +16 -16
  28. package/build/frontend/models/hosts.schema.js +3 -3
  29. package/package.json +1 -1
@@ -21,9 +21,16 @@ export declare namespace BulkDeleteHostsCommand {
21
21
  path: z.ZodNullable<z.ZodString>;
22
22
  sni: z.ZodNullable<z.ZodString>;
23
23
  host: z.ZodNullable<z.ZodString>;
24
- alpn: z.ZodNullable<z.ZodString>;
24
+ alpn: z.ZodNullable<z.ZodNativeEnum<{
25
+ readonly H3: "h3";
26
+ readonly H2: "h2";
27
+ readonly HTTP_1_1: "http/1.1";
28
+ readonly H_COMBINED: "h2,http/1.1";
29
+ readonly H3_H2_H1_COMBINED: "h3,h2,http/1.1";
30
+ readonly H3_H2_COMBINED: "h3,h2";
31
+ }>>;
25
32
  fingerprint: z.ZodNullable<z.ZodString>;
26
- isDisabled: z.ZodDefault<z.ZodBoolean>;
33
+ isDisabled: z.ZodBoolean;
27
34
  securityLayer: z.ZodDefault<z.ZodNativeEnum<{
28
35
  readonly DEFAULT: "DEFAULT";
29
36
  readonly TLS: "TLS";
@@ -63,14 +70,14 @@ export declare namespace BulkDeleteHostsCommand {
63
70
  nodes: z.ZodArray<z.ZodString, "many">;
64
71
  xrayJsonTemplateUuid: z.ZodNullable<z.ZodString>;
65
72
  excludedInternalSquads: z.ZodArray<z.ZodString, "many">;
66
- excludeFromSubscriptionTypes: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<{
73
+ excludeFromSubscriptionTypes: z.ZodArray<z.ZodNativeEnum<{
67
74
  readonly XRAY_JSON: "XRAY_JSON";
68
75
  readonly XRAY_BASE64: "XRAY_BASE64";
69
76
  readonly MIHOMO: "MIHOMO";
70
77
  readonly STASH: "STASH";
71
78
  readonly CLASH: "CLASH";
72
79
  readonly SINGBOX: "SINGBOX";
73
- }>, "many">>;
80
+ }>, "many">;
74
81
  }, "strip", z.ZodTypeAny, {
75
82
  nodes: string[];
76
83
  tags: string[];
@@ -82,7 +89,7 @@ export declare namespace BulkDeleteHostsCommand {
82
89
  address: string;
83
90
  sni: string | null;
84
91
  host: string | null;
85
- alpn: string | null;
92
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
86
93
  fingerprint: string | null;
87
94
  isDisabled: boolean;
88
95
  securityLayer: "DEFAULT" | "TLS" | "NONE";
@@ -102,11 +109,11 @@ export declare namespace BulkDeleteHostsCommand {
102
109
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
103
110
  xrayJsonTemplateUuid: string | null;
104
111
  excludedInternalSquads: string[];
112
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
105
113
  xHttpExtraParams?: unknown;
106
114
  muxParams?: unknown;
107
115
  sockoptParams?: unknown;
108
116
  finalMask?: unknown;
109
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
110
117
  }, {
111
118
  nodes: string[];
112
119
  path: string | null;
@@ -117,8 +124,9 @@ export declare namespace BulkDeleteHostsCommand {
117
124
  address: string;
118
125
  sni: string | null;
119
126
  host: string | null;
120
- alpn: string | null;
127
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
121
128
  fingerprint: string | null;
129
+ isDisabled: boolean;
122
130
  inbound: {
123
131
  configProfileUuid: string | null;
124
132
  configProfileInboundUuid: string | null;
@@ -132,8 +140,8 @@ export declare namespace BulkDeleteHostsCommand {
132
140
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
133
141
  xrayJsonTemplateUuid: string | null;
134
142
  excludedInternalSquads: string[];
143
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
135
144
  tags?: string[] | undefined;
136
- isDisabled?: boolean | undefined;
137
145
  securityLayer?: "DEFAULT" | "TLS" | "NONE" | undefined;
138
146
  xHttpExtraParams?: unknown;
139
147
  muxParams?: unknown;
@@ -142,7 +150,6 @@ export declare namespace BulkDeleteHostsCommand {
142
150
  isHidden?: boolean | undefined;
143
151
  overrideSniFromAddress?: boolean | undefined;
144
152
  keepSniBlank?: boolean | undefined;
145
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
146
153
  }>, "many">;
147
154
  }, "strip", z.ZodTypeAny, {
148
155
  response: {
@@ -156,7 +163,7 @@ export declare namespace BulkDeleteHostsCommand {
156
163
  address: string;
157
164
  sni: string | null;
158
165
  host: string | null;
159
- alpn: string | null;
166
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
160
167
  fingerprint: string | null;
161
168
  isDisabled: boolean;
162
169
  securityLayer: "DEFAULT" | "TLS" | "NONE";
@@ -176,11 +183,11 @@ export declare namespace BulkDeleteHostsCommand {
176
183
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
177
184
  xrayJsonTemplateUuid: string | null;
178
185
  excludedInternalSquads: string[];
186
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
179
187
  xHttpExtraParams?: unknown;
180
188
  muxParams?: unknown;
181
189
  sockoptParams?: unknown;
182
190
  finalMask?: unknown;
183
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
184
191
  }[];
185
192
  }, {
186
193
  response: {
@@ -193,8 +200,9 @@ export declare namespace BulkDeleteHostsCommand {
193
200
  address: string;
194
201
  sni: string | null;
195
202
  host: string | null;
196
- alpn: string | null;
203
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
197
204
  fingerprint: string | null;
205
+ isDisabled: boolean;
198
206
  inbound: {
199
207
  configProfileUuid: string | null;
200
208
  configProfileInboundUuid: string | null;
@@ -208,8 +216,8 @@ export declare namespace BulkDeleteHostsCommand {
208
216
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
209
217
  xrayJsonTemplateUuid: string | null;
210
218
  excludedInternalSquads: string[];
219
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
211
220
  tags?: string[] | undefined;
212
- isDisabled?: boolean | undefined;
213
221
  securityLayer?: "DEFAULT" | "TLS" | "NONE" | undefined;
214
222
  xHttpExtraParams?: unknown;
215
223
  muxParams?: unknown;
@@ -218,7 +226,6 @@ export declare namespace BulkDeleteHostsCommand {
218
226
  isHidden?: boolean | undefined;
219
227
  overrideSniFromAddress?: boolean | undefined;
220
228
  keepSniBlank?: boolean | undefined;
221
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
222
229
  }[];
223
230
  }>;
224
231
  type Response = z.infer<typeof ResponseSchema>;
@@ -1 +1 @@
1
- {"version":3,"file":"delete-many-hosts.command.d.ts","sourceRoot":"","sources":["../../../../../commands/hosts/bulk/delete-many-hosts.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,sBAAsB,CAAC;IAC7B,MAAM,GAAG,0BAAmC,CAAC;IAC7C,MAAM,OAAO,0BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"delete-many-hosts.command.d.ts","sourceRoot":"","sources":["../../../../../commands/hosts/bulk/delete-many-hosts.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,sBAAsB,CAAC;IAC7B,MAAM,GAAG,0BAAmC,CAAC;IAC7C,MAAM,OAAO,0BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -21,9 +21,16 @@ export declare namespace BulkDisableHostsCommand {
21
21
  path: z.ZodNullable<z.ZodString>;
22
22
  sni: z.ZodNullable<z.ZodString>;
23
23
  host: z.ZodNullable<z.ZodString>;
24
- alpn: z.ZodNullable<z.ZodString>;
24
+ alpn: z.ZodNullable<z.ZodNativeEnum<{
25
+ readonly H3: "h3";
26
+ readonly H2: "h2";
27
+ readonly HTTP_1_1: "http/1.1";
28
+ readonly H_COMBINED: "h2,http/1.1";
29
+ readonly H3_H2_H1_COMBINED: "h3,h2,http/1.1";
30
+ readonly H3_H2_COMBINED: "h3,h2";
31
+ }>>;
25
32
  fingerprint: z.ZodNullable<z.ZodString>;
26
- isDisabled: z.ZodDefault<z.ZodBoolean>;
33
+ isDisabled: z.ZodBoolean;
27
34
  securityLayer: z.ZodDefault<z.ZodNativeEnum<{
28
35
  readonly DEFAULT: "DEFAULT";
29
36
  readonly TLS: "TLS";
@@ -63,14 +70,14 @@ export declare namespace BulkDisableHostsCommand {
63
70
  nodes: z.ZodArray<z.ZodString, "many">;
64
71
  xrayJsonTemplateUuid: z.ZodNullable<z.ZodString>;
65
72
  excludedInternalSquads: z.ZodArray<z.ZodString, "many">;
66
- excludeFromSubscriptionTypes: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<{
73
+ excludeFromSubscriptionTypes: z.ZodArray<z.ZodNativeEnum<{
67
74
  readonly XRAY_JSON: "XRAY_JSON";
68
75
  readonly XRAY_BASE64: "XRAY_BASE64";
69
76
  readonly MIHOMO: "MIHOMO";
70
77
  readonly STASH: "STASH";
71
78
  readonly CLASH: "CLASH";
72
79
  readonly SINGBOX: "SINGBOX";
73
- }>, "many">>;
80
+ }>, "many">;
74
81
  }, "strip", z.ZodTypeAny, {
75
82
  nodes: string[];
76
83
  tags: string[];
@@ -82,7 +89,7 @@ export declare namespace BulkDisableHostsCommand {
82
89
  address: string;
83
90
  sni: string | null;
84
91
  host: string | null;
85
- alpn: string | null;
92
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
86
93
  fingerprint: string | null;
87
94
  isDisabled: boolean;
88
95
  securityLayer: "DEFAULT" | "TLS" | "NONE";
@@ -102,11 +109,11 @@ export declare namespace BulkDisableHostsCommand {
102
109
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
103
110
  xrayJsonTemplateUuid: string | null;
104
111
  excludedInternalSquads: string[];
112
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
105
113
  xHttpExtraParams?: unknown;
106
114
  muxParams?: unknown;
107
115
  sockoptParams?: unknown;
108
116
  finalMask?: unknown;
109
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
110
117
  }, {
111
118
  nodes: string[];
112
119
  path: string | null;
@@ -117,8 +124,9 @@ export declare namespace BulkDisableHostsCommand {
117
124
  address: string;
118
125
  sni: string | null;
119
126
  host: string | null;
120
- alpn: string | null;
127
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
121
128
  fingerprint: string | null;
129
+ isDisabled: boolean;
122
130
  inbound: {
123
131
  configProfileUuid: string | null;
124
132
  configProfileInboundUuid: string | null;
@@ -132,8 +140,8 @@ export declare namespace BulkDisableHostsCommand {
132
140
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
133
141
  xrayJsonTemplateUuid: string | null;
134
142
  excludedInternalSquads: string[];
143
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
135
144
  tags?: string[] | undefined;
136
- isDisabled?: boolean | undefined;
137
145
  securityLayer?: "DEFAULT" | "TLS" | "NONE" | undefined;
138
146
  xHttpExtraParams?: unknown;
139
147
  muxParams?: unknown;
@@ -142,7 +150,6 @@ export declare namespace BulkDisableHostsCommand {
142
150
  isHidden?: boolean | undefined;
143
151
  overrideSniFromAddress?: boolean | undefined;
144
152
  keepSniBlank?: boolean | undefined;
145
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
146
153
  }>, "many">;
147
154
  }, "strip", z.ZodTypeAny, {
148
155
  response: {
@@ -156,7 +163,7 @@ export declare namespace BulkDisableHostsCommand {
156
163
  address: string;
157
164
  sni: string | null;
158
165
  host: string | null;
159
- alpn: string | null;
166
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
160
167
  fingerprint: string | null;
161
168
  isDisabled: boolean;
162
169
  securityLayer: "DEFAULT" | "TLS" | "NONE";
@@ -176,11 +183,11 @@ export declare namespace BulkDisableHostsCommand {
176
183
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
177
184
  xrayJsonTemplateUuid: string | null;
178
185
  excludedInternalSquads: string[];
186
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
179
187
  xHttpExtraParams?: unknown;
180
188
  muxParams?: unknown;
181
189
  sockoptParams?: unknown;
182
190
  finalMask?: unknown;
183
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
184
191
  }[];
185
192
  }, {
186
193
  response: {
@@ -193,8 +200,9 @@ export declare namespace BulkDisableHostsCommand {
193
200
  address: string;
194
201
  sni: string | null;
195
202
  host: string | null;
196
- alpn: string | null;
203
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
197
204
  fingerprint: string | null;
205
+ isDisabled: boolean;
198
206
  inbound: {
199
207
  configProfileUuid: string | null;
200
208
  configProfileInboundUuid: string | null;
@@ -208,8 +216,8 @@ export declare namespace BulkDisableHostsCommand {
208
216
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
209
217
  xrayJsonTemplateUuid: string | null;
210
218
  excludedInternalSquads: string[];
219
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
211
220
  tags?: string[] | undefined;
212
- isDisabled?: boolean | undefined;
213
221
  securityLayer?: "DEFAULT" | "TLS" | "NONE" | undefined;
214
222
  xHttpExtraParams?: unknown;
215
223
  muxParams?: unknown;
@@ -218,7 +226,6 @@ export declare namespace BulkDisableHostsCommand {
218
226
  isHidden?: boolean | undefined;
219
227
  overrideSniFromAddress?: boolean | undefined;
220
228
  keepSniBlank?: boolean | undefined;
221
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
222
229
  }[];
223
230
  }>;
224
231
  type Response = z.infer<typeof ResponseSchema>;
@@ -1 +1 @@
1
- {"version":3,"file":"disable-many-hosts.command.d.ts","sourceRoot":"","sources":["../../../../../commands/hosts/bulk/disable-many-hosts.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,uBAAuB,CAAC;IAC9B,MAAM,GAAG,2BAAoC,CAAC;IAC9C,MAAM,OAAO,2BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"disable-many-hosts.command.d.ts","sourceRoot":"","sources":["../../../../../commands/hosts/bulk/disable-many-hosts.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,uBAAuB,CAAC;IAC9B,MAAM,GAAG,2BAAoC,CAAC;IAC9C,MAAM,OAAO,2BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -21,9 +21,16 @@ export declare namespace BulkEnableHostsCommand {
21
21
  path: z.ZodNullable<z.ZodString>;
22
22
  sni: z.ZodNullable<z.ZodString>;
23
23
  host: z.ZodNullable<z.ZodString>;
24
- alpn: z.ZodNullable<z.ZodString>;
24
+ alpn: z.ZodNullable<z.ZodNativeEnum<{
25
+ readonly H3: "h3";
26
+ readonly H2: "h2";
27
+ readonly HTTP_1_1: "http/1.1";
28
+ readonly H_COMBINED: "h2,http/1.1";
29
+ readonly H3_H2_H1_COMBINED: "h3,h2,http/1.1";
30
+ readonly H3_H2_COMBINED: "h3,h2";
31
+ }>>;
25
32
  fingerprint: z.ZodNullable<z.ZodString>;
26
- isDisabled: z.ZodDefault<z.ZodBoolean>;
33
+ isDisabled: z.ZodBoolean;
27
34
  securityLayer: z.ZodDefault<z.ZodNativeEnum<{
28
35
  readonly DEFAULT: "DEFAULT";
29
36
  readonly TLS: "TLS";
@@ -63,14 +70,14 @@ export declare namespace BulkEnableHostsCommand {
63
70
  nodes: z.ZodArray<z.ZodString, "many">;
64
71
  xrayJsonTemplateUuid: z.ZodNullable<z.ZodString>;
65
72
  excludedInternalSquads: z.ZodArray<z.ZodString, "many">;
66
- excludeFromSubscriptionTypes: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<{
73
+ excludeFromSubscriptionTypes: z.ZodArray<z.ZodNativeEnum<{
67
74
  readonly XRAY_JSON: "XRAY_JSON";
68
75
  readonly XRAY_BASE64: "XRAY_BASE64";
69
76
  readonly MIHOMO: "MIHOMO";
70
77
  readonly STASH: "STASH";
71
78
  readonly CLASH: "CLASH";
72
79
  readonly SINGBOX: "SINGBOX";
73
- }>, "many">>;
80
+ }>, "many">;
74
81
  }, "strip", z.ZodTypeAny, {
75
82
  nodes: string[];
76
83
  tags: string[];
@@ -82,7 +89,7 @@ export declare namespace BulkEnableHostsCommand {
82
89
  address: string;
83
90
  sni: string | null;
84
91
  host: string | null;
85
- alpn: string | null;
92
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
86
93
  fingerprint: string | null;
87
94
  isDisabled: boolean;
88
95
  securityLayer: "DEFAULT" | "TLS" | "NONE";
@@ -102,11 +109,11 @@ export declare namespace BulkEnableHostsCommand {
102
109
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
103
110
  xrayJsonTemplateUuid: string | null;
104
111
  excludedInternalSquads: string[];
112
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
105
113
  xHttpExtraParams?: unknown;
106
114
  muxParams?: unknown;
107
115
  sockoptParams?: unknown;
108
116
  finalMask?: unknown;
109
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
110
117
  }, {
111
118
  nodes: string[];
112
119
  path: string | null;
@@ -117,8 +124,9 @@ export declare namespace BulkEnableHostsCommand {
117
124
  address: string;
118
125
  sni: string | null;
119
126
  host: string | null;
120
- alpn: string | null;
127
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
121
128
  fingerprint: string | null;
129
+ isDisabled: boolean;
122
130
  inbound: {
123
131
  configProfileUuid: string | null;
124
132
  configProfileInboundUuid: string | null;
@@ -132,8 +140,8 @@ export declare namespace BulkEnableHostsCommand {
132
140
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
133
141
  xrayJsonTemplateUuid: string | null;
134
142
  excludedInternalSquads: string[];
143
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
135
144
  tags?: string[] | undefined;
136
- isDisabled?: boolean | undefined;
137
145
  securityLayer?: "DEFAULT" | "TLS" | "NONE" | undefined;
138
146
  xHttpExtraParams?: unknown;
139
147
  muxParams?: unknown;
@@ -142,7 +150,6 @@ export declare namespace BulkEnableHostsCommand {
142
150
  isHidden?: boolean | undefined;
143
151
  overrideSniFromAddress?: boolean | undefined;
144
152
  keepSniBlank?: boolean | undefined;
145
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
146
153
  }>, "many">;
147
154
  }, "strip", z.ZodTypeAny, {
148
155
  response: {
@@ -156,7 +163,7 @@ export declare namespace BulkEnableHostsCommand {
156
163
  address: string;
157
164
  sni: string | null;
158
165
  host: string | null;
159
- alpn: string | null;
166
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
160
167
  fingerprint: string | null;
161
168
  isDisabled: boolean;
162
169
  securityLayer: "DEFAULT" | "TLS" | "NONE";
@@ -176,11 +183,11 @@ export declare namespace BulkEnableHostsCommand {
176
183
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
177
184
  xrayJsonTemplateUuid: string | null;
178
185
  excludedInternalSquads: string[];
186
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
179
187
  xHttpExtraParams?: unknown;
180
188
  muxParams?: unknown;
181
189
  sockoptParams?: unknown;
182
190
  finalMask?: unknown;
183
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
184
191
  }[];
185
192
  }, {
186
193
  response: {
@@ -193,8 +200,9 @@ export declare namespace BulkEnableHostsCommand {
193
200
  address: string;
194
201
  sni: string | null;
195
202
  host: string | null;
196
- alpn: string | null;
203
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
197
204
  fingerprint: string | null;
205
+ isDisabled: boolean;
198
206
  inbound: {
199
207
  configProfileUuid: string | null;
200
208
  configProfileInboundUuid: string | null;
@@ -208,8 +216,8 @@ export declare namespace BulkEnableHostsCommand {
208
216
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
209
217
  xrayJsonTemplateUuid: string | null;
210
218
  excludedInternalSquads: string[];
219
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
211
220
  tags?: string[] | undefined;
212
- isDisabled?: boolean | undefined;
213
221
  securityLayer?: "DEFAULT" | "TLS" | "NONE" | undefined;
214
222
  xHttpExtraParams?: unknown;
215
223
  muxParams?: unknown;
@@ -218,7 +226,6 @@ export declare namespace BulkEnableHostsCommand {
218
226
  isHidden?: boolean | undefined;
219
227
  overrideSniFromAddress?: boolean | undefined;
220
228
  keepSniBlank?: boolean | undefined;
221
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
222
229
  }[];
223
230
  }>;
224
231
  type Response = z.infer<typeof ResponseSchema>;
@@ -1 +1 @@
1
- {"version":3,"file":"enable-many-hosts.command.d.ts","sourceRoot":"","sources":["../../../../../commands/hosts/bulk/enable-many-hosts.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,sBAAsB,CAAC;IAC7B,MAAM,GAAG,0BAAmC,CAAC;IAC7C,MAAM,OAAO,0BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"enable-many-hosts.command.d.ts","sourceRoot":"","sources":["../../../../../commands/hosts/bulk/enable-many-hosts.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,sBAAsB,CAAC;IAC7B,MAAM,GAAG,0BAAmC,CAAC;IAC7C,MAAM,OAAO,0BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -6,12 +6,12 @@ export declare namespace UpdateManyHostsCommand {
6
6
  const RequestSchema: z.ZodObject<{
7
7
  nodes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
8
8
  tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
9
- path: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9
+ path: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
10
10
  port: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
11
11
  remark: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12
12
  address: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13
- sni: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14
- host: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13
+ sni: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
14
+ host: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
15
15
  alpn: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<{
16
16
  readonly H3: "h3";
17
17
  readonly H2: "h2";
@@ -21,7 +21,7 @@ export declare namespace UpdateManyHostsCommand {
21
21
  readonly H3_H2_COMBINED: "h3,h2";
22
22
  }>>>>;
23
23
  fingerprint: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
24
- isDisabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
24
+ isDisabled: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
25
25
  securityLayer: z.ZodOptional<z.ZodOptional<z.ZodNativeEnum<{
26
26
  readonly DEFAULT: "DEFAULT";
27
27
  readonly TLS: "TLS";
@@ -73,12 +73,12 @@ export declare namespace UpdateManyHostsCommand {
73
73
  uuids: string[];
74
74
  nodes?: string[] | undefined;
75
75
  tags?: string[] | undefined;
76
- path?: string | undefined;
76
+ path?: string | null | undefined;
77
77
  port?: number | undefined;
78
78
  remark?: string | undefined;
79
79
  address?: string | undefined;
80
- sni?: string | undefined;
81
- host?: string | undefined;
80
+ sni?: string | null | undefined;
81
+ host?: string | null | undefined;
82
82
  alpn?: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null | undefined;
83
83
  fingerprint?: string | null | undefined;
84
84
  isDisabled?: boolean | undefined;
@@ -108,12 +108,12 @@ export declare namespace UpdateManyHostsCommand {
108
108
  uuids: string[];
109
109
  nodes?: string[] | undefined;
110
110
  tags?: string[] | undefined;
111
- path?: string | undefined;
111
+ path?: string | null | undefined;
112
112
  port?: number | undefined;
113
113
  remark?: string | undefined;
114
114
  address?: string | undefined;
115
- sni?: string | undefined;
116
- host?: string | undefined;
115
+ sni?: string | null | undefined;
116
+ host?: string | null | undefined;
117
117
  alpn?: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null | undefined;
118
118
  fingerprint?: string | null | undefined;
119
119
  isDisabled?: boolean | undefined;
@@ -151,9 +151,16 @@ export declare namespace UpdateManyHostsCommand {
151
151
  path: z.ZodNullable<z.ZodString>;
152
152
  sni: z.ZodNullable<z.ZodString>;
153
153
  host: z.ZodNullable<z.ZodString>;
154
- alpn: z.ZodNullable<z.ZodString>;
154
+ alpn: z.ZodNullable<z.ZodNativeEnum<{
155
+ readonly H3: "h3";
156
+ readonly H2: "h2";
157
+ readonly HTTP_1_1: "http/1.1";
158
+ readonly H_COMBINED: "h2,http/1.1";
159
+ readonly H3_H2_H1_COMBINED: "h3,h2,http/1.1";
160
+ readonly H3_H2_COMBINED: "h3,h2";
161
+ }>>;
155
162
  fingerprint: z.ZodNullable<z.ZodString>;
156
- isDisabled: z.ZodDefault<z.ZodBoolean>;
163
+ isDisabled: z.ZodBoolean;
157
164
  securityLayer: z.ZodDefault<z.ZodNativeEnum<{
158
165
  readonly DEFAULT: "DEFAULT";
159
166
  readonly TLS: "TLS";
@@ -193,14 +200,14 @@ export declare namespace UpdateManyHostsCommand {
193
200
  nodes: z.ZodArray<z.ZodString, "many">;
194
201
  xrayJsonTemplateUuid: z.ZodNullable<z.ZodString>;
195
202
  excludedInternalSquads: z.ZodArray<z.ZodString, "many">;
196
- excludeFromSubscriptionTypes: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<{
203
+ excludeFromSubscriptionTypes: z.ZodArray<z.ZodNativeEnum<{
197
204
  readonly XRAY_JSON: "XRAY_JSON";
198
205
  readonly XRAY_BASE64: "XRAY_BASE64";
199
206
  readonly MIHOMO: "MIHOMO";
200
207
  readonly STASH: "STASH";
201
208
  readonly CLASH: "CLASH";
202
209
  readonly SINGBOX: "SINGBOX";
203
- }>, "many">>;
210
+ }>, "many">;
204
211
  }, "strip", z.ZodTypeAny, {
205
212
  nodes: string[];
206
213
  tags: string[];
@@ -212,7 +219,7 @@ export declare namespace UpdateManyHostsCommand {
212
219
  address: string;
213
220
  sni: string | null;
214
221
  host: string | null;
215
- alpn: string | null;
222
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
216
223
  fingerprint: string | null;
217
224
  isDisabled: boolean;
218
225
  securityLayer: "DEFAULT" | "TLS" | "NONE";
@@ -232,11 +239,11 @@ export declare namespace UpdateManyHostsCommand {
232
239
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
233
240
  xrayJsonTemplateUuid: string | null;
234
241
  excludedInternalSquads: string[];
242
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
235
243
  xHttpExtraParams?: unknown;
236
244
  muxParams?: unknown;
237
245
  sockoptParams?: unknown;
238
246
  finalMask?: unknown;
239
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
240
247
  }, {
241
248
  nodes: string[];
242
249
  path: string | null;
@@ -247,8 +254,9 @@ export declare namespace UpdateManyHostsCommand {
247
254
  address: string;
248
255
  sni: string | null;
249
256
  host: string | null;
250
- alpn: string | null;
257
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
251
258
  fingerprint: string | null;
259
+ isDisabled: boolean;
252
260
  inbound: {
253
261
  configProfileUuid: string | null;
254
262
  configProfileInboundUuid: string | null;
@@ -262,8 +270,8 @@ export declare namespace UpdateManyHostsCommand {
262
270
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
263
271
  xrayJsonTemplateUuid: string | null;
264
272
  excludedInternalSquads: string[];
273
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
265
274
  tags?: string[] | undefined;
266
- isDisabled?: boolean | undefined;
267
275
  securityLayer?: "DEFAULT" | "TLS" | "NONE" | undefined;
268
276
  xHttpExtraParams?: unknown;
269
277
  muxParams?: unknown;
@@ -272,7 +280,6 @@ export declare namespace UpdateManyHostsCommand {
272
280
  isHidden?: boolean | undefined;
273
281
  overrideSniFromAddress?: boolean | undefined;
274
282
  keepSniBlank?: boolean | undefined;
275
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
276
283
  }>, "many">;
277
284
  }, "strip", z.ZodTypeAny, {
278
285
  response: {
@@ -286,7 +293,7 @@ export declare namespace UpdateManyHostsCommand {
286
293
  address: string;
287
294
  sni: string | null;
288
295
  host: string | null;
289
- alpn: string | null;
296
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
290
297
  fingerprint: string | null;
291
298
  isDisabled: boolean;
292
299
  securityLayer: "DEFAULT" | "TLS" | "NONE";
@@ -306,11 +313,11 @@ export declare namespace UpdateManyHostsCommand {
306
313
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
307
314
  xrayJsonTemplateUuid: string | null;
308
315
  excludedInternalSquads: string[];
316
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
309
317
  xHttpExtraParams?: unknown;
310
318
  muxParams?: unknown;
311
319
  sockoptParams?: unknown;
312
320
  finalMask?: unknown;
313
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
314
321
  }[];
315
322
  }, {
316
323
  response: {
@@ -323,8 +330,9 @@ export declare namespace UpdateManyHostsCommand {
323
330
  address: string;
324
331
  sni: string | null;
325
332
  host: string | null;
326
- alpn: string | null;
333
+ alpn: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null;
327
334
  fingerprint: string | null;
335
+ isDisabled: boolean;
328
336
  inbound: {
329
337
  configProfileUuid: string | null;
330
338
  configProfileInboundUuid: string | null;
@@ -338,8 +346,8 @@ export declare namespace UpdateManyHostsCommand {
338
346
  mihomoIpVersion: "dual" | "ipv4" | "ipv6" | "ipv4-prefer" | "ipv6-prefer" | null;
339
347
  xrayJsonTemplateUuid: string | null;
340
348
  excludedInternalSquads: string[];
349
+ excludeFromSubscriptionTypes: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[];
341
350
  tags?: string[] | undefined;
342
- isDisabled?: boolean | undefined;
343
351
  securityLayer?: "DEFAULT" | "TLS" | "NONE" | undefined;
344
352
  xHttpExtraParams?: unknown;
345
353
  muxParams?: unknown;
@@ -348,7 +356,6 @@ export declare namespace UpdateManyHostsCommand {
348
356
  isHidden?: boolean | undefined;
349
357
  overrideSniFromAddress?: boolean | undefined;
350
358
  keepSniBlank?: boolean | undefined;
351
- excludeFromSubscriptionTypes?: ("STASH" | "SINGBOX" | "MIHOMO" | "XRAY_JSON" | "CLASH" | "XRAY_BASE64")[] | undefined;
352
359
  }[];
353
360
  }>;
354
361
  type Response = z.infer<typeof ResponseSchema>;
@@ -1 +1 @@
1
- {"version":3,"file":"update-many-hosts.command.d.ts","sourceRoot":"","sources":["../../../../../commands/hosts/bulk/update-many-hosts.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,yBAAiB,sBAAsB,CAAC;IAC7B,MAAM,GAAG,0BAA6B,CAAC;IACvC,MAAM,OAAO,0BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAIpB,CAAC;IACP,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"update-many-hosts.command.d.ts","sourceRoot":"","sources":["../../../../../commands/hosts/bulk/update-many-hosts.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,yBAAiB,sBAAsB,CAAC;IAC7B,MAAM,GAAG,0BAA6B,CAAC;IACvC,MAAM,OAAO,0BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAIpB,CAAC;IACP,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}