ntfy-reverse-proxy 2.0.4 → 2.1.0

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.
Files changed (192) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +10 -0
  3. package/build/src/cli/commands/config-io.d.ts +3 -3
  4. package/build/src/cli/commands/config-io.d.ts.map +1 -1
  5. package/build/src/cli/commands/config-io.js +1 -1
  6. package/build/src/cli/commands/config-io.js.map +1 -1
  7. package/build/src/cli/commands/context.d.ts +7 -7
  8. package/build/src/cli/commands/context.d.ts.map +1 -1
  9. package/build/src/cli/commands/context.js +1 -1
  10. package/build/src/cli/commands/context.js.map +1 -1
  11. package/build/src/cli/commands/deploy.d.ts +2 -2
  12. package/build/src/cli/commands/deploy.d.ts.map +1 -1
  13. package/build/src/cli/commands/deploy.js +72 -30
  14. package/build/src/cli/commands/deploy.js.map +1 -1
  15. package/build/src/cli/commands/generate.d.ts +2 -2
  16. package/build/src/cli/commands/generate.d.ts.map +1 -1
  17. package/build/src/cli/commands/generate.js +3 -3
  18. package/build/src/cli/commands/generate.js.map +1 -1
  19. package/build/src/cli/commands/server.d.ts +5 -5
  20. package/build/src/cli/commands/server.d.ts.map +1 -1
  21. package/build/src/cli/commands/server.js.map +1 -1
  22. package/build/src/cli/commands/settings.d.ts +3 -3
  23. package/build/src/cli/commands/settings.d.ts.map +1 -1
  24. package/build/src/cli/commands/settings.js.map +1 -1
  25. package/build/src/cli/commands/validate.d.ts +2 -2
  26. package/build/src/cli/commands/validate.d.ts.map +1 -1
  27. package/build/src/cli/commands/validate.js +3 -0
  28. package/build/src/cli/commands/validate.js.map +1 -1
  29. package/build/src/cli/index.d.ts +2 -2
  30. package/build/src/cli/index.d.ts.map +1 -1
  31. package/build/src/cli/index.js +4 -4
  32. package/build/src/cli/index.js.map +1 -1
  33. package/build/src/cli/menu/interactive.d.ts +2 -2
  34. package/build/src/cli/menu/interactive.d.ts.map +1 -1
  35. package/build/src/cli/menu/interactive.js +174 -84
  36. package/build/src/cli/menu/interactive.js.map +1 -1
  37. package/build/src/lib/regex.d.ts +4 -1
  38. package/build/src/lib/regex.d.ts.map +1 -1
  39. package/build/src/lib/regex.js +4 -1
  40. package/build/src/lib/regex.js.map +1 -1
  41. package/build/src/lib/schema.d.ts +24 -0
  42. package/build/src/lib/schema.d.ts.map +1 -1
  43. package/build/src/lib/schema.js +11 -2
  44. package/build/src/lib/schema.js.map +1 -1
  45. package/build/src/lib/utility.d.ts +2 -2
  46. package/build/src/lib/utility.d.ts.map +1 -1
  47. package/build/src/lib/utility.js +1 -1
  48. package/build/src/lib/utility.js.map +1 -1
  49. package/build/src/types/cli/commands/config-io.d.ts +12 -12
  50. package/build/src/types/cli/commands/context.d.ts +96 -58
  51. package/build/src/types/cli/commands/deploy.d.ts +342 -298
  52. package/build/src/types/cli/commands/generate.d.ts +40 -24
  53. package/build/src/types/cli/commands/server.d.ts +23 -23
  54. package/build/src/types/cli/commands/settings.d.ts +8 -8
  55. package/build/src/types/cli/commands/validate.d.ts +16 -16
  56. package/build/src/types/cli/index.d.ts +16 -20
  57. package/build/src/types/cli/menu/interactive.d.ts +233 -178
  58. package/build/src/types/lib/schema.d.ts +89 -81
  59. package/build/src/types/lib/utility.d.ts +4 -2
  60. package/build/src/types/shared.d.ts +85 -0
  61. package/build/src/types/tests/cli/commands/context.test.d.ts +102 -31
  62. package/build/src/types/tests/cli/commands/generate.test.d.ts +50 -4
  63. package/build/src/types/tests/cli/commands/server.test.d.ts +88 -23
  64. package/build/src/types/tests/cli/commands/settings.test.d.ts +65 -21
  65. package/build/src/types/tests/cli/commands/validate.test.d.ts +69 -8
  66. package/build/src/types/tests/cli/menu/interactive.test.d.ts +2 -2
  67. package/build/src/types/tests/lib/schema.test.d.ts +258 -3
  68. package/build/src/types/tests/worker/index.test.d.ts +166 -8
  69. package/build/src/types/tests/worker/interpreters/ntfy-json.test.d.ts +94 -10
  70. package/build/src/types/tests/worker/interpreters/pfsense.test.d.ts +163 -4
  71. package/build/src/types/tests/worker/interpreters/plain-text.test.d.ts +67 -4
  72. package/build/src/types/tests/worker/interpreters/seerr.test.d.ts +138 -3
  73. package/build/src/types/tests/worker/interpreters/statuspage.test.d.ts +235 -30
  74. package/build/src/types/tests/worker/interpreters/synology.test.d.ts +61 -3
  75. package/build/src/types/tests/worker/interpreters/unifi.test.d.ts +93 -3
  76. package/build/src/types/tests/worker/landing/page.test.d.ts +73 -50
  77. package/build/src/types/tests/worker/pipeline/accumulate.test.d.ts +226 -15
  78. package/build/src/types/tests/worker/pipeline/authenticate.test.d.ts +148 -4
  79. package/build/src/types/tests/worker/pipeline/email.test.d.ts +82 -8
  80. package/build/src/types/tests/worker/pipeline/format.test.d.ts +112 -32
  81. package/build/src/types/tests/worker/pipeline/interpret.test.d.ts +109 -17
  82. package/build/src/types/tests/worker/pipeline/parse.test.d.ts +70 -5
  83. package/build/src/types/tests/worker/pipeline/receive.test.d.ts +156 -15
  84. package/build/src/types/tests/worker/pipeline/respond.test.d.ts +129 -10
  85. package/build/src/types/tests/worker/pipeline/route.test.d.ts +412 -74
  86. package/build/src/types/tests/worker/pipeline/send.test.d.ts +58 -23
  87. package/build/src/types/tests/worker/pipeline/split.test.d.ts +47 -9
  88. package/build/src/types/worker/handlers.d.ts +193 -0
  89. package/build/src/types/worker/index.d.ts +58 -203
  90. package/build/src/types/worker/interpreters/ntfy-json.d.ts +10 -10
  91. package/build/src/types/worker/interpreters/pfsense.d.ts +57 -49
  92. package/build/src/types/worker/interpreters/plain-text.d.ts +7 -7
  93. package/build/src/types/worker/interpreters/seerr.d.ts +63 -61
  94. package/build/src/types/worker/interpreters/statuspage.d.ts +201 -116
  95. package/build/src/types/worker/interpreters/synology.d.ts +48 -46
  96. package/build/src/types/worker/interpreters/unifi.d.ts +79 -54
  97. package/build/src/types/worker/landing/page.d.ts +30 -23
  98. package/build/src/types/worker/pipeline/accumulate.d.ts +46 -32
  99. package/build/src/types/worker/pipeline/authenticate.d.ts +94 -34
  100. package/build/src/types/worker/pipeline/email.d.ts +114 -50
  101. package/build/src/types/worker/pipeline/format.d.ts +31 -23
  102. package/build/src/types/worker/pipeline/interpret.d.ts +34 -34
  103. package/build/src/types/worker/pipeline/parse.d.ts +25 -19
  104. package/build/src/types/worker/pipeline/receive.d.ts +36 -34
  105. package/build/src/types/worker/pipeline/respond.d.ts +119 -63
  106. package/build/src/types/worker/pipeline/route.d.ts +33 -16
  107. package/build/src/types/worker/pipeline/send.d.ts +116 -79
  108. package/build/src/types/worker/pipeline/split.d.ts +21 -16
  109. package/build/src/worker/handlers.d.ts +5 -4
  110. package/build/src/worker/handlers.d.ts.map +1 -1
  111. package/build/src/worker/handlers.js +238 -202
  112. package/build/src/worker/handlers.js.map +1 -1
  113. package/build/src/worker/index.d.ts +2 -2
  114. package/build/src/worker/index.d.ts.map +1 -1
  115. package/build/src/worker/index.js +37 -9
  116. package/build/src/worker/index.js.map +1 -1
  117. package/build/src/worker/interpreters/ntfy-json.d.ts +2 -2
  118. package/build/src/worker/interpreters/ntfy-json.d.ts.map +1 -1
  119. package/build/src/worker/interpreters/ntfy-json.js.map +1 -1
  120. package/build/src/worker/interpreters/pfsense.d.ts +2 -2
  121. package/build/src/worker/interpreters/pfsense.d.ts.map +1 -1
  122. package/build/src/worker/interpreters/pfsense.js +20 -27
  123. package/build/src/worker/interpreters/pfsense.js.map +1 -1
  124. package/build/src/worker/interpreters/plain-text.d.ts +2 -2
  125. package/build/src/worker/interpreters/plain-text.d.ts.map +1 -1
  126. package/build/src/worker/interpreters/plain-text.js.map +1 -1
  127. package/build/src/worker/interpreters/seerr.d.ts +2 -2
  128. package/build/src/worker/interpreters/seerr.d.ts.map +1 -1
  129. package/build/src/worker/interpreters/seerr.js +16 -12
  130. package/build/src/worker/interpreters/seerr.js.map +1 -1
  131. package/build/src/worker/interpreters/statuspage.d.ts +2 -2
  132. package/build/src/worker/interpreters/statuspage.d.ts.map +1 -1
  133. package/build/src/worker/interpreters/statuspage.js +98 -47
  134. package/build/src/worker/interpreters/statuspage.js.map +1 -1
  135. package/build/src/worker/interpreters/synology.d.ts +2 -2
  136. package/build/src/worker/interpreters/synology.d.ts.map +1 -1
  137. package/build/src/worker/interpreters/synology.js +9 -5
  138. package/build/src/worker/interpreters/synology.js.map +1 -1
  139. package/build/src/worker/interpreters/unifi.d.ts +2 -2
  140. package/build/src/worker/interpreters/unifi.d.ts.map +1 -1
  141. package/build/src/worker/interpreters/unifi.js +34 -20
  142. package/build/src/worker/interpreters/unifi.js.map +1 -1
  143. package/build/src/worker/landing/page.d.ts +2 -2
  144. package/build/src/worker/landing/page.d.ts.map +1 -1
  145. package/build/src/worker/landing/page.js +4 -3
  146. package/build/src/worker/landing/page.js.map +1 -1
  147. package/build/src/worker/pipeline/accumulate.d.ts +5 -6
  148. package/build/src/worker/pipeline/accumulate.d.ts.map +1 -1
  149. package/build/src/worker/pipeline/accumulate.js +4 -11
  150. package/build/src/worker/pipeline/accumulate.js.map +1 -1
  151. package/build/src/worker/pipeline/authenticate.d.ts +2 -2
  152. package/build/src/worker/pipeline/authenticate.d.ts.map +1 -1
  153. package/build/src/worker/pipeline/authenticate.js +25 -7
  154. package/build/src/worker/pipeline/authenticate.js.map +1 -1
  155. package/build/src/worker/pipeline/email.d.ts +2 -2
  156. package/build/src/worker/pipeline/email.d.ts.map +1 -1
  157. package/build/src/worker/pipeline/email.js +34 -11
  158. package/build/src/worker/pipeline/email.js.map +1 -1
  159. package/build/src/worker/pipeline/format.d.ts +2 -3
  160. package/build/src/worker/pipeline/format.d.ts.map +1 -1
  161. package/build/src/worker/pipeline/format.js +2 -1
  162. package/build/src/worker/pipeline/format.js.map +1 -1
  163. package/build/src/worker/pipeline/interpret.d.ts +4 -3
  164. package/build/src/worker/pipeline/interpret.d.ts.map +1 -1
  165. package/build/src/worker/pipeline/interpret.js +7 -7
  166. package/build/src/worker/pipeline/interpret.js.map +1 -1
  167. package/build/src/worker/pipeline/parse.d.ts +2 -2
  168. package/build/src/worker/pipeline/parse.d.ts.map +1 -1
  169. package/build/src/worker/pipeline/parse.js +14 -7
  170. package/build/src/worker/pipeline/parse.js.map +1 -1
  171. package/build/src/worker/pipeline/receive.d.ts +2 -2
  172. package/build/src/worker/pipeline/receive.d.ts.map +1 -1
  173. package/build/src/worker/pipeline/receive.js +6 -6
  174. package/build/src/worker/pipeline/receive.js.map +1 -1
  175. package/build/src/worker/pipeline/respond.d.ts +2 -2
  176. package/build/src/worker/pipeline/respond.d.ts.map +1 -1
  177. package/build/src/worker/pipeline/respond.js +1 -1
  178. package/build/src/worker/pipeline/respond.js.map +1 -1
  179. package/build/src/worker/pipeline/route.d.ts +2 -3
  180. package/build/src/worker/pipeline/route.d.ts.map +1 -1
  181. package/build/src/worker/pipeline/route.js.map +1 -1
  182. package/build/src/worker/pipeline/send.d.ts +2 -2
  183. package/build/src/worker/pipeline/send.d.ts.map +1 -1
  184. package/build/src/worker/pipeline/send.js +80 -41
  185. package/build/src/worker/pipeline/send.js.map +1 -1
  186. package/build/src/worker/pipeline/split.d.ts +2 -2
  187. package/build/src/worker/pipeline/split.d.ts.map +1 -1
  188. package/build/src/worker/pipeline/split.js +4 -2
  189. package/build/src/worker/pipeline/split.js.map +1 -1
  190. package/package.json +7 -6
  191. package/build/src/types/tests/type-declarations.test.d.ts +0 -173
  192. package/build/src/types/worker/pipeline/shared.d.ts +0 -85
