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,8 +1,143 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Tests - Worker - Interpreters - Seerr - Seerr Interpreter - Handles Issue With Comment.
|
|
3
|
+
*
|
|
4
|
+
* @since 2.0.0
|
|
5
|
+
*/
|
|
6
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesIssueWithComment_Result_Notification_Body = string;
|
|
7
|
+
|
|
8
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesIssueWithComment_Result_Notification = {
|
|
9
|
+
body: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesIssueWithComment_Result_Notification_Body;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesIssueWithComment_Result = {
|
|
13
|
+
notification: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesIssueWithComment_Result_Notification;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Tests - Worker - Interpreters - Seerr - Seerr Interpreter - Handles Media Available With Low Priority.
|
|
18
|
+
*
|
|
19
|
+
* @since 2.0.0
|
|
20
|
+
*/
|
|
21
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaAvailableWithLowPriority_Result_Notification_Priority = 1 | 2 | 3 | 4 | 5 | undefined;
|
|
22
|
+
|
|
23
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaAvailableWithLowPriority_Result_Notification = {
|
|
24
|
+
priority?: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaAvailableWithLowPriority_Result_Notification_Priority;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaAvailableWithLowPriority_Result = {
|
|
28
|
+
notification: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaAvailableWithLowPriority_Result_Notification;
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Tests - Worker - Interpreters - Seerr - Seerr Interpreter - Handles Media Failed With High Priority.
|
|
33
|
+
*
|
|
34
|
+
* @since 2.0.0
|
|
35
|
+
*/
|
|
36
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaFailedWithHighPriority_Result_Notification_Priority = 1 | 2 | 3 | 4 | 5 | undefined;
|
|
37
|
+
|
|
38
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaFailedWithHighPriority_Result_Notification = {
|
|
39
|
+
priority?: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaFailedWithHighPriority_Result_Notification_Priority;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaFailedWithHighPriority_Result = {
|
|
43
|
+
notification: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaFailedWithHighPriority_Result_Notification;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Tests - Worker - Interpreters - Seerr - Seerr Interpreter - Handles Media Notification With Null Issue And Comment.
|
|
48
|
+
*
|
|
49
|
+
* @since 2.0.0
|
|
50
|
+
*/
|
|
51
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaNotificationWithNullIssueAndComment_Result_Notification_Title = string | undefined;
|
|
52
|
+
|
|
53
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaNotificationWithNullIssueAndComment_Result_Notification_Body = string;
|
|
54
|
+
|
|
55
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaNotificationWithNullIssueAndComment_Result_Notification_Priority = 1 | 2 | 3 | 4 | 5 | undefined;
|
|
56
|
+
|
|
57
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaNotificationWithNullIssueAndComment_Result_Notification = {
|
|
58
|
+
title?: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaNotificationWithNullIssueAndComment_Result_Notification_Title;
|
|
59
|
+
body: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaNotificationWithNullIssueAndComment_Result_Notification_Body;
|
|
60
|
+
priority?: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaNotificationWithNullIssueAndComment_Result_Notification_Priority;
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaNotificationWithNullIssueAndComment_Result = {
|
|
64
|
+
notification: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaNotificationWithNullIssueAndComment_Result_Notification;
|
|
65
|
+
};
|
|
2
66
|
|
|
3
67
|
/**
|
|
4
|
-
* Tests - Worker - Interpreters - Seerr.
|
|
68
|
+
* Tests - Worker - Interpreters - Seerr - Seerr Interpreter - Handles Media Pending Notification.
|
|
5
69
|
*
|
|
6
70
|
* @since 2.0.0
|
|
7
71
|
*/
|
|
8
|
-
export type
|
|
72
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaPendingNotification_Result_Notification_Title = string | undefined;
|
|
73
|
+
|
|
74
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaPendingNotification_Result_Notification_Body = string;
|
|
75
|
+
|
|
76
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaPendingNotification_Result_Notification_Tags = string[] | undefined;
|
|
77
|
+
|
|
78
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaPendingNotification_Result_Notification_Icon = string | undefined;
|
|
79
|
+
|
|
80
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaPendingNotification_Result_Notification = {
|
|
81
|
+
title?: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaPendingNotification_Result_Notification_Title;
|
|
82
|
+
body: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaPendingNotification_Result_Notification_Body;
|
|
83
|
+
tags?: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaPendingNotification_Result_Notification_Tags;
|
|
84
|
+
icon?: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaPendingNotification_Result_Notification_Icon;
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaPendingNotification_Result = {
|
|
88
|
+
notification: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesMediaPendingNotification_Result_Notification;
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Tests - Worker - Interpreters - Seerr - Seerr Interpreter - Handles Notification With All Null Sub Objects.
|
|
93
|
+
*
|
|
94
|
+
* @since 2.0.0
|
|
95
|
+
*/
|
|
96
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesNotificationWithAllNullSubObjects_Result_Notification_Title = string | undefined;
|
|
97
|
+
|
|
98
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesNotificationWithAllNullSubObjects_Result_Notification_Body = string;
|
|
99
|
+
|
|
100
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesNotificationWithAllNullSubObjects_Result_Notification_Priority = 1 | 2 | 3 | 4 | 5 | undefined;
|
|
101
|
+
|
|
102
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesNotificationWithAllNullSubObjects_Result_Notification = {
|
|
103
|
+
title?: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesNotificationWithAllNullSubObjects_Result_Notification_Title;
|
|
104
|
+
body: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesNotificationWithAllNullSubObjects_Result_Notification_Body;
|
|
105
|
+
priority?: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesNotificationWithAllNullSubObjects_Result_Notification_Priority;
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesNotificationWithAllNullSubObjects_Result = {
|
|
109
|
+
notification: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesNotificationWithAllNullSubObjects_Result_Notification;
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Tests - Worker - Interpreters - Seerr - Seerr Interpreter - Handles String Input.
|
|
114
|
+
*
|
|
115
|
+
* @since 2.0.0
|
|
116
|
+
*/
|
|
117
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesStringInput_Result_Notification_Body = string;
|
|
118
|
+
|
|
119
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesStringInput_Result_Notification_Tags = string[] | undefined;
|
|
120
|
+
|
|
121
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesStringInput_Result_Notification = {
|
|
122
|
+
body: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesStringInput_Result_Notification_Body;
|
|
123
|
+
tags?: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesStringInput_Result_Notification_Tags;
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesStringInput_Result = {
|
|
127
|
+
notification: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesStringInput_Result_Notification;
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Tests - Worker - Interpreters - Seerr - Seerr Interpreter - Handles TV Show With TMDB Link.
|
|
132
|
+
*
|
|
133
|
+
* @since 2.0.0
|
|
134
|
+
*/
|
|
135
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesTVShowWithTMDBLink_Result_Notification_Actions = string | undefined;
|
|
136
|
+
|
|
137
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesTVShowWithTMDBLink_Result_Notification = {
|
|
138
|
+
actions?: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesTVShowWithTMDBLink_Result_Notification_Actions;
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
export type Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesTVShowWithTMDBLink_Result = {
|
|
142
|
+
notification: Tests_Worker_Interpreters_Seerr_SeerrInterpreter_HandlesTVShowWithTMDBLink_Result_Notification;
|
|
143
|
+
};
|
|
@@ -1,58 +1,263 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
} from '../../../worker/pipeline/interpret.d.ts';
|
|
1
|
+
import type { vi } from 'vitest';
|
|
2
|
+
|
|
3
|
+
import type { Worker_Pipeline_Interpret_Result } from '../../../worker/pipeline/interpret.d.ts';
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Tests - Worker - Interpreters - Statuspage.
|
|
8
7
|
*
|
|
9
8
|
* @since 2.0.0
|
|
10
9
|
*/
|
|
11
|
-
export type
|
|
10
|
+
export type Tests_Worker_Interpreters_Statuspage_KvCast = unknown;
|
|
11
|
+
|
|
12
|
+
export type Tests_Worker_Interpreters_Statuspage_StoredRawCast = string;
|
|
13
|
+
|
|
14
|
+
export type Tests_Worker_Interpreters_Statuspage_ResultNotNull = Worker_Pipeline_Interpret_Result;
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Tests - Worker - Interpreters - Statuspage - Create Mock Kv.
|
|
18
|
+
*
|
|
19
|
+
* @since 2.0.0
|
|
20
|
+
*/
|
|
21
|
+
export type Tests_Worker_Interpreters_Statuspage_CreateMockKv_Initial = Record<string, string>;
|
|
12
22
|
|
|
13
|
-
export type
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
23
|
+
export type Tests_Worker_Interpreters_Statuspage_CreateMockKv_Returns_Get = ReturnType<typeof vi['fn']>;
|
|
24
|
+
|
|
25
|
+
export type Tests_Worker_Interpreters_Statuspage_CreateMockKv_Returns_Put = ReturnType<typeof vi['fn']>;
|
|
26
|
+
|
|
27
|
+
export type Tests_Worker_Interpreters_Statuspage_CreateMockKv_Returns_Delete = ReturnType<typeof vi['fn']>;
|
|
28
|
+
|
|
29
|
+
export type Tests_Worker_Interpreters_Statuspage_CreateMockKv_Returns_Store = Map<string, string>;
|
|
30
|
+
|
|
31
|
+
export type Tests_Worker_Interpreters_Statuspage_CreateMockKv_Returns = {
|
|
32
|
+
get: Tests_Worker_Interpreters_Statuspage_CreateMockKv_Returns_Get;
|
|
33
|
+
put: Tests_Worker_Interpreters_Statuspage_CreateMockKv_Returns_Put;
|
|
34
|
+
delete: Tests_Worker_Interpreters_Statuspage_CreateMockKv_Returns_Delete;
|
|
35
|
+
store: Tests_Worker_Interpreters_Statuspage_CreateMockKv_Returns_Store;
|
|
18
36
|
};
|
|
19
37
|
|
|
20
|
-
export type
|
|
38
|
+
export type Tests_Worker_Interpreters_Statuspage_CreateMockKv_Store = Map<string, string>;
|
|
21
39
|
|
|
22
|
-
export type
|
|
40
|
+
export type Tests_Worker_Interpreters_Statuspage_CreateMockKv_Value = string | undefined;
|
|
23
41
|
|
|
24
|
-
export type
|
|
42
|
+
export type Tests_Worker_Interpreters_Statuspage_CreateMockKv_Resolved = string | null;
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Tests - Worker - Interpreters - Statuspage - Make Input.
|
|
46
|
+
*
|
|
47
|
+
* @since 2.0.0
|
|
48
|
+
*/
|
|
49
|
+
export type Tests_Worker_Interpreters_Statuspage_MakeInput_Impact = string;
|
|
25
50
|
|
|
26
|
-
export type
|
|
51
|
+
export type Tests_Worker_Interpreters_Statuspage_MakeInput_Returns = Record<string, unknown>;
|
|
27
52
|
|
|
28
|
-
|
|
53
|
+
/**
|
|
54
|
+
* Tests - Worker - Interpreters - Statuspage - Statuspage Interpreter - Deduplicates Identical Incident Webhooks With Same Update Id.
|
|
55
|
+
*
|
|
56
|
+
* @since 2.0.0
|
|
57
|
+
*/
|
|
58
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DeduplicatesIdenticalIncidentWebhooksWithSameUpdateId_ExistingState = string;
|
|
29
59
|
|
|
30
|
-
export type
|
|
60
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DeduplicatesIdenticalIncidentWebhooksWithSameUpdateId_Kv_Get = ReturnType<typeof vi['fn']>;
|
|
31
61
|
|
|
32
|
-
export type
|
|
62
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DeduplicatesIdenticalIncidentWebhooksWithSameUpdateId_Kv_Put = ReturnType<typeof vi['fn']>;
|
|
33
63
|
|
|
34
|
-
export type
|
|
64
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DeduplicatesIdenticalIncidentWebhooksWithSameUpdateId_Kv_Delete = ReturnType<typeof vi['fn']>;
|
|
35
65
|
|
|
36
|
-
export type
|
|
66
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DeduplicatesIdenticalIncidentWebhooksWithSameUpdateId_Kv_Store = Map<string, string>;
|
|
37
67
|
|
|
38
|
-
export type
|
|
68
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DeduplicatesIdenticalIncidentWebhooksWithSameUpdateId_Kv = {
|
|
69
|
+
get: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DeduplicatesIdenticalIncidentWebhooksWithSameUpdateId_Kv_Get;
|
|
70
|
+
put: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DeduplicatesIdenticalIncidentWebhooksWithSameUpdateId_Kv_Put;
|
|
71
|
+
delete: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DeduplicatesIdenticalIncidentWebhooksWithSameUpdateId_Kv_Delete;
|
|
72
|
+
store: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DeduplicatesIdenticalIncidentWebhooksWithSameUpdateId_Kv_Store;
|
|
73
|
+
};
|
|
39
74
|
|
|
40
|
-
export type
|
|
75
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DeduplicatesIdenticalIncidentWebhooksWithSameUpdateId_Input = Record<string, unknown>;
|
|
41
76
|
|
|
42
|
-
export type
|
|
77
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DeduplicatesIdenticalIncidentWebhooksWithSameUpdateId_Result = Worker_Pipeline_Interpret_Result | null;
|
|
43
78
|
|
|
44
|
-
|
|
79
|
+
/**
|
|
80
|
+
* Tests - Worker - Interpreters - Statuspage - Statuspage Interpreter - Does Not Crash When Component Fields Are Null.
|
|
81
|
+
*
|
|
82
|
+
* @since 2.1.0
|
|
83
|
+
*/
|
|
84
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DoesNotCrashWhenComponentFieldsAreNull_Input = Record<string, unknown>;
|
|
45
85
|
|
|
46
|
-
export type
|
|
86
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DoesNotCrashWhenComponentFieldsAreNull_Result = Worker_Pipeline_Interpret_Result | null;
|
|
47
87
|
|
|
48
|
-
|
|
88
|
+
/**
|
|
89
|
+
* Tests - Worker - Interpreters - Statuspage - Statuspage Interpreter - Does Not Crash When Incident Is Null.
|
|
90
|
+
*
|
|
91
|
+
* @since 2.1.0
|
|
92
|
+
*/
|
|
93
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DoesNotCrashWhenIncidentIsNull_Input = Record<string, unknown>;
|
|
49
94
|
|
|
50
|
-
export type
|
|
95
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DoesNotCrashWhenIncidentIsNull_Result = Worker_Pipeline_Interpret_Result | null;
|
|
51
96
|
|
|
52
|
-
export type
|
|
97
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DoesNotCrashWhenIncidentIsNull_Notification = Record<string, unknown>;
|
|
53
98
|
|
|
54
|
-
|
|
99
|
+
/**
|
|
100
|
+
* Tests - Worker - Interpreters - Statuspage - Statuspage Interpreter - Does Not Crash When Page Is Null.
|
|
101
|
+
*
|
|
102
|
+
* @since 2.0.0
|
|
103
|
+
*/
|
|
104
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DoesNotCrashWhenPageIsNull_Input = Record<string, unknown>;
|
|
105
|
+
|
|
106
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DoesNotCrashWhenPageIsNull_Result = Worker_Pipeline_Interpret_Result | null;
|
|
107
|
+
|
|
108
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_DoesNotCrashWhenPageIsNull_Notification = Record<string, unknown>;
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Tests - Worker - Interpreters - Statuspage - Statuspage Interpreter - Falls Back To Original Behavior Without KV Context.
|
|
112
|
+
*
|
|
113
|
+
* @since 2.0.0
|
|
114
|
+
*/
|
|
115
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FallsBackToOriginalBehaviorWithoutKVContext_Input = Record<string, unknown>;
|
|
116
|
+
|
|
117
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FallsBackToOriginalBehaviorWithoutKVContext_Result = Worker_Pipeline_Interpret_Result | null;
|
|
118
|
+
|
|
119
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FallsBackToOriginalBehaviorWithoutKVContext_Notification = Record<string, unknown>;
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Tests - Worker - Interpreters - Statuspage - Statuspage Interpreter - Fires Notification On Incident Webhook With Accumulated Components.
|
|
123
|
+
*
|
|
124
|
+
* @since 2.0.0
|
|
125
|
+
*/
|
|
126
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FiresNotificationOnIncidentWebhookWithAccumulatedComponents_ExistingState = string;
|
|
127
|
+
|
|
128
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FiresNotificationOnIncidentWebhookWithAccumulatedComponents_Kv_Get = ReturnType<typeof vi['fn']>;
|
|
129
|
+
|
|
130
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FiresNotificationOnIncidentWebhookWithAccumulatedComponents_Kv_Put = ReturnType<typeof vi['fn']>;
|
|
131
|
+
|
|
132
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FiresNotificationOnIncidentWebhookWithAccumulatedComponents_Kv_Delete = ReturnType<typeof vi['fn']>;
|
|
133
|
+
|
|
134
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FiresNotificationOnIncidentWebhookWithAccumulatedComponents_Kv_Store = Map<string, string>;
|
|
135
|
+
|
|
136
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FiresNotificationOnIncidentWebhookWithAccumulatedComponents_Kv = {
|
|
137
|
+
get: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FiresNotificationOnIncidentWebhookWithAccumulatedComponents_Kv_Get;
|
|
138
|
+
put: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FiresNotificationOnIncidentWebhookWithAccumulatedComponents_Kv_Put;
|
|
139
|
+
delete: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FiresNotificationOnIncidentWebhookWithAccumulatedComponents_Kv_Delete;
|
|
140
|
+
store: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FiresNotificationOnIncidentWebhookWithAccumulatedComponents_Kv_Store;
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FiresNotificationOnIncidentWebhookWithAccumulatedComponents_Input = Record<string, unknown>;
|
|
144
|
+
|
|
145
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FiresNotificationOnIncidentWebhookWithAccumulatedComponents_Result = Worker_Pipeline_Interpret_Result | null;
|
|
146
|
+
|
|
147
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_FiresNotificationOnIncidentWebhookWithAccumulatedComponents_Notification = Record<string, unknown>;
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Tests - Worker - Interpreters - Statuspage - Statuspage Interpreter - Keeps KV State On Resolved Incident For Dedup.
|
|
151
|
+
*
|
|
152
|
+
* @since 2.0.0
|
|
153
|
+
*/
|
|
154
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_ExistingState = string;
|
|
155
|
+
|
|
156
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_Kv_Get = ReturnType<typeof vi['fn']>;
|
|
157
|
+
|
|
158
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_Kv_Put = ReturnType<typeof vi['fn']>;
|
|
159
|
+
|
|
160
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_Kv_Delete = ReturnType<typeof vi['fn']>;
|
|
161
|
+
|
|
162
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_Kv_Store = Map<string, string>;
|
|
163
|
+
|
|
164
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_Kv = {
|
|
165
|
+
get: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_Kv_Get;
|
|
166
|
+
put: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_Kv_Put;
|
|
167
|
+
delete: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_Kv_Delete;
|
|
168
|
+
store: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_Kv_Store;
|
|
169
|
+
};
|
|
170
|
+
|
|
171
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_Input = Record<string, unknown>;
|
|
172
|
+
|
|
173
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_Result = Worker_Pipeline_Interpret_Result | null;
|
|
174
|
+
|
|
175
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_Notification = Record<string, unknown>;
|
|
176
|
+
|
|
177
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_HasKey = boolean;
|
|
178
|
+
|
|
179
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_StoredRaw = string | undefined;
|
|
180
|
+
|
|
181
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_KeepsKVStateOnResolvedIncidentForDedup_Stored = Record<string, unknown>;
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Tests - Worker - Interpreters - Statuspage - Statuspage Interpreter - Maps Impact To Priority Correctly.
|
|
185
|
+
*
|
|
186
|
+
* @since 2.0.0
|
|
187
|
+
*/
|
|
188
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_MapsImpactToPriorityCorrectly_MinorInput = Record<string, unknown>;
|
|
189
|
+
|
|
190
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_MapsImpactToPriorityCorrectly_MinorResult = Worker_Pipeline_Interpret_Result | null;
|
|
191
|
+
|
|
192
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_MapsImpactToPriorityCorrectly_MinorNotification = Record<string, unknown>;
|
|
193
|
+
|
|
194
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_MapsImpactToPriorityCorrectly_MajorInput = Record<string, unknown>;
|
|
195
|
+
|
|
196
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_MapsImpactToPriorityCorrectly_MajorResult = Worker_Pipeline_Interpret_Result | null;
|
|
197
|
+
|
|
198
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_MapsImpactToPriorityCorrectly_MajorNotification = Record<string, unknown>;
|
|
199
|
+
|
|
200
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_MapsImpactToPriorityCorrectly_CriticalInput = Record<string, unknown>;
|
|
201
|
+
|
|
202
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_MapsImpactToPriorityCorrectly_CriticalResult = Worker_Pipeline_Interpret_Result | null;
|
|
203
|
+
|
|
204
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_MapsImpactToPriorityCorrectly_CriticalNotification = Record<string, unknown>;
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* Tests - Worker - Interpreters - Statuspage - Statuspage Interpreter - Returns Null For Component Only Webhooks Without KV.
|
|
208
|
+
*
|
|
209
|
+
* @since 2.0.0
|
|
210
|
+
*/
|
|
211
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_ReturnsNullForComponentOnlyWebhooksWithoutKV_Input = Record<string, unknown>;
|
|
212
|
+
|
|
213
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_ReturnsNullForComponentOnlyWebhooksWithoutKV_Result = Worker_Pipeline_Interpret_Result | null;
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* Tests - Worker - Interpreters - Statuspage - Statuspage Interpreter - Silently Accumulates Component Only Webhooks In KV.
|
|
217
|
+
*
|
|
218
|
+
* @since 2.0.0
|
|
219
|
+
*/
|
|
220
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_Kv_Get = ReturnType<typeof vi['fn']>;
|
|
221
|
+
|
|
222
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_Kv_Put = ReturnType<typeof vi['fn']>;
|
|
223
|
+
|
|
224
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_Kv_Delete = ReturnType<typeof vi['fn']>;
|
|
225
|
+
|
|
226
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_Kv_Store = Map<string, string>;
|
|
227
|
+
|
|
228
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_Kv = {
|
|
229
|
+
get: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_Kv_Get;
|
|
230
|
+
put: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_Kv_Put;
|
|
231
|
+
delete: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_Kv_Delete;
|
|
232
|
+
store: Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_Kv_Store;
|
|
233
|
+
};
|
|
234
|
+
|
|
235
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_Input = Record<string, unknown>;
|
|
236
|
+
|
|
237
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_Result = Worker_Pipeline_Interpret_Result | null;
|
|
238
|
+
|
|
239
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_StoredRaw = string | undefined;
|
|
240
|
+
|
|
241
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_Stored = Record<string, unknown>;
|
|
242
|
+
|
|
243
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_SilentlyAccumulatesComponentOnlyWebhooksInKV_StoredComponents = Record<string, unknown>;
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* Tests - Worker - Interpreters - Statuspage - Statuspage Interpreter - Throws On Unrecognized Payload.
|
|
247
|
+
*
|
|
248
|
+
* @since 2.0.0
|
|
249
|
+
*/
|
|
250
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_ThrowsOnUnrecognizedPayload_Input = Record<string, unknown>;
|
|
251
|
+
|
|
252
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_ThrowsOnUnrecognizedPayload_Promise = Promise<Worker_Pipeline_Interpret_Result | null>;
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* Tests - Worker - Interpreters - Statuspage - Statuspage Interpreter - Uses Incident Name In Title And Status Impact In Body.
|
|
256
|
+
*
|
|
257
|
+
* @since 2.0.0
|
|
258
|
+
*/
|
|
259
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_UsesIncidentNameInTitleAndStatusImpactInBody_Input = Record<string, unknown>;
|
|
55
260
|
|
|
56
|
-
export type
|
|
261
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_UsesIncidentNameInTitleAndStatusImpactInBody_Result = Worker_Pipeline_Interpret_Result | null;
|
|
57
262
|
|
|
58
|
-
export type
|
|
263
|
+
export type Tests_Worker_Interpreters_Statuspage_StatuspageInterpreter_UsesIncidentNameInTitleAndStatusImpactInBody_Notification = Record<string, unknown>;
|
|
@@ -1,8 +1,66 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Tests - Worker - Interpreters - Synology - Synology Interpreter - Adds Synology Tag.
|
|
3
|
+
*
|
|
4
|
+
* @since 2.0.0
|
|
5
|
+
*/
|
|
6
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_AddsSynologyTag_Result_Notification = Record<string, unknown>;
|
|
7
|
+
|
|
8
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_AddsSynologyTag_Result = {
|
|
9
|
+
notification: Tests_Worker_Interpreters_Synology_SynologyInterpreter_AddsSynologyTag_Result_Notification;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Tests - Worker - Interpreters - Synology - Synology Interpreter - Enables Markdown.
|
|
14
|
+
*
|
|
15
|
+
* @since 2.0.0
|
|
16
|
+
*/
|
|
17
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_EnablesMarkdown_Result_Notification = Record<string, unknown>;
|
|
18
|
+
|
|
19
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_EnablesMarkdown_Result = {
|
|
20
|
+
notification: Tests_Worker_Interpreters_Synology_SynologyInterpreter_EnablesMarkdown_Result_Notification;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Tests - Worker - Interpreters - Synology - Synology Interpreter - Handles JSON Synology Webhook With Known Fields.
|
|
25
|
+
*
|
|
26
|
+
* @since 2.0.0
|
|
27
|
+
*/
|
|
28
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_HandlesJSONSynologyWebhookWithKnownFields_Result_Notification = Record<string, unknown>;
|
|
29
|
+
|
|
30
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_HandlesJSONSynologyWebhookWithKnownFields_Result = {
|
|
31
|
+
notification: Tests_Worker_Interpreters_Synology_SynologyInterpreter_HandlesJSONSynologyWebhookWithKnownFields_Result_Notification;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Tests - Worker - Interpreters - Synology - Synology Interpreter - Handles Plain Text Synology Webhook.
|
|
36
|
+
*
|
|
37
|
+
* @since 2.0.0
|
|
38
|
+
*/
|
|
39
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_HandlesPlainTextSynologyWebhook_Result_Notification = Record<string, unknown>;
|
|
40
|
+
|
|
41
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_HandlesPlainTextSynologyWebhook_Result = {
|
|
42
|
+
notification: Tests_Worker_Interpreters_Synology_SynologyInterpreter_HandlesPlainTextSynologyWebhook_Result_Notification;
|
|
43
|
+
};
|
|
2
44
|
|
|
3
45
|
/**
|
|
4
|
-
* Tests - Worker - Interpreters - Synology.
|
|
46
|
+
* Tests - Worker - Interpreters - Synology - Synology Interpreter - Maps Severity To Ntfy Priority.
|
|
5
47
|
*
|
|
6
48
|
* @since 2.0.0
|
|
7
49
|
*/
|
|
8
|
-
export type
|
|
50
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_MapsSeverityToNtfyPriority_Warning_Notification = Record<string, unknown>;
|
|
51
|
+
|
|
52
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_MapsSeverityToNtfyPriority_Warning = {
|
|
53
|
+
notification: Tests_Worker_Interpreters_Synology_SynologyInterpreter_MapsSeverityToNtfyPriority_Warning_Notification;
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_MapsSeverityToNtfyPriority_Error_Notification = Record<string, unknown>;
|
|
57
|
+
|
|
58
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_MapsSeverityToNtfyPriority_Error = {
|
|
59
|
+
notification: Tests_Worker_Interpreters_Synology_SynologyInterpreter_MapsSeverityToNtfyPriority_Error_Notification;
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_MapsSeverityToNtfyPriority_Info_Notification = Record<string, unknown>;
|
|
63
|
+
|
|
64
|
+
export type Tests_Worker_Interpreters_Synology_SynologyInterpreter_MapsSeverityToNtfyPriority_Info = {
|
|
65
|
+
notification: Tests_Worker_Interpreters_Synology_SynologyInterpreter_MapsSeverityToNtfyPriority_Info_Notification;
|
|
66
|
+
};
|
|
@@ -1,8 +1,98 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Tests - Worker - Interpreters - Unifi - Unifi Interpreter - Adds Ap Device Tag.
|
|
3
|
+
*
|
|
4
|
+
* @since 2.0.0
|
|
5
|
+
*/
|
|
6
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_AddsApDeviceTag_Result_Notification = Record<string, unknown>;
|
|
7
|
+
|
|
8
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_AddsApDeviceTag_Result = {
|
|
9
|
+
notification: Tests_Worker_Interpreters_Unifi_UnifiInterpreter_AddsApDeviceTag_Result_Notification;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Tests - Worker - Interpreters - Unifi - Unifi Interpreter - Adds Gateway Tag For WAN Events.
|
|
14
|
+
*
|
|
15
|
+
* @since 2.0.0
|
|
16
|
+
*/
|
|
17
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_AddsGatewayTagForWANEvents_Result_Notification = Record<string, unknown>;
|
|
18
|
+
|
|
19
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_AddsGatewayTagForWANEvents_Result = {
|
|
20
|
+
notification: Tests_Worker_Interpreters_Unifi_UnifiInterpreter_AddsGatewayTagForWANEvents_Result_Notification;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Tests - Worker - Interpreters - Unifi - Unifi Interpreter - Adds Unifi Tag.
|
|
25
|
+
*
|
|
26
|
+
* @since 2.0.0
|
|
27
|
+
*/
|
|
28
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_AddsUnifiTag_Result_Notification = Record<string, unknown>;
|
|
29
|
+
|
|
30
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_AddsUnifiTag_Result = {
|
|
31
|
+
notification: Tests_Worker_Interpreters_Unifi_UnifiInterpreter_AddsUnifiTag_Result_Notification;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Tests - Worker - Interpreters - Unifi - Unifi Interpreter - Enables Markdown.
|
|
36
|
+
*
|
|
37
|
+
* @since 2.0.0
|
|
38
|
+
*/
|
|
39
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_EnablesMarkdown_Result_Notification = Record<string, unknown>;
|
|
40
|
+
|
|
41
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_EnablesMarkdown_Result = {
|
|
42
|
+
notification: Tests_Worker_Interpreters_Unifi_UnifiInterpreter_EnablesMarkdown_Result_Notification;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Tests - Worker - Interpreters - Unifi - Unifi Interpreter - Extracts Event From Subject.
|
|
47
|
+
*
|
|
48
|
+
* @since 2.0.0
|
|
49
|
+
*/
|
|
50
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_ExtractsEventFromSubject_Result_Notification = Record<string, unknown>;
|
|
51
|
+
|
|
52
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_ExtractsEventFromSubject_Result = {
|
|
53
|
+
notification: Tests_Worker_Interpreters_Unifi_UnifiInterpreter_ExtractsEventFromSubject_Result_Notification;
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Tests - Worker - Interpreters - Unifi - Unifi Interpreter - Handles String Input As Fallback.
|
|
58
|
+
*
|
|
59
|
+
* @since 2.0.0
|
|
60
|
+
*/
|
|
61
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_HandlesStringInputAsFallback_Result_Notification = Record<string, unknown>;
|
|
62
|
+
|
|
63
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_HandlesStringInputAsFallback_Result = {
|
|
64
|
+
notification: Tests_Worker_Interpreters_Unifi_UnifiInterpreter_HandlesStringInputAsFallback_Result_Notification;
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Tests - Worker - Interpreters - Unifi - Unifi Interpreter - Maps Disconnect To High Priority.
|
|
69
|
+
*
|
|
70
|
+
* @since 2.0.0
|
|
71
|
+
*/
|
|
72
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_MapsDisconnectToHighPriority_Result_Notification = Record<string, unknown>;
|
|
73
|
+
|
|
74
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_MapsDisconnectToHighPriority_Result = {
|
|
75
|
+
notification: Tests_Worker_Interpreters_Unifi_UnifiInterpreter_MapsDisconnectToHighPriority_Result_Notification;
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Tests - Worker - Interpreters - Unifi - Unifi Interpreter - Maps Reconnect To Low Priority.
|
|
80
|
+
*
|
|
81
|
+
* @since 2.0.0
|
|
82
|
+
*/
|
|
83
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_MapsReconnectToLowPriority_Result_Notification = Record<string, unknown>;
|
|
84
|
+
|
|
85
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_MapsReconnectToLowPriority_Result = {
|
|
86
|
+
notification: Tests_Worker_Interpreters_Unifi_UnifiInterpreter_MapsReconnectToLowPriority_Result_Notification;
|
|
87
|
+
};
|
|
2
88
|
|
|
3
89
|
/**
|
|
4
|
-
* Tests - Worker - Interpreters - Unifi.
|
|
90
|
+
* Tests - Worker - Interpreters - Unifi - Unifi Interpreter - Maps Security Events To Highest Priority.
|
|
5
91
|
*
|
|
6
92
|
* @since 2.0.0
|
|
7
93
|
*/
|
|
8
|
-
export type
|
|
94
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_MapsSecurityEventsToHighestPriority_Result_Notification = Record<string, unknown>;
|
|
95
|
+
|
|
96
|
+
export type Tests_Worker_Interpreters_Unifi_UnifiInterpreter_MapsSecurityEventsToHighestPriority_Result = {
|
|
97
|
+
notification: Tests_Worker_Interpreters_Unifi_UnifiInterpreter_MapsSecurityEventsToHighestPriority_Result_Notification;
|
|
98
|
+
};
|