ntfy-reverse-proxy 2.0.3 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (192) 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 +174 -84
  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.test.d.ts +2 -2
  67. package/build/src/types/tests/lib/schema.test.d.ts +258 -3
  68. package/build/src/types/tests/worker/index.test.d.ts +166 -8
  69. package/build/src/types/tests/worker/interpreters/ntfy-json.test.d.ts +94 -10
  70. package/build/src/types/tests/worker/interpreters/pfsense.test.d.ts +163 -4
  71. package/build/src/types/tests/worker/interpreters/plain-text.test.d.ts +67 -4
  72. package/build/src/types/tests/worker/interpreters/seerr.test.d.ts +138 -3
  73. package/build/src/types/tests/worker/interpreters/statuspage.test.d.ts +235 -30
  74. package/build/src/types/tests/worker/interpreters/synology.test.d.ts +61 -3
  75. package/build/src/types/tests/worker/interpreters/unifi.test.d.ts +93 -3
  76. package/build/src/types/tests/worker/landing/page.test.d.ts +73 -50
  77. package/build/src/types/tests/worker/pipeline/accumulate.test.d.ts +226 -15
  78. package/build/src/types/tests/worker/pipeline/authenticate.test.d.ts +148 -4
  79. package/build/src/types/tests/worker/pipeline/email.test.d.ts +82 -8
  80. package/build/src/types/tests/worker/pipeline/format.test.d.ts +112 -32
  81. package/build/src/types/tests/worker/pipeline/interpret.test.d.ts +109 -17
  82. package/build/src/types/tests/worker/pipeline/parse.test.d.ts +70 -5
  83. package/build/src/types/tests/worker/pipeline/receive.test.d.ts +156 -15
  84. package/build/src/types/tests/worker/pipeline/respond.test.d.ts +129 -10
  85. package/build/src/types/tests/worker/pipeline/route.test.d.ts +412 -74
  86. package/build/src/types/tests/worker/pipeline/send.test.d.ts +58 -23
  87. package/build/src/types/tests/worker/pipeline/split.test.d.ts +47 -9
  88. package/build/src/types/worker/handlers.d.ts +193 -0
  89. package/build/src/types/worker/index.d.ts +58 -177
  90. package/build/src/types/worker/interpreters/ntfy-json.d.ts +10 -10
  91. package/build/src/types/worker/interpreters/pfsense.d.ts +57 -49
  92. package/build/src/types/worker/interpreters/plain-text.d.ts +7 -7
  93. package/build/src/types/worker/interpreters/seerr.d.ts +63 -61
  94. package/build/src/types/worker/interpreters/statuspage.d.ts +201 -116
  95. package/build/src/types/worker/interpreters/synology.d.ts +48 -46
  96. package/build/src/types/worker/interpreters/unifi.d.ts +79 -54
  97. package/build/src/types/worker/landing/page.d.ts +30 -23
  98. package/build/src/types/worker/pipeline/accumulate.d.ts +46 -32
  99. package/build/src/types/worker/pipeline/authenticate.d.ts +94 -34
  100. package/build/src/types/worker/pipeline/email.d.ts +114 -50
  101. package/build/src/types/worker/pipeline/format.d.ts +31 -23
  102. package/build/src/types/worker/pipeline/interpret.d.ts +34 -34
  103. package/build/src/types/worker/pipeline/parse.d.ts +25 -19
  104. package/build/src/types/worker/pipeline/receive.d.ts +36 -34
  105. package/build/src/types/worker/pipeline/respond.d.ts +119 -63
  106. package/build/src/types/worker/pipeline/route.d.ts +33 -16
  107. package/build/src/types/worker/pipeline/send.d.ts +116 -79
  108. package/build/src/types/worker/pipeline/split.d.ts +21 -16
  109. package/build/src/worker/handlers.d.ts +5 -4
  110. package/build/src/worker/handlers.d.ts.map +1 -1
  111. package/build/src/worker/handlers.js +268 -159
  112. package/build/src/worker/handlers.js.map +1 -1
  113. package/build/src/worker/index.d.ts +2 -2
  114. package/build/src/worker/index.d.ts.map +1 -1
  115. package/build/src/worker/index.js +37 -9
  116. package/build/src/worker/index.js.map +1 -1
  117. package/build/src/worker/interpreters/ntfy-json.d.ts +2 -2
  118. package/build/src/worker/interpreters/ntfy-json.d.ts.map +1 -1
  119. package/build/src/worker/interpreters/ntfy-json.js.map +1 -1
  120. package/build/src/worker/interpreters/pfsense.d.ts +2 -2
  121. package/build/src/worker/interpreters/pfsense.d.ts.map +1 -1
  122. package/build/src/worker/interpreters/pfsense.js +20 -27
  123. package/build/src/worker/interpreters/pfsense.js.map +1 -1
  124. package/build/src/worker/interpreters/plain-text.d.ts +2 -2
  125. package/build/src/worker/interpreters/plain-text.d.ts.map +1 -1
  126. package/build/src/worker/interpreters/plain-text.js.map +1 -1
  127. package/build/src/worker/interpreters/seerr.d.ts +2 -2
  128. package/build/src/worker/interpreters/seerr.d.ts.map +1 -1
  129. package/build/src/worker/interpreters/seerr.js +16 -12
  130. package/build/src/worker/interpreters/seerr.js.map +1 -1
  131. package/build/src/worker/interpreters/statuspage.d.ts +2 -2
  132. package/build/src/worker/interpreters/statuspage.d.ts.map +1 -1
  133. package/build/src/worker/interpreters/statuspage.js +98 -47
  134. package/build/src/worker/interpreters/statuspage.js.map +1 -1
  135. package/build/src/worker/interpreters/synology.d.ts +2 -2
  136. package/build/src/worker/interpreters/synology.d.ts.map +1 -1
  137. package/build/src/worker/interpreters/synology.js +9 -5
  138. package/build/src/worker/interpreters/synology.js.map +1 -1
  139. package/build/src/worker/interpreters/unifi.d.ts +2 -2
  140. package/build/src/worker/interpreters/unifi.d.ts.map +1 -1
  141. package/build/src/worker/interpreters/unifi.js +34 -20
  142. package/build/src/worker/interpreters/unifi.js.map +1 -1
  143. package/build/src/worker/landing/page.d.ts +2 -2
  144. package/build/src/worker/landing/page.d.ts.map +1 -1
  145. package/build/src/worker/landing/page.js +4 -3
  146. package/build/src/worker/landing/page.js.map +1 -1
  147. package/build/src/worker/pipeline/accumulate.d.ts +5 -6
  148. package/build/src/worker/pipeline/accumulate.d.ts.map +1 -1
  149. package/build/src/worker/pipeline/accumulate.js +4 -11
  150. package/build/src/worker/pipeline/accumulate.js.map +1 -1
  151. package/build/src/worker/pipeline/authenticate.d.ts +2 -2
  152. package/build/src/worker/pipeline/authenticate.d.ts.map +1 -1
  153. package/build/src/worker/pipeline/authenticate.js +25 -7
  154. package/build/src/worker/pipeline/authenticate.js.map +1 -1
  155. package/build/src/worker/pipeline/email.d.ts +2 -2
  156. package/build/src/worker/pipeline/email.d.ts.map +1 -1
  157. package/build/src/worker/pipeline/email.js +34 -11
  158. package/build/src/worker/pipeline/email.js.map +1 -1
  159. package/build/src/worker/pipeline/format.d.ts +2 -3
  160. package/build/src/worker/pipeline/format.d.ts.map +1 -1
  161. package/build/src/worker/pipeline/format.js +2 -1
  162. package/build/src/worker/pipeline/format.js.map +1 -1
  163. package/build/src/worker/pipeline/interpret.d.ts +4 -3
  164. package/build/src/worker/pipeline/interpret.d.ts.map +1 -1
  165. package/build/src/worker/pipeline/interpret.js +7 -7
  166. package/build/src/worker/pipeline/interpret.js.map +1 -1
  167. package/build/src/worker/pipeline/parse.d.ts +2 -2
  168. package/build/src/worker/pipeline/parse.d.ts.map +1 -1
  169. package/build/src/worker/pipeline/parse.js +14 -7
  170. package/build/src/worker/pipeline/parse.js.map +1 -1
  171. package/build/src/worker/pipeline/receive.d.ts +2 -2
  172. package/build/src/worker/pipeline/receive.d.ts.map +1 -1
  173. package/build/src/worker/pipeline/receive.js +6 -6
  174. package/build/src/worker/pipeline/receive.js.map +1 -1
  175. package/build/src/worker/pipeline/respond.d.ts +2 -2
  176. package/build/src/worker/pipeline/respond.d.ts.map +1 -1
  177. package/build/src/worker/pipeline/respond.js +1 -1
  178. package/build/src/worker/pipeline/respond.js.map +1 -1
  179. package/build/src/worker/pipeline/route.d.ts +2 -3
  180. package/build/src/worker/pipeline/route.d.ts.map +1 -1
  181. package/build/src/worker/pipeline/route.js.map +1 -1
  182. package/build/src/worker/pipeline/send.d.ts +2 -2
  183. package/build/src/worker/pipeline/send.d.ts.map +1 -1
  184. package/build/src/worker/pipeline/send.js +80 -41
  185. package/build/src/worker/pipeline/send.js.map +1 -1
  186. package/build/src/worker/pipeline/split.d.ts +2 -2
  187. package/build/src/worker/pipeline/split.d.ts.map +1 -1
  188. package/build/src/worker/pipeline/split.js +4 -2
  189. package/build/src/worker/pipeline/split.js.map +1 -1
  190. package/package.json +10 -9
  191. package/build/src/types/tests/type-declarations.test.d.ts +0 -173
  192. package/build/src/types/worker/pipeline/shared.d.ts +0 -85
