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.
Files changed (193) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +10 -0
  3. package/build/src/cli/commands/config-io.d.ts +3 -3
  4. package/build/src/cli/commands/config-io.d.ts.map +1 -1
  5. package/build/src/cli/commands/config-io.js +1 -1
  6. package/build/src/cli/commands/config-io.js.map +1 -1
  7. package/build/src/cli/commands/context.d.ts +7 -7
  8. package/build/src/cli/commands/context.d.ts.map +1 -1
  9. package/build/src/cli/commands/context.js +1 -1
  10. package/build/src/cli/commands/context.js.map +1 -1
  11. package/build/src/cli/commands/deploy.d.ts +2 -2
  12. package/build/src/cli/commands/deploy.d.ts.map +1 -1
  13. package/build/src/cli/commands/deploy.js +72 -30
  14. package/build/src/cli/commands/deploy.js.map +1 -1
  15. package/build/src/cli/commands/generate.d.ts +2 -2
  16. package/build/src/cli/commands/generate.d.ts.map +1 -1
  17. package/build/src/cli/commands/generate.js +3 -3
  18. package/build/src/cli/commands/generate.js.map +1 -1
  19. package/build/src/cli/commands/server.d.ts +5 -5
  20. package/build/src/cli/commands/server.d.ts.map +1 -1
  21. package/build/src/cli/commands/server.js.map +1 -1
  22. package/build/src/cli/commands/settings.d.ts +3 -3
  23. package/build/src/cli/commands/settings.d.ts.map +1 -1
  24. package/build/src/cli/commands/settings.js.map +1 -1
  25. package/build/src/cli/commands/validate.d.ts +2 -2
  26. package/build/src/cli/commands/validate.d.ts.map +1 -1
  27. package/build/src/cli/commands/validate.js +3 -0
  28. package/build/src/cli/commands/validate.js.map +1 -1
  29. package/build/src/cli/index.d.ts +2 -2
  30. package/build/src/cli/index.d.ts.map +1 -1
  31. package/build/src/cli/index.js +4 -4
  32. package/build/src/cli/index.js.map +1 -1
  33. package/build/src/cli/menu/interactive.d.ts +2 -2
  34. package/build/src/cli/menu/interactive.d.ts.map +1 -1
  35. package/build/src/cli/menu/interactive.js +260 -94
  36. package/build/src/cli/menu/interactive.js.map +1 -1
  37. package/build/src/lib/regex.d.ts +4 -1
  38. package/build/src/lib/regex.d.ts.map +1 -1
  39. package/build/src/lib/regex.js +4 -1
  40. package/build/src/lib/regex.js.map +1 -1
  41. package/build/src/lib/schema.d.ts +24 -0
  42. package/build/src/lib/schema.d.ts.map +1 -1
  43. package/build/src/lib/schema.js +11 -2
  44. package/build/src/lib/schema.js.map +1 -1
  45. package/build/src/lib/utility.d.ts +2 -2
  46. package/build/src/lib/utility.d.ts.map +1 -1
  47. package/build/src/lib/utility.js +1 -1
  48. package/build/src/lib/utility.js.map +1 -1
  49. package/build/src/types/cli/commands/config-io.d.ts +12 -12
  50. package/build/src/types/cli/commands/context.d.ts +96 -58
  51. package/build/src/types/cli/commands/deploy.d.ts +342 -298
  52. package/build/src/types/cli/commands/generate.d.ts +40 -24
  53. package/build/src/types/cli/commands/server.d.ts +23 -23
  54. package/build/src/types/cli/commands/settings.d.ts +8 -8
  55. package/build/src/types/cli/commands/validate.d.ts +16 -16
  56. package/build/src/types/cli/index.d.ts +16 -20
  57. package/build/src/types/cli/menu/interactive.d.ts +233 -178
  58. package/build/src/types/lib/schema.d.ts +89 -81
  59. package/build/src/types/lib/utility.d.ts +4 -2
  60. package/build/src/types/shared.d.ts +85 -0
  61. package/build/src/types/tests/cli/commands/context.test.d.ts +102 -31
  62. package/build/src/types/tests/cli/commands/generate.test.d.ts +50 -4
  63. package/build/src/types/tests/cli/commands/server.test.d.ts +88 -23
  64. package/build/src/types/tests/cli/commands/settings.test.d.ts +65 -21
  65. package/build/src/types/tests/cli/commands/validate.test.d.ts +69 -8
  66. package/build/src/types/tests/cli/menu/interactive-integration.test.d.ts +99 -0
  67. package/build/src/types/tests/cli/menu/interactive.test.d.ts +275 -2
  68. package/build/src/types/tests/lib/schema.test.d.ts +258 -3
  69. package/build/src/types/tests/worker/index.test.d.ts +166 -8
  70. package/build/src/types/tests/worker/interpreters/ntfy-json.test.d.ts +94 -10
  71. package/build/src/types/tests/worker/interpreters/pfsense.test.d.ts +163 -4
  72. package/build/src/types/tests/worker/interpreters/plain-text.test.d.ts +67 -4
  73. package/build/src/types/tests/worker/interpreters/seerr.test.d.ts +138 -3
  74. package/build/src/types/tests/worker/interpreters/statuspage.test.d.ts +235 -30
  75. package/build/src/types/tests/worker/interpreters/synology.test.d.ts +61 -3
  76. package/build/src/types/tests/worker/interpreters/unifi.test.d.ts +93 -3
  77. package/build/src/types/tests/worker/landing/page.test.d.ts +73 -50
  78. package/build/src/types/tests/worker/pipeline/accumulate.test.d.ts +226 -15
  79. package/build/src/types/tests/worker/pipeline/authenticate.test.d.ts +148 -4
  80. package/build/src/types/tests/worker/pipeline/email.test.d.ts +82 -8
  81. package/build/src/types/tests/worker/pipeline/format.test.d.ts +112 -32
  82. package/build/src/types/tests/worker/pipeline/interpret.test.d.ts +109 -17
  83. package/build/src/types/tests/worker/pipeline/parse.test.d.ts +70 -5
  84. package/build/src/types/tests/worker/pipeline/receive.test.d.ts +156 -15
  85. package/build/src/types/tests/worker/pipeline/respond.test.d.ts +129 -10
  86. package/build/src/types/tests/worker/pipeline/route.test.d.ts +412 -74
  87. package/build/src/types/tests/worker/pipeline/send.test.d.ts +58 -23
  88. package/build/src/types/tests/worker/pipeline/split.test.d.ts +47 -9
  89. package/build/src/types/worker/handlers.d.ts +193 -0
  90. package/build/src/types/worker/index.d.ts +58 -203
  91. package/build/src/types/worker/interpreters/ntfy-json.d.ts +10 -10
  92. package/build/src/types/worker/interpreters/pfsense.d.ts +57 -49
  93. package/build/src/types/worker/interpreters/plain-text.d.ts +7 -7
  94. package/build/src/types/worker/interpreters/seerr.d.ts +63 -61
  95. package/build/src/types/worker/interpreters/statuspage.d.ts +201 -116
  96. package/build/src/types/worker/interpreters/synology.d.ts +48 -46
  97. package/build/src/types/worker/interpreters/unifi.d.ts +79 -54
  98. package/build/src/types/worker/landing/page.d.ts +30 -23
  99. package/build/src/types/worker/pipeline/accumulate.d.ts +46 -32
  100. package/build/src/types/worker/pipeline/authenticate.d.ts +94 -34
  101. package/build/src/types/worker/pipeline/email.d.ts +114 -50
  102. package/build/src/types/worker/pipeline/format.d.ts +31 -23
  103. package/build/src/types/worker/pipeline/interpret.d.ts +34 -34
  104. package/build/src/types/worker/pipeline/parse.d.ts +25 -19
  105. package/build/src/types/worker/pipeline/receive.d.ts +36 -34
  106. package/build/src/types/worker/pipeline/respond.d.ts +119 -63
  107. package/build/src/types/worker/pipeline/route.d.ts +33 -16
  108. package/build/src/types/worker/pipeline/send.d.ts +116 -79
  109. package/build/src/types/worker/pipeline/split.d.ts +21 -16
  110. package/build/src/worker/handlers.d.ts +5 -4
  111. package/build/src/worker/handlers.d.ts.map +1 -1
  112. package/build/src/worker/handlers.js +238 -202
  113. package/build/src/worker/handlers.js.map +1 -1
  114. package/build/src/worker/index.d.ts +2 -2
  115. package/build/src/worker/index.d.ts.map +1 -1
  116. package/build/src/worker/index.js +37 -9
  117. package/build/src/worker/index.js.map +1 -1
  118. package/build/src/worker/interpreters/ntfy-json.d.ts +2 -2
  119. package/build/src/worker/interpreters/ntfy-json.d.ts.map +1 -1
  120. package/build/src/worker/interpreters/ntfy-json.js.map +1 -1
  121. package/build/src/worker/interpreters/pfsense.d.ts +2 -2
  122. package/build/src/worker/interpreters/pfsense.d.ts.map +1 -1
  123. package/build/src/worker/interpreters/pfsense.js +20 -27
  124. package/build/src/worker/interpreters/pfsense.js.map +1 -1
  125. package/build/src/worker/interpreters/plain-text.d.ts +2 -2
  126. package/build/src/worker/interpreters/plain-text.d.ts.map +1 -1
  127. package/build/src/worker/interpreters/plain-text.js.map +1 -1
  128. package/build/src/worker/interpreters/seerr.d.ts +2 -2
  129. package/build/src/worker/interpreters/seerr.d.ts.map +1 -1
  130. package/build/src/worker/interpreters/seerr.js +16 -12
  131. package/build/src/worker/interpreters/seerr.js.map +1 -1
  132. package/build/src/worker/interpreters/statuspage.d.ts +2 -2
  133. package/build/src/worker/interpreters/statuspage.d.ts.map +1 -1
  134. package/build/src/worker/interpreters/statuspage.js +98 -47
  135. package/build/src/worker/interpreters/statuspage.js.map +1 -1
  136. package/build/src/worker/interpreters/synology.d.ts +2 -2
  137. package/build/src/worker/interpreters/synology.d.ts.map +1 -1
  138. package/build/src/worker/interpreters/synology.js +9 -5
  139. package/build/src/worker/interpreters/synology.js.map +1 -1
  140. package/build/src/worker/interpreters/unifi.d.ts +2 -2
  141. package/build/src/worker/interpreters/unifi.d.ts.map +1 -1
  142. package/build/src/worker/interpreters/unifi.js +34 -20
  143. package/build/src/worker/interpreters/unifi.js.map +1 -1
  144. package/build/src/worker/landing/page.d.ts +2 -2
  145. package/build/src/worker/landing/page.d.ts.map +1 -1
  146. package/build/src/worker/landing/page.js +4 -3
  147. package/build/src/worker/landing/page.js.map +1 -1
  148. package/build/src/worker/pipeline/accumulate.d.ts +5 -6
  149. package/build/src/worker/pipeline/accumulate.d.ts.map +1 -1
  150. package/build/src/worker/pipeline/accumulate.js +4 -11
  151. package/build/src/worker/pipeline/accumulate.js.map +1 -1
  152. package/build/src/worker/pipeline/authenticate.d.ts +2 -2
  153. package/build/src/worker/pipeline/authenticate.d.ts.map +1 -1
  154. package/build/src/worker/pipeline/authenticate.js +25 -7
  155. package/build/src/worker/pipeline/authenticate.js.map +1 -1
  156. package/build/src/worker/pipeline/email.d.ts +2 -2
  157. package/build/src/worker/pipeline/email.d.ts.map +1 -1
  158. package/build/src/worker/pipeline/email.js +34 -11
  159. package/build/src/worker/pipeline/email.js.map +1 -1
  160. package/build/src/worker/pipeline/format.d.ts +2 -3
  161. package/build/src/worker/pipeline/format.d.ts.map +1 -1
  162. package/build/src/worker/pipeline/format.js +2 -1
  163. package/build/src/worker/pipeline/format.js.map +1 -1
  164. package/build/src/worker/pipeline/interpret.d.ts +4 -3
  165. package/build/src/worker/pipeline/interpret.d.ts.map +1 -1
  166. package/build/src/worker/pipeline/interpret.js +7 -7
  167. package/build/src/worker/pipeline/interpret.js.map +1 -1
  168. package/build/src/worker/pipeline/parse.d.ts +2 -2
  169. package/build/src/worker/pipeline/parse.d.ts.map +1 -1
  170. package/build/src/worker/pipeline/parse.js +14 -7
  171. package/build/src/worker/pipeline/parse.js.map +1 -1
  172. package/build/src/worker/pipeline/receive.d.ts +2 -2
  173. package/build/src/worker/pipeline/receive.d.ts.map +1 -1
  174. package/build/src/worker/pipeline/receive.js +6 -6
  175. package/build/src/worker/pipeline/receive.js.map +1 -1
  176. package/build/src/worker/pipeline/respond.d.ts +2 -2
  177. package/build/src/worker/pipeline/respond.d.ts.map +1 -1
  178. package/build/src/worker/pipeline/respond.js +1 -1
  179. package/build/src/worker/pipeline/respond.js.map +1 -1
  180. package/build/src/worker/pipeline/route.d.ts +2 -3
  181. package/build/src/worker/pipeline/route.d.ts.map +1 -1
  182. package/build/src/worker/pipeline/route.js.map +1 -1
  183. package/build/src/worker/pipeline/send.d.ts +2 -2
  184. package/build/src/worker/pipeline/send.d.ts.map +1 -1
  185. package/build/src/worker/pipeline/send.js +80 -41
  186. package/build/src/worker/pipeline/send.js.map +1 -1
  187. package/build/src/worker/pipeline/split.d.ts +2 -2
  188. package/build/src/worker/pipeline/split.d.ts.map +1 -1
  189. package/build/src/worker/pipeline/split.js +4 -2
  190. package/build/src/worker/pipeline/split.js.map +1 -1
  191. package/package.json +11 -9
  192. package/build/src/types/tests/type-declarations.test.d.ts +0 -173
  193. package/build/src/types/worker/pipeline/shared.d.ts +0 -85
