@remnawave/backend-contract 2.0.0-alpha.1 → 2.0.0-alpha.11
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/index.d.ts +1 -0
- package/build/backend/api/controllers/index.d.ts.map +1 -1
- package/build/backend/api/controllers/index.js +1 -0
- package/build/backend/api/controllers/infra-billing.d.ts +16 -0
- package/build/backend/api/controllers/infra-billing.d.ts.map +1 -0
- package/build/backend/api/controllers/infra-billing.js +22 -0
- package/build/backend/api/controllers/users.d.ts +1 -0
- package/build/backend/api/controllers/users.d.ts.map +1 -1
- package/build/backend/api/controllers/users.js +1 -0
- package/build/backend/api/routes.d.ts +15 -0
- package/build/backend/api/routes.d.ts.map +1 -1
- package/build/backend/api/routes.js +15 -0
- package/build/backend/commands/config-profiles/create-config-profile.command.d.ts +7 -0
- package/build/backend/commands/config-profiles/create-config-profile.command.d.ts.map +1 -1
- package/build/backend/commands/config-profiles/create-config-profile.command.js +2 -2
- package/build/backend/commands/config-profiles/get-all-inbounds.command.d.ts +7 -0
- package/build/backend/commands/config-profiles/get-all-inbounds.command.d.ts.map +1 -1
- package/build/backend/commands/config-profiles/get-config-profile-by-uuid.command.d.ts +7 -0
- package/build/backend/commands/config-profiles/get-config-profile-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/config-profiles/get-config-profiles.command.d.ts +9 -0
- package/build/backend/commands/config-profiles/get-config-profiles.command.d.ts.map +1 -1
- package/build/backend/commands/config-profiles/get-inbounds-by-profile-uuid.command.d.ts +7 -0
- package/build/backend/commands/config-profiles/get-inbounds-by-profile-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/config-profiles/update-config-profile.command.d.ts +7 -0
- package/build/backend/commands/config-profiles/update-config-profile.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/create.command.d.ts +6 -6
- package/build/backend/commands/hosts/create.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/create.command.js +4 -2
- package/build/backend/commands/index.d.ts +1 -0
- package/build/backend/commands/index.d.ts.map +1 -1
- package/build/backend/commands/index.js +1 -0
- package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts +123 -0
- package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/create-infra-provider.command.js +24 -0
- package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.d.ts +33 -0
- package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.js +20 -0
- package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts +117 -0
- package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.js +19 -0
- package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts +156 -0
- package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/get-infra-providers.command.js +19 -0
- package/build/backend/commands/infra-billing/index.d.ts +6 -0
- package/build/backend/commands/infra-billing/index.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/index.js +21 -0
- package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts +126 -0
- package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/update-infra-provider.command.js +26 -0
- package/build/backend/commands/internal-squads/create-internal-squad.command.d.ts +7 -0
- package/build/backend/commands/internal-squads/create-internal-squad.command.d.ts.map +1 -1
- package/build/backend/commands/internal-squads/create-internal-squad.command.js +2 -2
- package/build/backend/commands/internal-squads/get-internal-squad-by-uuid..d.ts +7 -0
- package/build/backend/commands/internal-squads/get-internal-squad-by-uuid..d.ts.map +1 -1
- package/build/backend/commands/internal-squads/get-internal-squads.command.d.ts +9 -0
- package/build/backend/commands/internal-squads/get-internal-squads.command.d.ts.map +1 -1
- package/build/backend/commands/internal-squads/update-internal-squad.command.d.ts +7 -0
- package/build/backend/commands/internal-squads/update-internal-squad.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/disable.command.d.ts +66 -0
- package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/enable.command.d.ts +66 -0
- package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/reorder.command.d.ts +92 -0
- package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.d.ts +69 -0
- package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.js +1 -0
- package/build/backend/commands/nodes/get-all.command.d.ts +66 -0
- package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-one.command.d.ts +66 -0
- package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/stats/get-node-user-usage-by-range.command.d.ts +4 -4
- package/build/backend/commands/nodes/stats/get-nodes-usage-by-range.command.d.ts +4 -4
- package/build/backend/commands/nodes/update.command.d.ts +95 -0
- package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.js +1 -0
- package/build/backend/commands/users/get-user-accessible-nodes.command.d.ts +114 -0
- package/build/backend/commands/users/get-user-accessible-nodes.command.d.ts.map +1 -0
- package/build/backend/commands/users/get-user-accessible-nodes.command.js +31 -0
- package/build/backend/commands/users/get-user-usage-by-range.command.d.ts +4 -4
- package/build/backend/commands/users/index.d.ts +1 -0
- package/build/backend/commands/users/index.d.ts.map +1 -1
- package/build/backend/commands/users/index.js +1 -0
- package/build/backend/constants/errors/errors.d.ts +35 -0
- package/build/backend/constants/errors/errors.d.ts.map +1 -1
- package/build/backend/constants/errors/errors.js +35 -0
- package/build/backend/models/config-profile-inbounds.schema.d.ts +3 -0
- package/build/backend/models/config-profile-inbounds.schema.d.ts.map +1 -1
- package/build/backend/models/config-profile-inbounds.schema.js +1 -0
- package/build/backend/models/config-profile.schema.d.ts +5 -0
- package/build/backend/models/config-profile.schema.d.ts.map +1 -1
- package/build/backend/models/index.d.ts +1 -0
- package/build/backend/models/index.d.ts.map +1 -1
- package/build/backend/models/index.js +1 -0
- package/build/backend/models/infra-provider.schema.d.ts +87 -0
- package/build/backend/models/infra-provider.schema.d.ts.map +1 -0
- package/build/backend/models/infra-provider.schema.js +41 -0
- package/build/backend/models/internal-squad.schema.d.ts +5 -0
- package/build/backend/models/internal-squad.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.d.ts +46 -0
- package/build/backend/models/nodes.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.js +3 -0
- package/build/frontend/api/controllers/index.js +1 -0
- package/build/frontend/api/controllers/infra-billing.js +22 -0
- package/build/frontend/api/controllers/users.js +1 -0
- package/build/frontend/api/routes.js +15 -0
- package/build/frontend/commands/config-profiles/create-config-profile.command.js +2 -2
- package/build/frontend/commands/hosts/create.command.js +4 -2
- package/build/frontend/commands/index.js +1 -0
- package/build/frontend/commands/infra-billing/create-infra-provider.command.js +24 -0
- package/build/frontend/commands/infra-billing/delete-infra-provider-by-uuid.command.js +20 -0
- package/build/frontend/commands/infra-billing/get-infra-provider-by-uuid.command.js +19 -0
- package/build/frontend/commands/infra-billing/get-infra-providers.command.js +19 -0
- package/build/frontend/commands/infra-billing/index.js +21 -0
- package/build/frontend/commands/infra-billing/update-infra-provider.command.js +26 -0
- package/build/frontend/commands/internal-squads/create-internal-squad.command.js +2 -2
- package/build/frontend/commands/nodes/create.command.js +1 -0
- package/build/frontend/commands/nodes/update.command.js +1 -0
- package/build/frontend/commands/users/get-user-accessible-nodes.command.js +31 -0
- package/build/frontend/commands/users/index.js +1 -0
- package/build/frontend/constants/errors/errors.js +35 -0
- package/build/frontend/models/config-profile-inbounds.schema.js +1 -0
- package/build/frontend/models/index.js +1 -0
- package/build/frontend/models/infra-provider.schema.js +41 -0
- package/build/frontend/models/nodes.schema.js +3 -0
- package/package.json +1 -1
@@ -0,0 +1,126 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
export declare namespace UpdateInfraProviderCommand {
|
3
|
+
const url: "/api/infra-billing/providers";
|
4
|
+
const TSQ_url: "/api/infra-billing/providers";
|
5
|
+
const endpointDetails: import("../../constants").EndpointDetails;
|
6
|
+
const RequestSchema: z.ZodObject<{
|
7
|
+
uuid: z.ZodString;
|
8
|
+
name: z.ZodOptional<z.ZodString>;
|
9
|
+
faviconLink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10
|
+
loginUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11
|
+
}, "strip", z.ZodTypeAny, {
|
12
|
+
uuid: string;
|
13
|
+
name?: string | undefined;
|
14
|
+
faviconLink?: string | null | undefined;
|
15
|
+
loginUrl?: string | null | undefined;
|
16
|
+
}, {
|
17
|
+
uuid: string;
|
18
|
+
name?: string | undefined;
|
19
|
+
faviconLink?: string | null | undefined;
|
20
|
+
loginUrl?: string | null | undefined;
|
21
|
+
}>;
|
22
|
+
type Request = z.infer<typeof RequestSchema>;
|
23
|
+
const ResponseSchema: z.ZodObject<{
|
24
|
+
response: z.ZodObject<{
|
25
|
+
uuid: z.ZodString;
|
26
|
+
name: z.ZodString;
|
27
|
+
faviconLink: z.ZodNullable<z.ZodString>;
|
28
|
+
loginUrl: z.ZodNullable<z.ZodString>;
|
29
|
+
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
30
|
+
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
31
|
+
billingHistory: z.ZodObject<{
|
32
|
+
totalAmount: z.ZodNumber;
|
33
|
+
totalBills: z.ZodNumber;
|
34
|
+
}, "strip", z.ZodTypeAny, {
|
35
|
+
totalAmount: number;
|
36
|
+
totalBills: number;
|
37
|
+
}, {
|
38
|
+
totalAmount: number;
|
39
|
+
totalBills: number;
|
40
|
+
}>;
|
41
|
+
billingNodes: z.ZodArray<z.ZodObject<{
|
42
|
+
nodeUuid: z.ZodString;
|
43
|
+
name: z.ZodString;
|
44
|
+
countryCode: z.ZodString;
|
45
|
+
}, "strip", z.ZodTypeAny, {
|
46
|
+
name: string;
|
47
|
+
countryCode: string;
|
48
|
+
nodeUuid: string;
|
49
|
+
}, {
|
50
|
+
name: string;
|
51
|
+
countryCode: string;
|
52
|
+
nodeUuid: string;
|
53
|
+
}>, "many">;
|
54
|
+
}, "strip", z.ZodTypeAny, {
|
55
|
+
uuid: string;
|
56
|
+
createdAt: Date;
|
57
|
+
updatedAt: Date;
|
58
|
+
name: string;
|
59
|
+
faviconLink: string | null;
|
60
|
+
loginUrl: string | null;
|
61
|
+
billingHistory: {
|
62
|
+
totalAmount: number;
|
63
|
+
totalBills: number;
|
64
|
+
};
|
65
|
+
billingNodes: {
|
66
|
+
name: string;
|
67
|
+
countryCode: string;
|
68
|
+
nodeUuid: string;
|
69
|
+
}[];
|
70
|
+
}, {
|
71
|
+
uuid: string;
|
72
|
+
createdAt: string;
|
73
|
+
updatedAt: string;
|
74
|
+
name: string;
|
75
|
+
faviconLink: string | null;
|
76
|
+
loginUrl: string | null;
|
77
|
+
billingHistory: {
|
78
|
+
totalAmount: number;
|
79
|
+
totalBills: number;
|
80
|
+
};
|
81
|
+
billingNodes: {
|
82
|
+
name: string;
|
83
|
+
countryCode: string;
|
84
|
+
nodeUuid: string;
|
85
|
+
}[];
|
86
|
+
}>;
|
87
|
+
}, "strip", z.ZodTypeAny, {
|
88
|
+
response: {
|
89
|
+
uuid: string;
|
90
|
+
createdAt: Date;
|
91
|
+
updatedAt: Date;
|
92
|
+
name: string;
|
93
|
+
faviconLink: string | null;
|
94
|
+
loginUrl: string | null;
|
95
|
+
billingHistory: {
|
96
|
+
totalAmount: number;
|
97
|
+
totalBills: number;
|
98
|
+
};
|
99
|
+
billingNodes: {
|
100
|
+
name: string;
|
101
|
+
countryCode: string;
|
102
|
+
nodeUuid: string;
|
103
|
+
}[];
|
104
|
+
};
|
105
|
+
}, {
|
106
|
+
response: {
|
107
|
+
uuid: string;
|
108
|
+
createdAt: string;
|
109
|
+
updatedAt: string;
|
110
|
+
name: string;
|
111
|
+
faviconLink: string | null;
|
112
|
+
loginUrl: string | null;
|
113
|
+
billingHistory: {
|
114
|
+
totalAmount: number;
|
115
|
+
totalBills: number;
|
116
|
+
};
|
117
|
+
billingNodes: {
|
118
|
+
name: string;
|
119
|
+
countryCode: string;
|
120
|
+
nodeUuid: string;
|
121
|
+
}[];
|
122
|
+
};
|
123
|
+
}>;
|
124
|
+
type Response = z.infer<typeof ResponseSchema>;
|
125
|
+
}
|
126
|
+
//# sourceMappingURL=update-infra-provider.command.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"update-infra-provider.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/update-infra-provider.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,gCAAyC,CAAC;IACnD,MAAM,OAAO,gCAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;MASxB,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"}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.UpdateInfraProviderCommand = void 0;
|
4
|
+
const zod_1 = require("zod");
|
5
|
+
const api_1 = require("../../api");
|
6
|
+
const constants_1 = require("../../constants");
|
7
|
+
const models_1 = require("../../models");
|
8
|
+
var UpdateInfraProviderCommand;
|
9
|
+
(function (UpdateInfraProviderCommand) {
|
10
|
+
UpdateInfraProviderCommand.url = api_1.REST_API.INFRA_BILLING.UPDATE_PROVIDER;
|
11
|
+
UpdateInfraProviderCommand.TSQ_url = UpdateInfraProviderCommand.url;
|
12
|
+
UpdateInfraProviderCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.INFRA_BILLING_ROUTES.UPDATE_PROVIDER, 'patch', 'Update infra provider');
|
13
|
+
UpdateInfraProviderCommand.RequestSchema = zod_1.z.object({
|
14
|
+
uuid: zod_1.z.string().uuid(),
|
15
|
+
name: zod_1.z
|
16
|
+
.string()
|
17
|
+
.min(2, 'Name must be at least 2 characters')
|
18
|
+
.max(30, 'Name must be less than 255 characters')
|
19
|
+
.optional(),
|
20
|
+
faviconLink: zod_1.z.optional(zod_1.z.nullable(zod_1.z.string().url())),
|
21
|
+
loginUrl: zod_1.z.optional(zod_1.z.nullable(zod_1.z.string().url())),
|
22
|
+
});
|
23
|
+
UpdateInfraProviderCommand.ResponseSchema = zod_1.z.object({
|
24
|
+
response: models_1.InfraProviderSchema,
|
25
|
+
});
|
26
|
+
})(UpdateInfraProviderCommand || (exports.UpdateInfraProviderCommand = UpdateInfraProviderCommand = {}));
|
@@ -36,6 +36,7 @@ export declare namespace CreateInternalSquadCommand {
|
|
36
36
|
network: z.ZodNullable<z.ZodString>;
|
37
37
|
security: z.ZodNullable<z.ZodString>;
|
38
38
|
port: z.ZodNullable<z.ZodNumber>;
|
39
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
39
40
|
}, "strip", z.ZodTypeAny, {
|
40
41
|
type: string;
|
41
42
|
uuid: string;
|
@@ -44,6 +45,7 @@ export declare namespace CreateInternalSquadCommand {
|
|
44
45
|
network: string | null;
|
45
46
|
security: string | null;
|
46
47
|
port: number | null;
|
48
|
+
rawInbound?: unknown;
|
47
49
|
}, {
|
48
50
|
type: string;
|
49
51
|
uuid: string;
|
@@ -52,6 +54,7 @@ export declare namespace CreateInternalSquadCommand {
|
|
52
54
|
network: string | null;
|
53
55
|
security: string | null;
|
54
56
|
port: number | null;
|
57
|
+
rawInbound?: unknown;
|
55
58
|
}>, "many">;
|
56
59
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
57
60
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
@@ -64,6 +67,7 @@ export declare namespace CreateInternalSquadCommand {
|
|
64
67
|
network: string | null;
|
65
68
|
security: string | null;
|
66
69
|
port: number | null;
|
70
|
+
rawInbound?: unknown;
|
67
71
|
}[];
|
68
72
|
uuid: string;
|
69
73
|
createdAt: Date;
|
@@ -82,6 +86,7 @@ export declare namespace CreateInternalSquadCommand {
|
|
82
86
|
network: string | null;
|
83
87
|
security: string | null;
|
84
88
|
port: number | null;
|
89
|
+
rawInbound?: unknown;
|
85
90
|
}[];
|
86
91
|
uuid: string;
|
87
92
|
createdAt: string;
|
@@ -102,6 +107,7 @@ export declare namespace CreateInternalSquadCommand {
|
|
102
107
|
network: string | null;
|
103
108
|
security: string | null;
|
104
109
|
port: number | null;
|
110
|
+
rawInbound?: unknown;
|
105
111
|
}[];
|
106
112
|
uuid: string;
|
107
113
|
createdAt: Date;
|
@@ -122,6 +128,7 @@ export declare namespace CreateInternalSquadCommand {
|
|
122
128
|
network: string | null;
|
123
129
|
security: string | null;
|
124
130
|
port: number | null;
|
131
|
+
rawInbound?: unknown;
|
125
132
|
}[];
|
126
133
|
uuid: string;
|
127
134
|
createdAt: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"create-internal-squad.command.d.ts","sourceRoot":"","sources":["../../../../commands/internal-squads/create-internal-squad.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,yBAAkC,CAAC;IAC5C,MAAM,OAAO,yBAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;MAUxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"create-internal-squad.command.d.ts","sourceRoot":"","sources":["../../../../commands/internal-squads/create-internal-squad.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,yBAAkC,CAAC;IAC5C,MAAM,OAAO,yBAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;MAUxB,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"}
|
@@ -13,8 +13,8 @@ var CreateInternalSquadCommand;
|
|
13
13
|
CreateInternalSquadCommand.RequestSchema = zod_1.z.object({
|
14
14
|
name: zod_1.z
|
15
15
|
.string()
|
16
|
-
.min(
|
17
|
-
.max(
|
16
|
+
.min(2, 'Name must be at least 2 characters')
|
17
|
+
.max(20, 'Name must be less than 20 characters')
|
18
18
|
.regex(/^[A-Za-z0-9_-]+$/, 'Name can only contain letters, numbers, underscores and dashes'),
|
19
19
|
inbounds: zod_1.z.array(zod_1.z.string().uuid()),
|
20
20
|
});
|
@@ -33,6 +33,7 @@ export declare namespace GetInternalSquadByUuidCommand {
|
|
33
33
|
network: z.ZodNullable<z.ZodString>;
|
34
34
|
security: z.ZodNullable<z.ZodString>;
|
35
35
|
port: z.ZodNullable<z.ZodNumber>;
|
36
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
36
37
|
}, "strip", z.ZodTypeAny, {
|
37
38
|
type: string;
|
38
39
|
uuid: string;
|
@@ -41,6 +42,7 @@ export declare namespace GetInternalSquadByUuidCommand {
|
|
41
42
|
network: string | null;
|
42
43
|
security: string | null;
|
43
44
|
port: number | null;
|
45
|
+
rawInbound?: unknown;
|
44
46
|
}, {
|
45
47
|
type: string;
|
46
48
|
uuid: string;
|
@@ -49,6 +51,7 @@ export declare namespace GetInternalSquadByUuidCommand {
|
|
49
51
|
network: string | null;
|
50
52
|
security: string | null;
|
51
53
|
port: number | null;
|
54
|
+
rawInbound?: unknown;
|
52
55
|
}>, "many">;
|
53
56
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
54
57
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
@@ -61,6 +64,7 @@ export declare namespace GetInternalSquadByUuidCommand {
|
|
61
64
|
network: string | null;
|
62
65
|
security: string | null;
|
63
66
|
port: number | null;
|
67
|
+
rawInbound?: unknown;
|
64
68
|
}[];
|
65
69
|
uuid: string;
|
66
70
|
createdAt: Date;
|
@@ -79,6 +83,7 @@ export declare namespace GetInternalSquadByUuidCommand {
|
|
79
83
|
network: string | null;
|
80
84
|
security: string | null;
|
81
85
|
port: number | null;
|
86
|
+
rawInbound?: unknown;
|
82
87
|
}[];
|
83
88
|
uuid: string;
|
84
89
|
createdAt: string;
|
@@ -99,6 +104,7 @@ export declare namespace GetInternalSquadByUuidCommand {
|
|
99
104
|
network: string | null;
|
100
105
|
security: string | null;
|
101
106
|
port: number | null;
|
107
|
+
rawInbound?: unknown;
|
102
108
|
}[];
|
103
109
|
uuid: string;
|
104
110
|
createdAt: Date;
|
@@ -119,6 +125,7 @@ export declare namespace GetInternalSquadByUuidCommand {
|
|
119
125
|
network: string | null;
|
120
126
|
security: string | null;
|
121
127
|
port: number | null;
|
128
|
+
rawInbound?: unknown;
|
122
129
|
}[];
|
123
130
|
uuid: string;
|
124
131
|
createdAt: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"get-internal-squad-by-uuid..d.ts","sourceRoot":"","sources":["../../../../commands/internal-squads/get-internal-squad-by-uuid..ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,0BAAuC,CAAC;IACjD,MAAM,OAAO,QAAe,CAAC;IAE7B,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":"get-internal-squad-by-uuid..d.ts","sourceRoot":"","sources":["../../../../commands/internal-squads/get-internal-squad-by-uuid..ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,0BAAuC,CAAC;IACjD,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,2CAI3B,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"}
|
@@ -27,6 +27,7 @@ export declare namespace GetInternalSquadsCommand {
|
|
27
27
|
network: z.ZodNullable<z.ZodString>;
|
28
28
|
security: z.ZodNullable<z.ZodString>;
|
29
29
|
port: z.ZodNullable<z.ZodNumber>;
|
30
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
30
31
|
}, "strip", z.ZodTypeAny, {
|
31
32
|
type: string;
|
32
33
|
uuid: string;
|
@@ -35,6 +36,7 @@ export declare namespace GetInternalSquadsCommand {
|
|
35
36
|
network: string | null;
|
36
37
|
security: string | null;
|
37
38
|
port: number | null;
|
39
|
+
rawInbound?: unknown;
|
38
40
|
}, {
|
39
41
|
type: string;
|
40
42
|
uuid: string;
|
@@ -43,6 +45,7 @@ export declare namespace GetInternalSquadsCommand {
|
|
43
45
|
network: string | null;
|
44
46
|
security: string | null;
|
45
47
|
port: number | null;
|
48
|
+
rawInbound?: unknown;
|
46
49
|
}>, "many">;
|
47
50
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
48
51
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
@@ -55,6 +58,7 @@ export declare namespace GetInternalSquadsCommand {
|
|
55
58
|
network: string | null;
|
56
59
|
security: string | null;
|
57
60
|
port: number | null;
|
61
|
+
rawInbound?: unknown;
|
58
62
|
}[];
|
59
63
|
uuid: string;
|
60
64
|
createdAt: Date;
|
@@ -73,6 +77,7 @@ export declare namespace GetInternalSquadsCommand {
|
|
73
77
|
network: string | null;
|
74
78
|
security: string | null;
|
75
79
|
port: number | null;
|
80
|
+
rawInbound?: unknown;
|
76
81
|
}[];
|
77
82
|
uuid: string;
|
78
83
|
createdAt: string;
|
@@ -94,6 +99,7 @@ export declare namespace GetInternalSquadsCommand {
|
|
94
99
|
network: string | null;
|
95
100
|
security: string | null;
|
96
101
|
port: number | null;
|
102
|
+
rawInbound?: unknown;
|
97
103
|
}[];
|
98
104
|
uuid: string;
|
99
105
|
createdAt: Date;
|
@@ -115,6 +121,7 @@ export declare namespace GetInternalSquadsCommand {
|
|
115
121
|
network: string | null;
|
116
122
|
security: string | null;
|
117
123
|
port: number | null;
|
124
|
+
rawInbound?: unknown;
|
118
125
|
}[];
|
119
126
|
uuid: string;
|
120
127
|
createdAt: string;
|
@@ -138,6 +145,7 @@ export declare namespace GetInternalSquadsCommand {
|
|
138
145
|
network: string | null;
|
139
146
|
security: string | null;
|
140
147
|
port: number | null;
|
148
|
+
rawInbound?: unknown;
|
141
149
|
}[];
|
142
150
|
uuid: string;
|
143
151
|
createdAt: Date;
|
@@ -161,6 +169,7 @@ export declare namespace GetInternalSquadsCommand {
|
|
161
169
|
network: string | null;
|
162
170
|
security: string | null;
|
163
171
|
port: number | null;
|
172
|
+
rawInbound?: unknown;
|
164
173
|
}[];
|
165
174
|
uuid: string;
|
166
175
|
createdAt: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"get-internal-squads.command.d.ts","sourceRoot":"","sources":["../../../../commands/internal-squads/get-internal-squads.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,wBAAwB,CAAC;IAC/B,MAAM,GAAG,yBAA+B,CAAC;IACzC,MAAM,OAAO,yBAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,cAAc
|
1
|
+
{"version":3,"file":"get-internal-squads.command.d.ts","sourceRoot":"","sources":["../../../../commands/internal-squads/get-internal-squads.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,wBAAwB,CAAC;IAC/B,MAAM,GAAG,yBAA+B,CAAC;IACzC,MAAM,OAAO,yBAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -36,6 +36,7 @@ export declare namespace UpdateInternalSquadCommand {
|
|
36
36
|
network: z.ZodNullable<z.ZodString>;
|
37
37
|
security: z.ZodNullable<z.ZodString>;
|
38
38
|
port: z.ZodNullable<z.ZodNumber>;
|
39
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
39
40
|
}, "strip", z.ZodTypeAny, {
|
40
41
|
type: string;
|
41
42
|
uuid: string;
|
@@ -44,6 +45,7 @@ export declare namespace UpdateInternalSquadCommand {
|
|
44
45
|
network: string | null;
|
45
46
|
security: string | null;
|
46
47
|
port: number | null;
|
48
|
+
rawInbound?: unknown;
|
47
49
|
}, {
|
48
50
|
type: string;
|
49
51
|
uuid: string;
|
@@ -52,6 +54,7 @@ export declare namespace UpdateInternalSquadCommand {
|
|
52
54
|
network: string | null;
|
53
55
|
security: string | null;
|
54
56
|
port: number | null;
|
57
|
+
rawInbound?: unknown;
|
55
58
|
}>, "many">;
|
56
59
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
57
60
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
@@ -64,6 +67,7 @@ export declare namespace UpdateInternalSquadCommand {
|
|
64
67
|
network: string | null;
|
65
68
|
security: string | null;
|
66
69
|
port: number | null;
|
70
|
+
rawInbound?: unknown;
|
67
71
|
}[];
|
68
72
|
uuid: string;
|
69
73
|
createdAt: Date;
|
@@ -82,6 +86,7 @@ export declare namespace UpdateInternalSquadCommand {
|
|
82
86
|
network: string | null;
|
83
87
|
security: string | null;
|
84
88
|
port: number | null;
|
89
|
+
rawInbound?: unknown;
|
85
90
|
}[];
|
86
91
|
uuid: string;
|
87
92
|
createdAt: string;
|
@@ -102,6 +107,7 @@ export declare namespace UpdateInternalSquadCommand {
|
|
102
107
|
network: string | null;
|
103
108
|
security: string | null;
|
104
109
|
port: number | null;
|
110
|
+
rawInbound?: unknown;
|
105
111
|
}[];
|
106
112
|
uuid: string;
|
107
113
|
createdAt: Date;
|
@@ -122,6 +128,7 @@ export declare namespace UpdateInternalSquadCommand {
|
|
122
128
|
network: string | null;
|
123
129
|
security: string | null;
|
124
130
|
port: number | null;
|
131
|
+
rawInbound?: unknown;
|
125
132
|
}[];
|
126
133
|
uuid: string;
|
127
134
|
createdAt: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"update-internal-squad.command.d.ts","sourceRoot":"","sources":["../../../../commands/internal-squads/update-internal-squad.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,yBAAkC,CAAC;IAC5C,MAAM,OAAO,yBAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,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":"update-internal-squad.command.d.ts","sourceRoot":"","sources":["../../../../commands/internal-squads/update-internal-squad.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,yBAAkC,CAAC;IAC5C,MAAM,OAAO,yBAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,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,7 @@ export declare namespace DisableNodeCommand {
|
|
49
49
|
network: z.ZodNullable<z.ZodString>;
|
50
50
|
security: z.ZodNullable<z.ZodString>;
|
51
51
|
port: z.ZodNullable<z.ZodNumber>;
|
52
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
52
53
|
}, "strip", z.ZodTypeAny, {
|
53
54
|
type: string;
|
54
55
|
uuid: string;
|
@@ -57,6 +58,7 @@ export declare namespace DisableNodeCommand {
|
|
57
58
|
network: string | null;
|
58
59
|
security: string | null;
|
59
60
|
port: number | null;
|
61
|
+
rawInbound?: unknown;
|
60
62
|
}, {
|
61
63
|
type: string;
|
62
64
|
uuid: string;
|
@@ -65,7 +67,31 @@ export declare namespace DisableNodeCommand {
|
|
65
67
|
network: string | null;
|
66
68
|
security: string | null;
|
67
69
|
port: number | null;
|
70
|
+
rawInbound?: unknown;
|
68
71
|
}>, "many">>;
|
72
|
+
providerUuid: z.ZodNullable<z.ZodString>;
|
73
|
+
provider: z.ZodNullable<z.ZodObject<{
|
74
|
+
uuid: z.ZodString;
|
75
|
+
name: z.ZodString;
|
76
|
+
faviconLink: z.ZodNullable<z.ZodString>;
|
77
|
+
loginUrl: z.ZodNullable<z.ZodString>;
|
78
|
+
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
79
|
+
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
80
|
+
}, "strip", z.ZodTypeAny, {
|
81
|
+
uuid: string;
|
82
|
+
createdAt: Date;
|
83
|
+
updatedAt: Date;
|
84
|
+
name: string;
|
85
|
+
faviconLink: string | null;
|
86
|
+
loginUrl: string | null;
|
87
|
+
}, {
|
88
|
+
uuid: string;
|
89
|
+
createdAt: string;
|
90
|
+
updatedAt: string;
|
91
|
+
name: string;
|
92
|
+
faviconLink: string | null;
|
93
|
+
loginUrl: string | null;
|
94
|
+
}>>;
|
69
95
|
}, "strip", z.ZodTypeAny, {
|
70
96
|
uuid: string;
|
71
97
|
createdAt: Date;
|
@@ -103,7 +129,17 @@ export declare namespace DisableNodeCommand {
|
|
103
129
|
network: string | null;
|
104
130
|
security: string | null;
|
105
131
|
port: number | null;
|
132
|
+
rawInbound?: unknown;
|
106
133
|
}[] | null;
|
134
|
+
providerUuid: string | null;
|
135
|
+
provider: {
|
136
|
+
uuid: string;
|
137
|
+
createdAt: Date;
|
138
|
+
updatedAt: Date;
|
139
|
+
name: string;
|
140
|
+
faviconLink: string | null;
|
141
|
+
loginUrl: string | null;
|
142
|
+
} | null;
|
107
143
|
}, {
|
108
144
|
uuid: string;
|
109
145
|
createdAt: string;
|
@@ -141,7 +177,17 @@ export declare namespace DisableNodeCommand {
|
|
141
177
|
network: string | null;
|
142
178
|
security: string | null;
|
143
179
|
port: number | null;
|
180
|
+
rawInbound?: unknown;
|
144
181
|
}[] | null;
|
182
|
+
providerUuid: string | null;
|
183
|
+
provider: {
|
184
|
+
uuid: string;
|
185
|
+
createdAt: string;
|
186
|
+
updatedAt: string;
|
187
|
+
name: string;
|
188
|
+
faviconLink: string | null;
|
189
|
+
loginUrl: string | null;
|
190
|
+
} | null;
|
145
191
|
}>;
|
146
192
|
}, "strip", z.ZodTypeAny, {
|
147
193
|
response: {
|
@@ -181,7 +227,17 @@ export declare namespace DisableNodeCommand {
|
|
181
227
|
network: string | null;
|
182
228
|
security: string | null;
|
183
229
|
port: number | null;
|
230
|
+
rawInbound?: unknown;
|
184
231
|
}[] | null;
|
232
|
+
providerUuid: string | null;
|
233
|
+
provider: {
|
234
|
+
uuid: string;
|
235
|
+
createdAt: Date;
|
236
|
+
updatedAt: Date;
|
237
|
+
name: string;
|
238
|
+
faviconLink: string | null;
|
239
|
+
loginUrl: string | null;
|
240
|
+
} | null;
|
185
241
|
};
|
186
242
|
}, {
|
187
243
|
response: {
|
@@ -221,7 +277,17 @@ export declare namespace DisableNodeCommand {
|
|
221
277
|
network: string | null;
|
222
278
|
security: string | null;
|
223
279
|
port: number | null;
|
280
|
+
rawInbound?: unknown;
|
224
281
|
}[] | null;
|
282
|
+
providerUuid: string | null;
|
283
|
+
provider: {
|
284
|
+
uuid: string;
|
285
|
+
createdAt: string;
|
286
|
+
updatedAt: string;
|
287
|
+
name: string;
|
288
|
+
faviconLink: string | null;
|
289
|
+
loginUrl: string | null;
|
290
|
+
} | null;
|
225
291
|
};
|
226
292
|
}>;
|
227
293
|
type Response = z.infer<typeof ResponseSchema>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"disable.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/disable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAAiC,CAAC;IAC3C,MAAM,OAAO,QAAe,CAAC;IAE7B,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.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/disable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAAiC,CAAC;IAC3C,MAAM,OAAO,QAAe,CAAC;IAE7B,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,6 +49,7 @@ export declare namespace EnableNodeCommand {
|
|
49
49
|
network: z.ZodNullable<z.ZodString>;
|
50
50
|
security: z.ZodNullable<z.ZodString>;
|
51
51
|
port: z.ZodNullable<z.ZodNumber>;
|
52
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
52
53
|
}, "strip", z.ZodTypeAny, {
|
53
54
|
type: string;
|
54
55
|
uuid: string;
|
@@ -57,6 +58,7 @@ export declare namespace EnableNodeCommand {
|
|
57
58
|
network: string | null;
|
58
59
|
security: string | null;
|
59
60
|
port: number | null;
|
61
|
+
rawInbound?: unknown;
|
60
62
|
}, {
|
61
63
|
type: string;
|
62
64
|
uuid: string;
|
@@ -65,7 +67,31 @@ export declare namespace EnableNodeCommand {
|
|
65
67
|
network: string | null;
|
66
68
|
security: string | null;
|
67
69
|
port: number | null;
|
70
|
+
rawInbound?: unknown;
|
68
71
|
}>, "many">>;
|
72
|
+
providerUuid: z.ZodNullable<z.ZodString>;
|
73
|
+
provider: z.ZodNullable<z.ZodObject<{
|
74
|
+
uuid: z.ZodString;
|
75
|
+
name: z.ZodString;
|
76
|
+
faviconLink: z.ZodNullable<z.ZodString>;
|
77
|
+
loginUrl: z.ZodNullable<z.ZodString>;
|
78
|
+
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
79
|
+
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
80
|
+
}, "strip", z.ZodTypeAny, {
|
81
|
+
uuid: string;
|
82
|
+
createdAt: Date;
|
83
|
+
updatedAt: Date;
|
84
|
+
name: string;
|
85
|
+
faviconLink: string | null;
|
86
|
+
loginUrl: string | null;
|
87
|
+
}, {
|
88
|
+
uuid: string;
|
89
|
+
createdAt: string;
|
90
|
+
updatedAt: string;
|
91
|
+
name: string;
|
92
|
+
faviconLink: string | null;
|
93
|
+
loginUrl: string | null;
|
94
|
+
}>>;
|
69
95
|
}, "strip", z.ZodTypeAny, {
|
70
96
|
uuid: string;
|
71
97
|
createdAt: Date;
|
@@ -103,7 +129,17 @@ export declare namespace EnableNodeCommand {
|
|
103
129
|
network: string | null;
|
104
130
|
security: string | null;
|
105
131
|
port: number | null;
|
132
|
+
rawInbound?: unknown;
|
106
133
|
}[] | null;
|
134
|
+
providerUuid: string | null;
|
135
|
+
provider: {
|
136
|
+
uuid: string;
|
137
|
+
createdAt: Date;
|
138
|
+
updatedAt: Date;
|
139
|
+
name: string;
|
140
|
+
faviconLink: string | null;
|
141
|
+
loginUrl: string | null;
|
142
|
+
} | null;
|
107
143
|
}, {
|
108
144
|
uuid: string;
|
109
145
|
createdAt: string;
|
@@ -141,7 +177,17 @@ export declare namespace EnableNodeCommand {
|
|
141
177
|
network: string | null;
|
142
178
|
security: string | null;
|
143
179
|
port: number | null;
|
180
|
+
rawInbound?: unknown;
|
144
181
|
}[] | null;
|
182
|
+
providerUuid: string | null;
|
183
|
+
provider: {
|
184
|
+
uuid: string;
|
185
|
+
createdAt: string;
|
186
|
+
updatedAt: string;
|
187
|
+
name: string;
|
188
|
+
faviconLink: string | null;
|
189
|
+
loginUrl: string | null;
|
190
|
+
} | null;
|
145
191
|
}>;
|
146
192
|
}, "strip", z.ZodTypeAny, {
|
147
193
|
response: {
|
@@ -181,7 +227,17 @@ export declare namespace EnableNodeCommand {
|
|
181
227
|
network: string | null;
|
182
228
|
security: string | null;
|
183
229
|
port: number | null;
|
230
|
+
rawInbound?: unknown;
|
184
231
|
}[] | null;
|
232
|
+
providerUuid: string | null;
|
233
|
+
provider: {
|
234
|
+
uuid: string;
|
235
|
+
createdAt: Date;
|
236
|
+
updatedAt: Date;
|
237
|
+
name: string;
|
238
|
+
faviconLink: string | null;
|
239
|
+
loginUrl: string | null;
|
240
|
+
} | null;
|
185
241
|
};
|
186
242
|
}, {
|
187
243
|
response: {
|
@@ -221,7 +277,17 @@ export declare namespace EnableNodeCommand {
|
|
221
277
|
network: string | null;
|
222
278
|
security: string | null;
|
223
279
|
port: number | null;
|
280
|
+
rawInbound?: unknown;
|
224
281
|
}[] | null;
|
282
|
+
providerUuid: string | null;
|
283
|
+
provider: {
|
284
|
+
uuid: string;
|
285
|
+
createdAt: string;
|
286
|
+
updatedAt: string;
|
287
|
+
name: string;
|
288
|
+
faviconLink: string | null;
|
289
|
+
loginUrl: string | null;
|
290
|
+
} | null;
|
225
291
|
};
|
226
292
|
}>;
|
227
293
|
type Response = z.infer<typeof ResponseSchema>;
|