@remnawave/backend-contract 0.3.53 → 0.3.55
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/commands/nodes/create.command.d.ts +14 -0
- package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/disable.command.d.ts +14 -0
- package/build/backend/commands/nodes/disable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/enable.command.d.ts +14 -0
- package/build/backend/commands/nodes/enable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-all.command.d.ts +14 -0
- package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-one.command.d.ts +14 -0
- package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/reorder.command.d.ts +20 -0
- package/build/backend/commands/nodes/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.d.ts +20 -0
- package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
- package/build/backend/commands/users/create-user.command.d.ts +14 -0
- package/build/backend/commands/users/create-user.command.d.ts.map +1 -1
- package/build/backend/commands/users/disable-user.command.d.ts +14 -0
- package/build/backend/commands/users/disable-user.command.d.ts.map +1 -1
- package/build/backend/commands/users/enable-user.command.d.ts +14 -0
- package/build/backend/commands/users/enable-user.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-all-users-v2.command.d.ts +18 -0
- package/build/backend/commands/users/get-all-users-v2.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-user-by-email.command.d.ts +14 -0
- package/build/backend/commands/users/get-user-by-email.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-user-by-short-uuid.command.d.ts +14 -0
- package/build/backend/commands/users/get-user-by-short-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-user-by-subscription-uuid.command.d.ts +14 -0
- package/build/backend/commands/users/get-user-by-subscription-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-user-by-telegram-id.command.d.ts +14 -0
- package/build/backend/commands/users/get-user-by-telegram-id.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-user-by-username.command.d.ts +14 -0
- package/build/backend/commands/users/get-user-by-username.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-user-by-uuid.command.d.ts +14 -0
- package/build/backend/commands/users/get-user-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/users/reset-user-traffic.command.d.ts +14 -0
- package/build/backend/commands/users/reset-user-traffic.command.d.ts.map +1 -1
- package/build/backend/commands/users/revoke-user-subscription.command.d.ts +14 -0
- package/build/backend/commands/users/revoke-user-subscription.command.d.ts.map +1 -1
- package/build/backend/commands/users/update-user.command.d.ts +20 -0
- package/build/backend/commands/users/update-user.command.d.ts.map +1 -1
- package/build/backend/models/inbounds.schema.d.ts +6 -0
- package/build/backend/models/inbounds.schema.d.ts.map +1 -1
- package/build/backend/models/inbounds.schema.js +2 -0
- package/build/backend/models/nodes.schema.d.ts +10 -0
- package/build/backend/models/nodes.schema.d.ts.map +1 -1
- package/build/backend/models/users.schema.d.ts +10 -0
- package/build/backend/models/users.schema.d.ts.map +1 -1
- package/build/frontend/models/inbounds.schema.js +2 -0
- package/package.json +1 -1
@@ -70,14 +70,20 @@ export declare namespace CreateNodeCommand {
|
|
70
70
|
uuid: z.ZodString;
|
71
71
|
tag: z.ZodString;
|
72
72
|
type: z.ZodString;
|
73
|
+
network: z.ZodNullable<z.ZodString>;
|
74
|
+
security: z.ZodNullable<z.ZodString>;
|
73
75
|
}, "strip", z.ZodTypeAny, {
|
74
76
|
uuid: string;
|
75
77
|
type: string;
|
76
78
|
tag: string;
|
79
|
+
network: string | null;
|
80
|
+
security: string | null;
|
77
81
|
}, {
|
78
82
|
uuid: string;
|
79
83
|
type: string;
|
80
84
|
tag: string;
|
85
|
+
network: string | null;
|
86
|
+
security: string | null;
|
81
87
|
}>, "many">;
|
82
88
|
}, "strip", z.ZodTypeAny, {
|
83
89
|
uuid: string;
|
@@ -111,6 +117,8 @@ export declare namespace CreateNodeCommand {
|
|
111
117
|
uuid: string;
|
112
118
|
type: string;
|
113
119
|
tag: string;
|
120
|
+
network: string | null;
|
121
|
+
security: string | null;
|
114
122
|
}[];
|
115
123
|
}, {
|
116
124
|
uuid: string;
|
@@ -144,6 +152,8 @@ export declare namespace CreateNodeCommand {
|
|
144
152
|
uuid: string;
|
145
153
|
type: string;
|
146
154
|
tag: string;
|
155
|
+
network: string | null;
|
156
|
+
security: string | null;
|
147
157
|
}[];
|
148
158
|
}>;
|
149
159
|
}, "strip", z.ZodTypeAny, {
|
@@ -179,6 +189,8 @@ export declare namespace CreateNodeCommand {
|
|
179
189
|
uuid: string;
|
180
190
|
type: string;
|
181
191
|
tag: string;
|
192
|
+
network: string | null;
|
193
|
+
security: string | null;
|
182
194
|
}[];
|
183
195
|
};
|
184
196
|
}, {
|
@@ -214,6 +226,8 @@ export declare namespace CreateNodeCommand {
|
|
214
226
|
uuid: string;
|
215
227
|
type: string;
|
216
228
|
tag: string;
|
229
|
+
network: string | null;
|
230
|
+
security: string | null;
|
217
231
|
}[];
|
218
232
|
};
|
219
233
|
}>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"create.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/create.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,qBAAwB,CAAC;IAClC,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAsCxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"create.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/create.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,qBAAwB,CAAC;IAClC,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAsCxB,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,14 +43,20 @@ export declare namespace DisableNodeCommand {
|
|
43
43
|
uuid: z.ZodString;
|
44
44
|
tag: z.ZodString;
|
45
45
|
type: z.ZodString;
|
46
|
+
network: z.ZodNullable<z.ZodString>;
|
47
|
+
security: z.ZodNullable<z.ZodString>;
|
46
48
|
}, "strip", z.ZodTypeAny, {
|
47
49
|
uuid: string;
|
48
50
|
type: string;
|
49
51
|
tag: string;
|
52
|
+
network: string | null;
|
53
|
+
security: string | null;
|
50
54
|
}, {
|
51
55
|
uuid: string;
|
52
56
|
type: string;
|
53
57
|
tag: string;
|
58
|
+
network: string | null;
|
59
|
+
security: string | null;
|
54
60
|
}>, "many">;
|
55
61
|
}, "strip", z.ZodTypeAny, {
|
56
62
|
uuid: string;
|
@@ -84,6 +90,8 @@ export declare namespace DisableNodeCommand {
|
|
84
90
|
uuid: string;
|
85
91
|
type: string;
|
86
92
|
tag: string;
|
93
|
+
network: string | null;
|
94
|
+
security: string | null;
|
87
95
|
}[];
|
88
96
|
}, {
|
89
97
|
uuid: string;
|
@@ -117,6 +125,8 @@ export declare namespace DisableNodeCommand {
|
|
117
125
|
uuid: string;
|
118
126
|
type: string;
|
119
127
|
tag: string;
|
128
|
+
network: string | null;
|
129
|
+
security: string | null;
|
120
130
|
}[];
|
121
131
|
}>;
|
122
132
|
}, "strip", z.ZodTypeAny, {
|
@@ -152,6 +162,8 @@ export declare namespace DisableNodeCommand {
|
|
152
162
|
uuid: string;
|
153
163
|
type: string;
|
154
164
|
tag: string;
|
165
|
+
network: string | null;
|
166
|
+
security: string | null;
|
155
167
|
}[];
|
156
168
|
};
|
157
169
|
}, {
|
@@ -187,6 +199,8 @@ export declare namespace DisableNodeCommand {
|
|
187
199
|
uuid: string;
|
188
200
|
type: string;
|
189
201
|
tag: string;
|
202
|
+
network: string | null;
|
203
|
+
security: string | null;
|
190
204
|
}[];
|
191
205
|
};
|
192
206
|
}>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"disable.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/disable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAAyB,CAAC;IACnC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"disable.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/disable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAAyB,CAAC;IACnC,MAAM,OAAO,QAAe,CAAC;IAE7B,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,14 +43,20 @@ export declare namespace EnableNodeCommand {
|
|
43
43
|
uuid: z.ZodString;
|
44
44
|
tag: z.ZodString;
|
45
45
|
type: z.ZodString;
|
46
|
+
network: z.ZodNullable<z.ZodString>;
|
47
|
+
security: z.ZodNullable<z.ZodString>;
|
46
48
|
}, "strip", z.ZodTypeAny, {
|
47
49
|
uuid: string;
|
48
50
|
type: string;
|
49
51
|
tag: string;
|
52
|
+
network: string | null;
|
53
|
+
security: string | null;
|
50
54
|
}, {
|
51
55
|
uuid: string;
|
52
56
|
type: string;
|
53
57
|
tag: string;
|
58
|
+
network: string | null;
|
59
|
+
security: string | null;
|
54
60
|
}>, "many">;
|
55
61
|
}, "strip", z.ZodTypeAny, {
|
56
62
|
uuid: string;
|
@@ -84,6 +90,8 @@ export declare namespace EnableNodeCommand {
|
|
84
90
|
uuid: string;
|
85
91
|
type: string;
|
86
92
|
tag: string;
|
93
|
+
network: string | null;
|
94
|
+
security: string | null;
|
87
95
|
}[];
|
88
96
|
}, {
|
89
97
|
uuid: string;
|
@@ -117,6 +125,8 @@ export declare namespace EnableNodeCommand {
|
|
117
125
|
uuid: string;
|
118
126
|
type: string;
|
119
127
|
tag: string;
|
128
|
+
network: string | null;
|
129
|
+
security: string | null;
|
120
130
|
}[];
|
121
131
|
}>;
|
122
132
|
}, "strip", z.ZodTypeAny, {
|
@@ -152,6 +162,8 @@ export declare namespace EnableNodeCommand {
|
|
152
162
|
uuid: string;
|
153
163
|
type: string;
|
154
164
|
tag: string;
|
165
|
+
network: string | null;
|
166
|
+
security: string | null;
|
155
167
|
}[];
|
156
168
|
};
|
157
169
|
}, {
|
@@ -187,6 +199,8 @@ export declare namespace EnableNodeCommand {
|
|
187
199
|
uuid: string;
|
188
200
|
type: string;
|
189
201
|
tag: string;
|
202
|
+
network: string | null;
|
203
|
+
security: string | null;
|
190
204
|
}[];
|
191
205
|
};
|
192
206
|
}>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"enable.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/enable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAwB,CAAC;IAClC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"enable.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/enable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAwB,CAAC;IAClC,MAAM,OAAO,QAAe,CAAC;IAE7B,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"}
|
@@ -35,14 +35,20 @@ export declare namespace GetAllNodesCommand {
|
|
35
35
|
uuid: z.ZodString;
|
36
36
|
tag: z.ZodString;
|
37
37
|
type: z.ZodString;
|
38
|
+
network: z.ZodNullable<z.ZodString>;
|
39
|
+
security: z.ZodNullable<z.ZodString>;
|
38
40
|
}, "strip", z.ZodTypeAny, {
|
39
41
|
uuid: string;
|
40
42
|
type: string;
|
41
43
|
tag: string;
|
44
|
+
network: string | null;
|
45
|
+
security: string | null;
|
42
46
|
}, {
|
43
47
|
uuid: string;
|
44
48
|
type: string;
|
45
49
|
tag: string;
|
50
|
+
network: string | null;
|
51
|
+
security: string | null;
|
46
52
|
}>, "many">;
|
47
53
|
}, "strip", z.ZodTypeAny, {
|
48
54
|
uuid: string;
|
@@ -76,6 +82,8 @@ export declare namespace GetAllNodesCommand {
|
|
76
82
|
uuid: string;
|
77
83
|
type: string;
|
78
84
|
tag: string;
|
85
|
+
network: string | null;
|
86
|
+
security: string | null;
|
79
87
|
}[];
|
80
88
|
}, {
|
81
89
|
uuid: string;
|
@@ -109,6 +117,8 @@ export declare namespace GetAllNodesCommand {
|
|
109
117
|
uuid: string;
|
110
118
|
type: string;
|
111
119
|
tag: string;
|
120
|
+
network: string | null;
|
121
|
+
security: string | null;
|
112
122
|
}[];
|
113
123
|
}>, "many">;
|
114
124
|
}, "strip", z.ZodTypeAny, {
|
@@ -144,6 +154,8 @@ export declare namespace GetAllNodesCommand {
|
|
144
154
|
uuid: string;
|
145
155
|
type: string;
|
146
156
|
tag: string;
|
157
|
+
network: string | null;
|
158
|
+
security: string | null;
|
147
159
|
}[];
|
148
160
|
}[];
|
149
161
|
}, {
|
@@ -179,6 +191,8 @@ export declare namespace GetAllNodesCommand {
|
|
179
191
|
uuid: string;
|
180
192
|
type: string;
|
181
193
|
tag: string;
|
194
|
+
network: string | null;
|
195
|
+
security: string | null;
|
182
196
|
}[];
|
183
197
|
}[];
|
184
198
|
}>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"get-all.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-all.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,sBAAyB,CAAC;IACnC,MAAM,OAAO,sBAAM,CAAC;IAEpB,MAAM,cAAc
|
1
|
+
{"version":3,"file":"get-all.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-all.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,sBAAyB,CAAC;IACnC,MAAM,OAAO,sBAAM,CAAC;IAEpB,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -43,14 +43,20 @@ export declare namespace GetOneNodeCommand {
|
|
43
43
|
uuid: z.ZodString;
|
44
44
|
tag: z.ZodString;
|
45
45
|
type: z.ZodString;
|
46
|
+
network: z.ZodNullable<z.ZodString>;
|
47
|
+
security: z.ZodNullable<z.ZodString>;
|
46
48
|
}, "strip", z.ZodTypeAny, {
|
47
49
|
uuid: string;
|
48
50
|
type: string;
|
49
51
|
tag: string;
|
52
|
+
network: string | null;
|
53
|
+
security: string | null;
|
50
54
|
}, {
|
51
55
|
uuid: string;
|
52
56
|
type: string;
|
53
57
|
tag: string;
|
58
|
+
network: string | null;
|
59
|
+
security: string | null;
|
54
60
|
}>, "many">;
|
55
61
|
}, "strip", z.ZodTypeAny, {
|
56
62
|
uuid: string;
|
@@ -84,6 +90,8 @@ export declare namespace GetOneNodeCommand {
|
|
84
90
|
uuid: string;
|
85
91
|
type: string;
|
86
92
|
tag: string;
|
93
|
+
network: string | null;
|
94
|
+
security: string | null;
|
87
95
|
}[];
|
88
96
|
}, {
|
89
97
|
uuid: string;
|
@@ -117,6 +125,8 @@ export declare namespace GetOneNodeCommand {
|
|
117
125
|
uuid: string;
|
118
126
|
type: string;
|
119
127
|
tag: string;
|
128
|
+
network: string | null;
|
129
|
+
security: string | null;
|
120
130
|
}[];
|
121
131
|
}>;
|
122
132
|
}, "strip", z.ZodTypeAny, {
|
@@ -152,6 +162,8 @@ export declare namespace GetOneNodeCommand {
|
|
152
162
|
uuid: string;
|
153
163
|
type: string;
|
154
164
|
tag: string;
|
165
|
+
network: string | null;
|
166
|
+
security: string | null;
|
155
167
|
}[];
|
156
168
|
};
|
157
169
|
}, {
|
@@ -187,6 +199,8 @@ export declare namespace GetOneNodeCommand {
|
|
187
199
|
uuid: string;
|
188
200
|
type: string;
|
189
201
|
tag: string;
|
202
|
+
network: string | null;
|
203
|
+
security: string | null;
|
190
204
|
}[];
|
191
205
|
};
|
192
206
|
}>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"get-one.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-one.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAyB,CAAC;IACnC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"get-one.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-one.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAyB,CAAC;IACnC,MAAM,OAAO,QAAe,CAAC;IAE7B,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"}
|
@@ -35,14 +35,20 @@ export declare namespace ReorderNodeCommand {
|
|
35
35
|
uuid: z.ZodString;
|
36
36
|
tag: z.ZodString;
|
37
37
|
type: z.ZodString;
|
38
|
+
network: z.ZodNullable<z.ZodString>;
|
39
|
+
security: z.ZodNullable<z.ZodString>;
|
38
40
|
}, "strip", z.ZodTypeAny, {
|
39
41
|
uuid: string;
|
40
42
|
type: string;
|
41
43
|
tag: string;
|
44
|
+
network: string | null;
|
45
|
+
security: string | null;
|
42
46
|
}, {
|
43
47
|
uuid: string;
|
44
48
|
type: string;
|
45
49
|
tag: string;
|
50
|
+
network: string | null;
|
51
|
+
security: string | null;
|
46
52
|
}>, "many">;
|
47
53
|
}, "uuid" | "viewPosition">, "strip", z.ZodTypeAny, {
|
48
54
|
uuid: string;
|
@@ -96,14 +102,20 @@ export declare namespace ReorderNodeCommand {
|
|
96
102
|
uuid: z.ZodString;
|
97
103
|
tag: z.ZodString;
|
98
104
|
type: z.ZodString;
|
105
|
+
network: z.ZodNullable<z.ZodString>;
|
106
|
+
security: z.ZodNullable<z.ZodString>;
|
99
107
|
}, "strip", z.ZodTypeAny, {
|
100
108
|
uuid: string;
|
101
109
|
type: string;
|
102
110
|
tag: string;
|
111
|
+
network: string | null;
|
112
|
+
security: string | null;
|
103
113
|
}, {
|
104
114
|
uuid: string;
|
105
115
|
type: string;
|
106
116
|
tag: string;
|
117
|
+
network: string | null;
|
118
|
+
security: string | null;
|
107
119
|
}>, "many">;
|
108
120
|
}, "strip", z.ZodTypeAny, {
|
109
121
|
uuid: string;
|
@@ -137,6 +149,8 @@ export declare namespace ReorderNodeCommand {
|
|
137
149
|
uuid: string;
|
138
150
|
type: string;
|
139
151
|
tag: string;
|
152
|
+
network: string | null;
|
153
|
+
security: string | null;
|
140
154
|
}[];
|
141
155
|
}, {
|
142
156
|
uuid: string;
|
@@ -170,6 +184,8 @@ export declare namespace ReorderNodeCommand {
|
|
170
184
|
uuid: string;
|
171
185
|
type: string;
|
172
186
|
tag: string;
|
187
|
+
network: string | null;
|
188
|
+
security: string | null;
|
173
189
|
}[];
|
174
190
|
}>, "many">;
|
175
191
|
}, "strip", z.ZodTypeAny, {
|
@@ -205,6 +221,8 @@ export declare namespace ReorderNodeCommand {
|
|
205
221
|
uuid: string;
|
206
222
|
type: string;
|
207
223
|
tag: string;
|
224
|
+
network: string | null;
|
225
|
+
security: string | null;
|
208
226
|
}[];
|
209
227
|
}[];
|
210
228
|
}, {
|
@@ -240,6 +258,8 @@ export declare namespace ReorderNodeCommand {
|
|
240
258
|
uuid: string;
|
241
259
|
type: string;
|
242
260
|
tag: string;
|
261
|
+
network: string | null;
|
262
|
+
security: string | null;
|
243
263
|
}[];
|
244
264
|
}[];
|
245
265
|
}>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"reorder.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/reorder.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,sBAAyB,CAAC;IACnC,MAAM,OAAO,sBAAM,CAAC;IAEpB,MAAM,aAAa
|
1
|
+
{"version":3,"file":"reorder.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/reorder.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,sBAAyB,CAAC;IACnC,MAAM,OAAO,sBAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAOxB,CAAC;IACH,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"}
|
@@ -34,14 +34,20 @@ export declare namespace UpdateNodeCommand {
|
|
34
34
|
uuid: z.ZodString;
|
35
35
|
tag: z.ZodString;
|
36
36
|
type: z.ZodString;
|
37
|
+
network: z.ZodNullable<z.ZodString>;
|
38
|
+
security: z.ZodNullable<z.ZodString>;
|
37
39
|
}, "strip", z.ZodTypeAny, {
|
38
40
|
uuid: string;
|
39
41
|
type: string;
|
40
42
|
tag: string;
|
43
|
+
network: string | null;
|
44
|
+
security: string | null;
|
41
45
|
}, {
|
42
46
|
uuid: string;
|
43
47
|
type: string;
|
44
48
|
tag: string;
|
49
|
+
network: string | null;
|
50
|
+
security: string | null;
|
45
51
|
}>, "many">;
|
46
52
|
}, "uuid">, {
|
47
53
|
name: z.ZodOptional<z.ZodString>;
|
@@ -113,14 +119,20 @@ export declare namespace UpdateNodeCommand {
|
|
113
119
|
uuid: z.ZodString;
|
114
120
|
tag: z.ZodString;
|
115
121
|
type: z.ZodString;
|
122
|
+
network: z.ZodNullable<z.ZodString>;
|
123
|
+
security: z.ZodNullable<z.ZodString>;
|
116
124
|
}, "strip", z.ZodTypeAny, {
|
117
125
|
uuid: string;
|
118
126
|
type: string;
|
119
127
|
tag: string;
|
128
|
+
network: string | null;
|
129
|
+
security: string | null;
|
120
130
|
}, {
|
121
131
|
uuid: string;
|
122
132
|
type: string;
|
123
133
|
tag: string;
|
134
|
+
network: string | null;
|
135
|
+
security: string | null;
|
124
136
|
}>, "many">;
|
125
137
|
}, "strip", z.ZodTypeAny, {
|
126
138
|
uuid: string;
|
@@ -154,6 +166,8 @@ export declare namespace UpdateNodeCommand {
|
|
154
166
|
uuid: string;
|
155
167
|
type: string;
|
156
168
|
tag: string;
|
169
|
+
network: string | null;
|
170
|
+
security: string | null;
|
157
171
|
}[];
|
158
172
|
}, {
|
159
173
|
uuid: string;
|
@@ -187,6 +201,8 @@ export declare namespace UpdateNodeCommand {
|
|
187
201
|
uuid: string;
|
188
202
|
type: string;
|
189
203
|
tag: string;
|
204
|
+
network: string | null;
|
205
|
+
security: string | null;
|
190
206
|
}[];
|
191
207
|
}>;
|
192
208
|
}, "strip", z.ZodTypeAny, {
|
@@ -222,6 +238,8 @@ export declare namespace UpdateNodeCommand {
|
|
222
238
|
uuid: string;
|
223
239
|
type: string;
|
224
240
|
tag: string;
|
241
|
+
network: string | null;
|
242
|
+
security: string | null;
|
225
243
|
}[];
|
226
244
|
};
|
227
245
|
}, {
|
@@ -257,6 +275,8 @@ export declare namespace UpdateNodeCommand {
|
|
257
275
|
uuid: string;
|
258
276
|
type: string;
|
259
277
|
tag: string;
|
278
|
+
network: string | null;
|
279
|
+
security: string | null;
|
260
280
|
}[];
|
261
281
|
};
|
262
282
|
}>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"update.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/update.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,qBAAwB,CAAC;IAClC,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,aAAa
|
1
|
+
{"version":3,"file":"update.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/update.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,qBAAwB,CAAC;IAClC,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAkCxB,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"}
|
@@ -107,14 +107,20 @@ export declare namespace CreateUserCommand {
|
|
107
107
|
uuid: z.ZodString;
|
108
108
|
tag: z.ZodString;
|
109
109
|
type: z.ZodString;
|
110
|
+
network: z.ZodNullable<z.ZodString>;
|
111
|
+
security: z.ZodNullable<z.ZodString>;
|
110
112
|
}, "strip", z.ZodTypeAny, {
|
111
113
|
uuid: string;
|
112
114
|
type: string;
|
113
115
|
tag: string;
|
116
|
+
network: string | null;
|
117
|
+
security: string | null;
|
114
118
|
}, {
|
115
119
|
uuid: string;
|
116
120
|
type: string;
|
117
121
|
tag: string;
|
122
|
+
network: string | null;
|
123
|
+
security: string | null;
|
118
124
|
}>, "many">;
|
119
125
|
}, {
|
120
126
|
subscriptionUrl: z.ZodString;
|
@@ -156,6 +162,8 @@ export declare namespace CreateUserCommand {
|
|
156
162
|
uuid: string;
|
157
163
|
type: string;
|
158
164
|
tag: string;
|
165
|
+
network: string | null;
|
166
|
+
security: string | null;
|
159
167
|
}[];
|
160
168
|
subscriptionUrl: string;
|
161
169
|
lastConnectedNode: {
|
@@ -187,6 +195,8 @@ export declare namespace CreateUserCommand {
|
|
187
195
|
uuid: string;
|
188
196
|
type: string;
|
189
197
|
tag: string;
|
198
|
+
network: string | null;
|
199
|
+
security: string | null;
|
190
200
|
}[];
|
191
201
|
subscriptionUrl: string;
|
192
202
|
lastConnectedNode: {
|
@@ -226,6 +236,8 @@ export declare namespace CreateUserCommand {
|
|
226
236
|
uuid: string;
|
227
237
|
type: string;
|
228
238
|
tag: string;
|
239
|
+
network: string | null;
|
240
|
+
security: string | null;
|
229
241
|
}[];
|
230
242
|
subscriptionUrl: string;
|
231
243
|
lastConnectedNode: {
|
@@ -259,6 +271,8 @@ export declare namespace CreateUserCommand {
|
|
259
271
|
uuid: string;
|
260
272
|
type: string;
|
261
273
|
tag: string;
|
274
|
+
network: string | null;
|
275
|
+
security: string | null;
|
262
276
|
}[];
|
263
277
|
subscriptionUrl: string;
|
264
278
|
lastConnectedNode: {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"create-user.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/create-user.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,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAsGxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"create-user.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/create-user.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,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAsGxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -49,14 +49,20 @@ export declare namespace DisableUserCommand {
|
|
49
49
|
uuid: z.ZodString;
|
50
50
|
tag: z.ZodString;
|
51
51
|
type: z.ZodString;
|
52
|
+
network: z.ZodNullable<z.ZodString>;
|
53
|
+
security: z.ZodNullable<z.ZodString>;
|
52
54
|
}, "strip", z.ZodTypeAny, {
|
53
55
|
uuid: string;
|
54
56
|
type: string;
|
55
57
|
tag: string;
|
58
|
+
network: string | null;
|
59
|
+
security: string | null;
|
56
60
|
}, {
|
57
61
|
uuid: string;
|
58
62
|
type: string;
|
59
63
|
tag: string;
|
64
|
+
network: string | null;
|
65
|
+
security: string | null;
|
60
66
|
}>, "many">;
|
61
67
|
}, {
|
62
68
|
subscriptionUrl: z.ZodString;
|
@@ -98,6 +104,8 @@ export declare namespace DisableUserCommand {
|
|
98
104
|
uuid: string;
|
99
105
|
type: string;
|
100
106
|
tag: string;
|
107
|
+
network: string | null;
|
108
|
+
security: string | null;
|
101
109
|
}[];
|
102
110
|
subscriptionUrl: string;
|
103
111
|
lastConnectedNode: {
|
@@ -129,6 +137,8 @@ export declare namespace DisableUserCommand {
|
|
129
137
|
uuid: string;
|
130
138
|
type: string;
|
131
139
|
tag: string;
|
140
|
+
network: string | null;
|
141
|
+
security: string | null;
|
132
142
|
}[];
|
133
143
|
subscriptionUrl: string;
|
134
144
|
lastConnectedNode: {
|
@@ -168,6 +178,8 @@ export declare namespace DisableUserCommand {
|
|
168
178
|
uuid: string;
|
169
179
|
type: string;
|
170
180
|
tag: string;
|
181
|
+
network: string | null;
|
182
|
+
security: string | null;
|
171
183
|
}[];
|
172
184
|
subscriptionUrl: string;
|
173
185
|
lastConnectedNode: {
|
@@ -201,6 +213,8 @@ export declare namespace DisableUserCommand {
|
|
201
213
|
uuid: string;
|
202
214
|
type: string;
|
203
215
|
tag: string;
|
216
|
+
network: string | null;
|
217
|
+
security: string | null;
|
204
218
|
}[];
|
205
219
|
subscriptionUrl: string;
|
206
220
|
lastConnectedNode: {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"disable-user.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/disable-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAA8B,CAAC;IACxC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"disable-user.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/disable-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAA8B,CAAC;IACxC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -49,14 +49,20 @@ export declare namespace EnableUserCommand {
|
|
49
49
|
uuid: z.ZodString;
|
50
50
|
tag: z.ZodString;
|
51
51
|
type: z.ZodString;
|
52
|
+
network: z.ZodNullable<z.ZodString>;
|
53
|
+
security: z.ZodNullable<z.ZodString>;
|
52
54
|
}, "strip", z.ZodTypeAny, {
|
53
55
|
uuid: string;
|
54
56
|
type: string;
|
55
57
|
tag: string;
|
58
|
+
network: string | null;
|
59
|
+
security: string | null;
|
56
60
|
}, {
|
57
61
|
uuid: string;
|
58
62
|
type: string;
|
59
63
|
tag: string;
|
64
|
+
network: string | null;
|
65
|
+
security: string | null;
|
60
66
|
}>, "many">;
|
61
67
|
}, {
|
62
68
|
subscriptionUrl: z.ZodString;
|
@@ -98,6 +104,8 @@ export declare namespace EnableUserCommand {
|
|
98
104
|
uuid: string;
|
99
105
|
type: string;
|
100
106
|
tag: string;
|
107
|
+
network: string | null;
|
108
|
+
security: string | null;
|
101
109
|
}[];
|
102
110
|
subscriptionUrl: string;
|
103
111
|
lastConnectedNode: {
|
@@ -129,6 +137,8 @@ export declare namespace EnableUserCommand {
|
|
129
137
|
uuid: string;
|
130
138
|
type: string;
|
131
139
|
tag: string;
|
140
|
+
network: string | null;
|
141
|
+
security: string | null;
|
132
142
|
}[];
|
133
143
|
subscriptionUrl: string;
|
134
144
|
lastConnectedNode: {
|
@@ -168,6 +178,8 @@ export declare namespace EnableUserCommand {
|
|
168
178
|
uuid: string;
|
169
179
|
type: string;
|
170
180
|
tag: string;
|
181
|
+
network: string | null;
|
182
|
+
security: string | null;
|
171
183
|
}[];
|
172
184
|
subscriptionUrl: string;
|
173
185
|
lastConnectedNode: {
|
@@ -201,6 +213,8 @@ export declare namespace EnableUserCommand {
|
|
201
213
|
uuid: string;
|
202
214
|
type: string;
|
203
215
|
tag: string;
|
216
|
+
network: string | null;
|
217
|
+
security: string | null;
|
204
218
|
}[];
|
205
219
|
subscriptionUrl: string;
|
206
220
|
lastConnectedNode: {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"enable-user.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/enable-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAA6B,CAAC;IACvC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"enable-user.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/enable-user.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAA6B,CAAC;IACvC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|