@@ -1,551 +1,595 @@
1
- import type { SpawnSyncReturns } from 'child_process';
1
+ import type { SpawnSyncReturns } from 'node:child_process';
2
2
 
3
3
  import type {
4
- LibSchemaContextConfig,
5
- LibSchemaServerConfig,
6
- LibSchemaSettingsConfig,
4
+ Lib_Schema_ContextConfig,
5
+ Lib_Schema_ServerConfig,
6
+ Lib_Schema_SettingsConfigBaseDomain,
7
+ Lib_Schema_SettingsConfigShowResponseOutput,
8
+ Lib_Schema_SettingsConfigWorkerName,
7
9
  } from '../../lib/schema.d.ts';
8
- import type { CliCommandsValidateValidateConfigResult } from './validate.d.ts';
9
10
 
10
11
  /**
11
12
  * CLI - Commands - Deploy - Create Email Routing Rule.
12
13
  *
13
14
  * @since 2.0.0
14
15
  */
15
- export type CliCommandsDeployCreateEmailRoutingRuleToken = string;
16
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_Token = string;
16
17
 
17
- export type CliCommandsDeployCreateEmailRoutingRuleZoneId = string;
18
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_ZoneId = string;
18
19
 
19
- export type CliCommandsDeployCreateEmailRoutingRuleEmail = string;
20
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_Email = string;
20
21
 
21
- export type CliCommandsDeployCreateEmailRoutingRuleContextId = string;
22
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_ContextId = string;
22
23
 
23
- export type CliCommandsDeployCreateEmailRoutingRuleWorkerName = string;
24
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_WorkerName = string;
24
25
 
25
- export type CliCommandsDeployCreateEmailRoutingRuleReturn = Promise<void>;
26
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_Returns = Promise<void>;
26
27
 
27
- export type CliCommandsDeployCreateEmailRoutingRuleResponse = Response;
28
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_Response = Response;
28
29
 
29
- export type CliCommandsDeployCreateEmailRoutingRuleCreateDataSuccess = boolean;
30
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_CreateDataSuccess = boolean;
30
31
 
31
- export type CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorCode = number;
32
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_CreateDataErrorCode = number;
32
33
 
33
- export type CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorMessage = string;
34
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_CreateDataErrorMessage = string;
34
35
 