@@ -1,131 +1,169 @@
1
- import type { LibSchemaConfigSchema } from '../../lib/schema.d.ts';
1
+ import type { Lib_Schema_ConfigSchemaContexts } from '../../lib/schema.d.ts';
2
2
 
3
- import type { LibSchemaContextConfig } from '../../lib/schema.d.ts';
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 CliCommandsContextAddContextConfigPath = string;
18
+ export type Cli_Commands_Context_AddContext_ConfigPath = string;
11
19
 
12
- export type CliCommandsContextAddContextContext = LibSchemaContextConfig;
20
+ export type Cli_Commands_Context_AddContext_Context = Lib_Schema_ContextConfig;
13
21
 
14
- export type CliCommandsContextAddContextReturn = void;
22
+ export type Cli_Commands_Context_AddContext_Returns = void;
15
23
 
16
- export type CliCommandsContextAddContextConfig = LibSchemaConfigSchema;
24
+ export type Cli_Commands_Context_AddContext_Config_Settings = Lib_Schema_ConfigSchemaSettings;
17
25
 
18
- export type CliCommandsContextAddContextDuplicateName = boolean;
26
+ export type Cli_Commands_Context_AddContext_Config_Servers = Lib_Schema_ConfigSchemaServers;
19
27
 
20
- export type CliCommandsContextAddContextCurrentContext = LibSchemaContextConfig;
28
+ export type Cli_Commands_Context_AddContext_Config_Contexts = Lib_Schema_ConfigSchemaContexts;
21
29
 
