ntfy-reverse-proxy 2.0.4 → 2.1.1
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/LICENSE +22 -0
- package/README.md +10 -0
- package/build/src/cli/commands/config-io.d.ts +3 -3
- package/build/src/cli/commands/config-io.d.ts.map +1 -1
- package/build/src/cli/commands/config-io.js +1 -1
- package/build/src/cli/commands/config-io.js.map +1 -1
- package/build/src/cli/commands/context.d.ts +7 -7
- package/build/src/cli/commands/context.d.ts.map +1 -1
- package/build/src/cli/commands/context.js +1 -1
- package/build/src/cli/commands/context.js.map +1 -1
- package/build/src/cli/commands/deploy.d.ts +2 -2
- package/build/src/cli/commands/deploy.d.ts.map +1 -1
- package/build/src/cli/commands/deploy.js +72 -30
- package/build/src/cli/commands/deploy.js.map +1 -1
- package/build/src/cli/commands/generate.d.ts +2 -2
- package/build/src/cli/commands/generate.d.ts.map +1 -1
- package/build/src/cli/commands/generate.js +3 -3
- package/build/src/cli/commands/generate.js.map +1 -1
- package/build/src/cli/commands/server.d.ts +5 -5
- package/build/src/cli/commands/server.d.ts.map +1 -1
- package/build/src/cli/commands/server.js.map +1 -1
- package/build/src/cli/commands/settings.d.ts +3 -3
- package/build/src/cli/commands/settings.d.ts.map +1 -1
- package/build/src/cli/commands/settings.js.map +1 -1
- package/build/src/cli/commands/validate.d.ts +2 -2
- package/build/src/cli/commands/validate.d.ts.map +1 -1
- package/build/src/cli/commands/validate.js +3 -0
- package/build/src/cli/commands/validate.js.map +1 -1
- package/build/src/cli/index.d.ts +2 -2
- package/build/src/cli/index.d.ts.map +1 -1
- package/build/src/cli/index.js +4 -4
- package/build/src/cli/index.js.map +1 -1
- package/build/src/cli/menu/interactive.d.ts +2 -2
- package/build/src/cli/menu/interactive.d.ts.map +1 -1
- package/build/src/cli/menu/interactive.js +260 -94
- package/build/src/cli/menu/interactive.js.map +1 -1
- package/build/src/lib/regex.d.ts +4 -1
- package/build/src/lib/regex.d.ts.map +1 -1
- package/build/src/lib/regex.js +4 -1
- package/build/src/lib/regex.js.map +1 -1
- package/build/src/lib/schema.d.ts +24 -0
- package/build/src/lib/schema.d.ts.map +1 -1
- package/build/src/lib/schema.js +11 -2
- package/build/src/lib/schema.js.map +1 -1
- package/build/src/lib/utility.d.ts +2 -2
- package/build/src/lib/utility.d.ts.map +1 -1
- package/build/src/lib/utility.js +1 -1
- package/build/src/lib/utility.js.map +1 -1
- package/build/src/types/cli/commands/config-io.d.ts +12 -12
- package/build/src/types/cli/commands/context.d.ts +96 -58
- package/build/src/types/cli/commands/deploy.d.ts +342 -298
- package/build/src/types/cli/commands/generate.d.ts +40 -24
- package/build/src/types/cli/commands/server.d.ts +23 -23
- package/build/src/types/cli/commands/settings.d.ts +8 -8
- package/build/src/types/cli/commands/validate.d.ts +16 -16
- package/build/src/types/cli/index.d.ts +16 -20
- package/build/src/types/cli/menu/interactive.d.ts +233 -178
- package/build/src/types/lib/schema.d.ts +89 -81
- package/build/src/types/lib/utility.d.ts +4 -2
- package/build/src/types/shared.d.ts +85 -0
- package/build/src/types/tests/cli/commands/context.test.d.ts +102 -31
- package/build/src/types/tests/cli/commands/generate.test.d.ts +50 -4
- package/build/src/types/tests/cli/commands/server.test.d.ts +88 -23
- package/build/src/types/tests/cli/commands/settings.test.d.ts +65 -21
- package/build/src/types/tests/cli/commands/validate.test.d.ts +69 -8
- package/build/src/types/tests/cli/menu/interactive-integration.test.d.ts +99 -0
- package/build/src/types/tests/cli/menu/interactive.test.d.ts +275 -2
- package/build/src/types/tests/lib/schema.test.d.ts +258 -3
- package/build/src/types/tests/worker/index.test.d.ts +166 -8
- package/build/src/types/tests/worker/interpreters/ntfy-json.test.d.ts +94 -10
- package/build/src/types/tests/worker/interpreters/pfsense.test.d.ts +163 -4
- package/build/src/types/tests/worker/interpreters/plain-text.test.d.ts +67 -4
- package/build/src/types/tests/worker/interpreters/seerr.test.d.ts +138 -3
- package/build/src/types/tests/worker/interpreters/statuspage.test.d.ts +235 -30
- package/build/src/types/tests/worker/interpreters/synology.test.d.ts +61 -3
- package/build/src/types/tests/worker/interpreters/unifi.test.d.ts +93 -3
- package/build/src/types/tests/worker/landing/page.test.d.ts +73 -50
- package/build/src/types/tests/worker/pipeline/accumulate.test.d.ts +226 -15
- package/build/src/types/tests/worker/pipeline/authenticate.test.d.ts +148 -4
- package/build/src/types/tests/worker/pipeline/email.test.d.ts +82 -8
- package/build/src/types/tests/worker/pipeline/format.test.d.ts +112 -32
- package/build/src/types/tests/worker/pipeline/interpret.test.d.ts +109 -17
- package/build/src/types/tests/worker/pipeline/parse.test.d.ts +70 -5
- package/build/src/types/tests/worker/pipeline/receive.test.d.ts +156 -15
- package/build/src/types/tests/worker/pipeline/respond.test.d.ts +129 -10
- package/build/src/types/tests/worker/pipeline/route.test.d.ts +412 -74
- package/build/src/types/tests/worker/pipeline/send.test.d.ts +58 -23
- package/build/src/types/tests/worker/pipeline/split.test.d.ts +47 -9
- package/build/src/types/worker/handlers.d.ts +193 -0
- package/build/src/types/worker/index.d.ts +58 -203
- package/build/src/types/worker/interpreters/ntfy-json.d.ts +10 -10
- package/build/src/types/worker/interpreters/pfsense.d.ts +57 -49
- package/build/src/types/worker/interpreters/plain-text.d.ts +7 -7
- package/build/src/types/worker/interpreters/seerr.d.ts +63 -61
- package/build/src/types/worker/interpreters/statuspage.d.ts +201 -116
- package/build/src/types/worker/interpreters/synology.d.ts +48 -46
- package/build/src/types/worker/interpreters/unifi.d.ts +79 -54
- package/build/src/types/worker/landing/page.d.ts +30 -23
- package/build/src/types/worker/pipeline/accumulate.d.ts +46 -32
- package/build/src/types/worker/pipeline/authenticate.d.ts +94 -34
- package/build/src/types/worker/pipeline/email.d.ts +114 -50
- package/build/src/types/worker/pipeline/format.d.ts +31 -23
- package/build/src/types/worker/pipeline/interpret.d.ts +34 -34
- package/build/src/types/worker/pipeline/parse.d.ts +25 -19
- package/build/src/types/worker/pipeline/receive.d.ts +36 -34
- package/build/src/types/worker/pipeline/respond.d.ts +119 -63
- package/build/src/types/worker/pipeline/route.d.ts +33 -16
- package/build/src/types/worker/pipeline/send.d.ts +116 -79
- package/build/src/types/worker/pipeline/split.d.ts +21 -16
- package/build/src/worker/handlers.d.ts +5 -4
- package/build/src/worker/handlers.d.ts.map +1 -1
- package/build/src/worker/handlers.js +238 -202
- package/build/src/worker/handlers.js.map +1 -1
- package/build/src/worker/index.d.ts +2 -2
- package/build/src/worker/index.d.ts.map +1 -1
- package/build/src/worker/index.js +37 -9
- package/build/src/worker/index.js.map +1 -1
- package/build/src/worker/interpreters/ntfy-json.d.ts +2 -2
- package/build/src/worker/interpreters/ntfy-json.d.ts.map +1 -1
- package/build/src/worker/interpreters/ntfy-json.js.map +1 -1
- package/build/src/worker/interpreters/pfsense.d.ts +2 -2
- package/build/src/worker/interpreters/pfsense.d.ts.map +1 -1
- package/build/src/worker/interpreters/pfsense.js +20 -27
- package/build/src/worker/interpreters/pfsense.js.map +1 -1
- package/build/src/worker/interpreters/plain-text.d.ts +2 -2
- package/build/src/worker/interpreters/plain-text.d.ts.map +1 -1
- package/build/src/worker/interpreters/plain-text.js.map +1 -1
- package/build/src/worker/interpreters/seerr.d.ts +2 -2
- package/build/src/worker/interpreters/seerr.d.ts.map +1 -1
- package/build/src/worker/interpreters/seerr.js +16 -12
- package/build/src/worker/interpreters/seerr.js.map +1 -1
- package/build/src/worker/interpreters/statuspage.d.ts +2 -2
- package/build/src/worker/interpreters/statuspage.d.ts.map +1 -1
- package/build/src/worker/interpreters/statuspage.js +98 -47
- package/build/src/worker/interpreters/statuspage.js.map +1 -1
- package/build/src/worker/interpreters/synology.d.ts +2 -2
- package/build/src/worker/interpreters/synology.d.ts.map +1 -1
- package/build/src/worker/interpreters/synology.js +9 -5
- package/build/src/worker/interpreters/synology.js.map +1 -1
- package/build/src/worker/interpreters/unifi.d.ts +2 -2
- package/build/src/worker/interpreters/unifi.d.ts.map +1 -1
- package/build/src/worker/interpreters/unifi.js +34 -20
- package/build/src/worker/interpreters/unifi.js.map +1 -1
- package/build/src/worker/landing/page.d.ts +2 -2
- package/build/src/worker/landing/page.d.ts.map +1 -1
- package/build/src/worker/landing/page.js +4 -3
- package/build/src/worker/landing/page.js.map +1 -1
- package/build/src/worker/pipeline/accumulate.d.ts +5 -6
- package/build/src/worker/pipeline/accumulate.d.ts.map +1 -1
- package/build/src/worker/pipeline/accumulate.js +4 -11
- package/build/src/worker/pipeline/accumulate.js.map +1 -1
- package/build/src/worker/pipeline/authenticate.d.ts +2 -2
- package/build/src/worker/pipeline/authenticate.d.ts.map +1 -1
- package/build/src/worker/pipeline/authenticate.js +25 -7
- package/build/src/worker/pipeline/authenticate.js.map +1 -1
- package/build/src/worker/pipeline/email.d.ts +2 -2
- package/build/src/worker/pipeline/email.d.ts.map +1 -1
- package/build/src/worker/pipeline/email.js +34 -11
- package/build/src/worker/pipeline/email.js.map +1 -1
- package/build/src/worker/pipeline/format.d.ts +2 -3
- package/build/src/worker/pipeline/format.d.ts.map +1 -1
- package/build/src/worker/pipeline/format.js +2 -1
- package/build/src/worker/pipeline/format.js.map +1 -1
- package/build/src/worker/pipeline/interpret.d.ts +4 -3
- package/build/src/worker/pipeline/interpret.d.ts.map +1 -1
- package/build/src/worker/pipeline/interpret.js +7 -7
- package/build/src/worker/pipeline/interpret.js.map +1 -1
- package/build/src/worker/pipeline/parse.d.ts +2 -2
- package/build/src/worker/pipeline/parse.d.ts.map +1 -1
- package/build/src/worker/pipeline/parse.js +14 -7
- package/build/src/worker/pipeline/parse.js.map +1 -1
- package/build/src/worker/pipeline/receive.d.ts +2 -2
- package/build/src/worker/pipeline/receive.d.ts.map +1 -1
- package/build/src/worker/pipeline/receive.js +6 -6
- package/build/src/worker/pipeline/receive.js.map +1 -1
- package/build/src/worker/pipeline/respond.d.ts +2 -2
- package/build/src/worker/pipeline/respond.d.ts.map +1 -1
- package/build/src/worker/pipeline/respond.js +1 -1
- package/build/src/worker/pipeline/respond.js.map +1 -1
- package/build/src/worker/pipeline/route.d.ts +2 -3
- package/build/src/worker/pipeline/route.d.ts.map +1 -1
- package/build/src/worker/pipeline/route.js.map +1 -1
- package/build/src/worker/pipeline/send.d.ts +2 -2
- package/build/src/worker/pipeline/send.d.ts.map +1 -1
- package/build/src/worker/pipeline/send.js +80 -41
- package/build/src/worker/pipeline/send.js.map +1 -1
- package/build/src/worker/pipeline/split.d.ts +2 -2
- package/build/src/worker/pipeline/split.d.ts.map +1 -1
- package/build/src/worker/pipeline/split.js +4 -2
- package/build/src/worker/pipeline/split.js.map +1 -1
- package/package.json +11 -9
- package/build/src/types/tests/type-declarations.test.d.ts +0 -173
- package/build/src/types/worker/pipeline/shared.d.ts +0 -85
|
@@ -1,131 +1,169 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { Lib_Schema_ConfigSchemaContexts } from '../../lib/schema.d.ts';
|
|
2
2
|
|
|
3
|
-
import type {
|
|
3
|
+
import type { Lib_Schema_ConfigSchemaServers } from '../../lib/schema.d.ts';
|
|
4
|
+
|
|
5
|
+
import type { Lib_Schema_ConfigSchemaSettings } from '../../lib/schema.d.ts';
|
|
6
|
+
|
|
7
|
+
import type { Lib_Schema_ContextConfig } from '../../lib/schema.d.ts';
|
|
8
|
+
|
|
9
|
+
import type { Lib_Schema_EmailContextConfig } from '../../lib/schema.d.ts';
|
|
10
|
+
|
|
11
|
+
import type { Lib_Schema_HttpContextConfig } from '../../lib/schema.d.ts';
|
|
4
12
|
|
|
5
13
|
/**
|
|
6
14
|
* CLI - Commands - Context.
|
|
7
15
|
*
|
|
8
16
|
* @since 2.0.0
|
|
9
17
|
*/
|
|
10
|
-
export type
|
|
18
|
+
export type Cli_Commands_Context_AddContext_ConfigPath = string;
|
|
11
19
|
|
|
12
|
-
export type
|
|
20
|
+
export type Cli_Commands_Context_AddContext_Context = Lib_Schema_ContextConfig;
|
|
13
21
|
|
|
14
|
-
export type
|
|
22
|
+
export type Cli_Commands_Context_AddContext_Returns = void;
|
|
15
23
|
|
|
16
|
-
export type
|
|
24
|
+
export type Cli_Commands_Context_AddContext_Config_Settings = Lib_Schema_ConfigSchemaSettings;
|
|
17
25
|
|
|
18
|
-
export type
|
|
26
|
+
export type Cli_Commands_Context_AddContext_Config_Servers = Lib_Schema_ConfigSchemaServers;
|
|
19
27
|
|
|
20
|
-
export type
|
|
28
|
+
export type Cli_Commands_Context_AddContext_Config_Contexts = Lib_Schema_ConfigSchemaContexts;
|
|
21
29
|
|
|
22
|
-
export type
|
|
30
|
+
export type Cli_Commands_Context_AddContext_Config = {
|
|
31
|
+
settings: Cli_Commands_Context_AddContext_Config_Settings;
|
|
32
|
+
servers: Cli_Commands_Context_AddContext_Config_Servers;
|
|
33
|
+
contexts: Cli_Commands_Context_AddContext_Config_Contexts;
|
|
34
|
+
};
|
|
23
35
|
|
|
24
|
-
export type
|
|
36
|
+
export type Cli_Commands_Context_AddContext_DuplicateName = boolean;
|
|
25
37
|
|
|
26
|
-
export type
|
|
38
|
+
export type Cli_Commands_Context_AddContext_CurrentContext = Lib_Schema_HttpContextConfig | Lib_Schema_EmailContextConfig;
|
|
27
39
|
|
|
28
|
-
export type
|
|
40
|
+
export type Cli_Commands_Context_AddContext_ExistingIds = Set<string>;
|
|
29
41
|
|
|
30
|
-
export type
|
|
42
|
+
export type Cli_Commands_Context_AddContext_NewId = string;
|
|
31
43
|
|
|
32
|
-
|
|
33
|
-
* CLI - Commands - Context.
|
|
34
|
-
*
|
|
35
|
-
* @since 2.0.0
|
|
36
|
-
*/
|
|
37
|
-
export type CliCommandsContextListContextsConfigPath = string;
|
|
44
|
+
export type Cli_Commands_Context_AddContext_ServerNames = string[];
|
|
38
45
|
|
|
39
|
-
export type
|
|
46
|
+
export type Cli_Commands_Context_AddContext_MissingServer = string | undefined;
|
|
40
47
|
|
|
41
|
-
export type
|
|
48
|
+
export type Cli_Commands_Context_AddContext_Ordered = Lib_Schema_HttpContextConfig | Lib_Schema_EmailContextConfig;
|
|
42
49
|
|
|
43
50
|
/**
|
|
44
51
|
* CLI - Commands - Context.
|
|
45
52
|
*
|
|
46
53
|
* @since 2.0.0
|
|
47
54
|
*/
|
|
48
|
-
export type
|
|
55
|
+
export type Cli_Commands_Context_EditContext_ConfigPath = string;
|
|
56
|
+
|
|
57
|
+
export type Cli_Commands_Context_EditContext_Name = string;
|
|
49
58
|
|
|
50
|
-
export type
|
|
59
|
+
export type Cli_Commands_Context_EditContext_Updates = Partial<Lib_Schema_ContextConfig>;
|
|
51
60
|
|
|
52
|
-
export type
|
|
61
|
+
export type Cli_Commands_Context_EditContext_Returns = void;
|
|
53
62
|
|
|
54
|
-
export type
|
|
63
|
+
export type Cli_Commands_Context_EditContext_Config_Settings = Lib_Schema_ConfigSchemaSettings;
|
|
55
64
|
|
|
56
|
-
export type
|
|
65
|
+
export type Cli_Commands_Context_EditContext_Config_Servers = Lib_Schema_ConfigSchemaServers;
|
|
57
66
|
|
|
58
|
-
export type
|
|
67
|
+
export type Cli_Commands_Context_EditContext_Config_Contexts = Lib_Schema_ConfigSchemaContexts;
|
|
59
68
|
|
|
60
|
-
export type
|
|
69
|
+
export type Cli_Commands_Context_EditContext_Config = {
|
|
70
|
+
settings: Cli_Commands_Context_EditContext_Config_Settings;
|
|
71
|
+
servers: Cli_Commands_Context_EditContext_Config_Servers;
|
|
72
|
+
contexts: Cli_Commands_Context_EditContext_Config_Contexts;
|
|
73
|
+
};
|
|
61
74
|
|
|
62
|
-
export type
|
|
75
|
+
export type Cli_Commands_Context_EditContext_Index = number;
|
|
63
76
|
|
|
64
|
-
export type
|
|
77
|
+
export type Cli_Commands_Context_EditContext_UpdatedUpdates = Partial<Lib_Schema_ContextConfig>;
|
|
65
78
|
|
|
66
|
-
export type
|
|
79
|
+
export type Cli_Commands_Context_EditContext_NewId = string;
|
|
67
80
|
|
|
68
|
-
export type
|
|
81
|
+
export type Cli_Commands_Context_EditContext_ExistingIds = Set<string>;
|
|
82
|
+
|
|
83
|
+
export type Cli_Commands_Context_EditContext_Merged = Lib_Schema_HttpContextConfig | Lib_Schema_EmailContextConfig;
|
|
84
|
+
|
|
85
|
+
export type Cli_Commands_Context_EditContext_Ordered = Lib_Schema_HttpContextConfig | Lib_Schema_EmailContextConfig;
|
|
69
86
|
|
|
70
87
|
/**
|
|
71
88
|
* CLI - Commands - Context.
|
|
72
89
|
*
|
|
73
90
|
* @since 2.0.0
|
|
74
91
|
*/
|
|
75
|
-
export type
|
|
76
|
-
|
|
77
|
-
export type CliCommandsContextRemoveContextName = string;
|
|
78
|
-
|
|
79
|
-
export type CliCommandsContextRemoveContextReturn = void;
|
|
80
|
-
|
|
81
|
-
export type CliCommandsContextRemoveContextConfig = LibSchemaConfigSchema;
|
|
82
|
-
|
|
83
|
-
export type CliCommandsContextRemoveContextFiltered = LibSchemaContextConfig[];
|
|
92
|
+
export type Cli_Commands_Context_GenerateId_Returns = string;
|
|
84
93
|
|
|
85
94
|
/**
|
|
86
95
|
* CLI - Commands - Context.
|
|
87
96
|
*
|
|
88
97
|
* @since 2.0.0
|
|
89
98
|
*/
|
|
90
|
-
export type
|
|
91
|
-
|
|
92
|
-
export type CliCommandsContextOrderContextKeysReturn = LibSchemaContextConfig;
|
|
99
|
+
export type Cli_Commands_Context_GenerateRandomString_Length = number;
|
|
93
100
|
|
|
94
|
-
export type
|
|
101
|
+
export type Cli_Commands_Context_GenerateRandomString_Lowercase = boolean;
|
|
95
102
|
|
|
96
|
-
export type
|
|
103
|
+
export type Cli_Commands_Context_GenerateRandomString_Returns = string;
|
|
97
104
|
|
|
98
|
-
export type
|
|
105
|
+
export type Cli_Commands_Context_GenerateRandomString_Result = string;
|
|
99
106
|
|
|
100
|
-
export type
|
|
101
|
-
|
|
102
|
-
export type CliCommandsContextOrderContextKeysResult = LibSchemaContextConfig;
|
|
107
|
+
export type Cli_Commands_Context_GenerateRandomString_Chunk = string;
|
|
103
108
|
|
|
104
109
|
/**
|
|
105
110
|
* CLI - Commands - Context.
|
|
106
111
|
*
|
|
107
112
|
* @since 2.0.0
|
|
108
113
|
*/
|
|
109
|
-
export type
|
|
110
|
-
|
|
111
|
-
export type CliCommandsContextGenerateRandomStringLowercase = boolean;
|
|
114
|
+
export type Cli_Commands_Context_GenerateToken_Returns = string;
|
|
112
115
|
|
|
113
|
-
|
|
116
|
+
/**
|
|
117
|
+
* CLI - Commands - Context.
|
|
118
|
+
*
|
|
119
|
+
* @since 2.0.0
|
|
120
|
+
*/
|
|
121
|
+
export type Cli_Commands_Context_ListContexts_ConfigPath = string;
|
|
114
122
|
|
|
115
|
-
export type
|
|
123
|
+
export type Cli_Commands_Context_ListContexts_Returns = Lib_Schema_ContextConfig[];
|
|
116
124
|
|
|
117
|
-
export type
|
|
125
|
+
export type Cli_Commands_Context_ListContexts_Config = Lib_Schema_ConfigSchemaContexts;
|
|
118
126
|
|
|
119
127
|
/**
|
|
120
128
|
* CLI - Commands - Context.
|
|
121
129
|
*
|
|
122
130
|
* @since 2.0.0
|
|
123
131
|
*/
|
|
124
|
-
export type
|
|
132
|
+
export type Cli_Commands_Context_OrderContextKeys_Context = Lib_Schema_ContextConfig;
|
|
133
|
+
|
|
134
|
+
export type Cli_Commands_Context_OrderContextKeys_Returns = Lib_Schema_ContextConfig;
|
|
135
|
+
|
|
136
|
+
export type Cli_Commands_Context_OrderContextKeys_Type = 'http' | 'email';
|
|
137
|
+
|
|
138
|
+
export type Cli_Commands_Context_OrderContextKeys_Name = string;
|
|
139
|
+
|
|
140
|
+
export type Cli_Commands_Context_OrderContextKeys_Id = string;
|
|
141
|
+
|
|
142
|
+
export type Cli_Commands_Context_OrderContextKeys_Rest = Record<string, unknown>;
|
|
143
|
+
|
|
144
|
+
export type Cli_Commands_Context_OrderContextKeys_Result = Lib_Schema_ContextConfig;
|
|
125
145
|
|
|
126
146
|
/**
|
|
127
147
|
* CLI - Commands - Context.
|
|
128
148
|
*
|
|
129
149
|
* @since 2.0.0
|
|
130
150
|
*/
|
|
131
|
-
export type
|
|
151
|
+
export type Cli_Commands_Context_RemoveContext_ConfigPath = string;
|
|
152
|
+
|
|
153
|
+
export type Cli_Commands_Context_RemoveContext_Name = string;
|
|
154
|
+
|
|
155
|
+
export type Cli_Commands_Context_RemoveContext_Returns = void;
|
|
156
|
+
|
|
157
|
+
export type Cli_Commands_Context_RemoveContext_Config_Settings = Lib_Schema_ConfigSchemaSettings;
|
|
158
|
+
|
|
159
|
+
export type Cli_Commands_Context_RemoveContext_Config_Servers = Lib_Schema_ConfigSchemaServers;
|
|
160
|
+
|
|
161
|
+
export type Cli_Commands_Context_RemoveContext_Config_Contexts = Lib_Schema_ConfigSchemaContexts;
|
|
162
|
+
|
|
163
|
+
export type Cli_Commands_Context_RemoveContext_Config = {
|
|
164
|
+
settings: Cli_Commands_Context_RemoveContext_Config_Settings;
|
|
165
|
+
servers: Cli_Commands_Context_RemoveContext_Config_Servers;
|
|
166
|
+
contexts: Cli_Commands_Context_RemoveContext_Config_Contexts;
|
|
167
|
+
};
|
|
168
|
+
|
|
169
|
+
export type Cli_Commands_Context_RemoveContext_Filtered = (Lib_Schema_HttpContextConfig | Lib_Schema_EmailContextConfig)[];
|