35
- export type CliCommandsDeployCreateEmailRoutingRuleCreateDataError = {
36
- code: CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorCode;
37
- message: CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorMessage;
36
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_CreateDataError = {
37
+ code: Cli_Commands_Deploy_CreateEmailRoutingRule_CreateDataErrorCode;
38
+ message: Cli_Commands_Deploy_CreateEmailRoutingRule_CreateDataErrorMessage;
38
39
  };
39
40
 
40
- export type CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorsList = CliCommandsDeployCreateEmailRoutingRuleCreateDataError[] | undefined;
41
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_CreateDataErrorsList = Cli_Commands_Deploy_CreateEmailRoutingRule_CreateDataError[] | undefined;
41
42
 
42
- export type CliCommandsDeployCreateEmailRoutingRuleCreateData = {
43
- success: CliCommandsDeployCreateEmailRoutingRuleCreateDataSuccess;
44
- errors: CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorsList;
43
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_CreateData = {
44
+ success: Cli_Commands_Deploy_CreateEmailRoutingRule_CreateDataSuccess;
45
+ errors: Cli_Commands_Deploy_CreateEmailRoutingRule_CreateDataErrorsList;
45
46
  };
46
47
 
47
- export type CliCommandsDeployCreateEmailRoutingRuleCreateDataErrors = CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorsList;
48
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_CreateErrors = Cli_Commands_Deploy_CreateEmailRoutingRule_CreateDataErrorsList;
48
49
 
49
- export type CliCommandsDeployCreateEmailRoutingRuleErrorDetails = string;
50
+ export type Cli_Commands_Deploy_CreateEmailRoutingRule_ErrorDetails = string;
50
51
 
51
52
  /**
52
53
  * CLI - Commands - Deploy - Delete Email Routing Rule.
53
54
  *
54
55
  * @since 2.0.0
55
56
  */
56
- export type CliCommandsDeployDeleteEmailRoutingRuleToken = string;
57
+ export type Cli_Commands_Deploy_DeleteEmailRoutingRule_Token = string;
57
58
 
58
- export type CliCommandsDeployDeleteEmailRoutingRuleZoneId = string;
59
+ export type Cli_Commands_Deploy_DeleteEmailRoutingRule_ZoneId = string;
59
60
 
60
- export type CliCommandsDeployDeleteEmailRoutingRuleRuleId = string;
61
+ export type Cli_Commands_Deploy_DeleteEmailRoutingRule_RuleId = string;
61
62
 
62
- export type CliCommandsDeployDeleteEmailRoutingRuleReturn = Promise<void>;
63
+ export type Cli_Commands_Deploy_DeleteEmailRoutingRule_Returns = Promise<void>;
63
64
 
64
- export type CliCommandsDeployDeleteEmailRoutingRuleResponse = Response;
65
+ export type Cli_Commands_Deploy_DeleteEmailRoutingRule_Response = Response;
65
66
 
66
- export type CliCommandsDeployDeleteEmailRoutingRuleDeleteDataSuccess = boolean;
67
+ export type Cli_Commands_Deploy_DeleteEmailRoutingRule_DeleteDataSuccess = boolean;
67
68
 
68
- export type CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorCode = number;
69
+ export type Cli_Commands_Deploy_DeleteEmailRoutingRule_DeleteDataErrorCode = number;
69
70
 
70
- export type CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorMessage = string;
71
+ export type Cli_Commands_Deploy_DeleteEmailRoutingRule_DeleteDataErrorMessage = string;
71
72
 
72
- export type CliCommandsDeployDeleteEmailRoutingRuleDeleteDataError = {
73
- code: CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorCode;
74
- message: CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorMessage;
73
+ export type Cli_Commands_Deploy_DeleteEmailRoutingRule_DeleteDataError = {
74
+ code: Cli_Commands_Deploy_DeleteEmailRoutingRule_DeleteDataErrorCode;
75
+ message: Cli_Commands_Deploy_DeleteEmailRoutingRule_DeleteDataErrorMessage;
75
76
  };
76
77
 
77
- export type CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorsList = CliCommandsDeployDeleteEmailRoutingRuleDeleteDataError[] | undefined;
78
+ export type Cli_Commands_Deploy_DeleteEmailRoutingRule_DeleteDataErrorsList = Cli_Commands_Deploy_DeleteEmailRoutingRule_DeleteDataError[] | undefined;
78
79
 
79
- export type CliCommandsDeployDeleteEmailRoutingRuleDeleteData = {
80
- success: CliCommandsDeployDeleteEmailRoutingRuleDeleteDataSuccess;
81
- errors: CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorsList;
80
+ export type Cli_Commands_Deploy_DeleteEmailRoutingRule_DeleteData = {
81
+ success: Cli_Commands_Deploy_DeleteEmailRoutingRule_DeleteDataSuccess;
82
+ errors: Cli_Commands_Deploy_DeleteEmailRoutingRule_DeleteDataErrorsList;
82
83
  };
83
84
 
84
- export type CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrors = CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorsList;
85
+ export type Cli_Commands_Deploy_DeleteEmailRoutingRule_DeleteErrors = Cli_Commands_Deploy_DeleteEmailRoutingRule_DeleteDataErrorsList;
85
86
 
86
- export type CliCommandsDeployDeleteEmailRoutingRuleErrorDetails = string;
87
+ export type Cli_Commands_Deploy_DeleteEmailRoutingRule_ErrorDetails = string;
87
88
 
88
89
  /**
89
90
  * CLI - Commands - Deploy - Deploy.
90
91
  *
91
92
  * @since 2.0.0
92
93
  */
93
- export type CliCommandsDeployDeployConfigPath = string;
94
+ export type Cli_Commands_Deploy_Deploy_ConfigPath = string;
94
95
 
95
- export type CliCommandsDeployDeployInteractive = boolean;
96
+ export type Cli_Commands_Deploy_Deploy_Interactive = boolean;
96
97
 
97
- export type CliCommandsDeployDeployReturn = Promise<void>;
98
+ export type Cli_Commands_Deploy_Deploy_Returns = Promise<void>;
98
99
 
99
- export type CliCommandsDeployDeployToken = string;
100
+ export type Cli_Commands_Deploy_Deploy_Token = string;
100
101
 
101
- export type CliCommandsDeployDeployResult = CliCommandsValidateValidateConfigResult;
102
+ export type Cli_Commands_Deploy_Deploy_ResultValid = boolean;
102
103
 
103
- export type CliCommandsDeployDeployServers = LibSchemaServerConfig[];
104
+ export type Cli_Commands_Deploy_Deploy_ResultErrors = string[];
104
105
 
105
- export type CliCommandsDeployDeploySettings = LibSchemaSettingsConfig;
106
+ export type Cli_Commands_Deploy_Deploy_Result = {
107
+ valid: Cli_Commands_Deploy_Deploy_ResultValid;
108
+ errors: Cli_Commands_Deploy_Deploy_ResultErrors;
109
+ };
110
+
111
+ export type Cli_Commands_Deploy_Deploy_Servers = Array<Lib_Schema_ServerConfig>;
112
+
113
+ export type Cli_Commands_Deploy_Deploy_Settings_WorkerName = Lib_Schema_SettingsConfigWorkerName;
114
+
115
+ export type Cli_Commands_Deploy_Deploy_Settings_BaseDomain = Lib_Schema_SettingsConfigBaseDomain;
106
116
 
107
- export type CliCommandsDeployDeployWorkerName = string;
117
+ export type Cli_Commands_Deploy_Deploy_Settings_ShowResponseOutput = Lib_Schema_SettingsConfigShowResponseOutput;
108
118
 
109
- export type CliCommandsDeployDeployContexts = LibSchemaContextConfig[];
119
+ export type Cli_Commands_Deploy_Deploy_Settings = {
120
+ worker_name: Cli_Commands_Deploy_Deploy_Settings_WorkerName;
121
+ base_domain: Cli_Commands_Deploy_Deploy_Settings_BaseDomain;
122
+ show_response_output: Cli_Commands_Deploy_Deploy_Settings_ShowResponseOutput;
123
+ };
124
+
125
+ export type Cli_Commands_Deploy_Deploy_WorkerName = string;
110
126
 
111
- export type CliCommandsDeployDeployHasEmailContexts = boolean;
127
+ export type Cli_Commands_Deploy_Deploy_Contexts = Array<Lib_Schema_ContextConfig>;
112
128
 
113
- export type CliCommandsDeployDeployAccountId = string;
129
+ export type Cli_Commands_Deploy_Deploy_HasEmailContexts = boolean;
114
130
 
115
- export type CliCommandsDeployDeployKvNamespaceId = string;
131
+ export type Cli_Commands_Deploy_Deploy_AccountId = string;
116
132
 
117
- export type CliCommandsDeployDeployProjectRoot = string;
133
+ export type Cli_Commands_Deploy_Deploy_KvNamespaceId = string;
118
134
 
119
- export type CliCommandsDeployDeployWranglerTomlPath = string;
135
+ export type Cli_Commands_Deploy_Deploy_ProjectRoot = string;
136
+
137
+ export type Cli_Commands_Deploy_Deploy_WranglerTomlPath = string;
120
138
 
121
139
  /**
122
140
  * CLI - Commands - Deploy - Deploy Worker.
123
141
  *
124
142
  * @since 2.0.0
125
143
  */
126
- export type CliCommandsDeployDeployWorkerReturn = void;
144
+ export type Cli_Commands_Deploy_DeployWorker_Returns = void;
127
145
 
128
- export type CliCommandsDeployDeployWorkerProjectRoot = string;
146
+ export type Cli_Commands_Deploy_DeployWorker_ProjectRoot = string;
129
147
 
130
- export type CliCommandsDeployDeployWorkerWranglerTomlPath = string;
148
+ export type Cli_Commands_Deploy_DeployWorker_WranglerTomlPath = string;
131
149
 
132
- export type CliCommandsDeployDeployWorkerDeployResult = SpawnSyncReturns<string>;
150
+ export type Cli_Commands_Deploy_DeployWorker_DeployResult = SpawnSyncReturns<string>;
133
151
 
134
152
  /**
135
153
  * CLI - Commands - Deploy - Ensure Kv Namespace.
136
154
  *
137
155
  * @since 2.0.0
138
156
  */
139
- export type CliCommandsDeployEnsureKvNamespaceToken = string;
157
+ export type Cli_Commands_Deploy_EnsureKvNamespace_Returns = Promise<string>;
158
+
159
+ export type Cli_Commands_Deploy_EnsureKvNamespace_Token = string;
140
160
 
141
- export type CliCommandsDeployEnsureKvNamespaceAccountId = string;
161
+ export type Cli_Commands_Deploy_EnsureKvNamespace_AccountId = string;
142
162
 
143
- export type CliCommandsDeployEnsureKvNamespaceWorkerName = string;
163
+ export type Cli_Commands_Deploy_EnsureKvNamespace_WorkerName = string;
144
164
 
145
- export type CliCommandsDeployEnsureKvNamespaceReturn = Promise<string>;
165
+ export type Cli_Commands_Deploy_EnsureKvNamespace_AllNamespacesId = string;
146
166
 
147
- export type CliCommandsDeployEnsureKvNamespaceListResponse = Response;
167
+ export type Cli_Commands_Deploy_EnsureKvNamespace_AllNamespacesTitle = string;
148
168
 
149
- export type CliCommandsDeployEnsureKvNamespaceListDataSuccess = boolean;
169
+ export type Cli_Commands_Deploy_EnsureKvNamespace_AllNamespaces = {
170
+ id: Cli_Commands_Deploy_EnsureKvNamespace_AllNamespacesId;
171
+ title: Cli_Commands_Deploy_EnsureKvNamespace_AllNamespacesTitle;
172
+ }[];
150
173
 
151
- export type CliCommandsDeployEnsureKvNamespaceListDataResultId = string;
174
+ export type Cli_Commands_Deploy_EnsureKvNamespace_Page = number;
152
175
 
153
- export type CliCommandsDeployEnsureKvNamespaceListDataResultTitle = string;
176
+ export type Cli_Commands_Deploy_EnsureKvNamespace_Cursor = string | undefined;
154
177
 
155
- export type CliCommandsDeployEnsureKvNamespaceListDataResult = {
156
- id: CliCommandsDeployEnsureKvNamespaceListDataResultId;
157
- title: CliCommandsDeployEnsureKvNamespaceListDataResultTitle;
178
+ export type Cli_Commands_Deploy_EnsureKvNamespace_HasMore = boolean;
179
+
180
+ export type Cli_Commands_Deploy_EnsureKvNamespace_PaginationUrl = string;
181
+
182
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListResponse = Response;
183
+
184
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListDataSuccess = boolean;
185
+
186
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListDataResultId = string;
187
+
188
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListDataResultTitle = string;
189
+
190
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListDataResult = {
191
+ id: Cli_Commands_Deploy_EnsureKvNamespace_ListDataResultId;
192
+ title: Cli_Commands_Deploy_EnsureKvNamespace_ListDataResultTitle;
158
193
  };
159
194
 
160
- export type CliCommandsDeployEnsureKvNamespaceListDataErrorCode = number;
195
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListDataErrorCode = number;
161
196
 
162
- export type CliCommandsDeployEnsureKvNamespaceListDataErrorMessage = string;
197
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListDataErrorMessage = string;
163
198
 
164
- export type CliCommandsDeployEnsureKvNamespaceListDataError = {
165
- code: CliCommandsDeployEnsureKvNamespaceListDataErrorCode;
166
- message: CliCommandsDeployEnsureKvNamespaceListDataErrorMessage;
199
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListDataError = {
200
+ code: Cli_Commands_Deploy_EnsureKvNamespace_ListDataErrorCode;
201
+ message: Cli_Commands_Deploy_EnsureKvNamespace_ListDataErrorMessage;
167
202
  };
168
203
 
169
- export type CliCommandsDeployEnsureKvNamespaceListDataResults = CliCommandsDeployEnsureKvNamespaceListDataResult[];
204
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListDataResults = Cli_Commands_Deploy_EnsureKvNamespace_ListDataResult[];
205
+
206
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListDataErrorsList = Cli_Commands_Deploy_EnsureKvNamespace_ListDataError[] | undefined;
207
+
208
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListDataResultInfoCursor = string | undefined;
170
209
 
171
- export type CliCommandsDeployEnsureKvNamespaceListDataErrorsList = CliCommandsDeployEnsureKvNamespaceListDataError[] | undefined;
210
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListDataResultInfo = {
211
+ cursor: Cli_Commands_Deploy_EnsureKvNamespace_ListDataResultInfoCursor;
212
+ } | undefined;
172
213
 
173
- export type CliCommandsDeployEnsureKvNamespaceListData = {
174
- success: CliCommandsDeployEnsureKvNamespaceListDataSuccess;
175
- result: CliCommandsDeployEnsureKvNamespaceListDataResults;
176
- errors: CliCommandsDeployEnsureKvNamespaceListDataErrorsList;
214
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListData = {
215
+ success: Cli_Commands_Deploy_EnsureKvNamespace_ListDataSuccess;
216
+ result: Cli_Commands_Deploy_EnsureKvNamespace_ListDataResults;
217
+ errors: Cli_Commands_Deploy_EnsureKvNamespace_ListDataErrorsList;
218
+ result_info: Cli_Commands_Deploy_EnsureKvNamespace_ListDataResultInfo;
177
219
  };
178
220
 
179
- export type CliCommandsDeployEnsureKvNamespaceListDataErrors = CliCommandsDeployEnsureKvNamespaceListDataErrorsList;
221
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListErrors = Cli_Commands_Deploy_EnsureKvNamespace_ListDataErrorsList;
180
222
 
181
- export type CliCommandsDeployEnsureKvNamespaceListErrorDetails = string;
223
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ListErrorDetails = string;
182
224
 
183
- export type CliCommandsDeployEnsureKvNamespaceKvTitle = string;
225
+ export type Cli_Commands_Deploy_EnsureKvNamespace_ResultInfoCursor = string | undefined;
184
226
 
185
- export type CliCommandsDeployEnsureKvNamespaceExisting = CliCommandsDeployEnsureKvNamespaceListDataResult | undefined;
227
+ export type Cli_Commands_Deploy_EnsureKvNamespace_KvTitle = string;
186
228
 
187
- export type CliCommandsDeployEnsureKvNamespaceCreateResponse = Response;
229
+ export type Cli_Commands_Deploy_EnsureKvNamespace_Existing = Cli_Commands_Deploy_EnsureKvNamespace_ListDataResult | undefined;
188
230
 
189
- export type CliCommandsDeployEnsureKvNamespaceCreateDataSuccess = boolean;
231
+ export type Cli_Commands_Deploy_EnsureKvNamespace_CreateResponse = Response;
190
232
 
191
- export type CliCommandsDeployEnsureKvNamespaceCreateDataResultId = string;
233
+ export type Cli_Commands_Deploy_EnsureKvNamespace_CreateDataSuccess = boolean;
192
234
 
193
- export type CliCommandsDeployEnsureKvNamespaceCreateDataResult = {
194
- id: CliCommandsDeployEnsureKvNamespaceCreateDataResultId;
235
+ export type Cli_Commands_Deploy_EnsureKvNamespace_CreateDataResultId = string;
236
+
237
+ export type Cli_Commands_Deploy_EnsureKvNamespace_CreateDataResult = {
238
+ id: Cli_Commands_Deploy_EnsureKvNamespace_CreateDataResultId;
195
239
  };
196
240
 
197
- export type CliCommandsDeployEnsureKvNamespaceCreateDataErrorsList = CliCommandsDeployEnsureKvNamespaceListDataError[] | undefined;
241
+ export type Cli_Commands_Deploy_EnsureKvNamespace_CreateDataErrorsList = Cli_Commands_Deploy_EnsureKvNamespace_ListDataError[] | undefined;
198
242
 
199
- export type CliCommandsDeployEnsureKvNamespaceCreateData = {
200
- success: CliCommandsDeployEnsureKvNamespaceCreateDataSuccess;
201
- result: CliCommandsDeployEnsureKvNamespaceCreateDataResult;
202
- errors: CliCommandsDeployEnsureKvNamespaceCreateDataErrorsList;
243
+ export type Cli_Commands_Deploy_EnsureKvNamespace_CreateData = {
244
+ success: Cli_Commands_Deploy_EnsureKvNamespace_CreateDataSuccess;
245
+ result: Cli_Commands_Deploy_EnsureKvNamespace_CreateDataResult;
246
+ errors: Cli_Commands_Deploy_EnsureKvNamespace_CreateDataErrorsList;
203
247
  };
204
248
 
205
- export type CliCommandsDeployEnsureKvNamespaceCreateDataErrors = CliCommandsDeployEnsureKvNamespaceCreateDataErrorsList;
249
+ export type Cli_Commands_Deploy_EnsureKvNamespace_CreateErrors = Cli_Commands_Deploy_EnsureKvNamespace_CreateDataErrorsList;
206
250
 
207
- export type CliCommandsDeployEnsureKvNamespaceCreateErrorDetails = string;
251
+ export type Cli_Commands_Deploy_EnsureKvNamespace_CreateErrorDetails = string;
208
252
 
209
253
  /**
210
254
  * CLI - Commands - Deploy - Get Zone Info.
211
255
  *
212
256
  * @since 2.0.0
213
257
  */
214
- export type CliCommandsDeployGetZoneInfoToken = string;
258
+ export type Cli_Commands_Deploy_GetZoneInfo_Token = string;
215
259
 
216
- export type CliCommandsDeployGetZoneInfoBaseDomain = string;
260
+ export type Cli_Commands_Deploy_GetZoneInfo_BaseDomain = string;
217
261
 
218
- export type CliCommandsDeployGetZoneInfoResultZoneId = string;
262
+ export type Cli_Commands_Deploy_GetZoneInfo_ResultZoneId = string;
219
263
 
220
- export type CliCommandsDeployGetZoneInfoResultAccountId = string;
264
+ export type Cli_Commands_Deploy_GetZoneInfo_ResultAccountId = string;
221
265
 
222
- export type CliCommandsDeployGetZoneInfoResultZoneName = string;
266
+ export type Cli_Commands_Deploy_GetZoneInfo_ResultZoneName = string;
223
267
 
224
- export type CliCommandsDeployGetZoneInfoResult = {
225
- zoneId: CliCommandsDeployGetZoneInfoResultZoneId;
226
- accountId: CliCommandsDeployGetZoneInfoResultAccountId;
227
- zoneName: CliCommandsDeployGetZoneInfoResultZoneName;
268
+ export type Cli_Commands_Deploy_GetZoneInfo_Result = {
269
+ zoneId: Cli_Commands_Deploy_GetZoneInfo_ResultZoneId;
270
+ accountId: Cli_Commands_Deploy_GetZoneInfo_ResultAccountId;
271
+ zoneName: Cli_Commands_Deploy_GetZoneInfo_ResultZoneName;
228
272
  };
229
273
 
230
- export type CliCommandsDeployGetZoneInfoReturn = Promise<CliCommandsDeployGetZoneInfoResult>;
274
+ export type Cli_Commands_Deploy_GetZoneInfo_Returns = Promise<Cli_Commands_Deploy_GetZoneInfo_Result>;
231
275
 
232
- export type CliCommandsDeployGetZoneInfoParts = string[];
276
+ export type Cli_Commands_Deploy_GetZoneInfo_Parts = string[];
233
277
 
234
- export type CliCommandsDeployGetZoneInfoCandidate = string;
278
+ export type Cli_Commands_Deploy_GetZoneInfo_Candidate = string;
235
279
 
236
- export type CliCommandsDeployGetZoneInfoCandidates = CliCommandsDeployGetZoneInfoCandidate[];
280
+ export type Cli_Commands_Deploy_GetZoneInfo_Candidates = Cli_Commands_Deploy_GetZoneInfo_Candidate[];
237
281
 
238
- export type CliCommandsDeployGetZoneInfoResponse = Response;
282
+ export type Cli_Commands_Deploy_GetZoneInfo_Response = Response;
239
283
 
240
- export type CliCommandsDeployGetZoneInfoDataSuccess = boolean;
284
+ export type Cli_Commands_Deploy_GetZoneInfo_DataSuccess = boolean;
241
285
 
242
- export type CliCommandsDeployGetZoneInfoDataResultId = string;
286
+ export type Cli_Commands_Deploy_GetZoneInfo_DataResultId = string;
243
287
 
244
- export type CliCommandsDeployGetZoneInfoDataResultName = string;
288
+ export type Cli_Commands_Deploy_GetZoneInfo_DataResultName = string;
245
289
 
246
- export type CliCommandsDeployGetZoneInfoDataResultAccountId = string;
290
+ export type Cli_Commands_Deploy_GetZoneInfo_DataResultAccountId = string;
247
291
 
248
- export type CliCommandsDeployGetZoneInfoDataResultAccount = {
249
- id: CliCommandsDeployGetZoneInfoDataResultAccountId;
292
+ export type Cli_Commands_Deploy_GetZoneInfo_DataResultAccount = {
293
+ id: Cli_Commands_Deploy_GetZoneInfo_DataResultAccountId;
250
294
  };
251
295
 
252
- export type CliCommandsDeployGetZoneInfoDataResult = {
253
- id: CliCommandsDeployGetZoneInfoDataResultId;
254
- name: CliCommandsDeployGetZoneInfoDataResultName;
255
- account: CliCommandsDeployGetZoneInfoDataResultAccount;
296
+ export type Cli_Commands_Deploy_GetZoneInfo_DataResult = {
297
+ id: Cli_Commands_Deploy_GetZoneInfo_DataResultId;
298
+ name: Cli_Commands_Deploy_GetZoneInfo_DataResultName;
299
+ account: Cli_Commands_Deploy_GetZoneInfo_DataResultAccount;
256
300
  };
257
301
 
258
- export type CliCommandsDeployGetZoneInfoDataResults = CliCommandsDeployGetZoneInfoDataResult[];
302
+ export type Cli_Commands_Deploy_GetZoneInfo_DataResults = Cli_Commands_Deploy_GetZoneInfo_DataResult[];
259
303
 
260
- export type CliCommandsDeployGetZoneInfoData = {
261
- success: CliCommandsDeployGetZoneInfoDataSuccess;
262
- result: CliCommandsDeployGetZoneInfoDataResults;
304
+ export type Cli_Commands_Deploy_GetZoneInfo_Data = {
305
+ success: Cli_Commands_Deploy_GetZoneInfo_DataSuccess;
306
+ result: Cli_Commands_Deploy_GetZoneInfo_DataResults;
263
307
  };
264
308
 
265
- export type CliCommandsDeployGetZoneInfoHasResults = boolean;
309
+ export type Cli_Commands_Deploy_GetZoneInfo_HasResults = boolean;
266
310
 
267
- export type CliCommandsDeployGetZoneInfoFirstResult = CliCommandsDeployGetZoneInfoDataResult | undefined;
311
+ export type Cli_Commands_Deploy_GetZoneInfo_FirstResult = Cli_Commands_Deploy_GetZoneInfo_DataResult | undefined;
268
312
 
269
313
  /**
270
314
  * CLI - Commands - Deploy - List Email Routing Rules.
271
315
  *
272
316
  * @since 2.0.0
273
317
  */
274
- export type CliCommandsDeployListEmailRoutingRulesToken = string;
318
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_Token = string;
275
319
 
276
- export type CliCommandsDeployListEmailRoutingRulesZoneId = string;
320
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_ZoneId = string;
277
321
 
278
- export type CliCommandsDeployListEmailRoutingRulesReturn = Promise<CliCommandsDeployListEmailRoutingRulesRule[]>;
322
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_Returns = Promise<Cli_Commands_Deploy_ListEmailRoutingRules_Rule[]>;
279
323
 
280
- export type CliCommandsDeployListEmailRoutingRulesRuleMatcherType = string;
324
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_RuleMatcherType = string;
281
325
 
282
- export type CliCommandsDeployListEmailRoutingRulesRuleMatcherField = string;
326
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_RuleMatcherField = string;
283
327
 
284
- export type CliCommandsDeployListEmailRoutingRulesRuleMatcherValue = string;
328
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_RuleMatcherValue = string;
285
329
 
286
- export type CliCommandsDeployListEmailRoutingRulesRuleMatcher = {
287
- type: CliCommandsDeployListEmailRoutingRulesRuleMatcherType;
288
- field: CliCommandsDeployListEmailRoutingRulesRuleMatcherField;
289
- value: CliCommandsDeployListEmailRoutingRulesRuleMatcherValue;
330
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_RuleMatcher = {
331
+ type: Cli_Commands_Deploy_ListEmailRoutingRules_RuleMatcherType;
332
+ field: Cli_Commands_Deploy_ListEmailRoutingRules_RuleMatcherField;
333
+ value: Cli_Commands_Deploy_ListEmailRoutingRules_RuleMatcherValue;
290
334
  };
291
335
 
292
- export type CliCommandsDeployListEmailRoutingRulesRuleMatchers = CliCommandsDeployListEmailRoutingRulesRuleMatcher[];
336
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_RuleMatchers = Cli_Commands_Deploy_ListEmailRoutingRules_RuleMatcher[];
293
337
 
294
- export type CliCommandsDeployListEmailRoutingRulesRuleActionType = string;
338
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_RuleActionType = string;
295
339
 
296
- export type CliCommandsDeployListEmailRoutingRulesRuleActionValue = string[];
340
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_RuleActionValue = string[];
297
341
 
298
- export type CliCommandsDeployListEmailRoutingRulesRuleAction = {
299
- type: CliCommandsDeployListEmailRoutingRulesRuleActionType;
300
- value: CliCommandsDeployListEmailRoutingRulesRuleActionValue;
342
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_RuleAction = {
343
+ type: Cli_Commands_Deploy_ListEmailRoutingRules_RuleActionType;
344
+ value: Cli_Commands_Deploy_ListEmailRoutingRules_RuleActionValue;
301
345
  };
302
346
 
303
- export type CliCommandsDeployListEmailRoutingRulesRuleActions = CliCommandsDeployListEmailRoutingRulesRuleAction[];
347
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_RuleActions = Cli_Commands_Deploy_ListEmailRoutingRules_RuleAction[];
304
348
 
305
- export type CliCommandsDeployListEmailRoutingRulesRuleTag = string;
349
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_RuleTag = string;
306
350
 
307
- export type CliCommandsDeployListEmailRoutingRulesRuleName = string;
351
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_RuleName = string;
308
352
 
309
- export type CliCommandsDeployListEmailRoutingRulesRuleEnabled = boolean;
353
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_RuleEnabled = boolean;
310
354
 
311
- export type CliCommandsDeployListEmailRoutingRulesRule = {
312
- tag: CliCommandsDeployListEmailRoutingRulesRuleTag;
313
- name: CliCommandsDeployListEmailRoutingRulesRuleName;
314
- enabled: CliCommandsDeployListEmailRoutingRulesRuleEnabled;
315
- matchers: CliCommandsDeployListEmailRoutingRulesRuleMatchers;
316
- actions: CliCommandsDeployListEmailRoutingRulesRuleActions;
355
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_Rule = {
356
+ tag: Cli_Commands_Deploy_ListEmailRoutingRules_RuleTag;
357
+ name: Cli_Commands_Deploy_ListEmailRoutingRules_RuleName;
358
+ enabled: Cli_Commands_Deploy_ListEmailRoutingRules_RuleEnabled;
359
+ matchers: Cli_Commands_Deploy_ListEmailRoutingRules_RuleMatchers;
360
+ actions: Cli_Commands_Deploy_ListEmailRoutingRules_RuleActions;
317
361
  };
318
362
 
319
- export type CliCommandsDeployListEmailRoutingRulesResponse = Response;
363
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_Response = Response;
320
364
 
321
- export type CliCommandsDeployListEmailRoutingRulesDataSuccess = boolean;
365
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_DataSuccess = boolean;
322
366
 
323
- export type CliCommandsDeployListEmailRoutingRulesDataErrorCode = number;
367
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_DataErrorCode = number;
324
368
 
325
- export type CliCommandsDeployListEmailRoutingRulesDataErrorMessage = string;
369
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_DataErrorMessage = string;
326
370
 
327
- export type CliCommandsDeployListEmailRoutingRulesDataError = {
328
- code: CliCommandsDeployListEmailRoutingRulesDataErrorCode;
329
- message: CliCommandsDeployListEmailRoutingRulesDataErrorMessage;
371
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_DataError = {
372
+ code: Cli_Commands_Deploy_ListEmailRoutingRules_DataErrorCode;
373
+ message: Cli_Commands_Deploy_ListEmailRoutingRules_DataErrorMessage;
330
374
  };
331
375
 
332
- export type CliCommandsDeployListEmailRoutingRulesDataResult = CliCommandsDeployListEmailRoutingRulesRule[];
376
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_DataResult = Cli_Commands_Deploy_ListEmailRoutingRules_Rule[];
333
377
 
334
- export type CliCommandsDeployListEmailRoutingRulesDataErrorsList = CliCommandsDeployListEmailRoutingRulesDataError[] | undefined;
378
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_DataErrorsList = Cli_Commands_Deploy_ListEmailRoutingRules_DataError[] | undefined;
335
379
 
336
- export type CliCommandsDeployListEmailRoutingRulesData = {
337
- success: CliCommandsDeployListEmailRoutingRulesDataSuccess;
338
- result: CliCommandsDeployListEmailRoutingRulesDataResult;
339
- errors: CliCommandsDeployListEmailRoutingRulesDataErrorsList;
380
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_Data = {
381
+ success: Cli_Commands_Deploy_ListEmailRoutingRules_DataSuccess;
382
+ result: Cli_Commands_Deploy_ListEmailRoutingRules_DataResult;
383
+ errors: Cli_Commands_Deploy_ListEmailRoutingRules_DataErrorsList;
340
384
  };
341
385
 
342
- export type CliCommandsDeployListEmailRoutingRulesDataErrors = CliCommandsDeployListEmailRoutingRulesDataErrorsList;
386
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_DataErrors = Cli_Commands_Deploy_ListEmailRoutingRules_DataErrorsList;
343
387
 
344
- export type CliCommandsDeployListEmailRoutingRulesErrorDetails = string;
388
+ export type Cli_Commands_Deploy_ListEmailRoutingRules_ErrorDetails = string;
345
389
 
346
390
  /**
347
391
  * CLI - Commands - Deploy - Load Env Token.
348
392
  *
349
393
  * @since 2.0.0
350
394
  */
351
- export type CliCommandsDeployLoadEnvTokenReturn = string | undefined;
395
+ export type Cli_Commands_Deploy_LoadEnvToken_Returns = string | undefined;
352
396
 
353
- export type CliCommandsDeployLoadEnvTokenEnvValue = string | undefined;
397
+ export type Cli_Commands_Deploy_LoadEnvToken_EnvValue = string | undefined;
354
398
 
355
- export type CliCommandsDeployLoadEnvTokenContent = string;
399
+ export type Cli_Commands_Deploy_LoadEnvToken_Content = string;
356
400
 
357
- export type CliCommandsDeployLoadEnvTokenMatch = RegExpMatchArray | null;
401
+ export type Cli_Commands_Deploy_LoadEnvToken_Match = RegExpMatchArray | null;
358
402
 
359
- export type CliCommandsDeployLoadEnvTokenValue = string;
403
+ export type Cli_Commands_Deploy_LoadEnvToken_Value = string;
360
404
 
361
405
  /**
362
406
  * CLI - Commands - Deploy - Print Context Summary.
363
407
  *
364
408
  * @since 2.0.0
365
409
  */
366
- export type CliCommandsDeployPrintContextSummaryConfigPath = string;
367
-
368
- export type CliCommandsDeployPrintContextSummaryReturn = void;
369
-
370
- export type CliCommandsDeployPrintContextSummaryContexts = LibSchemaContextConfig[];
371
-
372
- export type CliCommandsDeployPrintContextSummarySettings = LibSchemaSettingsConfig;
410
+ export type Cli_Commands_Deploy_PrintContextSummary_ConfigPath = string;
373
411
 
374
- /**
375
- * CLI - Commands - Deploy - Print Email Routing Manual Instructions.
376
- *
377
- * @since 2.0.0
378
- */
379
- export type CliCommandsDeployPrintEmailRoutingManualInstructionsEmailContextsId = string;
412
+ export type Cli_Commands_Deploy_PrintContextSummary_Returns = void;
380
413
 
381
- export type CliCommandsDeployPrintEmailRoutingManualInstructionsEmailContextsName = string;
414
+ export type Cli_Commands_Deploy_PrintContextSummary_Contexts = Array<Lib_Schema_ContextConfig>;
382
415
 
383
- export type CliCommandsDeployPrintEmailRoutingManualInstructionsEmailContexts = Array<{
384
- id: CliCommandsDeployPrintEmailRoutingManualInstructionsEmailContextsId;
385
- name: CliCommandsDeployPrintEmailRoutingManualInstructionsEmailContextsName;
386
- }>;
416
+ export type Cli_Commands_Deploy_PrintContextSummary_Settings_WorkerName = Lib_Schema_SettingsConfigWorkerName;
387
417
 
388
- export type CliCommandsDeployPrintEmailRoutingManualInstructionsBaseDomain = string;
418
+ export type Cli_Commands_Deploy_PrintContextSummary_Settings_BaseDomain = Lib_Schema_SettingsConfigBaseDomain;
389
419
 
390
- export type CliCommandsDeployPrintEmailRoutingManualInstructionsAccountId = string | undefined;
420
+ export type Cli_Commands_Deploy_PrintContextSummary_Settings_ShowResponseOutput = Lib_Schema_SettingsConfigShowResponseOutput;
391
421
 
392
- export type CliCommandsDeployPrintEmailRoutingManualInstructionsReturn = void;
422
+ export type Cli_Commands_Deploy_PrintContextSummary_Settings = {
423
+ worker_name: Cli_Commands_Deploy_PrintContextSummary_Settings_WorkerName;
424
+ base_domain: Cli_Commands_Deploy_PrintContextSummary_Settings_BaseDomain;
425
+ show_response_output: Cli_Commands_Deploy_PrintContextSummary_Settings_ShowResponseOutput;
426
+ };
393
427
 
394
428
  /**
395
429
  * CLI - Commands - Deploy - Prompt For Api Token.
396
430
  *
397
431
  * @since 2.0.0
398
432
  */
399
- export type CliCommandsDeployPromptForApiTokenReturn = Promise<string>;
433
+ export type Cli_Commands_Deploy_PromptForApiToken_Returns = Promise<string>;
400
434
 
401
- export type CliCommandsDeployPromptForApiTokenPromptResultApiToken = string | undefined;
435
+ export type Cli_Commands_Deploy_PromptForApiToken_PromptResultApiToken = string | undefined;
402
436
 
403
- export type CliCommandsDeployPromptForApiTokenPromptResult = {
404
- apiToken: CliCommandsDeployPromptForApiTokenPromptResultApiToken;
437
+ export type Cli_Commands_Deploy_PromptForApiToken_PromptResult = {
438
+ apiToken: Cli_Commands_Deploy_PromptForApiToken_PromptResultApiToken;
405
439
  };
406
440
 
407
- export type CliCommandsDeployPromptForApiTokenValidateValue = string;
408
-
409
- export type CliCommandsDeployPromptForApiTokenToken = string;
441
+ export type Cli_Commands_Deploy_PromptForApiToken_Token = string;
410
442
 
411
443
  /**
412
444
  * CLI - Commands - Deploy - Resolve Api Token.
413
445
  *
414
446
  * @since 2.0.0
415
447
  */
416
- export type CliCommandsDeployResolveApiTokenInteractive = boolean;
448
+ export type Cli_Commands_Deploy_ResolveApiToken_Interactive = boolean;
417
449
 
418
- export type CliCommandsDeployResolveApiTokenReturn = Promise<string>;
450
+ export type Cli_Commands_Deploy_ResolveApiToken_Returns = Promise<string>;
419
451
 
420
- export type CliCommandsDeployResolveApiTokenEnvToken = string | undefined;
452
+ export type Cli_Commands_Deploy_ResolveApiToken_EnvToken = string | undefined;
421
453
 
422
454
  /**
423
455
  * CLI - Commands - Deploy - Run Lint.
424
456
  *
425
457
  * @since 2.0.0
426
458
  */
427
- export type CliCommandsDeployRunLintReturn = void;
459
+ export type Cli_Commands_Deploy_RunLint_Returns = void;
428
460
 
429
- export type CliCommandsDeployRunLintLintResult = SpawnSyncReturns<string>;
461
+ export type Cli_Commands_Deploy_RunLint_PackageRoot = string;
462
+
463
+ export type Cli_Commands_Deploy_RunLint_LintResult = SpawnSyncReturns<string>;
430
464
 
431
465
  /**
432
466
  * CLI - Commands - Deploy - Save Env Token.
433
467
  *
434
468
  * @since 2.0.0
435
469
  */
436
- export type CliCommandsDeploySaveEnvTokenToken = string;
470
+ export type Cli_Commands_Deploy_SaveEnvToken_Token = string;
437
471
 
438
- export type CliCommandsDeploySaveEnvTokenReturn = void;
472
+ export type Cli_Commands_Deploy_SaveEnvToken_Returns = void;
439
473
 
440
- export type CliCommandsDeploySaveEnvTokenContent = string;
474
+ export type Cli_Commands_Deploy_SaveEnvToken_Content = string;
441
475
 
442
- export type CliCommandsDeploySaveEnvTokenRegex = RegExp;
476
+ export type Cli_Commands_Deploy_SaveEnvToken_Regex = RegExp;
443
477
 
444
478
  /**
445
479
  * CLI - Commands - Deploy - Setup Email Routing.
446
480
  *
447
481
  * @since 2.0.0
448
482
  */
449
- export type CliCommandsDeploySetupEmailRoutingConfigPath = string;
483
+ export type Cli_Commands_Deploy_SetupEmailRouting_ConfigPath = string;
484
+
485
+ export type Cli_Commands_Deploy_SetupEmailRouting_Token = string;
450
486
 
451
- export type CliCommandsDeploySetupEmailRoutingToken = string;
487
+ export type Cli_Commands_Deploy_SetupEmailRouting_Returns = Promise<void>;
452
488
 
453
- export type CliCommandsDeploySetupEmailRoutingReturn = Promise<void>;
489
+ export type Cli_Commands_Deploy_SetupEmailRouting_Contexts = Array<Lib_Schema_ContextConfig>;
454
490
 
455
- export type CliCommandsDeploySetupEmailRoutingContexts = LibSchemaContextConfig[];
491
+ export type Cli_Commands_Deploy_SetupEmailRouting_EmailContexts = Array<Lib_Schema_ContextConfig>;
456
492
 
457
- export type CliCommandsDeploySetupEmailRoutingEmailContexts = LibSchemaContextConfig[];
493
+ export type Cli_Commands_Deploy_SetupEmailRouting_Settings_WorkerName = Lib_Schema_SettingsConfigWorkerName;
458
494
 
459
- export type CliCommandsDeploySetupEmailRoutingSettings = LibSchemaSettingsConfig;
495
+ export type Cli_Commands_Deploy_SetupEmailRouting_Settings_BaseDomain = Lib_Schema_SettingsConfigBaseDomain;
496
+
497
+ export type Cli_Commands_Deploy_SetupEmailRouting_Settings_ShowResponseOutput = Lib_Schema_SettingsConfigShowResponseOutput;
498
+
499
+ export type Cli_Commands_Deploy_SetupEmailRouting_Settings = {
500
+ worker_name: Cli_Commands_Deploy_SetupEmailRouting_Settings_WorkerName;
501
+ base_domain: Cli_Commands_Deploy_SetupEmailRouting_Settings_BaseDomain;
502
+ show_response_output: Cli_Commands_Deploy_SetupEmailRouting_Settings_ShowResponseOutput;
503
+ };
460
504
 
461
- export type CliCommandsDeploySetupEmailRoutingWorkerName = string;
505
+ export type Cli_Commands_Deploy_SetupEmailRouting_WorkerName = string;
462
506
 
463
- export type CliCommandsDeploySetupEmailRoutingZoneInfoZoneId = string;
507
+ export type Cli_Commands_Deploy_SetupEmailRouting_ZoneInfoZoneId = string;
464
508
 
465
- export type CliCommandsDeploySetupEmailRoutingZoneInfoAccountId = string;
509
+ export type Cli_Commands_Deploy_SetupEmailRouting_ZoneInfoAccountId = string;
466
510
 
467
- export type CliCommandsDeploySetupEmailRoutingZoneInfoZoneName = string;
511
+ export type Cli_Commands_Deploy_SetupEmailRouting_ZoneInfoZoneName = string;
468
512
 
469
- export type CliCommandsDeploySetupEmailRoutingZoneInfo = {
470
- zoneId: CliCommandsDeploySetupEmailRoutingZoneInfoZoneId;
471
- accountId: CliCommandsDeploySetupEmailRoutingZoneInfoAccountId;
472
- zoneName: CliCommandsDeploySetupEmailRoutingZoneInfoZoneName;
513
+ export type Cli_Commands_Deploy_SetupEmailRouting_ZoneInfo = {
514
+ zoneId: Cli_Commands_Deploy_SetupEmailRouting_ZoneInfoZoneId;
515
+ accountId: Cli_Commands_Deploy_SetupEmailRouting_ZoneInfoAccountId;
516
+ zoneName: Cli_Commands_Deploy_SetupEmailRouting_ZoneInfoZoneName;
473
517
  };
474
518
 
475
- export type CliCommandsDeploySetupEmailRoutingZoneId = string;
519
+ export type Cli_Commands_Deploy_SetupEmailRouting_ZoneId = string;
476
520
 
477
- export type CliCommandsDeploySetupEmailRoutingRuleMatcherType = string;
521
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleMatcherType = string;
478
522
 
479
- export type CliCommandsDeploySetupEmailRoutingRuleMatcherField = string;
523
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleMatcherField = string;
480
524
 
481
- export type CliCommandsDeploySetupEmailRoutingRuleMatcherValue = string;
525
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleMatcherValue = string;
482
526
 
483
- export type CliCommandsDeploySetupEmailRoutingRuleMatcher = {
484
- type: CliCommandsDeploySetupEmailRoutingRuleMatcherType;
485
- field: CliCommandsDeploySetupEmailRoutingRuleMatcherField;
486
- value: CliCommandsDeploySetupEmailRoutingRuleMatcherValue;
527
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleMatcher = {
528
+ type: Cli_Commands_Deploy_SetupEmailRouting_RuleMatcherType;
529
+ field: Cli_Commands_Deploy_SetupEmailRouting_RuleMatcherField;
530
+ value: Cli_Commands_Deploy_SetupEmailRouting_RuleMatcherValue;
487
531
  };
488
532
 
489
- export type CliCommandsDeploySetupEmailRoutingRuleMatchers = CliCommandsDeploySetupEmailRoutingRuleMatcher[];
533
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleMatchers = Cli_Commands_Deploy_SetupEmailRouting_RuleMatcher[];
490
534
 
491
- export type CliCommandsDeploySetupEmailRoutingRuleActionType = string;
535
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleActionType = string;
492
536
 
493
- export type CliCommandsDeploySetupEmailRoutingRuleActionValue = string[];
537
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleActionValue = string[];
494
538
 
495
- export type CliCommandsDeploySetupEmailRoutingRuleAction = {
496
- type: CliCommandsDeploySetupEmailRoutingRuleActionType;
497
- value: CliCommandsDeploySetupEmailRoutingRuleActionValue;
539
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleAction = {
540
+ type: Cli_Commands_Deploy_SetupEmailRouting_RuleActionType;
541
+ value: Cli_Commands_Deploy_SetupEmailRouting_RuleActionValue;
498
542
  };
499
543
 
500
- export type CliCommandsDeploySetupEmailRoutingRuleActions = CliCommandsDeploySetupEmailRoutingRuleAction[];
544
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleActions = Cli_Commands_Deploy_SetupEmailRouting_RuleAction[];
501
545
 
502
- export type CliCommandsDeploySetupEmailRoutingRuleTag = string;
546
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleTag = string;
503
547
 
504
- export type CliCommandsDeploySetupEmailRoutingRuleName = string;
548
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleName = string;
505
549
 
506
- export type CliCommandsDeploySetupEmailRoutingRuleEnabled = boolean;
550
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleEnabled = boolean;
507
551
 
508
- export type CliCommandsDeploySetupEmailRoutingRule = {
509
- tag: CliCommandsDeploySetupEmailRoutingRuleTag;
510
- name: CliCommandsDeploySetupEmailRoutingRuleName;
511
- enabled: CliCommandsDeploySetupEmailRoutingRuleEnabled;
512
- matchers: CliCommandsDeploySetupEmailRoutingRuleMatchers;
513
- actions: CliCommandsDeploySetupEmailRoutingRuleActions;
552
+ export type Cli_Commands_Deploy_SetupEmailRouting_Rule = {
553
+ tag: Cli_Commands_Deploy_SetupEmailRouting_RuleTag;
554
+ name: Cli_Commands_Deploy_SetupEmailRouting_RuleName;
555
+ enabled: Cli_Commands_Deploy_SetupEmailRouting_RuleEnabled;
556
+ matchers: Cli_Commands_Deploy_SetupEmailRouting_RuleMatchers;
557
+ actions: Cli_Commands_Deploy_SetupEmailRouting_RuleActions;
514
558
  };
515
559
 
516
- export type CliCommandsDeploySetupEmailRoutingExistingRules = CliCommandsDeploySetupEmailRoutingRule[];
560
+ export type Cli_Commands_Deploy_SetupEmailRouting_ExistingRules = Cli_Commands_Deploy_SetupEmailRouting_Rule[];
517
561
 
518
- export type CliCommandsDeploySetupEmailRoutingWorkerRules = CliCommandsDeploySetupEmailRoutingRule[];
562
+ export type Cli_Commands_Deploy_SetupEmailRouting_WorkerRules = Cli_Commands_Deploy_SetupEmailRouting_Rule[];
519
563
 
520
- export type CliCommandsDeploySetupEmailRoutingDesiredEmails = Set<string>;
564
+ export type Cli_Commands_Deploy_SetupEmailRouting_DesiredEmails = Set<string>;
521
565
 
522
- export type CliCommandsDeploySetupEmailRoutingCreated = number;
566
+ export type Cli_Commands_Deploy_SetupEmailRouting_Created = number;
523
567
 
524
- export type CliCommandsDeploySetupEmailRoutingKept = number;
568
+ export type Cli_Commands_Deploy_SetupEmailRouting_Kept = number;
525
569
 
526
- export type CliCommandsDeploySetupEmailRoutingRemoved = number;
570
+ export type Cli_Commands_Deploy_SetupEmailRouting_Removed = number;
527
571
 
528
- export type CliCommandsDeploySetupEmailRoutingEmail = string;
572
+ export type Cli_Commands_Deploy_SetupEmailRouting_Email = string;
529
573
 
530
- export type CliCommandsDeploySetupEmailRoutingRuleExists = boolean;
574
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleExists = boolean;
531
575
 
532
- export type CliCommandsDeploySetupEmailRoutingRuleEmail = CliCommandsDeploySetupEmailRoutingRuleMatcher | undefined;
576
+ export type Cli_Commands_Deploy_SetupEmailRouting_RuleEmail = Cli_Commands_Deploy_SetupEmailRouting_RuleMatcher | undefined;
533
577
 
534
578
  /**
535
579
  * CLI - Commands - Deploy - Verify Api Token.
536
580
  *
537
581
  * @since 2.0.0
538
582
  */
539
- export type CliCommandsDeployVerifyApiTokenToken = string;
583
+ export type Cli_Commands_Deploy_VerifyApiToken_Token = string;
540
584
 
541
- export type CliCommandsDeployVerifyApiTokenReturn = Promise<boolean>;
585
+ export type Cli_Commands_Deploy_VerifyApiToken_Returns = Promise<boolean>;
542
586
 
543
- export type CliCommandsDeployVerifyApiTokenResponse = Response;
587
+ export type Cli_Commands_Deploy_VerifyApiToken_Response = Response;
544
588
 
545
- export type CliCommandsDeployVerifyApiTokenDataSuccess = boolean;
589
+ export type Cli_Commands_Deploy_VerifyApiToken_DataSuccess = boolean;
546
590
 
547
- export type CliCommandsDeployVerifyApiTokenData = {
548
- success: CliCommandsDeployVerifyApiTokenDataSuccess;
591
+ export type Cli_Commands_Deploy_VerifyApiToken_Data = {
592
+ success: Cli_Commands_Deploy_VerifyApiToken_DataSuccess;
549
593
  };
550
594
 
551
595
  /**
@@ -553,70 +597,70 @@ export type CliCommandsDeployVerifyApiTokenData = {
553
597
  *
554
598
  * @since 2.0.0
555
599
  */
556
- export type CliCommandsDeployVerifyPermissionsToken = string;
600
+ export type Cli_Commands_Deploy_VerifyPermissions_Token = string;
557
601
 
558
- export type CliCommandsDeployVerifyPermissionsBaseDomain = string;
602
+ export type Cli_Commands_Deploy_VerifyPermissions_BaseDomain = string;
559
603
 
560
- export type CliCommandsDeployVerifyPermissionsHasEmailContexts = boolean;
604
+ export type Cli_Commands_Deploy_VerifyPermissions_HasEmailContexts = boolean;
561
605
 
562
- export type CliCommandsDeployVerifyPermissionsInteractive = boolean;
606
+ export type Cli_Commands_Deploy_VerifyPermissions_Interactive = boolean;
563
607
 
564
- export type CliCommandsDeployVerifyPermissionsReturn = Promise<string>;
608
+ export type Cli_Commands_Deploy_VerifyPermissions_Returns = Promise<string>;
565
609
 
566
- export type CliCommandsDeployVerifyPermissionsZoneInfoZoneId = string;
610
+ export type Cli_Commands_Deploy_VerifyPermissions_ZoneInfoZoneId = string;
567
611
 
568
- export type CliCommandsDeployVerifyPermissionsZoneInfoAccountId = string;
612
+ export type Cli_Commands_Deploy_VerifyPermissions_ZoneInfoAccountId = string;
569
613
 
570
- export type CliCommandsDeployVerifyPermissionsZoneInfoZoneName = string;
614
+ export type Cli_Commands_Deploy_VerifyPermissions_ZoneInfoZoneName = string;
571
615
 
572
- export type CliCommandsDeployVerifyPermissionsZoneInfo = {
573
- zoneId: CliCommandsDeployVerifyPermissionsZoneInfoZoneId;
574
- accountId: CliCommandsDeployVerifyPermissionsZoneInfoAccountId;
575
- zoneName: CliCommandsDeployVerifyPermissionsZoneInfoZoneName;
616
+ export type Cli_Commands_Deploy_VerifyPermissions_ZoneInfo = {
617
+ zoneId: Cli_Commands_Deploy_VerifyPermissions_ZoneInfoZoneId;
618
+ accountId: Cli_Commands_Deploy_VerifyPermissions_ZoneInfoAccountId;
619
+ zoneName: Cli_Commands_Deploy_VerifyPermissions_ZoneInfoZoneName;
576
620
  };
577
621
 
578
- export type CliCommandsDeployVerifyPermissionsZoneId = string;
622
+ export type Cli_Commands_Deploy_VerifyPermissions_ZoneId = string;
579
623
 
580
- export type CliCommandsDeployVerifyPermissionsAccountId = string;
624
+ export type Cli_Commands_Deploy_VerifyPermissions_AccountId = string;
581
625
 
582
- export type CliCommandsDeployVerifyPermissionsHasWorkersScripts = boolean;
626
+ export type Cli_Commands_Deploy_VerifyPermissions_HasWorkersScripts = boolean;
583
627
 
584
- export type CliCommandsDeployVerifyPermissionsWorkersScriptsResponse = Response;
628
+ export type Cli_Commands_Deploy_VerifyPermissions_WorkersScriptsResponse = Response;
585
629
 
586
- export type CliCommandsDeployVerifyPermissionsWorkersScriptsDataSuccess = boolean;
630
+ export type Cli_Commands_Deploy_VerifyPermissions_WorkersScriptsDataSuccess = boolean;
587
631
 
588
- export type CliCommandsDeployVerifyPermissionsWorkersScriptsData = {
589
- success: CliCommandsDeployVerifyPermissionsWorkersScriptsDataSuccess;
632
+ export type Cli_Commands_Deploy_VerifyPermissions_WorkersScriptsData = {
633
+ success: Cli_Commands_Deploy_VerifyPermissions_WorkersScriptsDataSuccess;
590
634
  };
591
635
 
592
- export type CliCommandsDeployVerifyPermissionsHasWorkersRoutes = boolean;
636
+ export type Cli_Commands_Deploy_VerifyPermissions_HasWorkersRoutes = boolean;
593
637
 
594
- export type CliCommandsDeployVerifyPermissionsWorkersRoutesResponse = Response;
638
+ export type Cli_Commands_Deploy_VerifyPermissions_WorkersRoutesResponse = Response;
595
639
 
596
- export type CliCommandsDeployVerifyPermissionsWorkersRoutesDataSuccess = boolean;
640
+ export type Cli_Commands_Deploy_VerifyPermissions_WorkersRoutesDataSuccess = boolean;
597
641
 
598
- export type CliCommandsDeployVerifyPermissionsWorkersRoutesData = {
599
- success: CliCommandsDeployVerifyPermissionsWorkersRoutesDataSuccess;
642
+ export type Cli_Commands_Deploy_VerifyPermissions_WorkersRoutesData = {
643
+ success: Cli_Commands_Deploy_VerifyPermissions_WorkersRoutesDataSuccess;
600
644
  };
601
645
 
602
- export type CliCommandsDeployVerifyPermissionsHasKvStorage = boolean;
646
+ export type Cli_Commands_Deploy_VerifyPermissions_HasKvStorage = boolean;
603
647
 
604
- export type CliCommandsDeployVerifyPermissionsKvStorageResponse = Response;
648
+ export type Cli_Commands_Deploy_VerifyPermissions_KvStorageResponse = Response;
605
649
 
606
- export type CliCommandsDeployVerifyPermissionsKvStorageDataSuccess = boolean;
650
+ export type Cli_Commands_Deploy_VerifyPermissions_KvStorageDataSuccess = boolean;
607
651
 
608
- export type CliCommandsDeployVerifyPermissionsKvStorageData = {
609
- success: CliCommandsDeployVerifyPermissionsKvStorageDataSuccess;
652
+ export type Cli_Commands_Deploy_VerifyPermissions_KvStorageData = {
653
+ success: Cli_Commands_Deploy_VerifyPermissions_KvStorageDataSuccess;
610
654
  };
611
655
 
612
- export type CliCommandsDeployVerifyPermissionsHasEmailRouting = boolean;
656
+ export type Cli_Commands_Deploy_VerifyPermissions_HasEmailRouting = boolean;
613
657
 
614
- export type CliCommandsDeployVerifyPermissionsMissing = string[];
658
+ export type Cli_Commands_Deploy_VerifyPermissions_Missing = string[];
615
659
 
616
- export type CliCommandsDeployVerifyPermissionsMissingMessage = string;
660
+ export type Cli_Commands_Deploy_VerifyPermissions_MissingMessage = string;
617
661
 
618
- export type CliCommandsDeployVerifyPermissionsPromptResultReady = boolean | undefined;
662
+ export type Cli_Commands_Deploy_VerifyPermissions_PromptResultReady = boolean | undefined;
619
663
 
620
- export type CliCommandsDeployVerifyPermissionsPromptResult = {
621
- ready: CliCommandsDeployVerifyPermissionsPromptResultReady;
664
+ export type Cli_Commands_Deploy_VerifyPermissions_PromptResult = {
665
+ ready: Cli_Commands_Deploy_VerifyPermissions_PromptResultReady;
622
666
  };