22
- export type CliCommandsContextAddContextExistingIds = Set<string>;
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 CliCommandsContextAddContextNewId = string;
36
+ export type Cli_Commands_Context_AddContext_DuplicateName = boolean;
25
37
 
26
- export type CliCommandsContextAddContextServerNames = string[];
38
+ export type Cli_Commands_Context_AddContext_CurrentContext = Lib_Schema_HttpContextConfig | Lib_Schema_EmailContextConfig;
27
39
 
28
- export type CliCommandsContextAddContextMissingServer = string | undefined;
40
+ export type Cli_Commands_Context_AddContext_ExistingIds = Set<string>;
29
41
 
30
- export type CliCommandsContextAddContextOrdered = LibSchemaContextConfig;
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 CliCommandsContextListContextsReturn = LibSchemaContextConfig[];
46
+ export type Cli_Commands_Context_AddContext_MissingServer = string | undefined;
40
47
 
41
- export type CliCommandsContextListContextsConfig = LibSchemaConfigSchema;
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 CliCommandsContextEditContextConfigPath = string;
55
+ export type Cli_Commands_Context_EditContext_ConfigPath = string;
56
+
57
+ export type Cli_Commands_Context_EditContext_Name = string;
49
58
 
50
- export type CliCommandsContextEditContextName = string;
59
+ export type Cli_Commands_Context_EditContext_Updates = Partial<Lib_Schema_ContextConfig>;
51
60
 
