@remnawave/backend-contract 2.0.0-alpha.21 → 2.0.0-alpha.23
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/infra-billing/create-billing-node.command.d.ts +106 -54
- package/build/backend/commands/infra-billing/create-billing-node.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts +106 -54
- package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/get-blling-nodes.command.d.ts +106 -54
- package/build/backend/commands/infra-billing/get-blling-nodes.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/update-billing-node.command.d.ts +106 -54
- package/build/backend/commands/infra-billing/update-billing-node.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/disable.command.d.ts +105 -71
- package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/enable.command.d.ts +105 -71
- package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/reorder.command.d.ts +158 -98
- package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.d.ts +123 -77
- package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.js +6 -4
- package/build/backend/commands/nodes/get-all.command.d.ts +105 -71
- package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-one.command.d.ts +105 -71
- package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.d.ts +176 -104
- package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.js +8 -4
- package/build/backend/models/infra-billing-available-node.schema.d.ts +53 -27
- package/build/backend/models/infra-billing-available-node.schema.d.ts.map +1 -1
- package/build/backend/models/infra-billing-node.schema.d.ts +53 -27
- package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.d.ts +79 -49
- package/build/backend/models/nodes.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.js +4 -2
- package/build/frontend/commands/nodes/create.command.js +6 -4
- package/build/frontend/commands/nodes/update.command.js +8 -4
- package/build/frontend/models/nodes.schema.js +4 -2
- package/package.json +1 -1
@@ -70,35 +70,61 @@ export declare namespace CreateInfraBillingNodeCommand {
|
|
70
70
|
totalRam: z.ZodNullable<z.ZodString>;
|
71
71
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
72
72
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
73
|
+
configProfile: z.ZodObject<{
|
74
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
75
|
+
activeInbounds: z.ZodArray<z.ZodObject<{
|
76
|
+
uuid: z.ZodString;
|
77
|
+
profileUuid: z.ZodString;
|
78
|
+
tag: z.ZodString;
|
79
|
+
type: z.ZodString;
|
80
|
+
network: z.ZodNullable<z.ZodString>;
|
81
|
+
security: z.ZodNullable<z.ZodString>;
|
82
|
+
port: z.ZodNullable<z.ZodNumber>;
|
83
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
84
|
+
}, "strip", z.ZodTypeAny, {
|
85
|
+
type: string;
|
86
|
+
uuid: string;
|
87
|
+
profileUuid: string;
|
88
|
+
tag: string;
|
89
|
+
network: string | null;
|
90
|
+
security: string | null;
|
91
|
+
port: number | null;
|
92
|
+
rawInbound?: unknown;
|
93
|
+
}, {
|
94
|
+
type: string;
|
95
|
+
uuid: string;
|
96
|
+
profileUuid: string;
|
97
|
+
tag: string;
|
98
|
+
network: string | null;
|
99
|
+
security: string | null;
|
100
|
+
port: number | null;
|
101
|
+
rawInbound?: unknown;
|
102
|
+
}>, "many">;
|
83
103
|
}, "strip", z.ZodTypeAny, {
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
104
|
+
activeConfigProfileUuid: string | null;
|
105
|
+
activeInbounds: {
|
106
|
+
type: string;
|
107
|
+
uuid: string;
|
108
|
+
profileUuid: string;
|
109
|
+
tag: string;
|
110
|
+
network: string | null;
|
111
|
+
security: string | null;
|
112
|
+
port: number | null;
|
113
|
+
rawInbound?: unknown;
|
114
|
+
}[];
|
92
115
|
}, {
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
116
|
+
activeConfigProfileUuid: string | null;
|
117
|
+
activeInbounds: {
|
118
|
+
type: string;
|
119
|
+
uuid: string;
|
120
|
+
profileUuid: string;
|
121
|
+
tag: string;
|
122
|
+
network: string | null;
|
123
|
+
security: string | null;
|
124
|
+
port: number | null;
|
125
|
+
rawInbound?: unknown;
|
126
|
+
}[];
|
127
|
+
}>;
|
102
128
|
providerUuid: z.ZodNullable<z.ZodString>;
|
103
129
|
provider: z.ZodNullable<z.ZodObject<{
|
104
130
|
uuid: z.ZodString;
|
@@ -199,35 +225,61 @@ export declare namespace CreateInfraBillingNodeCommand {
|
|
199
225
|
totalRam: z.ZodNullable<z.ZodString>;
|
200
226
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
201
227
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
228
|
+
configProfile: z.ZodObject<{
|
229
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
230
|
+
activeInbounds: z.ZodArray<z.ZodObject<{
|
231
|
+
uuid: z.ZodString;
|
232
|
+
profileUuid: z.ZodString;
|
233
|
+
tag: z.ZodString;
|
234
|
+
type: z.ZodString;
|
235
|
+
network: z.ZodNullable<z.ZodString>;
|
236
|
+
security: z.ZodNullable<z.ZodString>;
|
237
|
+
port: z.ZodNullable<z.ZodNumber>;
|
238
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
239
|
+
}, "strip", z.ZodTypeAny, {
|
240
|
+
type: string;
|
241
|
+
uuid: string;
|
242
|
+
profileUuid: string;
|
243
|
+
tag: string;
|
244
|
+
network: string | null;
|
245
|
+
security: string | null;
|
246
|
+
port: number | null;
|
247
|
+
rawInbound?: unknown;
|
248
|
+
}, {
|
249
|
+
type: string;
|
250
|
+
uuid: string;
|
251
|
+
profileUuid: string;
|
252
|
+
tag: string;
|
253
|
+
network: string | null;
|
254
|
+
security: string | null;
|
255
|
+
port: number | null;
|
256
|
+
rawInbound?: unknown;
|
257
|
+
}>, "many">;
|
212
258
|
}, "strip", z.ZodTypeAny, {
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
259
|
+
activeConfigProfileUuid: string | null;
|
260
|
+
activeInbounds: {
|
261
|
+
type: string;
|
262
|
+
uuid: string;
|
263
|
+
profileUuid: string;
|
264
|
+
tag: string;
|
265
|
+
network: string | null;
|
266
|
+
security: string | null;
|
267
|
+
port: number | null;
|
268
|
+
rawInbound?: unknown;
|
269
|
+
}[];
|
221
270
|
}, {
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
271
|
+
activeConfigProfileUuid: string | null;
|
272
|
+
activeInbounds: {
|
273
|
+
type: string;
|
274
|
+
uuid: string;
|
275
|
+
profileUuid: string;
|
276
|
+
tag: string;
|
277
|
+
network: string | null;
|
278
|
+
security: string | null;
|
279
|
+
port: number | null;
|
280
|
+
rawInbound?: unknown;
|
281
|
+
}[];
|
282
|
+
}>;
|
231
283
|
providerUuid: z.ZodNullable<z.ZodString>;
|
232
284
|
provider: z.ZodNullable<z.ZodObject<{
|
233
285
|
uuid: z.ZodString;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"create-billing-node.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/create-billing-node.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,4BAA6C,CAAC;IACvD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;MAWxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"create-billing-node.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/create-billing-node.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,4BAA6C,CAAC;IACvD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;MAWxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -64,35 +64,61 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
|
|
64
64
|
totalRam: z.ZodNullable<z.ZodString>;
|
65
65
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
66
66
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
67
|
+
configProfile: z.ZodObject<{
|
68
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
69
|
+
activeInbounds: z.ZodArray<z.ZodObject<{
|
70
|
+
uuid: z.ZodString;
|
71
|
+
profileUuid: z.ZodString;
|
72
|
+
tag: z.ZodString;
|
73
|
+
type: z.ZodString;
|
74
|
+
network: z.ZodNullable<z.ZodString>;
|
75
|
+
security: z.ZodNullable<z.ZodString>;
|
76
|
+
port: z.ZodNullable<z.ZodNumber>;
|
77
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
78
|
+
}, "strip", z.ZodTypeAny, {
|
79
|
+
type: string;
|
80
|
+
uuid: string;
|
81
|
+
profileUuid: string;
|
82
|
+
tag: string;
|
83
|
+
network: string | null;
|
84
|
+
security: string | null;
|
85
|
+
port: number | null;
|
86
|
+
rawInbound?: unknown;
|
87
|
+
}, {
|
88
|
+
type: string;
|
89
|
+
uuid: string;
|
90
|
+
profileUuid: string;
|
91
|
+
tag: string;
|
92
|
+
network: string | null;
|
93
|
+
security: string | null;
|
94
|
+
port: number | null;
|
95
|
+
rawInbound?: unknown;
|
96
|
+
}>, "many">;
|
77
97
|
}, "strip", z.ZodTypeAny, {
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
98
|
+
activeConfigProfileUuid: string | null;
|
99
|
+
activeInbounds: {
|
100
|
+
type: string;
|
101
|
+
uuid: string;
|
102
|
+
profileUuid: string;
|
103
|
+
tag: string;
|
104
|
+
network: string | null;
|
105
|
+
security: string | null;
|
106
|
+
port: number | null;
|
107
|
+
rawInbound?: unknown;
|
108
|
+
}[];
|
86
109
|
}, {
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
110
|
+
activeConfigProfileUuid: string | null;
|
111
|
+
activeInbounds: {
|
112
|
+
type: string;
|
113
|
+
uuid: string;
|
114
|
+
profileUuid: string;
|
115
|
+
tag: string;
|
116
|
+
network: string | null;
|
117
|
+
security: string | null;
|
118
|
+
port: number | null;
|
119
|
+
rawInbound?: unknown;
|
120
|
+
}[];
|
121
|
+
}>;
|
96
122
|
providerUuid: z.ZodNullable<z.ZodString>;
|
97
123
|
provider: z.ZodNullable<z.ZodObject<{
|
98
124
|
uuid: z.ZodString;
|
@@ -193,35 +219,61 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
|
|
193
219
|
totalRam: z.ZodNullable<z.ZodString>;
|
194
220
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
195
221
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
222
|
+
configProfile: z.ZodObject<{
|
223
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
224
|
+
activeInbounds: z.ZodArray<z.ZodObject<{
|
225
|
+
uuid: z.ZodString;
|
226
|
+
profileUuid: z.ZodString;
|
227
|
+
tag: z.ZodString;
|
228
|
+
type: z.ZodString;
|
229
|
+
network: z.ZodNullable<z.ZodString>;
|
230
|
+
security: z.ZodNullable<z.ZodString>;
|
231
|
+
port: z.ZodNullable<z.ZodNumber>;
|
232
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
233
|
+
}, "strip", z.ZodTypeAny, {
|
234
|
+
type: string;
|
235
|
+
uuid: string;
|
236
|
+
profileUuid: string;
|
237
|
+
tag: string;
|
238
|
+
network: string | null;
|
239
|
+
security: string | null;
|
240
|
+
port: number | null;
|
241
|
+
rawInbound?: unknown;
|
242
|
+
}, {
|
243
|
+
type: string;
|
244
|
+
uuid: string;
|
245
|
+
profileUuid: string;
|
246
|
+
tag: string;
|
247
|
+
network: string | null;
|
248
|
+
security: string | null;
|
249
|
+
port: number | null;
|
250
|
+
rawInbound?: unknown;
|
251
|
+
}>, "many">;
|
206
252
|
}, "strip", z.ZodTypeAny, {
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
253
|
+
activeConfigProfileUuid: string | null;
|
254
|
+
activeInbounds: {
|
255
|
+
type: string;
|
256
|
+
uuid: string;
|
257
|
+
profileUuid: string;
|
258
|
+
tag: string;
|
259
|
+
network: string | null;
|
260
|
+
security: string | null;
|
261
|
+
port: number | null;
|
262
|
+
rawInbound?: unknown;
|
263
|
+
}[];
|
215
264
|
}, {
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
265
|
+
activeConfigProfileUuid: string | null;
|
266
|
+
activeInbounds: {
|
267
|
+
type: string;
|
268
|
+
uuid: string;
|
269
|
+
profileUuid: string;
|
270
|
+
tag: string;
|
271
|
+
network: string | null;
|
272
|
+
security: string | null;
|
273
|
+
port: number | null;
|
274
|
+
rawInbound?: unknown;
|
275
|
+
}[];
|
276
|
+
}>;
|
225
277
|
providerUuid: z.ZodNullable<z.ZodString>;
|
226
278
|
provider: z.ZodNullable<z.ZodObject<{
|
227
279
|
uuid: z.ZodString;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"delete-billing-node-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/delete-billing-node-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,mCAAmC,CAAC;IAC1C,MAAM,GAAG,QAAsD,CAAC;IAChE,MAAM,OAAO,QAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,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-billing-node-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/delete-billing-node-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,mCAAmC,CAAC;IAC1C,MAAM,GAAG,QAAsD,CAAC;IAChE,MAAM,OAAO,QAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -56,35 +56,61 @@ export declare namespace GetInfraBillingNodesCommand {
|
|
56
56
|
totalRam: z.ZodNullable<z.ZodString>;
|
57
57
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
58
58
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
59
|
+
configProfile: z.ZodObject<{
|
60
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
61
|
+
activeInbounds: z.ZodArray<z.ZodObject<{
|
62
|
+
uuid: z.ZodString;
|
63
|
+
profileUuid: z.ZodString;
|
64
|
+
tag: z.ZodString;
|
65
|
+
type: z.ZodString;
|
66
|
+
network: z.ZodNullable<z.ZodString>;
|
67
|
+
security: z.ZodNullable<z.ZodString>;
|
68
|
+
port: z.ZodNullable<z.ZodNumber>;
|
69
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
70
|
+
}, "strip", z.ZodTypeAny, {
|
71
|
+
type: string;
|
72
|
+
uuid: string;
|
73
|
+
profileUuid: string;
|
74
|
+
tag: string;
|
75
|
+
network: string | null;
|
76
|
+
security: string | null;
|
77
|
+
port: number | null;
|
78
|
+
rawInbound?: unknown;
|
79
|
+
}, {
|
80
|
+
type: string;
|
81
|
+
uuid: string;
|
82
|
+
profileUuid: string;
|
83
|
+
tag: string;
|
84
|
+
network: string | null;
|
85
|
+
security: string | null;
|
86
|
+
port: number | null;
|
87
|
+
rawInbound?: unknown;
|
88
|
+
}>, "many">;
|
69
89
|
}, "strip", z.ZodTypeAny, {
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
90
|
+
activeConfigProfileUuid: string | null;
|
91
|
+
activeInbounds: {
|
92
|
+
type: string;
|
93
|
+
uuid: string;
|
94
|
+
profileUuid: string;
|
95
|
+
tag: string;
|
96
|
+
network: string | null;
|
97
|
+
security: string | null;
|
98
|
+
port: number | null;
|
99
|
+
rawInbound?: unknown;
|
100
|
+
}[];
|
78
101
|
}, {
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
102
|
+
activeConfigProfileUuid: string | null;
|
103
|
+
activeInbounds: {
|
104
|
+
type: string;
|
105
|
+
uuid: string;
|
106
|
+
profileUuid: string;
|
107
|
+
tag: string;
|
108
|
+
network: string | null;
|
109
|
+
security: string | null;
|
110
|
+
port: number | null;
|
111
|
+
rawInbound?: unknown;
|
112
|
+
}[];
|
113
|
+
}>;
|
88
114
|
providerUuid: z.ZodNullable<z.ZodString>;
|
89
115
|
provider: z.ZodNullable<z.ZodObject<{
|
90
116
|
uuid: z.ZodString;
|
@@ -185,35 +211,61 @@ export declare namespace GetInfraBillingNodesCommand {
|
|
185
211
|
totalRam: z.ZodNullable<z.ZodString>;
|
186
212
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
187
213
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
214
|
+
configProfile: z.ZodObject<{
|
215
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
216
|
+
activeInbounds: z.ZodArray<z.ZodObject<{
|
217
|
+
uuid: z.ZodString;
|
218
|
+
profileUuid: z.ZodString;
|
219
|
+
tag: z.ZodString;
|
220
|
+
type: z.ZodString;
|
221
|
+
network: z.ZodNullable<z.ZodString>;
|
222
|
+
security: z.ZodNullable<z.ZodString>;
|
223
|
+
port: z.ZodNullable<z.ZodNumber>;
|
224
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
225
|
+
}, "strip", z.ZodTypeAny, {
|
226
|
+
type: string;
|
227
|
+
uuid: string;
|
228
|
+
profileUuid: string;
|
229
|
+
tag: string;
|
230
|
+
network: string | null;
|
231
|
+
security: string | null;
|
232
|
+
port: number | null;
|
233
|
+
rawInbound?: unknown;
|
234
|
+
}, {
|
235
|
+
type: string;
|
236
|
+
uuid: string;
|
237
|
+
profileUuid: string;
|
238
|
+
tag: string;
|
239
|
+
network: string | null;
|
240
|
+
security: string | null;
|
241
|
+
port: number | null;
|
242
|
+
rawInbound?: unknown;
|
243
|
+
}>, "many">;
|
198
244
|
}, "strip", z.ZodTypeAny, {
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
245
|
+
activeConfigProfileUuid: string | null;
|
246
|
+
activeInbounds: {
|
247
|
+
type: string;
|
248
|
+
uuid: string;
|
249
|
+
profileUuid: string;
|
250
|
+
tag: string;
|
251
|
+
network: string | null;
|
252
|
+
security: string | null;
|
253
|
+
port: number | null;
|
254
|
+
rawInbound?: unknown;
|
255
|
+
}[];
|
207
256
|
}, {
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
257
|
+
activeConfigProfileUuid: string | null;
|
258
|
+
activeInbounds: {
|
259
|
+
type: string;
|
260
|
+
uuid: string;
|
261
|
+
profileUuid: string;
|
262
|
+
tag: string;
|
263
|
+
network: string | null;
|
264
|
+
security: string | null;
|
265
|
+
port: number | null;
|
266
|
+
rawInbound?: unknown;
|
267
|
+
}[];
|
268
|
+
}>;
|
217
269
|
providerUuid: z.ZodNullable<z.ZodString>;
|
218
270
|
provider: z.ZodNullable<z.ZodObject<{
|
219
271
|
uuid: z.ZodString;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"get-blling-nodes.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/get-blling-nodes.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,2BAA2B,CAAC;IAClC,MAAM,GAAG,4BAA2C,CAAC;IACrD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,cAAc
|
1
|
+
{"version":3,"file":"get-blling-nodes.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/get-blling-nodes.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,2BAA2B,CAAC;IAClC,MAAM,GAAG,4BAA2C,CAAC;IACrD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|