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,6 +1,279 @@
|
|
|
1
|
+
import prompts from 'prompts';
|
|
2
|
+
|
|
3
|
+
import type { vi } from 'vitest';
|
|
4
|
+
|
|
1
5
|
/**
|
|
2
|
-
* Tests - CLI - Menu - Interactive.
|
|
6
|
+
* Tests - CLI - Menu - Interactive - @cbnventures/nova/toolkit.
|
|
3
7
|
*
|
|
4
8
|
* @since 2.0.0
|
|
5
9
|
*/
|
|
6
|
-
export type
|
|
10
|
+
export type Tests_Cli_Menu_Interactive_CbnventuresNovaToolkit_Bootstrap_GetConfigDir = ReturnType<typeof vi['fn']>;
|
|
11
|
+
|
|
12
|
+
export type Tests_Cli_Menu_Interactive_CbnventuresNovaToolkit_Bootstrap = {
|
|
13
|
+
getConfigDir: Tests_Cli_Menu_Interactive_CbnventuresNovaToolkit_Bootstrap_GetConfigDir;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export type Tests_Cli_Menu_Interactive_CbnventuresNovaToolkit_CliHeader_Render = ReturnType<typeof vi['fn']>;
|
|
17
|
+
|
|
18
|
+
export type Tests_Cli_Menu_Interactive_CbnventuresNovaToolkit_CliHeader = {
|
|
19
|
+
render: Tests_Cli_Menu_Interactive_CbnventuresNovaToolkit_CliHeader_Render;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export type Tests_Cli_Menu_Interactive_CbnventuresNovaToolkit_Logger_Info = ReturnType<typeof vi['fn']>;
|
|
23
|
+
|
|
24
|
+
export type Tests_Cli_Menu_Interactive_CbnventuresNovaToolkit_Logger_Warn = ReturnType<typeof vi['fn']>;
|
|
25
|
+
|
|
26
|
+
export type Tests_Cli_Menu_Interactive_CbnventuresNovaToolkit_Logger_Error = ReturnType<typeof vi['fn']>;
|
|
27
|
+
|
|
28
|
+
export type Tests_Cli_Menu_Interactive_CbnventuresNovaToolkit_Logger = {
|
|
29
|
+
info: Tests_Cli_Menu_Interactive_CbnventuresNovaToolkit_Logger_Info;
|
|
30
|
+
warn: Tests_Cli_Menu_Interactive_CbnventuresNovaToolkit_Logger_Warn;
|
|
31
|
+
error: Tests_Cli_Menu_Interactive_CbnventuresNovaToolkit_Logger_Error;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Tests - CLI - Menu - Interactive - Chalk.
|
|
36
|
+
*
|
|
37
|
+
* @since 2.0.0
|
|
38
|
+
*/
|
|
39
|
+
export type Tests_Cli_Menu_Interactive_Chalk_ChalkDefault = Record<string, (input: string) => string>;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Tests - CLI - Menu - Interactive - Chalk Identity.
|
|
43
|
+
*
|
|
44
|
+
* @since 2.0.0
|
|
45
|
+
*/
|
|
46
|
+
export type Tests_Cli_Menu_Interactive_ChalkIdentity_S = string;
|
|
47
|
+
|
|
48
|
+
export type Tests_Cli_Menu_Interactive_ChalkIdentity_Returns = string;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Tests - CLI - Menu - Interactive - ../../../cli/commands/context.js.
|
|
52
|
+
*
|
|
53
|
+
* @since 2.0.0
|
|
54
|
+
*/
|
|
55
|
+
export type Tests_Cli_Menu_Interactive_CliCommandsContextJs_AddContext = ReturnType<typeof vi['fn']>;
|
|
56
|
+
|
|
57
|
+
export type Tests_Cli_Menu_Interactive_CliCommandsContextJs_EditContext = ReturnType<typeof vi['fn']>;
|
|
58
|
+
|
|
59
|
+
export type Tests_Cli_Menu_Interactive_CliCommandsContextJs_GenerateId = ReturnType<typeof vi['fn']>;
|
|
60
|
+
|
|
61
|
+
export type Tests_Cli_Menu_Interactive_CliCommandsContextJs_GenerateToken = ReturnType<typeof vi['fn']>;
|
|
62
|
+
|
|
63
|
+
export type Tests_Cli_Menu_Interactive_CliCommandsContextJs_ListContexts = ReturnType<typeof vi['fn']>;
|
|
64
|
+
|
|
65
|
+
export type Tests_Cli_Menu_Interactive_CliCommandsContextJs_RemoveContext = ReturnType<typeof vi['fn']>;
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Tests - CLI - Menu - Interactive - ../../../cli/commands/deploy.js.
|
|
69
|
+
*
|
|
70
|
+
* @since 2.0.0
|
|
71
|
+
*/
|
|
72
|
+
export type Tests_Cli_Menu_Interactive_CliCommandsDeployJs_Deploy = ReturnType<typeof vi['fn']>;
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Tests - CLI - Menu - Interactive - ../../../cli/commands/server.js.
|
|
76
|
+
*
|
|
77
|
+
* @since 2.0.0
|
|
78
|
+
*/
|
|
79
|
+
export type Tests_Cli_Menu_Interactive_CliCommandsServerJs_AddServer = ReturnType<typeof vi['fn']>;
|
|
80
|
+
|
|
81
|
+
export type Tests_Cli_Menu_Interactive_CliCommandsServerJs_EditServer = ReturnType<typeof vi['fn']>;
|
|
82
|
+
|
|
83
|
+
export type Tests_Cli_Menu_Interactive_CliCommandsServerJs_ListServers = ReturnType<typeof vi['fn']>;
|
|
84
|
+
|
|
85
|
+
export type Tests_Cli_Menu_Interactive_CliCommandsServerJs_RemoveServer = ReturnType<typeof vi['fn']>;
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Tests - CLI - Menu - Interactive - ../../../cli/commands/settings.js.
|
|
89
|
+
*
|
|
90
|
+
* @since 2.0.0
|
|
91
|
+
*/
|
|
92
|
+
export type Tests_Cli_Menu_Interactive_CliCommandsSettingsJs_GetSettings = ReturnType<typeof vi['fn']>;
|
|
93
|
+
|
|
94
|
+
export type Tests_Cli_Menu_Interactive_CliCommandsSettingsJs_UpdateSettings = ReturnType<typeof vi['fn']>;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Tests - CLI - Menu - Interactive - Interactive Menu.
|
|
98
|
+
*
|
|
99
|
+
* @since 2.0.0
|
|
100
|
+
*/
|
|
101
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_TempDir1 = string | undefined;
|
|
102
|
+
|
|
103
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_TempDir2 = string | undefined;
|
|
104
|
+
|
|
105
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_OsTmpDir = string;
|
|
106
|
+
|
|
107
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_TempDir1Path = string;
|
|
108
|
+
|
|
109
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_TempDir2Path = string;
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* Tests - CLI - Menu - Interactive - Interactive Menu - Context Action Menu Includes Go Back As Last Choice.
|
|
113
|
+
*
|
|
114
|
+
* @since 2.0.0
|
|
115
|
+
*/
|
|
116
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextActionMenuIncludesGoBackAsLastChoice_Prompts_Default = typeof prompts;
|
|
117
|
+
|
|
118
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextActionMenuIncludesGoBackAsLastChoice_Prompts = {
|
|
119
|
+
default: Tests_Cli_Menu_Interactive_InteractiveMenu_ContextActionMenuIncludesGoBackAsLastChoice_Prompts_Default;
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextActionMenuIncludesGoBackAsLastChoice_PromptsDefaultUnknown = unknown;
|
|
123
|
+
|
|
124
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextActionMenuIncludesGoBackAsLastChoice_MockPrompts = ReturnType<typeof vi['fn']>;
|
|
125
|
+
|
|
126
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextActionMenuIncludesGoBackAsLastChoice_Call = Record<string, unknown>;
|
|
127
|
+
|
|
128
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextActionMenuIncludesGoBackAsLastChoice_Choices = Record<string, unknown>[];
|
|
129
|
+
|
|
130
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextActionMenuIncludesGoBackAsLastChoice_LastChoice = Record<string, unknown>;
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* Tests - CLI - Menu - Interactive - Interactive Menu - Context Edit Select Includes Go Back As Last Choice.
|
|
134
|
+
*
|
|
135
|
+
* @since 2.0.0
|
|
136
|
+
*/
|
|
137
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextEditSelectIncludesGoBackAsLastChoice_Prompts_Default = typeof prompts;
|
|
138
|
+
|
|
139
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextEditSelectIncludesGoBackAsLastChoice_Prompts = {
|
|
140
|
+
default: Tests_Cli_Menu_Interactive_InteractiveMenu_ContextEditSelectIncludesGoBackAsLastChoice_Prompts_Default;
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextEditSelectIncludesGoBackAsLastChoice_PromptsDefaultUnknown = unknown;
|
|
144
|
+
|
|
145
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextEditSelectIncludesGoBackAsLastChoice_MockPrompts = ReturnType<typeof vi['fn']>;
|
|
146
|
+
|
|
147
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextEditSelectIncludesGoBackAsLastChoice_Call = Record<string, unknown>;
|
|
148
|
+
|
|
149
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextEditSelectIncludesGoBackAsLastChoice_Choices = Record<string, unknown>[];
|
|
150
|
+
|
|
151
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ContextEditSelectIncludesGoBackAsLastChoice_LastChoice = Record<string, unknown>;
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Tests - CLI - Menu - Interactive - Interactive Menu - Ctrl C At Context Edit Interpreter Aborts Without Writing.
|
|
155
|
+
*
|
|
156
|
+
* @since 2.0.0
|
|
157
|
+
*/
|
|
158
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditInterpreterAbortsWithoutWriting_Prompts_Default = typeof prompts;
|
|
159
|
+
|
|
160
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditInterpreterAbortsWithoutWriting_Prompts = {
|
|
161
|
+
default: Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditInterpreterAbortsWithoutWriting_Prompts_Default;
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditInterpreterAbortsWithoutWriting_PromptsDefaultUnknown = unknown;
|
|
165
|
+
|
|
166
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditInterpreterAbortsWithoutWriting_MockPrompts = ReturnType<typeof vi['fn']>;
|
|
167
|
+
|
|
168
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditInterpreterAbortsWithoutWriting_ContextModuleUnknown = unknown;
|
|
169
|
+
|
|
170
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditInterpreterAbortsWithoutWriting_ContextModule = Record<string, unknown>;
|
|
171
|
+
|
|
172
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditInterpreterAbortsWithoutWriting_EditContext = ReturnType<typeof vi['fn']>;
|
|
173
|
+
|
|
174
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditInterpreterAbortsWithoutWriting_Call = Record<string, unknown>;
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* Tests - CLI - Menu - Interactive - Interactive Menu - Ctrl C At Context Edit Mode Aborts After Answering 4 Prior Prompts.
|
|
178
|
+
*
|
|
179
|
+
* @since 2.0.0
|
|
180
|
+
*/
|
|
181
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditModeAbortsAfterAnswering4PriorPrompts_Prompts_Default = typeof prompts;
|
|
182
|
+
|
|
183
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditModeAbortsAfterAnswering4PriorPrompts_Prompts = {
|
|
184
|
+
default: Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditModeAbortsAfterAnswering4PriorPrompts_Prompts_Default;
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditModeAbortsAfterAnswering4PriorPrompts_PromptsDefaultUnknown = unknown;
|
|
188
|
+
|
|
189
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditModeAbortsAfterAnswering4PriorPrompts_MockPrompts = ReturnType<typeof vi['fn']>;
|
|
190
|
+
|
|
191
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditModeAbortsAfterAnswering4PriorPrompts_ContextModuleUnknown = unknown;
|
|
192
|
+
|
|
193
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditModeAbortsAfterAnswering4PriorPrompts_ContextModule = Record<string, unknown>;
|
|
194
|
+
|
|
195
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtContextEditModeAbortsAfterAnswering4PriorPrompts_EditContext = ReturnType<typeof vi['fn']>;
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* Tests - CLI - Menu - Interactive - Interactive Menu - Ctrl C At Server Edit Select Returns To Server Menu.
|
|
199
|
+
*
|
|
200
|
+
* @since 2.0.0
|
|
201
|
+
*/
|
|
202
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtServerEditSelectReturnsToServerMenu_Prompts_Default = typeof prompts;
|
|
203
|
+
|
|
204
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtServerEditSelectReturnsToServerMenu_Prompts = {
|
|
205
|
+
default: Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtServerEditSelectReturnsToServerMenu_Prompts_Default;
|
|
206
|
+
};
|
|
207
|
+
|
|
208
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtServerEditSelectReturnsToServerMenu_PromptsDefaultUnknown = unknown;
|
|
209
|
+
|
|
210
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtServerEditSelectReturnsToServerMenu_MockPrompts = ReturnType<typeof vi['fn']>;
|
|
211
|
+
|
|
212
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_CtrlCAtServerEditSelectReturnsToServerMenu_Call = Record<string, unknown>;
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* Tests - CLI - Menu - Interactive - Interactive Menu - Exits On Ctrl C At Config Dir Selection.
|
|
216
|
+
*
|
|
217
|
+
* @since 2.0.0
|
|
218
|
+
*/
|
|
219
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ExitsOnCtrlCAtConfigDirSelection_Prompts_Default = typeof prompts;
|
|
220
|
+
|
|
221
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ExitsOnCtrlCAtConfigDirSelection_Prompts = {
|
|
222
|
+
default: Tests_Cli_Menu_Interactive_InteractiveMenu_ExitsOnCtrlCAtConfigDirSelection_Prompts_Default;
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ExitsOnCtrlCAtConfigDirSelection_PromptsDefaultUnknown = unknown;
|
|
226
|
+
|
|
227
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ExitsOnCtrlCAtConfigDirSelection_MockPrompts = ReturnType<typeof vi['fn']>;
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
* Tests - CLI - Menu - Interactive - Interactive Menu - Exports The Interactive Menu Function.
|
|
231
|
+
*
|
|
232
|
+
* @since 2.0.0
|
|
233
|
+
*/
|
|
234
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ExportsTheInteractiveMenuFunction_ExportedType = string;
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* Tests - CLI - Menu - Interactive - Interactive Menu - Selects Config From Multiple Directories.
|
|
238
|
+
*
|
|
239
|
+
* @since 2.0.0
|
|
240
|
+
*/
|
|
241
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_SelectsConfigFromMultipleDirectories_Prompts_Default = typeof prompts;
|
|
242
|
+
|
|
243
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_SelectsConfigFromMultipleDirectories_Prompts = {
|
|
244
|
+
default: Tests_Cli_Menu_Interactive_InteractiveMenu_SelectsConfigFromMultipleDirectories_Prompts_Default;
|
|
245
|
+
};
|
|
246
|
+
|
|
247
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_SelectsConfigFromMultipleDirectories_PromptsDefaultUnknown = unknown;
|
|
248
|
+
|
|
249
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_SelectsConfigFromMultipleDirectories_MockPrompts = ReturnType<typeof vi['fn']>;
|
|
250
|
+
|
|
251
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_SelectsConfigFromMultipleDirectories_Call = Record<string, unknown>;
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* Tests - CLI - Menu - Interactive - Interactive Menu - Server Action Menu Includes Go Back As Last Choice.
|
|
255
|
+
*
|
|
256
|
+
* @since 2.0.0
|
|
257
|
+
*/
|
|
258
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ServerActionMenuIncludesGoBackAsLastChoice_Prompts_Default = typeof prompts;
|
|
259
|
+
|
|
260
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ServerActionMenuIncludesGoBackAsLastChoice_Prompts = {
|
|
261
|
+
default: Tests_Cli_Menu_Interactive_InteractiveMenu_ServerActionMenuIncludesGoBackAsLastChoice_Prompts_Default;
|
|
262
|
+
};
|
|
263
|
+
|
|
264
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ServerActionMenuIncludesGoBackAsLastChoice_PromptsDefaultUnknown = unknown;
|
|
265
|
+
|
|
266
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ServerActionMenuIncludesGoBackAsLastChoice_MockPrompts = ReturnType<typeof vi['fn']>;
|
|
267
|
+
|
|
268
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ServerActionMenuIncludesGoBackAsLastChoice_Call = Record<string, unknown>;
|
|
269
|
+
|
|
270
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ServerActionMenuIncludesGoBackAsLastChoice_Choices = Record<string, unknown>[];
|
|
271
|
+
|
|
272
|
+
export type Tests_Cli_Menu_Interactive_InteractiveMenu_ServerActionMenuIncludesGoBackAsLastChoice_LastChoice = Record<string, unknown>;
|
|
273
|
+
|
|
274
|
+
/**
|
|
275
|
+
* Tests - CLI - Menu - Interactive - Prompts.
|
|
276
|
+
*
|
|
277
|
+
* @since 2.0.0
|
|
278
|
+
*/
|
|
279
|
+
export type Tests_Cli_Menu_Interactive_Prompts_PromptsDefault = ReturnType<typeof vi['fn']>;
|
|
@@ -3,8 +3,263 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @since 2.0.0
|
|
5
5
|
*/
|
|
6
|
-
export type TestsLibSchemaInput = Record<string, unknown>;
|
|
7
6
|
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
/**
|
|
8
|
+
* Tests - Lib - Schema - Config Schema - Allows Optional Allowed From On Email Context.
|
|
9
|
+
*
|
|
10
|
+
* @since 2.0.0
|
|
11
|
+
*/
|
|
12
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalAllowedFromOnEmailContext_Valid = Record<string, unknown>;
|
|
13
|
+
|
|
14
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalAllowedFromOnEmailContext_ResultSuccess = boolean;
|
|
15
|
+
|
|
16
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalAllowedFromOnEmailContext_Result = {
|
|
17
|
+
success: Tests_Lib_Schema_ConfigSchema_AllowsOptionalAllowedFromOnEmailContext_ResultSuccess;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Tests - Lib - Schema - Config Schema - Allows Optional Error Events.
|
|
22
|
+
*
|
|
23
|
+
* @since 2.1.0
|
|
24
|
+
*/
|
|
25
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalErrorEvents_Valid = Record<string, unknown>;
|
|
26
|
+
|
|
27
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalErrorEvents_ResultSuccess = boolean;
|
|
28
|
+
|
|
29
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalErrorEvents_Result = {
|
|
30
|
+
success: Tests_Lib_Schema_ConfigSchema_AllowsOptionalErrorEvents_ResultSuccess;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Tests - Lib - Schema - Config Schema - Allows Optional Error Events On Email Context.
|
|
35
|
+
*
|
|
36
|
+
* @since 2.1.0
|
|
37
|
+
*/
|
|
38
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalErrorEventsOnEmailContext_Valid = Record<string, unknown>;
|
|
39
|
+
|
|
40
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalErrorEventsOnEmailContext_ResultSuccess = boolean;
|
|
41
|
+
|
|
42
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalErrorEventsOnEmailContext_Result = {
|
|
43
|
+
success: Tests_Lib_Schema_ConfigSchema_AllowsOptionalErrorEventsOnEmailContext_ResultSuccess;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Tests - Lib - Schema - Config Schema - Allows Optional Error Topic.
|
|
48
|
+
*
|
|
49
|
+
* @since 2.0.0
|
|
50
|
+
*/
|
|
51
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalErrorTopic_Valid = Record<string, unknown>;
|
|
52
|
+
|
|
53
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalErrorTopic_ResultSuccess = boolean;
|
|
54
|
+
|
|
55
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalErrorTopic_Result = {
|
|
56
|
+
success: Tests_Lib_Schema_ConfigSchema_AllowsOptionalErrorTopic_ResultSuccess;
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Tests - Lib - Schema - Config Schema - Allows Optional Token On HTTP Context.
|
|
61
|
+
*
|
|
62
|
+
* @since 2.0.0
|
|
63
|
+
*/
|
|
64
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalTokenOnHTTPContext_Valid = Record<string, unknown>;
|
|
65
|
+
|
|
66
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalTokenOnHTTPContext_ResultSuccess = boolean;
|
|
67
|
+
|
|
68
|
+
export type Tests_Lib_Schema_ConfigSchema_AllowsOptionalTokenOnHTTPContext_Result = {
|
|
69
|
+
success: Tests_Lib_Schema_ConfigSchema_AllowsOptionalTokenOnHTTPContext_ResultSuccess;
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* Tests - Lib - Schema - Config Schema - Rejects Allowed From Field On HTTP Context.
|
|
74
|
+
*
|
|
75
|
+
* @since 2.0.0
|
|
76
|
+
*/
|
|
77
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsAllowedFromFieldOnHTTPContext_Invalid = Record<string, unknown>;
|
|
78
|
+
|
|
79
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsAllowedFromFieldOnHTTPContext_ResultSuccess = boolean;
|
|
80
|
+
|
|
81
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsAllowedFromFieldOnHTTPContext_Result = {
|
|
82
|
+
success: Tests_Lib_Schema_ConfigSchema_RejectsAllowedFromFieldOnHTTPContext_ResultSuccess;
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Tests - Lib - Schema - Config Schema - Rejects Context Without Type Discriminator.
|
|
87
|
+
*
|
|
88
|
+
* @since 2.0.0
|
|
89
|
+
*/
|
|
90
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsContextWithoutTypeDiscriminator_Invalid = Record<string, unknown>;
|
|
91
|
+
|
|
92
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsContextWithoutTypeDiscriminator_ResultSuccess = boolean;
|
|
93
|
+
|
|
94
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsContextWithoutTypeDiscriminator_Result = {
|
|
95
|
+
success: Tests_Lib_Schema_ConfigSchema_RejectsContextWithoutTypeDiscriminator_ResultSuccess;
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* Tests - Lib - Schema - Config Schema - Rejects Invalid Error Events Values.
|
|
100
|
+
*
|
|
101
|
+
* @since 2.1.0
|
|
102
|
+
*/
|
|
103
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsInvalidErrorEventsValues_Invalid = Record<string, unknown>;
|
|
104
|
+
|
|
105
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsInvalidErrorEventsValues_ResultSuccess = boolean;
|
|
106
|
+
|
|
107
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsInvalidErrorEventsValues_Result = {
|
|
108
|
+
success: Tests_Lib_Schema_ConfigSchema_RejectsInvalidErrorEventsValues_ResultSuccess;
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* Tests - Lib - Schema - Config Schema - Rejects Invalid Interpreter Names.
|
|
113
|
+
*
|
|
114
|
+
* @since 2.0.0
|
|
115
|
+
*/
|
|
116
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsInvalidInterpreterNames_Invalid = Record<string, unknown>;
|
|
117
|
+
|
|
118
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsInvalidInterpreterNames_ResultSuccess = boolean;
|
|
119
|
+
|
|
120
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsInvalidInterpreterNames_Result = {
|
|
121
|
+
success: Tests_Lib_Schema_ConfigSchema_RejectsInvalidInterpreterNames_ResultSuccess;
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Tests - Lib - Schema - Config Schema - Rejects Invalid Mode Values.
|
|
126
|
+
*
|
|
127
|
+
* @since 2.0.0
|
|
128
|
+
*/
|
|
129
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsInvalidModeValues_Invalid = Record<string, unknown>;
|
|
130
|
+
|
|
131
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsInvalidModeValues_ResultSuccess = boolean;
|
|
132
|
+
|
|
133
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsInvalidModeValues_Result = {
|
|
134
|
+
success: Tests_Lib_Schema_ConfigSchema_RejectsInvalidModeValues_ResultSuccess;
|
|
135
|
+
};
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Tests - Lib - Schema - Config Schema - Rejects Invalid Type Discriminator Value.
|
|
139
|
+
*
|
|
140
|
+
* @since 2.0.0
|
|
141
|
+
*/
|
|
142
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsInvalidTypeDiscriminatorValue_Invalid = Record<string, unknown>;
|
|
143
|
+
|
|
144
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsInvalidTypeDiscriminatorValue_ResultSuccess = boolean;
|
|
145
|
+
|
|
146
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsInvalidTypeDiscriminatorValue_Result = {
|
|
147
|
+
success: Tests_Lib_Schema_ConfigSchema_RejectsInvalidTypeDiscriminatorValue_ResultSuccess;
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Tests - Lib - Schema - Config Schema - Rejects Server URLs Not Starting With Https.
|
|
152
|
+
*
|
|
153
|
+
* @since 2.0.0
|
|
154
|
+
*/
|
|
155
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsServerURLsNotStartingWithHttps_Invalid = Record<string, unknown>;
|
|
156
|
+
|
|
157
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsServerURLsNotStartingWithHttps_ResultSuccess = boolean;
|
|
158
|
+
|
|
159
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsServerURLsNotStartingWithHttps_Result = {
|
|
160
|
+
success: Tests_Lib_Schema_ConfigSchema_RejectsServerURLsNotStartingWithHttps_ResultSuccess;
|
|
161
|
+
};
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* Tests - Lib - Schema - Config Schema - Rejects Token Field On Email Context.
|
|
165
|
+
*
|
|
166
|
+
* @since 2.0.0
|
|
167
|
+
*/
|
|
168
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsTokenFieldOnEmailContext_Invalid = Record<string, unknown>;
|
|
169
|
+
|
|
170
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsTokenFieldOnEmailContext_ResultSuccess = boolean;
|
|
171
|
+
|
|
172
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsTokenFieldOnEmailContext_Result = {
|
|
173
|
+
success: Tests_Lib_Schema_ConfigSchema_RejectsTokenFieldOnEmailContext_ResultSuccess;
|
|
174
|
+
};
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* Tests - Lib - Schema - Config Schema - Rejects Tokens Not Starting With Tk.
|
|
178
|
+
*
|
|
179
|
+
* @since 2.0.0
|
|
180
|
+
*/
|
|
181
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsTokensNotStartingWithTk_Invalid = Record<string, unknown>;
|
|
182
|
+
|
|
183
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsTokensNotStartingWithTk_ResultSuccess = boolean;
|
|
184
|
+
|
|
185
|
+
export type Tests_Lib_Schema_ConfigSchema_RejectsTokensNotStartingWithTk_Result = {
|
|
186
|
+
success: Tests_Lib_Schema_ConfigSchema_RejectsTokensNotStartingWithTk_ResultSuccess;
|
|
187
|
+
};
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* Tests - Lib - Schema - Config Schema - Validates A Complete Valid Email Context Config.
|
|
191
|
+
*
|
|
192
|
+
* @since 2.0.0
|
|
193
|
+
*/
|
|
194
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesACompleteValidEmailContextConfig_Valid = Record<string, unknown>;
|
|
195
|
+
|
|
196
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesACompleteValidEmailContextConfig_ResultSuccess = boolean;
|
|
197
|
+
|
|
198
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesACompleteValidEmailContextConfig_Result = {
|
|
199
|
+
success: Tests_Lib_Schema_ConfigSchema_ValidatesACompleteValidEmailContextConfig_ResultSuccess;
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Tests - Lib - Schema - Config Schema - Validates A Complete Valid HTTP Context Config.
|
|
204
|
+
*
|
|
205
|
+
* @since 2.0.0
|
|
206
|
+
*/
|
|
207
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesACompleteValidHTTPContextConfig_Valid = Record<string, unknown>;
|
|
208
|
+
|
|
209
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesACompleteValidHTTPContextConfig_ResultSuccess = boolean;
|
|
210
|
+
|
|
211
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesACompleteValidHTTPContextConfig_Result = {
|
|
212
|
+
success: Tests_Lib_Schema_ConfigSchema_ValidatesACompleteValidHTTPContextConfig_ResultSuccess;
|
|
213
|
+
};
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* Tests - Lib - Schema - Config Schema - Validates Config With Mixed HTTP And Email Contexts.
|
|
217
|
+
*
|
|
218
|
+
* @since 2.0.0
|
|
219
|
+
*/
|
|
220
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesConfigWithMixedHTTPAndEmailContexts_Valid = Record<string, unknown>;
|
|
221
|
+
|
|
222
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesConfigWithMixedHTTPAndEmailContexts_ResultSuccess = boolean;
|
|
223
|
+
|
|
224
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesConfigWithMixedHTTPAndEmailContexts_Result = {
|
|
225
|
+
success: Tests_Lib_Schema_ConfigSchema_ValidatesConfigWithMixedHTTPAndEmailContexts_ResultSuccess;
|
|
226
|
+
};
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* Tests - Lib - Schema - Config Schema - Validates Email Interpreter.
|
|
230
|
+
*
|
|
231
|
+
* @since 2.0.0
|
|
232
|
+
*/
|
|
233
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesEmailInterpreter_Valid = Record<string, unknown>;
|
|
234
|
+
|
|
235
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesEmailInterpreter_ResultSuccess = boolean;
|
|
236
|
+
|
|
237
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesEmailInterpreter_Result = {
|
|
238
|
+
success: Tests_Lib_Schema_ConfigSchema_ValidatesEmailInterpreter_ResultSuccess;
|
|
239
|
+
};
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* Tests - Lib - Schema - Config Schema - Validates Pfsense Interpreter.
|
|
243
|
+
*
|
|
244
|
+
* @since 2.0.0
|
|
245
|
+
*/
|
|
246
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesPfsenseInterpreter_Valid = Record<string, unknown>;
|
|
247
|
+
|
|
248
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesPfsenseInterpreter_ResultSuccess = boolean;
|
|
249
|
+
|
|
250
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesPfsenseInterpreter_Result = {
|
|
251
|
+
success: Tests_Lib_Schema_ConfigSchema_ValidatesPfsenseInterpreter_ResultSuccess;
|
|
252
|
+
};
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* Tests - Lib - Schema - Config Schema - Validates Unifi Interpreter.
|
|
256
|
+
*
|
|
257
|
+
* @since 2.0.0
|
|
258
|
+
*/
|
|
259
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesUnifiInterpreter_Valid = Record<string, unknown>;
|
|
260
|
+
|
|
261
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesUnifiInterpreter_ResultSuccess = boolean;
|
|
262
|
+
|
|
263
|
+
export type Tests_Lib_Schema_ConfigSchema_ValidatesUnifiInterpreter_Result = {
|
|
264
|
+
success: Tests_Lib_Schema_ConfigSchema_ValidatesUnifiInterpreter_ResultSuccess;
|
|
10
265
|
};
|