52
- export type CliCommandsContextEditContextUpdates = Partial<LibSchemaContextConfig>;
61
+ export type Cli_Commands_Context_EditContext_Returns = void;
53
62
 
54
- export type CliCommandsContextEditContextReturn = void;
63
+ export type Cli_Commands_Context_EditContext_Config_Settings = Lib_Schema_ConfigSchemaSettings;
55
64
 
56
- export type CliCommandsContextEditContextConfig = LibSchemaConfigSchema;
65
+ export type Cli_Commands_Context_EditContext_Config_Servers = Lib_Schema_ConfigSchemaServers;
57
66
 
58
- export type CliCommandsContextEditContextIndex = number;
67
+ export type Cli_Commands_Context_EditContext_Config_Contexts = Lib_Schema_ConfigSchemaContexts;
59
68
 
60
- export type CliCommandsContextEditContextUpdatedUpdates = Partial<LibSchemaContextConfig>;
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 CliCommandsContextEditContextNewId = string;
75
+ export type Cli_Commands_Context_EditContext_Index = number;
63
76
 
64
- export type CliCommandsContextEditContextExistingIds = Set<string>;
77
+ export type Cli_Commands_Context_EditContext_UpdatedUpdates = Partial<Lib_Schema_ContextConfig>;
65
78
 
