ntfy-reverse-proxy 2.0.3 → 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.
- 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 +174 -84
- 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.test.d.ts +2 -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 -177
- 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 +268 -159
- 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 +10 -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,55 +1,78 @@
|
|
|
1
|
+
import type { Lib_Schema_ConfigSchema } from '../../../lib/schema.d.ts';
|
|
2
|
+
|
|
1
3
|
/**
|
|
2
4
|
* Tests - Worker - Landing - Page.
|
|
3
5
|
*
|
|
4
6
|
* @since 2.0.0
|
|
5
7
|
*/
|
|
6
|
-
export type
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
export type
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
export type
|
|
54
|
-
|
|
55
|
-
export type
|
|
8
|
+
export type Tests_Worker_Landing_Page_MockConfig = Lib_Schema_ConfigSchema & {};
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Tests - Worker - Landing - Page - Landing Page - Does Not Show Debug Info When Show Response Output Is False.
|
|
12
|
+
*
|
|
13
|
+
* @since 2.0.0
|
|
14
|
+
*/
|
|
15
|
+
export type Tests_Worker_Landing_Page_LandingPage_DoesNotShowDebugInfoWhenShowResponseOutputIsFalse_Response = Response;
|
|
16
|
+
|
|
17
|
+
export type Tests_Worker_Landing_Page_LandingPage_DoesNotShowDebugInfoWhenShowResponseOutputIsFalse_Html = string;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Tests - Worker - Landing - Page - Landing Page - Includes GitHub Link.
|
|
21
|
+
*
|
|
22
|
+
* @since 2.0.0
|
|
23
|
+
*/
|
|
24
|
+
export type Tests_Worker_Landing_Page_LandingPage_IncludesGitHubLink_Response = Response;
|
|
25
|
+
|
|
26
|
+
export type Tests_Worker_Landing_Page_LandingPage_IncludesGitHubLink_Html = string;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Tests - Worker - Landing - Page - Landing Page - Returns HTML With Branding.
|
|
30
|
+
*
|
|
31
|
+
* @since 2.0.0
|
|
32
|
+
*/
|
|
33
|
+
export type Tests_Worker_Landing_Page_LandingPage_ReturnsHTMLWithBranding_Response = Response;
|
|
34
|
+
|
|
35
|
+
export type Tests_Worker_Landing_Page_LandingPage_ReturnsHTMLWithBranding_Html = string;
|
|
36
|
+
|
|
37
|
+
export type Tests_Worker_Landing_Page_LandingPage_ReturnsHTMLWithBranding_ContentType = string | null;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Tests - Worker - Landing - Page - Landing Page - Shows Full Name In Debug Output.
|
|
41
|
+
*
|
|
42
|
+
* @since 2.0.0
|
|
43
|
+
*/
|
|
44
|
+
export type Tests_Worker_Landing_Page_LandingPage_ShowsFullNameInDebugOutput_DebugConfig = Lib_Schema_ConfigSchema & {};
|
|
45
|
+
|
|
46
|
+
export type Tests_Worker_Landing_Page_LandingPage_ShowsFullNameInDebugOutput_Response = Response;
|
|
47
|
+
|
|
48
|
+
export type Tests_Worker_Landing_Page_LandingPage_ShowsFullNameInDebugOutput_Html = string;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Tests - Worker - Landing - Page - Landing Page - Shows Id Name Type Ordering In Debug Output.
|
|
52
|
+
*
|
|
53
|
+
* @since 2.0.0
|
|
54
|
+
*/
|
|
55
|
+
export type Tests_Worker_Landing_Page_LandingPage_ShowsIdNameTypeOrderingInDebugOutput_DebugConfig = Lib_Schema_ConfigSchema & {};
|
|
56
|
+
|
|
57
|
+
export type Tests_Worker_Landing_Page_LandingPage_ShowsIdNameTypeOrderingInDebugOutput_Response = Response;
|
|
58
|
+
|
|
59
|
+
export type Tests_Worker_Landing_Page_LandingPage_ShowsIdNameTypeOrderingInDebugOutput_Html = string;
|
|
60
|
+
|
|
61
|
+
export type Tests_Worker_Landing_Page_LandingPage_ShowsIdNameTypeOrderingInDebugOutput_ContextsStart = number;
|
|
62
|
+
|
|
63
|
+
export type Tests_Worker_Landing_Page_LandingPage_ShowsIdNameTypeOrderingInDebugOutput_IdIndex = number;
|
|
64
|
+
|
|
65
|
+
export type Tests_Worker_Landing_Page_LandingPage_ShowsIdNameTypeOrderingInDebugOutput_NameIndex = number;
|
|
66
|
+
|
|
67
|
+
export type Tests_Worker_Landing_Page_LandingPage_ShowsIdNameTypeOrderingInDebugOutput_TypeIndex = number;
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Tests - Worker - Landing - Page - Landing Page - Shows Masked Debug Info When Show Response Output Is True.
|
|
71
|
+
*
|
|
72
|
+
* @since 2.0.0
|
|
73
|
+
*/
|
|
74
|
+
export type Tests_Worker_Landing_Page_LandingPage_ShowsMaskedDebugInfoWhenShowResponseOutputIsTrue_DebugConfig = Lib_Schema_ConfigSchema & {};
|
|
75
|
+
|
|
76
|
+
export type Tests_Worker_Landing_Page_LandingPage_ShowsMaskedDebugInfoWhenShowResponseOutputIsTrue_Response = Response;
|
|
77
|
+
|
|
78
|
+
export type Tests_Worker_Landing_Page_LandingPage_ShowsMaskedDebugInfoWhenShowResponseOutputIsTrue_Html = string;
|
|
@@ -1,28 +1,239 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Tests - Worker - Pipeline - Accumulate.
|
|
2
|
+
* Tests - Worker - Pipeline - Accumulate - Diff Components - Detects New Components As Changed.
|
|
3
3
|
*
|
|
4
4
|
* @since 2.0.0
|
|
5
5
|
*/
|
|
6
|
-
export type
|
|
6
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_Component_Name = string;
|
|
7
7
|
|
|
8
|
-
export type
|
|
8
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_Component_Status = string;
|
|
9
9
|
|
|
10
|
-
export type
|
|
11
|
-
name:
|
|
12
|
-
status:
|
|
10
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_Component = {
|
|
11
|
+
name: Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_Component_Name;
|
|
12
|
+
status: Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_Component_Status;
|
|
13
13
|
};
|
|
14
14
|
|
|
15
|
-
export type
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_Previous = Record<string, Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_Component>;
|
|
16
|
+
|
|
17
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_Current = Record<string, Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_Component>;
|
|
18
|
+
|
|
19
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_DiffEntry_Name = string;
|
|
20
|
+
|
|
21
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_DiffEntry_OldStatus = string | undefined;
|
|
22
|
+
|
|
23
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_DiffEntry_NewStatus = string;
|
|
24
|
+
|
|
25
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_DiffEntry_Changed = boolean;
|
|
26
|
+
|
|
27
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_DiffEntry = {
|
|
28
|
+
name: Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_DiffEntry_Name;
|
|
29
|
+
oldStatus: Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_DiffEntry_OldStatus;
|
|
30
|
+
newStatus: Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_DiffEntry_NewStatus;
|
|
31
|
+
changed: Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_DiffEntry_Changed;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_Diff = Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsNewComponentsAsChanged_DiffEntry[];
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Tests - Worker - Pipeline - Accumulate - Diff Components - Detects Status Changes As Changed.
|
|
38
|
+
*
|
|
39
|
+
* @since 2.0.0
|
|
40
|
+
*/
|
|
41
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_Component_Name = string;
|
|
42
|
+
|
|
43
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_Component_Status = string;
|
|
44
|
+
|
|
45
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_Component = {
|
|
46
|
+
name: Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_Component_Name;
|
|
47
|
+
status: Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_Component_Status;
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_Previous = Record<string, Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_Component>;
|
|
51
|
+
|
|
52
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_Current = Record<string, Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_Component>;
|
|
53
|
+
|
|
54
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_DiffEntry_Name = string;
|
|
55
|
+
|
|
56
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_DiffEntry_OldStatus = string | undefined;
|
|
57
|
+
|
|
58
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_DiffEntry_NewStatus = string;
|
|
59
|
+
|
|
60
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_DiffEntry_Changed = boolean;
|
|
61
|
+
|
|
62
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_DiffEntry = {
|
|
63
|
+
name: Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_DiffEntry_Name;
|
|
64
|
+
oldStatus: Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_DiffEntry_OldStatus;
|
|
65
|
+
newStatus: Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_DiffEntry_NewStatus;
|
|
66
|
+
changed: Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_DiffEntry_Changed;
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_Diff = Tests_Worker_Pipeline_Accumulate_DiffComponents_DetectsStatusChangesAsChanged_DiffEntry[];
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Tests - Worker - Pipeline - Accumulate - Diff Components - Handles Multiple Components With Mixed Changes.
|
|
73
|
+
*
|
|
74
|
+
* @since 2.0.0
|
|
75
|
+
*/
|
|
76
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_Component_Name = string;
|
|
77
|
+
|
|
78
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_Component_Status = string;
|
|
79
|
+
|
|
80
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_Component = {
|
|
81
|
+
name: Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_Component_Name;
|
|
82
|
+
status: Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_Component_Status;
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_Previous = Record<string, Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_Component>;
|
|
86
|
+
|
|
87
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_Current = Record<string, Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_Component>;
|
|
88
|
+
|
|
89
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_DiffEntry_Name = string;
|
|
90
|
+
|
|
91
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_DiffEntry_OldStatus = string | undefined;
|
|
92
|
+
|
|
93
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_DiffEntry_NewStatus = string;
|
|
94
|
+
|
|
95
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_DiffEntry_Changed = boolean;
|
|
96
|
+
|
|
97
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_DiffEntry = {
|
|
98
|
+
name: Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_DiffEntry_Name;
|
|
99
|
+
oldStatus: Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_DiffEntry_OldStatus;
|
|
100
|
+
newStatus: Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_DiffEntry_NewStatus;
|
|
101
|
+
changed: Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_DiffEntry_Changed;
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_Diff = Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_DiffEntry[];
|
|
105
|
+
|
|
106
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_Changed = Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_DiffEntry[];
|
|
107
|
+
|
|
108
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_Unchanged = Tests_Worker_Pipeline_Accumulate_DiffComponents_HandlesMultipleComponentsWithMixedChanges_DiffEntry[];
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Tests - Worker - Pipeline - Accumulate - Diff Components - Marks Unchanged Components As Not Changed.
|
|
112
|
+
*
|
|
113
|
+
* @since 2.0.0
|
|
114
|
+
*/
|
|
115
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_Component_Name = string;
|
|
116
|
+
|
|
117
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_Component_Status = string;
|
|
118
|
+
|
|
119
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_Component = {
|
|
120
|
+
name: Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_Component_Name;
|
|
121
|
+
status: Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_Component_Status;
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_Previous = Record<string, Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_Component>;
|
|
125
|
+
|
|
126
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_Current = Record<string, Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_Component>;
|
|
127
|
+
|
|
128
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_DiffEntry_Name = string;
|
|
129
|
+
|
|
130
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_DiffEntry_OldStatus = string | undefined;
|
|
131
|
+
|
|
132
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_DiffEntry_NewStatus = string;
|
|
133
|
+
|
|
134
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_DiffEntry_Changed = boolean;
|
|
135
|
+
|
|
136
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_DiffEntry = {
|
|
137
|
+
name: Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_DiffEntry_Name;
|
|
138
|
+
oldStatus: Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_DiffEntry_OldStatus;
|
|
139
|
+
newStatus: Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_DiffEntry_NewStatus;
|
|
140
|
+
changed: Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_DiffEntry_Changed;
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
export type Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_Diff = Tests_Worker_Pipeline_Accumulate_DiffComponents_MarksUnchangedComponentsAsNotChanged_DiffEntry[];
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* Tests - Worker - Pipeline - Accumulate - Format Component Lines - Formats Component With Humanized Status.
|
|
147
|
+
*
|
|
148
|
+
* @since 2.0.0
|
|
149
|
+
*/
|
|
150
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsComponentWithHumanizedStatus_DiffEntry_Name = string;
|
|
151
|
+
|
|
152
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsComponentWithHumanizedStatus_DiffEntry_OldStatus = string | undefined;
|
|
153
|
+
|
|
154
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsComponentWithHumanizedStatus_DiffEntry_NewStatus = string;
|
|
155
|
+
|
|
156
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsComponentWithHumanizedStatus_DiffEntry_Changed = boolean;
|
|
157
|
+
|
|
158
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsComponentWithHumanizedStatus_DiffEntry = {
|
|
159
|
+
name: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsComponentWithHumanizedStatus_DiffEntry_Name;
|
|
160
|
+
oldStatus: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsComponentWithHumanizedStatus_DiffEntry_OldStatus;
|
|
161
|
+
newStatus: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsComponentWithHumanizedStatus_DiffEntry_NewStatus;
|
|
162
|
+
changed: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsComponentWithHumanizedStatus_DiffEntry_Changed;
|
|
163
|
+
};
|
|
164
|
+
|
|
165
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsComponentWithHumanizedStatus_Diff = Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsComponentWithHumanizedStatus_DiffEntry[];
|
|
166
|
+
|
|
167
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsComponentWithHumanizedStatus_Lines = string[];
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* Tests - Worker - Pipeline - Accumulate - Format Component Lines - Formats Unchanged Component The Same Way.
|
|
171
|
+
*
|
|
172
|
+
* @since 2.0.0
|
|
173
|
+
*/
|
|
174
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsUnchangedComponentTheSameWay_DiffEntry_Name = string;
|
|
175
|
+
|
|
176
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsUnchangedComponentTheSameWay_DiffEntry_OldStatus = string | undefined;
|
|
177
|
+
|
|
178
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsUnchangedComponentTheSameWay_DiffEntry_NewStatus = string;
|
|
179
|
+
|
|
180
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsUnchangedComponentTheSameWay_DiffEntry_Changed = boolean;
|
|
181
|
+
|
|
182
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsUnchangedComponentTheSameWay_DiffEntry = {
|
|
183
|
+
name: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsUnchangedComponentTheSameWay_DiffEntry_Name;
|
|
184
|
+
oldStatus: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsUnchangedComponentTheSameWay_DiffEntry_OldStatus;
|
|
185
|
+
newStatus: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsUnchangedComponentTheSameWay_DiffEntry_NewStatus;
|
|
186
|
+
changed: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsUnchangedComponentTheSameWay_DiffEntry_Changed;
|
|
187
|
+
};
|
|
188
|
+
|
|
189
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsUnchangedComponentTheSameWay_Diff = Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsUnchangedComponentTheSameWay_DiffEntry[];
|
|
190
|
+
|
|
191
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_FormatsUnchangedComponentTheSameWay_Lines = string[];
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* Tests - Worker - Pipeline - Accumulate - Format Component Lines - Humanizes Multi Word Status.
|
|
195
|
+
*
|
|
196
|
+
* @since 2.0.0
|
|
197
|
+
*/
|
|
198
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesMultiWordStatus_DiffEntry_Name = string;
|
|
199
|
+
|
|
200
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesMultiWordStatus_DiffEntry_OldStatus = string | undefined;
|
|
201
|
+
|
|
202
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesMultiWordStatus_DiffEntry_NewStatus = string;
|
|
203
|
+
|
|
204
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesMultiWordStatus_DiffEntry_Changed = boolean;
|
|
205
|
+
|
|
206
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesMultiWordStatus_DiffEntry = {
|
|
207
|
+
name: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesMultiWordStatus_DiffEntry_Name;
|
|
208
|
+
oldStatus: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesMultiWordStatus_DiffEntry_OldStatus;
|
|
209
|
+
newStatus: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesMultiWordStatus_DiffEntry_NewStatus;
|
|
210
|
+
changed: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesMultiWordStatus_DiffEntry_Changed;
|
|
20
211
|
};
|
|
21
212
|
|
|
22
|
-
export type
|
|
213
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesMultiWordStatus_Diff = Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesMultiWordStatus_DiffEntry[];
|
|
214
|
+
|
|
215
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesMultiWordStatus_Lines = string[];
|
|
23
216
|
|
|
24
|
-
|
|
217
|
+
/**
|
|
218
|
+
* Tests - Worker - Pipeline - Accumulate - Format Component Lines - Humanizes Single Word Status.
|
|
219
|
+
*
|
|
220
|
+
* @since 2.0.0
|
|
221
|
+
*/
|
|
222
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesSingleWordStatus_DiffEntry_Name = string;
|
|
223
|
+
|
|
224
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesSingleWordStatus_DiffEntry_OldStatus = string | undefined;
|
|
225
|
+
|
|
226
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesSingleWordStatus_DiffEntry_NewStatus = string;
|
|
227
|
+
|
|
228
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesSingleWordStatus_DiffEntry_Changed = boolean;
|
|
229
|
+
|
|
230
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesSingleWordStatus_DiffEntry = {
|
|
231
|
+
name: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesSingleWordStatus_DiffEntry_Name;
|
|
232
|
+
oldStatus: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesSingleWordStatus_DiffEntry_OldStatus;
|
|
233
|
+
newStatus: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesSingleWordStatus_DiffEntry_NewStatus;
|
|
234
|
+
changed: Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesSingleWordStatus_DiffEntry_Changed;
|
|
235
|
+
};
|
|
25
236
|
|
|
26
|
-
export type
|
|
237
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesSingleWordStatus_Diff = Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesSingleWordStatus_DiffEntry[];
|
|
27
238
|
|
|
28
|
-
export type
|
|
239
|
+
export type Tests_Worker_Pipeline_Accumulate_FormatComponentLines_HumanizesSingleWordStatus_Lines = string[];
|
|
@@ -1,9 +1,153 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Tests - Worker - Pipeline - Authenticate.
|
|
2
|
+
* Tests - Worker - Pipeline - Authenticate - Authenticate - Email Auth - Case Insensitive Email Comparison.
|
|
3
3
|
*
|
|
4
4
|
* @since 2.0.0
|
|
5
5
|
*/
|
|
6
|
-
export type
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_CaseInsensitiveEmailComparison_Result_Authenticated = boolean;
|
|
7
|
+
|
|
8
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_CaseInsensitiveEmailComparison_Result_Reason = string;
|
|
9
|
+
|
|
10
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_CaseInsensitiveEmailComparison_Result = {
|
|
11
|
+
authenticated: Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_CaseInsensitiveEmailComparison_Result_Authenticated;
|
|
12
|
+
reason?: Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_CaseInsensitiveEmailComparison_Result_Reason;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Tests - Worker - Pipeline - Authenticate - Authenticate - Email Auth - Fails Domain Wildcard With Wrong Domain.
|
|
17
|
+
*
|
|
18
|
+
* @since 2.0.0
|
|
19
|
+
*/
|
|
20
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_FailsDomainWildcardWithWrongDomain_Result_Authenticated = boolean;
|
|
21
|
+
|
|
22
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_FailsDomainWildcardWithWrongDomain_Result_Reason = string;
|
|
23
|
+
|
|
24
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_FailsDomainWildcardWithWrongDomain_Result = {
|
|
25
|
+
authenticated: Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_FailsDomainWildcardWithWrongDomain_Result_Authenticated;
|
|
26
|
+
reason?: Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_FailsDomainWildcardWithWrongDomain_Result_Reason;
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Tests - Worker - Pipeline - Authenticate - Authenticate - Email Auth - Fails With Wrong Sender.
|
|
31
|
+
*
|
|
32
|
+
* @since 2.0.0
|
|
33
|
+
*/
|
|
34
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_FailsWithWrongSender_Result_Authenticated = boolean;
|
|
35
|
+
|
|
36
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_FailsWithWrongSender_Result_Reason = string;
|
|
37
|
+
|
|
38
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_FailsWithWrongSender_Result = {
|
|
39
|
+
authenticated: Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_FailsWithWrongSender_Result_Authenticated;
|
|
40
|
+
reason?: Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_FailsWithWrongSender_Result_Reason;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Tests - Worker - Pipeline - Authenticate - Authenticate - Email Auth - Passes When No Allowed From Configured.
|
|
45
|
+
*
|
|
46
|
+
* @since 2.0.0
|
|
47
|
+
*/
|
|
48
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWhenNoAllowedFromConfigured_Result_Authenticated = boolean;
|
|
49
|
+
|
|
50
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWhenNoAllowedFromConfigured_Result_Reason = string;
|
|
51
|
+
|
|
52
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWhenNoAllowedFromConfigured_Result = {
|
|
53
|
+
authenticated: Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWhenNoAllowedFromConfigured_Result_Authenticated;
|
|
54
|
+
reason?: Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWhenNoAllowedFromConfigured_Result_Reason;
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Tests - Worker - Pipeline - Authenticate - Authenticate - Email Auth - Passes With Domain Wildcard Match.
|
|
59
|
+
*
|
|
60
|
+
* @since 2.0.0
|
|
61
|
+
*/
|
|
62
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWithDomainWildcardMatch_Result_Authenticated = boolean;
|
|
63
|
+
|
|
64
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWithDomainWildcardMatch_Result_Reason = string;
|
|
65
|
+
|
|
66
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWithDomainWildcardMatch_Result = {
|
|
67
|
+
authenticated: Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWithDomainWildcardMatch_Result_Authenticated;
|
|
68
|
+
reason?: Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWithDomainWildcardMatch_Result_Reason;
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Tests - Worker - Pipeline - Authenticate - Authenticate - Email Auth - Passes With Exact From Match.
|
|
73
|
+
*
|
|
74
|
+
* @since 2.0.0
|
|
75
|
+
*/
|
|
76
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWithExactFromMatch_Result_Authenticated = boolean;
|
|
77
|
+
|
|
78
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWithExactFromMatch_Result_Reason = string;
|
|
79
|
+
|
|
80
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWithExactFromMatch_Result = {
|
|
81
|
+
authenticated: Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWithExactFromMatch_Result_Authenticated;
|
|
82
|
+
reason?: Tests_Worker_Pipeline_Authenticate_Authenticate_EmailAuth_PassesWithExactFromMatch_Result_Reason;
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Tests - Worker - Pipeline - Authenticate - Authenticate - HTTP Auth - Fails With Missing Authorization Header.
|
|
87
|
+
*
|
|
88
|
+
* @since 2.0.0
|
|
89
|
+
*/
|
|
90
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_FailsWithMissingAuthorizationHeader_Result_Authenticated = boolean;
|
|
91
|
+
|
|
92
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_FailsWithMissingAuthorizationHeader_Result_Reason = string;
|
|
93
|
+
|
|
94
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_FailsWithMissingAuthorizationHeader_Result = {
|
|
95
|
+
authenticated: Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_FailsWithMissingAuthorizationHeader_Result_Authenticated;
|
|
96
|
+
reason?: Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_FailsWithMissingAuthorizationHeader_Result_Reason;
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Tests - Worker - Pipeline - Authenticate - Authenticate - HTTP Auth - Fails With Wrong Token.
|
|
101
|
+
*
|
|
102
|
+
* @since 2.0.0
|
|
103
|
+
*/
|
|
104
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_FailsWithWrongToken_Result_Authenticated = boolean;
|
|
105
|
+
|
|
106
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_FailsWithWrongToken_Result_Reason = string;
|
|
107
|
+
|
|
108
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_FailsWithWrongToken_Result = {
|
|
109
|
+
authenticated: Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_FailsWithWrongToken_Result_Authenticated;
|
|
110
|
+
reason?: Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_FailsWithWrongToken_Result_Reason;
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Tests - Worker - Pipeline - Authenticate - Authenticate - HTTP Auth - Passes When No Token Configured.
|
|
115
|
+
*
|
|
116
|
+
* @since 2.0.0
|
|
117
|
+
*/
|
|
118
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWhenNoTokenConfigured_Result_Authenticated = boolean;
|
|
119
|
+
|
|
120
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWhenNoTokenConfigured_Result_Reason = string;
|
|
121
|
+
|
|
122
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWhenNoTokenConfigured_Result = {
|
|
123
|
+
authenticated: Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWhenNoTokenConfigured_Result_Authenticated;
|
|
124
|
+
reason?: Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWhenNoTokenConfigured_Result_Reason;
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Tests - Worker - Pipeline - Authenticate - Authenticate - HTTP Auth - Passes With Correct Bearer Token.
|
|
129
|
+
*
|
|
130
|
+
* @since 2.0.0
|
|
131
|
+
*/
|
|
132
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWithCorrectBearerToken_Result_Authenticated = boolean;
|
|
133
|
+
|
|
134
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWithCorrectBearerToken_Result_Reason = string;
|
|
135
|
+
|
|
136
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWithCorrectBearerToken_Result = {
|
|
137
|
+
authenticated: Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWithCorrectBearerToken_Result_Authenticated;
|
|
138
|
+
reason?: Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWithCorrectBearerToken_Result_Reason;
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* Tests - Worker - Pipeline - Authenticate - Authenticate - HTTP Auth - Passes With Correct Raw Token.
|
|
143
|
+
*
|
|
144
|
+
* @since 2.0.0
|
|
145
|
+
*/
|
|
146
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWithCorrectRawToken_Result_Authenticated = boolean;
|
|
147
|
+
|
|
148
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWithCorrectRawToken_Result_Reason = string;
|
|
149
|
+
|
|
150
|
+
export type Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWithCorrectRawToken_Result = {
|
|
151
|
+
authenticated: Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWithCorrectRawToken_Result_Authenticated;
|
|
152
|
+
reason?: Tests_Worker_Pipeline_Authenticate_Authenticate_HTTPAuth_PassesWithCorrectRawToken_Result_Reason;
|
|
9
153
|
};
|
|
@@ -1,15 +1,89 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Tests - Worker - Pipeline - Email.
|
|
2
|
+
* Tests - Worker - Pipeline - Email - Parse Email - Extracts From And To Addresses.
|
|
3
3
|
*
|
|
4
4
|
* @since 2.0.0
|
|
5
5
|
*/
|
|
6
|
-
export type
|
|
6
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_ExtractsFromAndToAddresses_Raw = string;
|
|
7
7
|
|
|
8
|
-
export type
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_ExtractsFromAndToAddresses_Result_From = string;
|
|
9
|
+
|
|
10
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_ExtractsFromAndToAddresses_Result_To = string;
|
|
11
|
+
|
|
12
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_ExtractsFromAndToAddresses_Result_Subject = string;
|
|
13
|
+
|
|
14
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_ExtractsFromAndToAddresses_Result_TextBody = string;
|
|
15
|
+
|
|
16
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_ExtractsFromAndToAddresses_Result = {
|
|
17
|
+
from: Tests_Worker_Pipeline_Email_ParseEmail_ExtractsFromAndToAddresses_Result_From;
|
|
18
|
+
to: Tests_Worker_Pipeline_Email_ParseEmail_ExtractsFromAndToAddresses_Result_To;
|
|
19
|
+
subject: Tests_Worker_Pipeline_Email_ParseEmail_ExtractsFromAndToAddresses_Result_Subject;
|
|
20
|
+
textBody: Tests_Worker_Pipeline_Email_ParseEmail_ExtractsFromAndToAddresses_Result_TextBody;
|
|
13
21
|
};
|
|
14
22
|
|
|
15
|
-
|
|
23
|
+
/**
|
|
24
|
+
* Tests - Worker - Pipeline - Email - Parse Email - Extracts Subject And Plain Text Body.
|
|
25
|
+
*
|
|
26
|
+
* @since 2.0.0
|
|
27
|
+
*/
|
|
28
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_ExtractsSubjectAndPlainTextBody_Raw = string;
|
|
29
|
+
|
|
30
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_ExtractsSubjectAndPlainTextBody_Result_From = string;
|
|
31
|
+
|
|
32
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_ExtractsSubjectAndPlainTextBody_Result_To = string;
|
|
33
|
+
|
|
34
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_ExtractsSubjectAndPlainTextBody_Result_Subject = string;
|
|
35
|
+
|
|
36
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_ExtractsSubjectAndPlainTextBody_Result_TextBody = string;
|
|
37
|
+
|
|
38
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_ExtractsSubjectAndPlainTextBody_Result = {
|
|
39
|
+
from: Tests_Worker_Pipeline_Email_ParseEmail_ExtractsSubjectAndPlainTextBody_Result_From;
|
|
40
|
+
to: Tests_Worker_Pipeline_Email_ParseEmail_ExtractsSubjectAndPlainTextBody_Result_To;
|
|
41
|
+
subject: Tests_Worker_Pipeline_Email_ParseEmail_ExtractsSubjectAndPlainTextBody_Result_Subject;
|
|
42
|
+
textBody: Tests_Worker_Pipeline_Email_ParseEmail_ExtractsSubjectAndPlainTextBody_Result_TextBody;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Tests - Worker - Pipeline - Email - Parse Email - Handles Multipart With Text Plain.
|
|
47
|
+
*
|
|
48
|
+
* @since 2.0.0
|
|
49
|
+
*/
|
|
50
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_HandlesMultipartWithTextPlain_Boundary = string;
|
|
51
|
+
|
|
52
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_HandlesMultipartWithTextPlain_Raw = string;
|
|
53
|
+
|
|
54
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_HandlesMultipartWithTextPlain_Result_From = string;
|
|
55
|
+
|
|
56
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_HandlesMultipartWithTextPlain_Result_To = string;
|
|
57
|
+
|
|
58
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_HandlesMultipartWithTextPlain_Result_Subject = string;
|
|
59
|
+
|
|
60
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_HandlesMultipartWithTextPlain_Result_TextBody = string;
|
|
61
|
+
|
|
62
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_HandlesMultipartWithTextPlain_Result = {
|
|
63
|
+
from: Tests_Worker_Pipeline_Email_ParseEmail_HandlesMultipartWithTextPlain_Result_From;
|
|
64
|
+
to: Tests_Worker_Pipeline_Email_ParseEmail_HandlesMultipartWithTextPlain_Result_To;
|
|
65
|
+
subject: Tests_Worker_Pipeline_Email_ParseEmail_HandlesMultipartWithTextPlain_Result_Subject;
|
|
66
|
+
textBody: Tests_Worker_Pipeline_Email_ParseEmail_HandlesMultipartWithTextPlain_Result_TextBody;
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Tests - Worker - Pipeline - Email - Parse Email - Strips HTML From HTML Only Emails.
|
|
71
|
+
*
|
|
72
|
+
* @since 2.0.0
|
|
73
|
+
*/
|
|
74
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_StripsHTMLFromHTMLOnlyEmails_Raw = string;
|
|
75
|
+
|
|
76
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_StripsHTMLFromHTMLOnlyEmails_Result_From = string;
|
|
77
|
+
|
|
78
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_StripsHTMLFromHTMLOnlyEmails_Result_To = string;
|
|
79
|
+
|
|
80
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_StripsHTMLFromHTMLOnlyEmails_Result_Subject = string;
|
|
81
|
+
|
|
82
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_StripsHTMLFromHTMLOnlyEmails_Result_TextBody = string;
|
|
83
|
+
|
|
84
|
+
export type Tests_Worker_Pipeline_Email_ParseEmail_StripsHTMLFromHTMLOnlyEmails_Result = {
|
|
85
|
+
from: Tests_Worker_Pipeline_Email_ParseEmail_StripsHTMLFromHTMLOnlyEmails_Result_From;
|
|
86
|
+
to: Tests_Worker_Pipeline_Email_ParseEmail_StripsHTMLFromHTMLOnlyEmails_Result_To;
|
|
87
|
+
subject: Tests_Worker_Pipeline_Email_ParseEmail_StripsHTMLFromHTMLOnlyEmails_Result_Subject;
|
|
88
|
+
textBody: Tests_Worker_Pipeline_Email_ParseEmail_StripsHTMLFromHTMLOnlyEmails_Result_TextBody;
|
|
89
|
+
};
|