@@ -1,6 +1,6 @@
1
1
  import type {
2
- WorkerPipelineInterpretInput,
3
- WorkerPipelineInterpretResult,
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 WorkerInterpretersNtfyJsonInput = WorkerPipelineInterpretInput;
11
+ export type Worker_Interpreters_NtfyJson_Input = Worker_Pipeline_Interpret_Input;
12
12
 
13
- export type WorkerInterpretersNtfyJsonResult = WorkerPipelineInterpretResult | null;
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 WorkerInterpretersNtfyJsonNtfyJsonInterpreterParsed = unknown;
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 WorkerInterpretersNtfyJsonNtfyJsonInterpreterDecoder = TextDecoder;
24
+ export type Worker_Interpreters_NtfyJson_NtfyJsonInterpreter_Decoder = TextDecoder;
25
25
 
26
- export type WorkerInterpretersNtfyJsonNtfyJsonInterpreterDecodedBody = string;
26
+ export type Worker_Interpreters_NtfyJson_NtfyJsonInterpreter_DecodedBody = string;
27
27
 
28
- export type WorkerInterpretersNtfyJsonNtfyJsonInterpreterNotification = WorkerPipelineInterpretResult['notification'];
28
+ export type Worker_Interpreters_NtfyJson_NtfyJsonInterpreter_Notification = Worker_Pipeline_Interpret_Result['notification'];
@@ -1,7 +1,7 @@
1
1
  import type {
2
- WorkerPipelineInterpretInput,
3
- WorkerPipelineInterpretNotificationObjectPriority,
4
- WorkerPipelineInterpretResult,
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 WorkerInterpretersPfsenseInput = WorkerPipelineInterpretInput;
12
+ export type Worker_Interpreters_Pfsense_Input = Worker_Pipeline_Interpret_Input;
13
13
 
14
- export type WorkerInterpretersPfsenseResult = WorkerPipelineInterpretResult;
14
+ export type Worker_Interpreters_Pfsense_Result = Worker_Pipeline_Interpret_Result;
15
15
 
16
- export type WorkerInterpretersPfsenseInterpreter = (input: WorkerInterpretersPfsenseInput) => WorkerInterpretersPfsenseResult;
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 WorkerInterpretersPfsenseExtractContentTagsText = string;
23
+ export type Worker_Interpreters_Pfsense_ExtractContentTags_Text = string;
24
24
 
25
- export type WorkerInterpretersPfsenseExtractContentTagsReturns = string[];
25
+ export type Worker_Interpreters_Pfsense_ExtractContentTags_Returns = string[];
26
26
 
27
- export type WorkerInterpretersPfsenseExtractContentTagsLower = string;
27
+ export type Worker_Interpreters_Pfsense_ExtractContentTags_Lower = string;
28
28
 
29
- export type WorkerInterpretersPfsenseExtractContentTagsTags = string[];
29
+ export type Worker_Interpreters_Pfsense_ExtractContentTags_Tags = string[];
30
30
 
31
31
  /**
32
- * Worker - Interpreters - Pfsense - Interpreter.
32
+ * Worker - Interpreters - Pfsense - Map Keywords To Priority.
33
33
  *
34
34
  * @since 2.0.0
35
35
  */
36
- export type WorkerInterpretersPfsenseInterpreterPriority = WorkerPipelineInterpretNotificationObjectPriority;
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 WorkerInterpretersPfsenseInterpreterTextBody = string;
38
+ export type Worker_Interpreters_Pfsense_MapKeywordsToPriority_Returns = Worker_Pipeline_Interpret_NotificationObjectPriority;
53
39
 
54
- export type WorkerInterpretersPfsenseInterpreterHostname = string;
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 Keywords To Priority.
43
+ * Worker - Interpreters - Pfsense - Map Priority To Emoji Tag.
64
44
  *
65
45
  * @since 2.0.0
66
46
  */
67
- export type WorkerInterpretersPfsenseMapKeywordsToPriorityText = string;
68
-
69
- export type WorkerInterpretersPfsenseMapKeywordsToPriorityReturns = WorkerPipelineInterpretNotificationObjectPriority;
47
+ export type Worker_Interpreters_Pfsense_MapPriorityToEmojiTag_Priority = Worker_Pipeline_Interpret_NotificationObjectPriority;
70
48
 
71
- export type WorkerInterpretersPfsenseMapKeywordsToPriorityLower = string;
49
+ export type Worker_Interpreters_Pfsense_MapPriorityToEmojiTag_Returns = string;
72
50
 
73
51
  /**
74
- * Worker - Interpreters - Pfsense - Map Priority To Emoji Tag.
52
+ * Worker - Interpreters - Pfsense - Parse Notifications.
75
53
  *
76
54
  * @since 2.0.0
77
55
  */
78
- export type WorkerInterpretersPfsenseMapPriorityToEmojiTagPriority = WorkerPipelineInterpretNotificationObjectPriority;
56
+ export type Worker_Interpreters_Pfsense_ParseNotifications_TextBody = string;
79
57
 
80
- export type WorkerInterpretersPfsenseMapPriorityToEmojiTagReturns = string;
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 - Parse Notifications.
67
+ * Worker - Interpreters - Pfsense - Pfsense Interpreter.
84
68
  *
85
69
  * @since 2.0.0
86
70
  */
87
- export type WorkerInterpretersPfsenseParseNotificationsTextBody = string;
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 WorkerInterpretersPfsenseParseNotificationsReturns = string[];
97
+ export type Worker_Interpreters_Pfsense_PfsenseInterpreter_Priority = 1 | 2 | 3 | 4 | 5;
90
98
 
91
- export type WorkerInterpretersPfsenseParseNotificationsLines = string[];
99
+ export type Worker_Interpreters_Pfsense_PfsenseInterpreter_ContentTags = string[];
92
100
 
93
- export type WorkerInterpretersPfsenseParseNotificationsNotifications = string[];
101
+ export type Worker_Interpreters_Pfsense_PfsenseInterpreter_EmojiTag = string;
94
102
 
95
- export type WorkerInterpretersPfsenseParseNotificationsPastSeparator = boolean;
103
+ export type Worker_Interpreters_Pfsense_PfsenseInterpreter_Tags = string[];
96
104
 
97
- export type WorkerInterpretersPfsenseParseNotificationsTrimmed = string;
105
+ export type Worker_Interpreters_Pfsense_PfsenseInterpreter_Body = string;
@@ -1,6 +1,6 @@
1
1
  import type {
2
- WorkerPipelineInterpretInput,
3
- WorkerPipelineInterpretResult,
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 WorkerInterpretersPlainTextInput = WorkerPipelineInterpretInput;
11
+ export type Worker_Interpreters_PlainText_Input = Worker_Pipeline_Interpret_Input;
12
12
 
13
- export type WorkerInterpretersPlainTextResult = WorkerPipelineInterpretResult;
13
+ export type Worker_Interpreters_PlainText_Result = Worker_Pipeline_Interpret_Result;
14
14
 
15
- export type WorkerInterpretersPlainTextInterpreter = (input: WorkerInterpretersPlainTextInput) => WorkerInterpretersPlainTextResult;
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 WorkerInterpretersPlainTextPlainTextInterpreterBody = string | undefined;
22
+ export type Worker_Interpreters_PlainText_PlainTextInterpreter_Body = string | undefined;
23
23
 
24
- export type WorkerInterpretersPlainTextPlainTextInterpreterDecoder = TextDecoder;
24
+ export type Worker_Interpreters_PlainText_PlainTextInterpreter_Decoder = TextDecoder;
@@ -1,7 +1,7 @@
1
1
  import type {
2
- WorkerPipelineInterpretInput,
3
- WorkerPipelineInterpretNotificationObjectPriority,
4
- WorkerPipelineInterpretResult,
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 WorkerInterpretersSeerrInput = WorkerPipelineInterpretInput;
12
+ export type Worker_Interpreters_Seerr_Input = Worker_Pipeline_Interpret_Input;
13
13
 
14
- export type WorkerInterpretersSeerrResult = WorkerPipelineInterpretResult;
14
+ export type Worker_Interpreters_Seerr_Result = Worker_Pipeline_Interpret_Result;
15
15
 
16
- export type WorkerInterpretersSeerrInterpreter = (input: WorkerInterpretersSeerrInput) => WorkerInterpretersSeerrResult;
16
+ export type Worker_Interpreters_Seerr_SeerrInterpreter = (input: Worker_Interpreters_Seerr_Input) => Worker_Interpreters_Seerr_Result;
17
17
 
18
18
  /**
19
- * Worker - Interpreters - Seerr - Interpreter.
19
+ * Worker - Interpreters - Seerr - Map Notification Type To Priority.
20
20
  *
21
21
  * @since 2.0.0
22
22
  */
23
- export type WorkerInterpretersSeerrInterpreterParsed = unknown;
23
+ export type Worker_Interpreters_Seerr_MapNotificationTypeToPriority_NotificationType = string;
24
24
 
25
- export type WorkerInterpretersSeerrInterpreterDecoder = TextDecoder;
25
+ export type Worker_Interpreters_Seerr_MapNotificationTypeToPriority_Returns = Worker_Pipeline_Interpret_NotificationObjectPriority;
26
26
 
27
- export type WorkerInterpretersSeerrInterpreterDecodedBody = string;
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 WorkerInterpretersSeerrInterpreterData = Record<string, unknown>;
34
+ export type Worker_Interpreters_Seerr_MapPriorityToEmojiTag_Returns = string;
30
35
 
31
- export type WorkerInterpretersSeerrInterpreterNotificationType = string;
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 WorkerInterpretersSeerrInterpreterEvent = string;
43
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Decoder = TextDecoder;
34
44
 
35
- export type WorkerInterpretersSeerrInterpreterSubject = string;
45
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_DecodedBody = string;
36
46
 
37
- export type WorkerInterpretersSeerrInterpreterMessage = string;
47
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Data = Record<string, unknown>;
38
48
 
39
- export type WorkerInterpretersSeerrInterpreterImage = string | undefined;
49
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_NotificationType = string;
40
50
 
41
- export type WorkerInterpretersSeerrInterpreterRawMediaDefault = Record<string, unknown>;
51
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Event = string;
42
52
 
43
- export type WorkerInterpretersSeerrInterpreterMedia = Record<string, unknown>;
53
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Subject = string;
44
54
 
45
- export type WorkerInterpretersSeerrInterpreterMediaType = string;
55
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Message = string;
46
56
 
47
- export type WorkerInterpretersSeerrInterpreterTmdbId = string;
57
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Image = string | undefined;
48
58
 
49
- export type WorkerInterpretersSeerrInterpreterMediaStatus = string;
59
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_RawMediaDefault = Record<string, unknown>;
50
60
 
51
- export type WorkerInterpretersSeerrInterpreterRawRequestDefault = Record<string, unknown>;
61
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Media = Record<string, unknown>;
52
62
 
53
- export type WorkerInterpretersSeerrInterpreterRequest = Record<string, unknown>;
63
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_MediaType = string;
54
64
 
55
- export type WorkerInterpretersSeerrInterpreterRequestedByUsername = string;
65
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_TmdbId = string;
56
66
 
57
- export type WorkerInterpretersSeerrInterpreterRawIssueDefault = Record<string, unknown>;
67
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_MediaStatus = string;
58
68
 
59
- export type WorkerInterpretersSeerrInterpreterIssue = Record<string, unknown>;
69
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_RawRequestDefault = Record<string, unknown>;
60
70
 
61
- export type WorkerInterpretersSeerrInterpreterIssueType = string;
71
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Request = Record<string, unknown>;
62
72
 
63
- export type WorkerInterpretersSeerrInterpreterReportedByUsername = string;
73
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_RequestedByUsername = string;
64
74
 
65
- export type WorkerInterpretersSeerrInterpreterRawCommentDefault = Record<string, unknown>;
75
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_RawIssueDefault = Record<string, unknown>;
66
76
 
67
- export type WorkerInterpretersSeerrInterpreterComment = Record<string, unknown>;
77
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Issue = Record<string, unknown>;
68
78
 
69
- export type WorkerInterpretersSeerrInterpreterCommentMessage = string;
79
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_IssueType = string;
70
80
 
71
- export type WorkerInterpretersSeerrInterpreterCommentedByUsername = string;
81
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_ReportedByUsername = string;
72
82
 
73
- export type WorkerInterpretersSeerrInterpreterTitle = string;
83
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_RawCommentDefault = Record<string, unknown>;
74
84
 
75
- export type WorkerInterpretersSeerrInterpreterBodyLines = string[];
85
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Comment = Record<string, unknown>;
76
86
 
77
- export type WorkerInterpretersSeerrInterpreterBody = string;
87
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_CommentMessage = string;
78
88
 
79
- export type WorkerInterpretersSeerrInterpreterPriority = WorkerPipelineInterpretNotificationObjectPriority;
89
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_CommentedByUsername = string;
80
90
 
81
- export type WorkerInterpretersSeerrInterpreterEmojiTag = string;
91
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Title = string;
82
92
 
83
- export type WorkerInterpretersSeerrInterpreterTags = string[];
93
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_BodyLines = string[];
84
94
 
85
- export type WorkerInterpretersSeerrInterpreterTmdbUrl = string | undefined;
95
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Body = string;
86
96
 
87
- export type WorkerInterpretersSeerrInterpreterRawProxyConfigDefault = Record<string, unknown>;
97
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Priority = 1 | 2 | 3 | 4 | 5;
88
98
 
89
- export type WorkerInterpretersSeerrInterpreterProxyConfig = Record<string, unknown>;
99
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_EmojiTag = string;
90
100
 
91
- export type WorkerInterpretersSeerrInterpreterRawSeerrUrl = unknown;
101
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_Tags = string[];
92
102
 
93
- export type WorkerInterpretersSeerrInterpreterSeerrUrl = string | undefined;
103
+ export type Worker_Interpreters_Seerr_SeerrInterpreter_TmdbUrl = string | undefined;
94
104
 
95
- export type WorkerInterpretersSeerrInterpreterActions = string[];
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 WorkerInterpretersSeerrMapNotificationTypeToPriorityReturns = WorkerPipelineInterpretNotificationObjectPriority;
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 WorkerInterpretersSeerrMapPriorityToEmojiTagReturns = string;
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 WorkerInterpretersSeerrValidateUrlRawUrl = string;
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 WorkerInterpretersSeerrValidateUrlReturns = string | undefined;
124
+ export type Worker_Interpreters_Seerr_ValidateUrl_Url = URL;
123
125
 
124
- export type WorkerInterpretersSeerrValidateUrlUrl = URL;
126
+ export type Worker_Interpreters_Seerr_ValidateUrl_Protocol = string;