66
- export type CliCommandsContextEditContextMerged = LibSchemaContextConfig;
79
+ export type Cli_Commands_Context_EditContext_NewId = string;
67
80
 
68
- export type CliCommandsContextEditContextOrdered = LibSchemaContextConfig;
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 CliCommandsContextRemoveContextConfigPath = string;
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 CliCommandsContextOrderContextKeysContext = LibSchemaContextConfig;
91
-
92
- export type CliCommandsContextOrderContextKeysReturn = LibSchemaContextConfig;
99
+ export type Cli_Commands_Context_GenerateRandomString_Length = number;
93
100
 
94
- export type CliCommandsContextOrderContextKeysType = 'http' | 'email';
101
+ export type Cli_Commands_Context_GenerateRandomString_Lowercase = boolean;
95
102
 
96
- export type CliCommandsContextOrderContextKeysName = string;
103
+ export type Cli_Commands_Context_GenerateRandomString_Returns = string;
97
104
 
98
- export type CliCommandsContextOrderContextKeysId = string;
105
+ export type Cli_Commands_Context_GenerateRandomString_Result = string;
99
106
 
100
- export type CliCommandsContextOrderContextKeysRest = Record<string, unknown>;
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 CliCommandsContextGenerateRandomStringLength = number;
110
-
111
- export type CliCommandsContextGenerateRandomStringLowercase = boolean;
114
+ export type Cli_Commands_Context_GenerateToken_Returns = string;
112
115
 
113
- export type CliCommandsContextGenerateRandomStringReturn = string;
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 CliCommandsContextGenerateRandomStringResult = string;
123
+ export type Cli_Commands_Context_ListContexts_Returns = Lib_Schema_ContextConfig[];
116
124
 
117
- export type CliCommandsContextGenerateRandomStringChunk = string;
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 CliCommandsContextGenerateIdReturn = string;
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 CliCommandsContextGenerateTokenReturn = string;
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)[];