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,6 @@
|
|
|
1
1
|
import type {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
Worker_Pipeline_Interpret_Input,
|
|
3
|
+
Worker_Pipeline_Interpret_Result,
|
|
4
4
|
} from '../pipeline/interpret.d.ts';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -8,21 +8,21 @@ import type {
|
|
|
8
8
|
*
|
|
9
9
|
* @since 2.0.0
|
|
10
10
|
*/
|
|
11
|
-
export type
|
|
11
|
+
export type Worker_Interpreters_NtfyJson_Input = Worker_Pipeline_Interpret_Input;
|
|
12
12
|
|
|
13
|
-
export type
|
|
14
|
-
|
|
15
|
-
export type WorkerInterpretersNtfyJsonInterpreter = (input: WorkerInterpretersNtfyJsonInput) => WorkerInterpretersNtfyJsonResult;
|
|
13
|
+
export type Worker_Interpreters_NtfyJson_Result = Worker_Pipeline_Interpret_Result | null;
|
|
16
14
|
|
|
17
15
|
/**
|
|
18
16
|
* Worker - Interpreters - Ntfy JSON - Ntfy JSON Interpreter.
|
|
19
17
|
*
|
|
20
18
|
* @since 2.0.0
|
|
21
19
|
*/
|
|
22
|
-
export type
|
|
20
|
+
export type Worker_Interpreters_NtfyJson_NtfyJsonInterpreter = (input: Worker_Interpreters_NtfyJson_Input) => Worker_Interpreters_NtfyJson_Result;
|
|
21
|
+
|
|
22
|
+
export type Worker_Interpreters_NtfyJson_NtfyJsonInterpreter_Parsed = unknown;
|
|
23
23
|
|
|
24
|
-
export type
|
|
24
|
+
export type Worker_Interpreters_NtfyJson_NtfyJsonInterpreter_Decoder = TextDecoder;
|
|
25
25
|
|
|
26
|
-
export type
|
|
26
|
+
export type Worker_Interpreters_NtfyJson_NtfyJsonInterpreter_DecodedBody = string;
|
|
27
27
|
|
|
28
|
-
export type
|
|
28
|
+
export type Worker_Interpreters_NtfyJson_NtfyJsonInterpreter_Notification = Worker_Pipeline_Interpret_Result['notification'];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
Worker_Pipeline_Interpret_Input,
|
|
3
|
+
Worker_Pipeline_Interpret_NotificationObjectPriority,
|
|
4
|
+
Worker_Pipeline_Interpret_Result,
|
|
5
5
|
} from '../pipeline/interpret.d.ts';
|
|
6
6
|
|
|
7
7
|
/**
|
|
@@ -9,89 +9,97 @@ import type {
|
|
|
9
9
|
*
|
|
10
10
|
* @since 2.0.0
|
|
11
11
|
*/
|
|
12
|
-
export type
|
|
12
|
+
export type Worker_Interpreters_Pfsense_Input = Worker_Pipeline_Interpret_Input;
|
|
13
13
|
|
|
14
|
-
export type
|
|
14
|
+
export type Worker_Interpreters_Pfsense_Result = Worker_Pipeline_Interpret_Result;
|
|
15
15
|
|
|
16
|
-
export type
|
|
16
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter = (input: Worker_Interpreters_Pfsense_Input) => Worker_Interpreters_Pfsense_Result;
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
* Worker - Interpreters - Pfsense - Extract Content Tags.
|
|
20
20
|
*
|
|
21
21
|
* @since 2.0.0
|
|
22
22
|
*/
|
|
23
|
-
export type
|
|
23
|
+
export type Worker_Interpreters_Pfsense_ExtractContentTags_Text = string;
|
|
24
24
|
|
|
25
|
-
export type
|
|
25
|
+
export type Worker_Interpreters_Pfsense_ExtractContentTags_Returns = string[];
|
|
26
26
|
|
|
27
|
-
export type
|
|
27
|
+
export type Worker_Interpreters_Pfsense_ExtractContentTags_Lower = string;
|
|
28
28
|
|
|
29
|
-
export type
|
|
29
|
+
export type Worker_Interpreters_Pfsense_ExtractContentTags_Tags = string[];
|
|
30
30
|
|
|
31
31
|
/**
|
|
32
|
-
* Worker - Interpreters - Pfsense -
|
|
32
|
+
* Worker - Interpreters - Pfsense - Map Keywords To Priority.
|
|
33
33
|
*
|
|
34
34
|
* @since 2.0.0
|
|
35
35
|
*/
|
|
36
|
-
export type
|
|
37
|
-
|
|
38
|
-
export type WorkerInterpretersPfsenseInterpreterEmojiTag = string;
|
|
39
|
-
|
|
40
|
-
export type WorkerInterpretersPfsenseInterpreterDecoder = TextDecoder;
|
|
41
|
-
|
|
42
|
-
export type WorkerInterpretersPfsenseInterpreterBody = string;
|
|
43
|
-
|
|
44
|
-
export type WorkerInterpretersPfsenseInterpreterData = Record<string, unknown>;
|
|
45
|
-
|
|
46
|
-
export type WorkerInterpretersPfsenseInterpreterRawSubject = unknown;
|
|
47
|
-
|
|
48
|
-
export type WorkerInterpretersPfsenseInterpreterSubject = string;
|
|
49
|
-
|
|
50
|
-
export type WorkerInterpretersPfsenseInterpreterRawTextBody = unknown;
|
|
36
|
+
export type Worker_Interpreters_Pfsense_MapKeywordsToPriority_Text = string;
|
|
51
37
|
|
|
52
|
-
export type
|
|
38
|
+
export type Worker_Interpreters_Pfsense_MapKeywordsToPriority_Returns = Worker_Pipeline_Interpret_NotificationObjectPriority;
|
|
53
39
|
|
|
54
|
-
export type
|
|
55
|
-
|
|
56
|
-
export type WorkerInterpretersPfsenseInterpreterNotifications = string[];
|
|
57
|
-
|
|
58
|
-
export type WorkerInterpretersPfsenseInterpreterContentTags = string[];
|
|
59
|
-
|
|
60
|
-
export type WorkerInterpretersPfsenseInterpreterTags = string[];
|
|
40
|
+
export type Worker_Interpreters_Pfsense_MapKeywordsToPriority_Lower = string;
|
|
61
41
|
|
|
62
42
|
/**
|
|
63
|
-
* Worker - Interpreters - Pfsense - Map
|
|
43
|
+
* Worker - Interpreters - Pfsense - Map Priority To Emoji Tag.
|
|
64
44
|
*
|
|
65
45
|
* @since 2.0.0
|
|
66
46
|
*/
|
|
67
|
-
export type
|
|
68
|
-
|
|
69
|
-
export type WorkerInterpretersPfsenseMapKeywordsToPriorityReturns = WorkerPipelineInterpretNotificationObjectPriority;
|
|
47
|
+
export type Worker_Interpreters_Pfsense_MapPriorityToEmojiTag_Priority = Worker_Pipeline_Interpret_NotificationObjectPriority;
|
|
70
48
|
|
|
71
|
-
export type
|
|
49
|
+
export type Worker_Interpreters_Pfsense_MapPriorityToEmojiTag_Returns = string;
|
|
72
50
|
|
|
73
51
|
/**
|
|
74
|
-
* Worker - Interpreters - Pfsense -
|
|
52
|
+
* Worker - Interpreters - Pfsense - Parse Notifications.
|
|
75
53
|
*
|
|
76
54
|
* @since 2.0.0
|
|
77
55
|
*/
|
|
78
|
-
export type
|
|
56
|
+
export type Worker_Interpreters_Pfsense_ParseNotifications_TextBody = string;
|
|
79
57
|
|
|
80
|
-
export type
|
|
58
|
+
export type Worker_Interpreters_Pfsense_ParseNotifications_Returns = string[];
|
|
59
|
+
|
|
60
|
+
export type Worker_Interpreters_Pfsense_ParseNotifications_Lines = string[];
|
|
61
|
+
|
|
62
|
+
export type Worker_Interpreters_Pfsense_ParseNotifications_Notifications = string[];
|
|
63
|
+
|
|
64
|
+
export type Worker_Interpreters_Pfsense_ParseNotifications_Trimmed = string;
|
|
81
65
|
|
|
82
66
|
/**
|
|
83
|
-
* Worker - Interpreters - Pfsense -
|
|
67
|
+
* Worker - Interpreters - Pfsense - Pfsense Interpreter.
|
|
84
68
|
*
|
|
85
69
|
* @since 2.0.0
|
|
86
70
|
*/
|
|
87
|
-
export type
|
|
71
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_StringPriority = 1 | 2 | 3 | 4 | 5;
|
|
72
|
+
|
|
73
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_StringEmojiTag = string;
|
|
74
|
+
|
|
75
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_Decoder = TextDecoder;
|
|
76
|
+
|
|
77
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_BufferBody = string;
|
|
78
|
+
|
|
79
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_BufferPriority = 1 | 2 | 3 | 4 | 5;
|
|
80
|
+
|
|
81
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_BufferEmojiTag = string;
|
|
82
|
+
|
|
83
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_Data = Record<string, unknown>;
|
|
84
|
+
|
|
85
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_RawSubject = unknown;
|
|
86
|
+
|
|
87
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_Subject = string;
|
|
88
|
+
|
|
89
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_RawTextBody = unknown;
|
|
90
|
+
|
|
91
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_TextBody = string;
|
|
92
|
+
|
|
93
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_Hostname = string;
|
|
94
|
+
|
|
95
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_Notifications = string[];
|
|
88
96
|
|
|
89
|
-
export type
|
|
97
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_Priority = 1 | 2 | 3 | 4 | 5;
|
|
90
98
|
|
|
91
|
-
export type
|
|
99
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_ContentTags = string[];
|
|
92
100
|
|
|
93
|
-
export type
|
|
101
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_EmojiTag = string;
|
|
94
102
|
|
|
95
|
-
export type
|
|
103
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_Tags = string[];
|
|
96
104
|
|
|
97
|
-
export type
|
|
105
|
+
export type Worker_Interpreters_Pfsense_PfsenseInterpreter_Body = string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
Worker_Pipeline_Interpret_Input,
|
|
3
|
+
Worker_Pipeline_Interpret_Result,
|
|
4
4
|
} from '../pipeline/interpret.d.ts';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -8,17 +8,17 @@ import type {
|
|
|
8
8
|
*
|
|
9
9
|
* @since 2.0.0
|
|
10
10
|
*/
|
|
11
|
-
export type
|
|
11
|
+
export type Worker_Interpreters_PlainText_Input = Worker_Pipeline_Interpret_Input;
|
|
12
12
|
|
|
13
|
-
export type
|
|
13
|
+
export type Worker_Interpreters_PlainText_Result = Worker_Pipeline_Interpret_Result;
|
|
14
14
|
|
|
15
|
-
export type
|
|
15
|
+
export type Worker_Interpreters_PlainText_PlainTextInterpreter = (input: Worker_Interpreters_PlainText_Input) => Worker_Interpreters_PlainText_Result;
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
18
|
* Worker - Interpreters - Plain Text - Plain Text Interpreter.
|
|
19
19
|
*
|
|
20
20
|
* @since 2.0.0
|
|
21
21
|
*/
|
|
22
|
-
export type
|
|
22
|
+
export type Worker_Interpreters_PlainText_PlainTextInterpreter_Body = string | undefined;
|
|
23
23
|
|
|
24
|
-
export type
|
|
24
|
+
export type Worker_Interpreters_PlainText_PlainTextInterpreter_Decoder = TextDecoder;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
Worker_Pipeline_Interpret_Input,
|
|
3
|
+
Worker_Pipeline_Interpret_NotificationObjectPriority,
|
|
4
|
+
Worker_Pipeline_Interpret_Result,
|
|
5
5
|
} from '../pipeline/interpret.d.ts';
|
|
6
6
|
|
|
7
7
|
/**
|
|
@@ -9,116 +9,118 @@ import type {
|
|
|
9
9
|
*
|
|
10
10
|
* @since 2.0.0
|
|
11
11
|
*/
|
|
12
|
-
export type
|
|
12
|
+
export type Worker_Interpreters_Seerr_Input = Worker_Pipeline_Interpret_Input;
|
|
13
13
|
|
|
14
|
-
export type
|
|
14
|
+
export type Worker_Interpreters_Seerr_Result = Worker_Pipeline_Interpret_Result;
|
|
15
15
|
|
|
16
|
-
export type
|
|
16
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter = (input: Worker_Interpreters_Seerr_Input) => Worker_Interpreters_Seerr_Result;
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
|
-
* Worker - Interpreters - Seerr -
|
|
19
|
+
* Worker - Interpreters - Seerr - Map Notification Type To Priority.
|
|
20
20
|
*
|
|
21
21
|
* @since 2.0.0
|
|
22
22
|
*/
|
|
23
|
-
export type
|
|
23
|
+
export type Worker_Interpreters_Seerr_MapNotificationTypeToPriority_NotificationType = string;
|
|
24
24
|
|
|
25
|
-
export type
|
|
25
|
+
export type Worker_Interpreters_Seerr_MapNotificationTypeToPriority_Returns = Worker_Pipeline_Interpret_NotificationObjectPriority;
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
/**
|
|
28
|
+
* Worker - Interpreters - Seerr - Map Priority To Emoji Tag.
|
|
29
|
+
*
|
|
30
|
+
* @since 2.0.0
|
|
31
|
+
*/
|
|
32
|
+
export type Worker_Interpreters_Seerr_MapPriorityToEmojiTag_Priority = Worker_Pipeline_Interpret_NotificationObjectPriority;
|
|
28
33
|
|
|
29
|
-
export type
|
|
34
|
+
export type Worker_Interpreters_Seerr_MapPriorityToEmojiTag_Returns = string;
|
|
30
35
|
|
|
31
|
-
|
|
36
|
+
/**
|
|
37
|
+
* Worker - Interpreters - Seerr - Seerr Interpreter.
|
|
38
|
+
*
|
|
39
|
+
* @since 2.0.0
|
|
40
|
+
*/
|
|
41
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Parsed = unknown;
|
|
32
42
|
|
|
33
|
-
export type
|
|
43
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Decoder = TextDecoder;
|
|
34
44
|
|
|
35
|
-
export type
|
|
45
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_DecodedBody = string;
|
|
36
46
|
|
|
37
|
-
export type
|
|
47
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Data = Record<string, unknown>;
|
|
38
48
|
|
|
39
|
-
export type
|
|
49
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_NotificationType = string;
|
|
40
50
|
|
|
41
|
-
export type
|
|
51
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Event = string;
|
|
42
52
|
|
|
43
|
-
export type
|
|
53
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Subject = string;
|
|
44
54
|
|
|
45
|
-
export type
|
|
55
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Message = string;
|
|
46
56
|
|
|
47
|
-
export type
|
|
57
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Image = string | undefined;
|
|
48
58
|
|
|
49
|
-
export type
|
|
59
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_RawMediaDefault = Record<string, unknown>;
|
|
50
60
|
|
|
51
|
-
export type
|
|
61
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Media = Record<string, unknown>;
|
|
52
62
|
|
|
53
|
-
export type
|
|
63
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_MediaType = string;
|
|
54
64
|
|
|
55
|
-
export type
|
|
65
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_TmdbId = string;
|
|
56
66
|
|
|
57
|
-
export type
|
|
67
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_MediaStatus = string;
|
|
58
68
|
|
|
59
|
-
export type
|
|
69
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_RawRequestDefault = Record<string, unknown>;
|
|
60
70
|
|
|
61
|
-
export type
|
|
71
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Request = Record<string, unknown>;
|
|
62
72
|
|
|
63
|
-
export type
|
|
73
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_RequestedByUsername = string;
|
|
64
74
|
|
|
65
|
-
export type
|
|
75
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_RawIssueDefault = Record<string, unknown>;
|
|
66
76
|
|
|
67
|
-
export type
|
|
77
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Issue = Record<string, unknown>;
|
|
68
78
|
|
|
69
|
-
export type
|
|
79
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_IssueType = string;
|
|
70
80
|
|
|
71
|
-
export type
|
|
81
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_ReportedByUsername = string;
|
|
72
82
|
|
|
73
|
-
export type
|
|
83
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_RawCommentDefault = Record<string, unknown>;
|
|
74
84
|
|
|
75
|
-
export type
|
|
85
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Comment = Record<string, unknown>;
|
|
76
86
|
|
|
77
|
-
export type
|
|
87
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_CommentMessage = string;
|
|
78
88
|
|
|
79
|
-
export type
|
|
89
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_CommentedByUsername = string;
|
|
80
90
|
|
|
81
|
-
export type
|
|
91
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Title = string;
|
|
82
92
|
|
|
83
|
-
export type
|
|
93
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_BodyLines = string[];
|
|
84
94
|
|
|
85
|
-
export type
|
|
95
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Body = string;
|
|
86
96
|
|
|
87
|
-
export type
|
|
97
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Priority = 1 | 2 | 3 | 4 | 5;
|
|
88
98
|
|
|
89
|
-
export type
|
|
99
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_EmojiTag = string;
|
|
90
100
|
|
|
91
|
-
export type
|
|
101
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Tags = string[];
|
|
92
102
|
|
|
93
|
-
export type
|
|
103
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_TmdbUrl = string | undefined;
|
|
94
104
|
|
|
95
|
-
export type
|
|
105
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_RawProxyConfigDefault = Record<string, unknown>;
|
|
96
106
|
|
|
97
|
-
|
|
98
|
-
* Worker - Interpreters - Seerr - Map Notification Type To Priority.
|
|
99
|
-
*
|
|
100
|
-
* @since 2.0.0
|
|
101
|
-
*/
|
|
102
|
-
export type WorkerInterpretersSeerrMapNotificationTypeToPriorityNotificationType = string;
|
|
107
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_ProxyConfig = Record<string, unknown>;
|
|
103
108
|
|
|
104
|
-
export type
|
|
109
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_RawSeerrUrl = unknown;
|
|
105
110
|
|
|
106
|
-
|
|
107
|
-
* Worker - Interpreters - Seerr - Map Priority To Emoji Tag.
|
|
108
|
-
*
|
|
109
|
-
* @since 2.0.0
|
|
110
|
-
*/
|
|
111
|
-
export type WorkerInterpretersSeerrMapPriorityToEmojiTagPriority = WorkerPipelineInterpretNotificationObjectPriority;
|
|
111
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_SeerrUrl = string | undefined;
|
|
112
112
|
|
|
113
|
-
export type
|
|
113
|
+
export type Worker_Interpreters_Seerr_SeerrInterpreter_Actions = string[];
|
|
114
114
|
|
|
115
115
|
/**
|
|
116
116
|
* Worker - Interpreters - Seerr - Validate URL.
|
|
117
117
|
*
|
|
118
118
|
* @since 2.0.0
|
|
119
119
|
*/
|
|
120
|
-
export type
|
|
120
|
+
export type Worker_Interpreters_Seerr_ValidateUrl_RawUrl = string;
|
|
121
|
+
|
|
122
|
+
export type Worker_Interpreters_Seerr_ValidateUrl_Returns = string | undefined;
|
|
121
123
|
|
|
122
|
-
export type
|
|
124
|
+
export type Worker_Interpreters_Seerr_ValidateUrl_Url = URL;
|
|
123
125
|
|
|
124
|
-
export type
|
|
126
|
+
export type Worker_Interpreters_Seerr_ValidateUrl_Protocol = string;
|