@remnawave/backend-contract 2.1.3 → 2.1.5
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.
- package/build/backend/api/controllers/hosts.d.ts +3 -0
- package/build/backend/api/controllers/hosts.d.ts.map +1 -1
- package/build/backend/api/controllers/hosts.js +3 -0
- package/build/backend/api/routes.d.ts +3 -0
- package/build/backend/api/routes.d.ts.map +1 -1
- package/build/backend/api/routes.js +3 -0
- package/build/backend/commands/hosts/bulk/delete-many-hosts.command.d.ts +10 -0
- package/build/backend/commands/hosts/bulk/delete-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/bulk/disable-many-hosts.command.d.ts +10 -0
- package/build/backend/commands/hosts/bulk/disable-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/bulk/enable-many-hosts.command.d.ts +10 -0
- package/build/backend/commands/hosts/bulk/enable-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.d.ts +10 -0
- package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/bulk/set-port-to-many-hosts.command.d.ts +10 -0
- package/build/backend/commands/hosts/bulk/set-port-to-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/create.command.d.ts +16 -0
- package/build/backend/commands/hosts/create.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/create.command.js +8 -0
- package/build/backend/commands/hosts/get-all.command.d.ts +10 -0
- package/build/backend/commands/hosts/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/get-one.command.d.ts +10 -0
- package/build/backend/commands/hosts/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/index.d.ts +1 -0
- package/build/backend/commands/hosts/index.d.ts.map +1 -1
- package/build/backend/commands/hosts/index.js +1 -0
- package/build/backend/commands/hosts/reorder.command.d.ts +2 -0
- package/build/backend/commands/hosts/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/tags/get-all-host-tags.command.d.ts +25 -0
- package/build/backend/commands/hosts/tags/get-all-host-tags.command.d.ts.map +1 -0
- package/build/backend/commands/hosts/tags/get-all-host-tags.command.js +17 -0
- package/build/backend/commands/hosts/tags/index.d.ts +2 -0
- package/build/backend/commands/hosts/tags/index.d.ts.map +1 -0
- package/build/backend/commands/hosts/tags/index.js +17 -0
- package/build/backend/commands/hosts/update.command.d.ts +18 -0
- package/build/backend/commands/hosts/update.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/update.command.js +8 -0
- package/build/backend/commands/subscription/get-raw-subscription-by-short-uuid.command.d.ts +27 -9
- package/build/backend/commands/subscription/get-raw-subscription-by-short-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/subscription/get-raw-subscription-by-short-uuid.command.js +3 -1
- package/build/backend/constants/errors/errors.d.ts +5 -0
- package/build/backend/constants/errors/errors.d.ts.map +1 -1
- package/build/backend/constants/errors/errors.js +5 -0
- package/build/backend/models/hosts.schema.d.ts +6 -0
- package/build/backend/models/hosts.schema.d.ts.map +1 -1
- package/build/backend/models/hosts.schema.js +2 -0
- package/build/frontend/api/controllers/hosts.js +3 -0
- package/build/frontend/api/routes.js +3 -0
- package/build/frontend/commands/hosts/create.command.js +8 -0
- package/build/frontend/commands/hosts/index.js +1 -0
- package/build/frontend/commands/hosts/tags/get-all-host-tags.command.js +17 -0
- package/build/frontend/commands/hosts/tags/index.js +17 -0
- package/build/frontend/commands/hosts/update.command.js +8 -0
- package/build/frontend/commands/subscription/get-raw-subscription-by-short-uuid.command.js +3 -1
- package/build/frontend/constants/errors/errors.js +5 -0
- package/build/frontend/models/hosts.schema.js +2 -0
- package/package.json +1 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"hosts.d.ts","sourceRoot":"","sources":["../../../../api/controllers/hosts.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,EAAG,OAAgB,CAAC;AAEjD,eAAO,MAAM,kBAAkB,EAAG,SAAkB,CAAC;AAErD,eAAO,MAAM,YAAY;;;;iCAID,MAAM;4BACX,MAAM
|
1
|
+
{"version":3,"file":"hosts.d.ts","sourceRoot":"","sources":["../../../../api/controllers/hosts.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,EAAG,OAAgB,CAAC;AAEjD,eAAO,MAAM,kBAAkB,EAAG,SAAkB,CAAC;AAErD,eAAO,MAAM,YAAY;;;;iCAID,MAAM;4BACX,MAAM;;;;;;;;;;;;;;CAiBf,CAAC"}
|
@@ -102,6 +102,9 @@ export declare const REST_API: {
|
|
102
102
|
readonly SET_INBOUND: "/api/hosts/bulk/set-inbound";
|
103
103
|
readonly SET_PORT: "/api/hosts/bulk/set-port";
|
104
104
|
};
|
105
|
+
readonly TAGS: {
|
106
|
+
readonly GET: "/api/hosts/tags";
|
107
|
+
};
|
105
108
|
};
|
106
109
|
readonly SYSTEM: {
|
107
110
|
readonly HEALTH: "/api/system/health";
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../../../api/routes.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI,EAAG,MAAe,CAAC;AACpC,eAAO,MAAM,YAAY,EAAG,UAAmB,CAAC;AAChD,eAAO,MAAM,WAAW,EAAG,SAAkB,CAAC;AAC9C,eAAO,MAAM,cAAc,EAAG,SAAkB,CAAC;AAEjD,eAAO,MAAM,QAAQ;;;;;;;;;;;;;gCAcE,MAAM;;;;;;;;;qCAYD,MAAM;;gCAGX,MAAM;;oCAIF,MAAM;qCAIL,MAAM;qCAIN,MAAM;;;;;;iDAUM,MAAM;;;;;;;;gCAWvB,MAAM;qCAGD,MAAM;0CAED,MAAM;;qCAIX,MAAM;oCAIP,MAAM;2CAIC,MAAM;iDAIA,MAAM;;;6CAOV,MAAM;0CAIT,MAAM;2DAIW,MAAM;+CAIlB,MAAM;oCAIjB,MAAM;gCAIV,MAAM;;;;;;;;;;;;;;;gDAmBU,MAAM;;;;;;;kCAWpB,MAAM;0CAEE,MAAM;uCAET,MAAM;sCAIP,MAAM;;;;;;qCASP,MAAM;gCAEX,MAAM
|
1
|
+
{"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../../../api/routes.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI,EAAG,MAAe,CAAC;AACpC,eAAO,MAAM,YAAY,EAAG,UAAmB,CAAC;AAChD,eAAO,MAAM,WAAW,EAAG,SAAkB,CAAC;AAC9C,eAAO,MAAM,cAAc,EAAG,SAAkB,CAAC;AAEjD,eAAO,MAAM,QAAQ;;;;;;;;;;;;;gCAcE,MAAM;;;;;;;;;qCAYD,MAAM;;gCAGX,MAAM;;oCAIF,MAAM;qCAIL,MAAM;qCAIN,MAAM;;;;;;iDAUM,MAAM;;;;;;;;gCAWvB,MAAM;qCAGD,MAAM;0CAED,MAAM;;qCAIX,MAAM;oCAIP,MAAM;2CAIC,MAAM;iDAIA,MAAM;;;6CAOV,MAAM;0CAIT,MAAM;2DAIW,MAAM;+CAIlB,MAAM;oCAIjB,MAAM;gCAIV,MAAM;;;;;;;;;;;;;;;gDAmBU,MAAM;;;;;;;kCAWpB,MAAM;0CAEE,MAAM;uCAET,MAAM;sCAIP,MAAM;;;;;;qCASP,MAAM;gCAEX,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;qCA4BD,MAAM;;;;;;;;;mDAYQ,MAAM;;;;;;0CASf,MAAM;;;;;;;qCAUX,MAAM;gCAIX,MAAM;sDAIgB,MAAM;;;;;;;qCAUvB,MAAM;gCAIX,MAAM;;uCAMC,MAAM;0CAEH,MAAM;;;;;;;yCASP,MAAM;8CAED,MAAM;;;;6CAMP,MAAM;;;gDAKH,MAAM;;CAGnC,CAAC"}
|
@@ -139,6 +139,9 @@ exports.REST_API = {
|
|
139
139
|
SET_INBOUND: `${exports.ROOT}/${CONTROLLERS.HOSTS_CONTROLLER}/${CONTROLLERS.HOSTS_ROUTES.BULK.SET_INBOUND}`,
|
140
140
|
SET_PORT: `${exports.ROOT}/${CONTROLLERS.HOSTS_CONTROLLER}/${CONTROLLERS.HOSTS_ROUTES.BULK.SET_PORT}`,
|
141
141
|
},
|
142
|
+
TAGS: {
|
143
|
+
GET: `${exports.ROOT}/${CONTROLLERS.HOSTS_CONTROLLER}/${CONTROLLERS.HOSTS_ROUTES.TAGS.GET}`,
|
144
|
+
},
|
142
145
|
},
|
143
146
|
SYSTEM: {
|
144
147
|
HEALTH: `${exports.ROOT}/${CONTROLLERS.SYSTEM_CONTROLLER}/${CONTROLLERS.SYSTEM_ROUTES.HEALTH}`,
|
@@ -43,9 +43,12 @@ export declare namespace BulkDeleteHostsCommand {
|
|
43
43
|
configProfileInboundUuid: string | null;
|
44
44
|
}>;
|
45
45
|
serverDescription: z.ZodNullable<z.ZodString>;
|
46
|
+
tag: z.ZodNullable<z.ZodString>;
|
47
|
+
isHidden: z.ZodDefault<z.ZodBoolean>;
|
46
48
|
}, "strip", z.ZodTypeAny, {
|
47
49
|
path: string | null;
|
48
50
|
uuid: string;
|
51
|
+
tag: string | null;
|
49
52
|
port: number;
|
50
53
|
viewPosition: number;
|
51
54
|
remark: string;
|
@@ -61,12 +64,14 @@ export declare namespace BulkDeleteHostsCommand {
|
|
61
64
|
configProfileInboundUuid: string | null;
|
62
65
|
};
|
63
66
|
serverDescription: string | null;
|
67
|
+
isHidden: boolean;
|
64
68
|
xHttpExtraParams?: unknown;
|
65
69
|
muxParams?: unknown;
|
66
70
|
sockoptParams?: unknown;
|
67
71
|
}, {
|
68
72
|
path: string | null;
|
69
73
|
uuid: string;
|
74
|
+
tag: string | null;
|
70
75
|
port: number;
|
71
76
|
viewPosition: number;
|
72
77
|
remark: string;
|
@@ -85,11 +90,13 @@ export declare namespace BulkDeleteHostsCommand {
|
|
85
90
|
xHttpExtraParams?: unknown;
|
86
91
|
muxParams?: unknown;
|
87
92
|
sockoptParams?: unknown;
|
93
|
+
isHidden?: boolean | undefined;
|
88
94
|
}>, "many">;
|
89
95
|
}, "strip", z.ZodTypeAny, {
|
90
96
|
response: {
|
91
97
|
path: string | null;
|
92
98
|
uuid: string;
|
99
|
+
tag: string | null;
|
93
100
|
port: number;
|
94
101
|
viewPosition: number;
|
95
102
|
remark: string;
|
@@ -105,6 +112,7 @@ export declare namespace BulkDeleteHostsCommand {
|
|
105
112
|
configProfileInboundUuid: string | null;
|
106
113
|
};
|
107
114
|
serverDescription: string | null;
|
115
|
+
isHidden: boolean;
|
108
116
|
xHttpExtraParams?: unknown;
|
109
117
|
muxParams?: unknown;
|
110
118
|
sockoptParams?: unknown;
|
@@ -113,6 +121,7 @@ export declare namespace BulkDeleteHostsCommand {
|
|
113
121
|
response: {
|
114
122
|
path: string | null;
|
115
123
|
uuid: string;
|
124
|
+
tag: string | null;
|
116
125
|
port: number;
|
117
126
|
viewPosition: number;
|
118
127
|
remark: string;
|
@@ -131,6 +140,7 @@ export declare namespace BulkDeleteHostsCommand {
|
|
131
140
|
xHttpExtraParams?: unknown;
|
132
141
|
muxParams?: unknown;
|
133
142
|
sockoptParams?: unknown;
|
143
|
+
isHidden?: boolean | undefined;
|
134
144
|
}[];
|
135
145
|
}>;
|
136
146
|
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
|
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"}
|
@@ -43,9 +43,12 @@ export declare namespace BulkDisableHostsCommand {
|
|
43
43
|
configProfileInboundUuid: string | null;
|
44
44
|
}>;
|
45
45
|
serverDescription: z.ZodNullable<z.ZodString>;
|
46
|
+
tag: z.ZodNullable<z.ZodString>;
|
47
|
+
isHidden: z.ZodDefault<z.ZodBoolean>;
|
46
48
|
}, "strip", z.ZodTypeAny, {
|
47
49
|
path: string | null;
|
48
50
|
uuid: string;
|
51
|
+
tag: string | null;
|
49
52
|
port: number;
|
50
53
|
viewPosition: number;
|
51
54
|
remark: string;
|
@@ -61,12 +64,14 @@ export declare namespace BulkDisableHostsCommand {
|
|
61
64
|
configProfileInboundUuid: string | null;
|
62
65
|
};
|
63
66
|
serverDescription: string | null;
|
67
|
+
isHidden: boolean;
|
64
68
|
xHttpExtraParams?: unknown;
|
65
69
|
muxParams?: unknown;
|
66
70
|
sockoptParams?: unknown;
|
67
71
|
}, {
|
68
72
|
path: string | null;
|
69
73
|
uuid: string;
|
74
|
+
tag: string | null;
|
70
75
|
port: number;
|
71
76
|
viewPosition: number;
|
72
77
|
remark: string;
|
@@ -85,11 +90,13 @@ export declare namespace BulkDisableHostsCommand {
|
|
85
90
|
xHttpExtraParams?: unknown;
|
86
91
|
muxParams?: unknown;
|
87
92
|
sockoptParams?: unknown;
|
93
|
+
isHidden?: boolean | undefined;
|
88
94
|
}>, "many">;
|
89
95
|
}, "strip", z.ZodTypeAny, {
|
90
96
|
response: {
|
91
97
|
path: string | null;
|
92
98
|
uuid: string;
|
99
|
+
tag: string | null;
|
93
100
|
port: number;
|
94
101
|
viewPosition: number;
|
95
102
|
remark: string;
|
@@ -105,6 +112,7 @@ export declare namespace BulkDisableHostsCommand {
|
|
105
112
|
configProfileInboundUuid: string | null;
|
106
113
|
};
|
107
114
|
serverDescription: string | null;
|
115
|
+
isHidden: boolean;
|
108
116
|
xHttpExtraParams?: unknown;
|
109
117
|
muxParams?: unknown;
|
110
118
|
sockoptParams?: unknown;
|
@@ -113,6 +121,7 @@ export declare namespace BulkDisableHostsCommand {
|
|
113
121
|
response: {
|
114
122
|
path: string | null;
|
115
123
|
uuid: string;
|
124
|
+
tag: string | null;
|
116
125
|
port: number;
|
117
126
|
viewPosition: number;
|
118
127
|
remark: string;
|
@@ -131,6 +140,7 @@ export declare namespace BulkDisableHostsCommand {
|
|
131
140
|
xHttpExtraParams?: unknown;
|
132
141
|
muxParams?: unknown;
|
133
142
|
sockoptParams?: unknown;
|
143
|
+
isHidden?: boolean | undefined;
|
134
144
|
}[];
|
135
145
|
}>;
|
136
146
|
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
|
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"}
|
@@ -43,9 +43,12 @@ export declare namespace BulkEnableHostsCommand {
|
|
43
43
|
configProfileInboundUuid: string | null;
|
44
44
|
}>;
|
45
45
|
serverDescription: z.ZodNullable<z.ZodString>;
|
46
|
+
tag: z.ZodNullable<z.ZodString>;
|
47
|
+
isHidden: z.ZodDefault<z.ZodBoolean>;
|
46
48
|
}, "strip", z.ZodTypeAny, {
|
47
49
|
path: string | null;
|
48
50
|
uuid: string;
|
51
|
+
tag: string | null;
|
49
52
|
port: number;
|
50
53
|
viewPosition: number;
|
51
54
|
remark: string;
|
@@ -61,12 +64,14 @@ export declare namespace BulkEnableHostsCommand {
|
|
61
64
|
configProfileInboundUuid: string | null;
|
62
65
|
};
|
63
66
|
serverDescription: string | null;
|
67
|
+
isHidden: boolean;
|
64
68
|
xHttpExtraParams?: unknown;
|
65
69
|
muxParams?: unknown;
|
66
70
|
sockoptParams?: unknown;
|
67
71
|
}, {
|
68
72
|
path: string | null;
|
69
73
|
uuid: string;
|
74
|
+
tag: string | null;
|
70
75
|
port: number;
|
71
76
|
viewPosition: number;
|
72
77
|
remark: string;
|
@@ -85,11 +90,13 @@ export declare namespace BulkEnableHostsCommand {
|
|
85
90
|
xHttpExtraParams?: unknown;
|
86
91
|
muxParams?: unknown;
|
87
92
|
sockoptParams?: unknown;
|
93
|
+
isHidden?: boolean | undefined;
|
88
94
|
}>, "many">;
|
89
95
|
}, "strip", z.ZodTypeAny, {
|
90
96
|
response: {
|
91
97
|
path: string | null;
|
92
98
|
uuid: string;
|
99
|
+
tag: string | null;
|
93
100
|
port: number;
|
94
101
|
viewPosition: number;
|
95
102
|
remark: string;
|
@@ -105,6 +112,7 @@ export declare namespace BulkEnableHostsCommand {
|
|
105
112
|
configProfileInboundUuid: string | null;
|
106
113
|
};
|
107
114
|
serverDescription: string | null;
|
115
|
+
isHidden: boolean;
|
108
116
|
xHttpExtraParams?: unknown;
|
109
117
|
muxParams?: unknown;
|
110
118
|
sockoptParams?: unknown;
|
@@ -113,6 +121,7 @@ export declare namespace BulkEnableHostsCommand {
|
|
113
121
|
response: {
|
114
122
|
path: string | null;
|
115
123
|
uuid: string;
|
124
|
+
tag: string | null;
|
116
125
|
port: number;
|
117
126
|
viewPosition: number;
|
118
127
|
remark: string;
|
@@ -131,6 +140,7 @@ export declare namespace BulkEnableHostsCommand {
|
|
131
140
|
xHttpExtraParams?: unknown;
|
132
141
|
muxParams?: unknown;
|
133
142
|
sockoptParams?: unknown;
|
143
|
+
isHidden?: boolean | undefined;
|
134
144
|
}[];
|
135
145
|
}>;
|
136
146
|
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
|
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"}
|
@@ -49,9 +49,12 @@ export declare namespace SetInboundToManyHostsCommand {
|
|
49
49
|
configProfileInboundUuid: string | null;
|
50
50
|
}>;
|
51
51
|
serverDescription: z.ZodNullable<z.ZodString>;
|
52
|
+
tag: z.ZodNullable<z.ZodString>;
|
53
|
+
isHidden: z.ZodDefault<z.ZodBoolean>;
|
52
54
|
}, "strip", z.ZodTypeAny, {
|
53
55
|
path: string | null;
|
54
56
|
uuid: string;
|
57
|
+
tag: string | null;
|
55
58
|
port: number;
|
56
59
|
viewPosition: number;
|
57
60
|
remark: string;
|
@@ -67,12 +70,14 @@ export declare namespace SetInboundToManyHostsCommand {
|
|
67
70
|
configProfileInboundUuid: string | null;
|
68
71
|
};
|
69
72
|
serverDescription: string | null;
|
73
|
+
isHidden: boolean;
|
70
74
|
xHttpExtraParams?: unknown;
|
71
75
|
muxParams?: unknown;
|
72
76
|
sockoptParams?: unknown;
|
73
77
|
}, {
|
74
78
|
path: string | null;
|
75
79
|
uuid: string;
|
80
|
+
tag: string | null;
|
76
81
|
port: number;
|
77
82
|
viewPosition: number;
|
78
83
|
remark: string;
|
@@ -91,11 +96,13 @@ export declare namespace SetInboundToManyHostsCommand {
|
|
91
96
|
xHttpExtraParams?: unknown;
|
92
97
|
muxParams?: unknown;
|
93
98
|
sockoptParams?: unknown;
|
99
|
+
isHidden?: boolean | undefined;
|
94
100
|
}>, "many">;
|
95
101
|
}, "strip", z.ZodTypeAny, {
|
96
102
|
response: {
|
97
103
|
path: string | null;
|
98
104
|
uuid: string;
|
105
|
+
tag: string | null;
|
99
106
|
port: number;
|
100
107
|
viewPosition: number;
|
101
108
|
remark: string;
|
@@ -111,6 +118,7 @@ export declare namespace SetInboundToManyHostsCommand {
|
|
111
118
|
configProfileInboundUuid: string | null;
|
112
119
|
};
|
113
120
|
serverDescription: string | null;
|
121
|
+
isHidden: boolean;
|
114
122
|
xHttpExtraParams?: unknown;
|
115
123
|
muxParams?: unknown;
|
116
124
|
sockoptParams?: unknown;
|
@@ -119,6 +127,7 @@ export declare namespace SetInboundToManyHostsCommand {
|
|
119
127
|
response: {
|
120
128
|
path: string | null;
|
121
129
|
uuid: string;
|
130
|
+
tag: string | null;
|
122
131
|
port: number;
|
123
132
|
viewPosition: number;
|
124
133
|
remark: string;
|
@@ -137,6 +146,7 @@ export declare namespace SetInboundToManyHostsCommand {
|
|
137
146
|
xHttpExtraParams?: unknown;
|
138
147
|
muxParams?: unknown;
|
139
148
|
sockoptParams?: unknown;
|
149
|
+
isHidden?: boolean | undefined;
|
140
150
|
}[];
|
141
151
|
}>;
|
142
152
|
type Response = z.infer<typeof ResponseSchema>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"set-inbound-to-many-hosts.command.d.ts","sourceRoot":"","sources":["../../../../../commands/hosts/bulk/set-inbound-to-many-hosts.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,4BAA4B,CAAC;IACnC,MAAM,GAAG,+BAAkC,CAAC;IAC5C,MAAM,OAAO,+BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;MAIxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"set-inbound-to-many-hosts.command.d.ts","sourceRoot":"","sources":["../../../../../commands/hosts/bulk/set-inbound-to-many-hosts.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,4BAA4B,CAAC;IACnC,MAAM,GAAG,+BAAkC,CAAC;IAC5C,MAAM,OAAO,+BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;MAIxB,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"}
|
@@ -46,9 +46,12 @@ export declare namespace SetPortToManyHostsCommand {
|
|
46
46
|
configProfileInboundUuid: string | null;
|
47
47
|
}>;
|
48
48
|
serverDescription: z.ZodNullable<z.ZodString>;
|
49
|
+
tag: z.ZodNullable<z.ZodString>;
|
50
|
+
isHidden: z.ZodDefault<z.ZodBoolean>;
|
49
51
|
}, "strip", z.ZodTypeAny, {
|
50
52
|
path: string | null;
|
51
53
|
uuid: string;
|
54
|
+
tag: string | null;
|
52
55
|
port: number;
|
53
56
|
viewPosition: number;
|
54
57
|
remark: string;
|
@@ -64,12 +67,14 @@ export declare namespace SetPortToManyHostsCommand {
|
|
64
67
|
configProfileInboundUuid: string | null;
|
65
68
|
};
|
66
69
|
serverDescription: string | null;
|
70
|
+
isHidden: boolean;
|
67
71
|
xHttpExtraParams?: unknown;
|
68
72
|
muxParams?: unknown;
|
69
73
|
sockoptParams?: unknown;
|
70
74
|
}, {
|
71
75
|
path: string | null;
|
72
76
|
uuid: string;
|
77
|
+
tag: string | null;
|
73
78
|
port: number;
|
74
79
|
viewPosition: number;
|
75
80
|
remark: string;
|
@@ -88,11 +93,13 @@ export declare namespace SetPortToManyHostsCommand {
|
|
88
93
|
xHttpExtraParams?: unknown;
|
89
94
|
muxParams?: unknown;
|
90
95
|
sockoptParams?: unknown;
|
96
|
+
isHidden?: boolean | undefined;
|
91
97
|
}>, "many">;
|
92
98
|
}, "strip", z.ZodTypeAny, {
|
93
99
|
response: {
|
94
100
|
path: string | null;
|
95
101
|
uuid: string;
|
102
|
+
tag: string | null;
|
96
103
|
port: number;
|
97
104
|
viewPosition: number;
|
98
105
|
remark: string;
|
@@ -108,6 +115,7 @@ export declare namespace SetPortToManyHostsCommand {
|
|
108
115
|
configProfileInboundUuid: string | null;
|
109
116
|
};
|
110
117
|
serverDescription: string | null;
|
118
|
+
isHidden: boolean;
|
111
119
|
xHttpExtraParams?: unknown;
|
112
120
|
muxParams?: unknown;
|
113
121
|
sockoptParams?: unknown;
|
@@ -116,6 +124,7 @@ export declare namespace SetPortToManyHostsCommand {
|
|
116
124
|
response: {
|
117
125
|
path: string | null;
|
118
126
|
uuid: string;
|
127
|
+
tag: string | null;
|
119
128
|
port: number;
|
120
129
|
viewPosition: number;
|
121
130
|
remark: string;
|
@@ -134,6 +143,7 @@ export declare namespace SetPortToManyHostsCommand {
|
|
134
143
|
xHttpExtraParams?: unknown;
|
135
144
|
muxParams?: unknown;
|
136
145
|
sockoptParams?: unknown;
|
146
|
+
isHidden?: boolean | undefined;
|
137
147
|
}[];
|
138
148
|
}>;
|
139
149
|
type Response = z.infer<typeof ResponseSchema>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"set-port-to-many-hosts.command.d.ts","sourceRoot":"","sources":["../../../../../commands/hosts/bulk/set-port-to-many-hosts.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,yBAAyB,CAAC;IAChC,MAAM,GAAG,4BAA+B,CAAC;IACzC,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;MAGxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"set-port-to-many-hosts.command.d.ts","sourceRoot":"","sources":["../../../../../commands/hosts/bulk/set-port-to-many-hosts.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,yBAAyB,CAAC;IAChC,MAAM,GAAG,4BAA+B,CAAC;IACzC,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;MAGxB,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"}
|
@@ -49,6 +49,8 @@ export declare namespace CreateHostCommand {
|
|
49
49
|
muxParams: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
|
50
50
|
sockoptParams: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
|
51
51
|
serverDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
52
|
+
tag: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
53
|
+
isHidden: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
52
54
|
}, "strip", z.ZodTypeAny, {
|
53
55
|
port: number;
|
54
56
|
remark: string;
|
@@ -58,6 +60,7 @@ export declare namespace CreateHostCommand {
|
|
58
60
|
configProfileInboundUuid: string;
|
59
61
|
};
|
60
62
|
path?: string | undefined;
|
63
|
+
tag?: string | null | undefined;
|
61
64
|
sni?: string | undefined;
|
62
65
|
host?: string | undefined;
|
63
66
|
alpn?: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null | undefined;
|
@@ -68,6 +71,7 @@ export declare namespace CreateHostCommand {
|
|
68
71
|
muxParams?: unknown;
|
69
72
|
sockoptParams?: unknown;
|
70
73
|
serverDescription?: string | null | undefined;
|
74
|
+
isHidden?: boolean | undefined;
|
71
75
|
}, {
|
72
76
|
port: number;
|
73
77
|
remark: string;
|
@@ -77,6 +81,7 @@ export declare namespace CreateHostCommand {
|
|
77
81
|
configProfileInboundUuid: string;
|
78
82
|
};
|
79
83
|
path?: string | undefined;
|
84
|
+
tag?: string | null | undefined;
|
80
85
|
sni?: string | undefined;
|
81
86
|
host?: string | undefined;
|
82
87
|
alpn?: "h3" | "h2" | "http/1.1" | "h2,http/1.1" | "h3,h2,http/1.1" | "h3,h2" | null | undefined;
|
@@ -87,6 +92,7 @@ export declare namespace CreateHostCommand {
|
|
87
92
|
muxParams?: unknown;
|
88
93
|
sockoptParams?: unknown;
|
89
94
|
serverDescription?: string | null | undefined;
|
95
|
+
isHidden?: boolean | undefined;
|
90
96
|
}>;
|
91
97
|
type Request = z.infer<typeof RequestSchema>;
|
92
98
|
const ResponseSchema: z.ZodObject<{
|
@@ -121,9 +127,12 @@ export declare namespace CreateHostCommand {
|
|
121
127
|
configProfileInboundUuid: string | null;
|
122
128
|
}>;
|
123
129
|
serverDescription: z.ZodNullable<z.ZodString>;
|
130
|
+
tag: z.ZodNullable<z.ZodString>;
|
131
|
+
isHidden: z.ZodDefault<z.ZodBoolean>;
|
124
132
|
}, "strip", z.ZodTypeAny, {
|
125
133
|
path: string | null;
|
126
134
|
uuid: string;
|
135
|
+
tag: string | null;
|
127
136
|
port: number;
|
128
137
|
viewPosition: number;
|
129
138
|
remark: string;
|
@@ -139,12 +148,14 @@ export declare namespace CreateHostCommand {
|
|
139
148
|
configProfileInboundUuid: string | null;
|
140
149
|
};
|
141
150
|
serverDescription: string | null;
|
151
|
+
isHidden: boolean;
|
142
152
|
xHttpExtraParams?: unknown;
|
143
153
|
muxParams?: unknown;
|
144
154
|
sockoptParams?: unknown;
|
145
155
|
}, {
|
146
156
|
path: string | null;
|
147
157
|
uuid: string;
|
158
|
+
tag: string | null;
|
148
159
|
port: number;
|
149
160
|
viewPosition: number;
|
150
161
|
remark: string;
|
@@ -163,11 +174,13 @@ export declare namespace CreateHostCommand {
|
|
163
174
|
xHttpExtraParams?: unknown;
|
164
175
|
muxParams?: unknown;
|
165
176
|
sockoptParams?: unknown;
|
177
|
+
isHidden?: boolean | undefined;
|
166
178
|
}>;
|
167
179
|
}, "strip", z.ZodTypeAny, {
|
168
180
|
response: {
|
169
181
|
path: string | null;
|
170
182
|
uuid: string;
|
183
|
+
tag: string | null;
|
171
184
|
port: number;
|
172
185
|
viewPosition: number;
|
173
186
|
remark: string;
|
@@ -183,6 +196,7 @@ export declare namespace CreateHostCommand {
|
|
183
196
|
configProfileInboundUuid: string | null;
|
184
197
|
};
|
185
198
|
serverDescription: string | null;
|
199
|
+
isHidden: boolean;
|
186
200
|
xHttpExtraParams?: unknown;
|
187
201
|
muxParams?: unknown;
|
188
202
|
sockoptParams?: unknown;
|
@@ -191,6 +205,7 @@ export declare namespace CreateHostCommand {
|
|
191
205
|
response: {
|
192
206
|
path: string | null;
|
193
207
|
uuid: string;
|
208
|
+
tag: string | null;
|
194
209
|
port: number;
|
195
210
|
viewPosition: number;
|
196
211
|
remark: string;
|
@@ -209,6 +224,7 @@ export declare namespace CreateHostCommand {
|
|
209
224
|
xHttpExtraParams?: unknown;
|
210
225
|
muxParams?: unknown;
|
211
226
|
sockoptParams?: unknown;
|
227
|
+
isHidden?: boolean | undefined;
|
212
228
|
};
|
213
229
|
}>;
|
214
230
|
type Response = z.infer<typeof ResponseSchema>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"create.command.d.ts","sourceRoot":"","sources":["../../../../commands/hosts/create.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa
|
1
|
+
{"version":3,"file":"create.command.d.ts","sourceRoot":"","sources":["../../../../commands/hosts/create.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAyDxB,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"}
|
@@ -49,6 +49,14 @@ var CreateHostCommand;
|
|
49
49
|
message: 'Server description must be less than 30 characters',
|
50
50
|
})
|
51
51
|
.nullable()),
|
52
|
+
tag: zod_1.z
|
53
|
+
.optional(zod_1.z
|
54
|
+
.string()
|
55
|
+
.regex(/^[A-Z0-9_]+$/, 'Tag can only contain uppercase letters, numbers, underscores')
|
56
|
+
.max(16, 'Tag must be less than 16 characters')
|
57
|
+
.nullable())
|
58
|
+
.describe('Optional. Host tag for categorization. Max 16 characters, uppercase letters, numbers and underscores only.'),
|
59
|
+
isHidden: zod_1.z.optional(zod_1.z.boolean().default(false)),
|
52
60
|
});
|
53
61
|
CreateHostCommand.ResponseSchema = zod_1.z.object({
|
54
62
|
response: models_1.HostsSchema,
|
@@ -35,9 +35,12 @@ export declare namespace GetAllHostsCommand {
|
|
35
35
|
configProfileInboundUuid: string | null;
|
36
36
|
}>;
|
37
37
|
serverDescription: z.ZodNullable<z.ZodString>;
|
38
|
+
tag: z.ZodNullable<z.ZodString>;
|
39
|
+
isHidden: z.ZodDefault<z.ZodBoolean>;
|
38
40
|
}, "strip", z.ZodTypeAny, {
|
39
41
|
path: string | null;
|
40
42
|
uuid: string;
|
43
|
+
tag: string | null;
|
41
44
|
port: number;
|
42
45
|
viewPosition: number;
|
43
46
|
remark: string;
|
@@ -53,12 +56,14 @@ export declare namespace GetAllHostsCommand {
|
|
53
56
|
configProfileInboundUuid: string | null;
|
54
57
|
};
|
55
58
|
serverDescription: string | null;
|
59
|
+
isHidden: boolean;
|
56
60
|
xHttpExtraParams?: unknown;
|
57
61
|
muxParams?: unknown;
|
58
62
|
sockoptParams?: unknown;
|
59
63
|
}, {
|
60
64
|
path: string | null;
|
61
65
|
uuid: string;
|
66
|
+
tag: string | null;
|
62
67
|
port: number;
|
63
68
|
viewPosition: number;
|
64
69
|
remark: string;
|
@@ -77,11 +82,13 @@ export declare namespace GetAllHostsCommand {
|
|
77
82
|
xHttpExtraParams?: unknown;
|
78
83
|
muxParams?: unknown;
|
79
84
|
sockoptParams?: unknown;
|
85
|
+
isHidden?: boolean | undefined;
|
80
86
|
}>, "many">;
|
81
87
|
}, "strip", z.ZodTypeAny, {
|
82
88
|
response: {
|
83
89
|
path: string | null;
|
84
90
|
uuid: string;
|
91
|
+
tag: string | null;
|
85
92
|
port: number;
|
86
93
|
viewPosition: number;
|
87
94
|
remark: string;
|
@@ -97,6 +104,7 @@ export declare namespace GetAllHostsCommand {
|
|
97
104
|
configProfileInboundUuid: string | null;
|
98
105
|
};
|
99
106
|
serverDescription: string | null;
|
107
|
+
isHidden: boolean;
|
100
108
|
xHttpExtraParams?: unknown;
|
101
109
|
muxParams?: unknown;
|
102
110
|
sockoptParams?: unknown;
|
@@ -105,6 +113,7 @@ export declare namespace GetAllHostsCommand {
|
|
105
113
|
response: {
|
106
114
|
path: string | null;
|
107
115
|
uuid: string;
|
116
|
+
tag: string | null;
|
108
117
|
port: number;
|
109
118
|
viewPosition: number;
|
110
119
|
remark: string;
|
@@ -123,6 +132,7 @@ export declare namespace GetAllHostsCommand {
|
|
123
132
|
xHttpExtraParams?: unknown;
|
124
133
|
muxParams?: unknown;
|
125
134
|
sockoptParams?: unknown;
|
135
|
+
isHidden?: boolean | undefined;
|
126
136
|
}[];
|
127
137
|
}>;
|
128
138
|
type Response = z.infer<typeof ResponseSchema>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"get-all.command.d.ts","sourceRoot":"","sources":["../../../../commands/hosts/get-all.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAA+D,CAAC;IAErF,MAAM,cAAc
|
1
|
+
{"version":3,"file":"get-all.command.d.ts","sourceRoot":"","sources":["../../../../commands/hosts/get-all.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAA+D,CAAC;IAErF,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|