ntfy-reverse-proxy 0.0.0 → 2.0.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/README.md +48 -0
- package/build/src/cli/commands/config-io.d.ts +5 -0
- package/build/src/cli/commands/config-io.d.ts.map +1 -0
- package/build/src/cli/commands/config-io.js +19 -0
- package/build/src/cli/commands/config-io.js.map +1 -0
- package/build/src/cli/commands/context.d.ts +9 -0
- package/build/src/cli/commands/context.d.ts.map +1 -0
- package/build/src/cli/commands/context.js +108 -0
- package/build/src/cli/commands/context.js.map +1 -0
- package/build/src/cli/commands/deploy.d.ts +4 -0
- package/build/src/cli/commands/deploy.d.ts.map +1 -0
- package/build/src/cli/commands/deploy.js +496 -0
- package/build/src/cli/commands/deploy.js.map +1 -0
- package/build/src/cli/commands/generate.d.ts +4 -0
- package/build/src/cli/commands/generate.d.ts.map +1 -0
- package/build/src/cli/commands/generate.js +68 -0
- package/build/src/cli/commands/generate.js.map +1 -0
- package/build/src/cli/commands/server.d.ts +7 -0
- package/build/src/cli/commands/server.d.ts.map +1 -0
- package/build/src/cli/commands/server.js +43 -0
- package/build/src/cli/commands/server.js.map +1 -0
- package/build/src/cli/commands/settings.d.ts +5 -0
- package/build/src/cli/commands/settings.d.ts.map +1 -0
- package/build/src/cli/commands/settings.js +16 -0
- package/build/src/cli/commands/settings.js.map +1 -0
- package/build/src/cli/commands/validate.d.ts +4 -0
- package/build/src/cli/commands/validate.d.ts.map +1 -0
- package/build/src/cli/commands/validate.js +45 -0
- package/build/src/cli/commands/validate.js.map +1 -0
- package/build/src/cli/index.d.ts +5 -0
- package/build/src/cli/index.d.ts.map +1 -0
- package/build/src/cli/index.js +118 -0
- package/build/src/cli/index.js.map +1 -0
- package/build/src/cli/menu/interactive.d.ts +4 -0
- package/build/src/cli/menu/interactive.d.ts.map +1 -0
- package/build/src/cli/menu/interactive.js +902 -0
- package/build/src/cli/menu/interactive.js.map +1 -0
- package/build/src/lib/item.d.ts +3 -0
- package/build/src/lib/item.d.ts.map +1 -0
- package/build/src/lib/item.js +3 -0
- package/build/src/lib/item.js.map +1 -0
- package/build/src/lib/regex.d.ts +30 -0
- package/build/src/lib/regex.d.ts.map +1 -0
- package/build/src/lib/regex.js +30 -0
- package/build/src/lib/regex.js.map +1 -0
- package/build/src/lib/schema.d.ts +167 -0
- package/build/src/lib/schema.d.ts.map +1 -0
- package/build/src/lib/schema.js +70 -0
- package/build/src/lib/schema.js.map +1 -0
- package/build/src/lib/utility.d.ts +4 -0
- package/build/src/lib/utility.d.ts.map +1 -0
- package/build/src/lib/utility.js +14 -0
- package/build/src/lib/utility.js.map +1 -0
- package/build/src/types/cli/commands/config-io.d.ts +38 -0
- package/build/src/types/cli/commands/context.d.ts +131 -0
- package/build/src/types/cli/commands/deploy.d.ts +622 -0
- package/build/src/types/cli/commands/generate.d.ts +51 -0
- package/build/src/types/cli/commands/server.d.ts +65 -0
- package/build/src/types/cli/commands/settings.d.ts +25 -0
- package/build/src/types/cli/commands/validate.d.ts +37 -0
- package/build/src/types/cli/index.d.ts +55 -0
- package/build/src/types/cli/menu/interactive.d.ts +381 -0
- package/build/src/types/fetch-response.d.ts +11 -0
- package/build/src/types/lib/schema.d.ts +134 -0
- package/build/src/types/lib/utility.d.ts +8 -0
- package/build/src/types/tests/cli/commands/context.test.d.ts +57 -0
- package/build/src/types/tests/cli/commands/generate.test.d.ts +12 -0
- package/build/src/types/tests/cli/commands/server.test.d.ts +45 -0
- package/build/src/types/tests/cli/commands/settings.test.d.ts +40 -0
- package/build/src/types/tests/cli/commands/validate.test.d.ts +19 -0
- package/build/src/types/tests/cli/menu/interactive.test.d.ts +6 -0
- package/build/src/types/tests/lib/schema.test.d.ts +10 -0
- package/build/src/types/tests/type-declarations.test.d.ts +173 -0
- package/build/src/types/tests/worker/index.test.d.ts +20 -0
- package/build/src/types/tests/worker/interpreters/ntfy-json.test.d.ts +19 -0
- package/build/src/types/tests/worker/interpreters/pfsense.test.d.ts +10 -0
- package/build/src/types/tests/worker/interpreters/plain-text.test.d.ts +10 -0
- package/build/src/types/tests/worker/interpreters/seerr.test.d.ts +8 -0
- package/build/src/types/tests/worker/interpreters/statuspage.test.d.ts +58 -0
- package/build/src/types/tests/worker/interpreters/synology.test.d.ts +8 -0
- package/build/src/types/tests/worker/interpreters/unifi.test.d.ts +8 -0
- package/build/src/types/tests/worker/landing/page.test.d.ts +55 -0
- package/build/src/types/tests/worker/pipeline/accumulate.test.d.ts +28 -0
- package/build/src/types/tests/worker/pipeline/authenticate.test.d.ts +9 -0
- package/build/src/types/tests/worker/pipeline/email.test.d.ts +15 -0
- package/build/src/types/tests/worker/pipeline/format.test.d.ts +38 -0
- package/build/src/types/tests/worker/pipeline/interpret.test.d.ts +43 -0
- package/build/src/types/tests/worker/pipeline/parse.test.d.ts +17 -0
- package/build/src/types/tests/worker/pipeline/receive.test.d.ts +23 -0
- package/build/src/types/tests/worker/pipeline/respond.test.d.ts +20 -0
- package/build/src/types/tests/worker/pipeline/route.test.d.ts +80 -0
- package/build/src/types/tests/worker/pipeline/send.test.d.ts +37 -0
- package/build/src/types/tests/worker/pipeline/split.test.d.ts +17 -0
- package/build/src/types/worker/index.d.ts +232 -0
- package/build/src/types/worker/interpreters/ntfy-json.d.ts +28 -0
- package/build/src/types/worker/interpreters/pfsense.d.ts +97 -0
- package/build/src/types/worker/interpreters/plain-text.d.ts +24 -0
- package/build/src/types/worker/interpreters/seerr.d.ts +124 -0
- package/build/src/types/worker/interpreters/statuspage.d.ts +239 -0
- package/build/src/types/worker/interpreters/synology.d.ts +99 -0
- package/build/src/types/worker/interpreters/unifi.d.ts +111 -0
- package/build/src/types/worker/landing/page.d.ts +44 -0
- package/build/src/types/worker/pipeline/accumulate.d.ts +79 -0
- package/build/src/types/worker/pipeline/authenticate.d.ts +68 -0
- package/build/src/types/worker/pipeline/email.d.ts +108 -0
- package/build/src/types/worker/pipeline/format.d.ts +47 -0
- package/build/src/types/worker/pipeline/interpret.d.ts +63 -0
- package/build/src/types/worker/pipeline/parse.d.ts +39 -0
- package/build/src/types/worker/pipeline/receive.d.ts +64 -0
- package/build/src/types/worker/pipeline/respond.d.ts +113 -0
- package/build/src/types/worker/pipeline/route.d.ts +34 -0
- package/build/src/types/worker/pipeline/send.d.ts +143 -0
- package/build/src/types/worker/pipeline/shared.d.ts +85 -0
- package/build/src/types/worker/pipeline/split.d.ts +35 -0
- package/build/src/worker/handlers.d.ts +5 -0
- package/build/src/worker/handlers.d.ts.map +1 -0
- package/build/src/worker/handlers.js +360 -0
- package/build/src/worker/handlers.js.map +1 -0
- package/build/src/worker/index.d.ts +4 -0
- package/build/src/worker/index.d.ts.map +1 -0
- package/build/src/worker/index.js +52 -0
- package/build/src/worker/index.js.map +1 -0
- package/build/src/worker/interpreters/ntfy-json.d.ts +4 -0
- package/build/src/worker/interpreters/ntfy-json.d.ts.map +1 -0
- package/build/src/worker/interpreters/ntfy-json.js +49 -0
- package/build/src/worker/interpreters/ntfy-json.js.map +1 -0
- package/build/src/worker/interpreters/pfsense.d.ts +4 -0
- package/build/src/worker/interpreters/pfsense.d.ts.map +1 -0
- package/build/src/worker/interpreters/pfsense.js +150 -0
- package/build/src/worker/interpreters/pfsense.js.map +1 -0
- package/build/src/worker/interpreters/plain-text.d.ts +4 -0
- package/build/src/worker/interpreters/plain-text.d.ts.map +1 -0
- package/build/src/worker/interpreters/plain-text.js +18 -0
- package/build/src/worker/interpreters/plain-text.js.map +1 -0
- package/build/src/worker/interpreters/seerr.d.ts +4 -0
- package/build/src/worker/interpreters/seerr.d.ts.map +1 -0
- package/build/src/worker/interpreters/seerr.js +173 -0
- package/build/src/worker/interpreters/seerr.js.map +1 -0
- package/build/src/worker/interpreters/statuspage.d.ts +4 -0
- package/build/src/worker/interpreters/statuspage.d.ts.map +1 -0
- package/build/src/worker/interpreters/statuspage.js +266 -0
- package/build/src/worker/interpreters/statuspage.js.map +1 -0
- package/build/src/worker/interpreters/synology.d.ts +4 -0
- package/build/src/worker/interpreters/synology.d.ts.map +1 -0
- package/build/src/worker/interpreters/synology.js +177 -0
- package/build/src/worker/interpreters/synology.js.map +1 -0
- package/build/src/worker/interpreters/unifi.d.ts +4 -0
- package/build/src/worker/interpreters/unifi.d.ts.map +1 -0
- package/build/src/worker/interpreters/unifi.js +152 -0
- package/build/src/worker/interpreters/unifi.js.map +1 -0
- package/build/src/worker/landing/page.d.ts +4 -0
- package/build/src/worker/landing/page.d.ts.map +1 -0
- package/build/src/worker/landing/page.js +260 -0
- package/build/src/worker/landing/page.js.map +1 -0
- package/build/src/worker/pipeline/accumulate.d.ts +7 -0
- package/build/src/worker/pipeline/accumulate.d.ts.map +1 -0
- package/build/src/worker/pipeline/accumulate.js +53 -0
- package/build/src/worker/pipeline/accumulate.js.map +1 -0
- package/build/src/worker/pipeline/authenticate.d.ts +4 -0
- package/build/src/worker/pipeline/authenticate.d.ts.map +1 -0
- package/build/src/worker/pipeline/authenticate.js +53 -0
- package/build/src/worker/pipeline/authenticate.js.map +1 -0
- package/build/src/worker/pipeline/email.d.ts +4 -0
- package/build/src/worker/pipeline/email.d.ts.map +1 -0
- package/build/src/worker/pipeline/email.js +149 -0
- package/build/src/worker/pipeline/email.js.map +1 -0
- package/build/src/worker/pipeline/format.d.ts +5 -0
- package/build/src/worker/pipeline/format.d.ts.map +1 -0
- package/build/src/worker/pipeline/format.js +48 -0
- package/build/src/worker/pipeline/format.js.map +1 -0
- package/build/src/worker/pipeline/interpret.d.ts +4 -0
- package/build/src/worker/pipeline/interpret.d.ts.map +1 -0
- package/build/src/worker/pipeline/interpret.js +30 -0
- package/build/src/worker/pipeline/interpret.js.map +1 -0
- package/build/src/worker/pipeline/parse.d.ts +4 -0
- package/build/src/worker/pipeline/parse.d.ts.map +1 -0
- package/build/src/worker/pipeline/parse.js +59 -0
- package/build/src/worker/pipeline/parse.js.map +1 -0
- package/build/src/worker/pipeline/receive.d.ts +4 -0
- package/build/src/worker/pipeline/receive.d.ts.map +1 -0
- package/build/src/worker/pipeline/receive.js +52 -0
- package/build/src/worker/pipeline/receive.js.map +1 -0
- package/build/src/worker/pipeline/respond.d.ts +4 -0
- package/build/src/worker/pipeline/respond.d.ts.map +1 -0
- package/build/src/worker/pipeline/respond.js +48 -0
- package/build/src/worker/pipeline/respond.js.map +1 -0
- package/build/src/worker/pipeline/route.d.ts +5 -0
- package/build/src/worker/pipeline/route.d.ts.map +1 -0
- package/build/src/worker/pipeline/route.js +23 -0
- package/build/src/worker/pipeline/route.js.map +1 -0
- package/build/src/worker/pipeline/send.d.ts +4 -0
- package/build/src/worker/pipeline/send.d.ts.map +1 -0
- package/build/src/worker/pipeline/send.js +156 -0
- package/build/src/worker/pipeline/send.js.map +1 -0
- package/build/src/worker/pipeline/split.d.ts +4 -0
- package/build/src/worker/pipeline/split.d.ts.map +1 -0
- package/build/src/worker/pipeline/split.js +40 -0
- package/build/src/worker/pipeline/split.js.map +1 -0
- package/package.json +95 -2
|
@@ -0,0 +1,622 @@
|
|
|
1
|
+
import type { SpawnSyncReturns } from 'child_process';
|
|
2
|
+
|
|
3
|
+
import type {
|
|
4
|
+
LibSchemaContextConfig,
|
|
5
|
+
LibSchemaServerConfig,
|
|
6
|
+
LibSchemaSettingsConfig,
|
|
7
|
+
} from '../../lib/schema.d.ts';
|
|
8
|
+
import type { CliCommandsValidateValidateConfigResult } from './validate.d.ts';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* CLI - Commands - Deploy - Create Email Routing Rule.
|
|
12
|
+
*
|
|
13
|
+
* @since 2.0.0
|
|
14
|
+
*/
|
|
15
|
+
export type CliCommandsDeployCreateEmailRoutingRuleToken = string;
|
|
16
|
+
|
|
17
|
+
export type CliCommandsDeployCreateEmailRoutingRuleZoneId = string;
|
|
18
|
+
|
|
19
|
+
export type CliCommandsDeployCreateEmailRoutingRuleEmail = string;
|
|
20
|
+
|
|
21
|
+
export type CliCommandsDeployCreateEmailRoutingRuleContextId = string;
|
|
22
|
+
|
|
23
|
+
export type CliCommandsDeployCreateEmailRoutingRuleWorkerName = string;
|
|
24
|
+
|
|
25
|
+
export type CliCommandsDeployCreateEmailRoutingRuleReturn = Promise<void>;
|
|
26
|
+
|
|
27
|
+
export type CliCommandsDeployCreateEmailRoutingRuleResponse = Response;
|
|
28
|
+
|
|
29
|
+
export type CliCommandsDeployCreateEmailRoutingRuleCreateDataSuccess = boolean;
|
|
30
|
+
|
|
31
|
+
export type CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorCode = number;
|
|
32
|
+
|
|
33
|
+
export type CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorMessage = string;
|
|
34
|
+
|
|
35
|
+
export type CliCommandsDeployCreateEmailRoutingRuleCreateDataError = {
|
|
36
|
+
code: CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorCode;
|
|
37
|
+
message: CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorMessage;
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
export type CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorsList = CliCommandsDeployCreateEmailRoutingRuleCreateDataError[] | undefined;
|
|
41
|
+
|
|
42
|
+
export type CliCommandsDeployCreateEmailRoutingRuleCreateData = {
|
|
43
|
+
success: CliCommandsDeployCreateEmailRoutingRuleCreateDataSuccess;
|
|
44
|
+
errors: CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorsList;
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
export type CliCommandsDeployCreateEmailRoutingRuleCreateDataErrors = CliCommandsDeployCreateEmailRoutingRuleCreateDataErrorsList;
|
|
48
|
+
|
|
49
|
+
export type CliCommandsDeployCreateEmailRoutingRuleErrorDetails = string;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* CLI - Commands - Deploy - Delete Email Routing Rule.
|
|
53
|
+
*
|
|
54
|
+
* @since 2.0.0
|
|
55
|
+
*/
|
|
56
|
+
export type CliCommandsDeployDeleteEmailRoutingRuleToken = string;
|
|
57
|
+
|
|
58
|
+
export type CliCommandsDeployDeleteEmailRoutingRuleZoneId = string;
|
|
59
|
+
|
|
60
|
+
export type CliCommandsDeployDeleteEmailRoutingRuleRuleId = string;
|
|
61
|
+
|
|
62
|
+
export type CliCommandsDeployDeleteEmailRoutingRuleReturn = Promise<void>;
|
|
63
|
+
|
|
64
|
+
export type CliCommandsDeployDeleteEmailRoutingRuleResponse = Response;
|
|
65
|
+
|
|
66
|
+
export type CliCommandsDeployDeleteEmailRoutingRuleDeleteDataSuccess = boolean;
|
|
67
|
+
|
|
68
|
+
export type CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorCode = number;
|
|
69
|
+
|
|
70
|
+
export type CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorMessage = string;
|
|
71
|
+
|
|
72
|
+
export type CliCommandsDeployDeleteEmailRoutingRuleDeleteDataError = {
|
|
73
|
+
code: CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorCode;
|
|
74
|
+
message: CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorMessage;
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
export type CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorsList = CliCommandsDeployDeleteEmailRoutingRuleDeleteDataError[] | undefined;
|
|
78
|
+
|
|
79
|
+
export type CliCommandsDeployDeleteEmailRoutingRuleDeleteData = {
|
|
80
|
+
success: CliCommandsDeployDeleteEmailRoutingRuleDeleteDataSuccess;
|
|
81
|
+
errors: CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorsList;
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
export type CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrors = CliCommandsDeployDeleteEmailRoutingRuleDeleteDataErrorsList;
|
|
85
|
+
|
|
86
|
+
export type CliCommandsDeployDeleteEmailRoutingRuleErrorDetails = string;
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* CLI - Commands - Deploy - Deploy.
|
|
90
|
+
*
|
|
91
|
+
* @since 2.0.0
|
|
92
|
+
*/
|
|
93
|
+
export type CliCommandsDeployDeployConfigPath = string;
|
|
94
|
+
|
|
95
|
+
export type CliCommandsDeployDeployInteractive = boolean;
|
|
96
|
+
|
|
97
|
+
export type CliCommandsDeployDeployReturn = Promise<void>;
|
|
98
|
+
|
|
99
|
+
export type CliCommandsDeployDeployToken = string;
|
|
100
|
+
|
|
101
|
+
export type CliCommandsDeployDeployResult = CliCommandsValidateValidateConfigResult;
|
|
102
|
+
|
|
103
|
+
export type CliCommandsDeployDeployServers = LibSchemaServerConfig[];
|
|
104
|
+
|
|
105
|
+
export type CliCommandsDeployDeploySettings = LibSchemaSettingsConfig;
|
|
106
|
+
|
|
107
|
+
export type CliCommandsDeployDeployWorkerName = string;
|
|
108
|
+
|
|
109
|
+
export type CliCommandsDeployDeployContexts = LibSchemaContextConfig[];
|
|
110
|
+
|
|
111
|
+
export type CliCommandsDeployDeployHasEmailContexts = boolean;
|
|
112
|
+
|
|
113
|
+
export type CliCommandsDeployDeployAccountId = string;
|
|
114
|
+
|
|
115
|
+
export type CliCommandsDeployDeployKvNamespaceId = string;
|
|
116
|
+
|
|
117
|
+
export type CliCommandsDeployDeployProjectRoot = string;
|
|
118
|
+
|
|
119
|
+
export type CliCommandsDeployDeployWranglerTomlPath = string;
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* CLI - Commands - Deploy - Deploy Worker.
|
|
123
|
+
*
|
|
124
|
+
* @since 2.0.0
|
|
125
|
+
*/
|
|
126
|
+
export type CliCommandsDeployDeployWorkerReturn = void;
|
|
127
|
+
|
|
128
|
+
export type CliCommandsDeployDeployWorkerProjectRoot = string;
|
|
129
|
+
|
|
130
|
+
export type CliCommandsDeployDeployWorkerWranglerTomlPath = string;
|
|
131
|
+
|
|
132
|
+
export type CliCommandsDeployDeployWorkerDeployResult = SpawnSyncReturns<string>;
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* CLI - Commands - Deploy - Ensure Kv Namespace.
|
|
136
|
+
*
|
|
137
|
+
* @since 2.0.0
|
|
138
|
+
*/
|
|
139
|
+
export type CliCommandsDeployEnsureKvNamespaceToken = string;
|
|
140
|
+
|
|
141
|
+
export type CliCommandsDeployEnsureKvNamespaceAccountId = string;
|
|
142
|
+
|
|
143
|
+
export type CliCommandsDeployEnsureKvNamespaceWorkerName = string;
|
|
144
|
+
|
|
145
|
+
export type CliCommandsDeployEnsureKvNamespaceReturn = Promise<string>;
|
|
146
|
+
|
|
147
|
+
export type CliCommandsDeployEnsureKvNamespaceListResponse = Response;
|
|
148
|
+
|
|
149
|
+
export type CliCommandsDeployEnsureKvNamespaceListDataSuccess = boolean;
|
|
150
|
+
|
|
151
|
+
export type CliCommandsDeployEnsureKvNamespaceListDataResultId = string;
|
|
152
|
+
|
|
153
|
+
export type CliCommandsDeployEnsureKvNamespaceListDataResultTitle = string;
|
|
154
|
+
|
|
155
|
+
export type CliCommandsDeployEnsureKvNamespaceListDataResult = {
|
|
156
|
+
id: CliCommandsDeployEnsureKvNamespaceListDataResultId;
|
|
157
|
+
title: CliCommandsDeployEnsureKvNamespaceListDataResultTitle;
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
export type CliCommandsDeployEnsureKvNamespaceListDataErrorCode = number;
|
|
161
|
+
|
|
162
|
+
export type CliCommandsDeployEnsureKvNamespaceListDataErrorMessage = string;
|
|
163
|
+
|
|
164
|
+
export type CliCommandsDeployEnsureKvNamespaceListDataError = {
|
|
165
|
+
code: CliCommandsDeployEnsureKvNamespaceListDataErrorCode;
|
|
166
|
+
message: CliCommandsDeployEnsureKvNamespaceListDataErrorMessage;
|
|
167
|
+
};
|
|
168
|
+
|
|
169
|
+
export type CliCommandsDeployEnsureKvNamespaceListDataResults = CliCommandsDeployEnsureKvNamespaceListDataResult[];
|
|
170
|
+
|
|
171
|
+
export type CliCommandsDeployEnsureKvNamespaceListDataErrorsList = CliCommandsDeployEnsureKvNamespaceListDataError[] | undefined;
|
|
172
|
+
|
|
173
|
+
export type CliCommandsDeployEnsureKvNamespaceListData = {
|
|
174
|
+
success: CliCommandsDeployEnsureKvNamespaceListDataSuccess;
|
|
175
|
+
result: CliCommandsDeployEnsureKvNamespaceListDataResults;
|
|
176
|
+
errors: CliCommandsDeployEnsureKvNamespaceListDataErrorsList;
|
|
177
|
+
};
|
|
178
|
+
|
|
179
|
+
export type CliCommandsDeployEnsureKvNamespaceListDataErrors = CliCommandsDeployEnsureKvNamespaceListDataErrorsList;
|
|
180
|
+
|
|
181
|
+
export type CliCommandsDeployEnsureKvNamespaceListErrorDetails = string;
|
|
182
|
+
|
|
183
|
+
export type CliCommandsDeployEnsureKvNamespaceKvTitle = string;
|
|
184
|
+
|
|
185
|
+
export type CliCommandsDeployEnsureKvNamespaceExisting = CliCommandsDeployEnsureKvNamespaceListDataResult | undefined;
|
|
186
|
+
|
|
187
|
+
export type CliCommandsDeployEnsureKvNamespaceCreateResponse = Response;
|
|
188
|
+
|
|
189
|
+
export type CliCommandsDeployEnsureKvNamespaceCreateDataSuccess = boolean;
|
|
190
|
+
|
|
191
|
+
export type CliCommandsDeployEnsureKvNamespaceCreateDataResultId = string;
|
|
192
|
+
|
|
193
|
+
export type CliCommandsDeployEnsureKvNamespaceCreateDataResult = {
|
|
194
|
+
id: CliCommandsDeployEnsureKvNamespaceCreateDataResultId;
|
|
195
|
+
};
|
|
196
|
+
|
|
197
|
+
export type CliCommandsDeployEnsureKvNamespaceCreateDataErrorsList = CliCommandsDeployEnsureKvNamespaceListDataError[] | undefined;
|
|
198
|
+
|
|
199
|
+
export type CliCommandsDeployEnsureKvNamespaceCreateData = {
|
|
200
|
+
success: CliCommandsDeployEnsureKvNamespaceCreateDataSuccess;
|
|
201
|
+
result: CliCommandsDeployEnsureKvNamespaceCreateDataResult;
|
|
202
|
+
errors: CliCommandsDeployEnsureKvNamespaceCreateDataErrorsList;
|
|
203
|
+
};
|
|
204
|
+
|
|
205
|
+
export type CliCommandsDeployEnsureKvNamespaceCreateDataErrors = CliCommandsDeployEnsureKvNamespaceCreateDataErrorsList;
|
|
206
|
+
|
|
207
|
+
export type CliCommandsDeployEnsureKvNamespaceCreateErrorDetails = string;
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* CLI - Commands - Deploy - Get Zone Info.
|
|
211
|
+
*
|
|
212
|
+
* @since 2.0.0
|
|
213
|
+
*/
|
|
214
|
+
export type CliCommandsDeployGetZoneInfoToken = string;
|
|
215
|
+
|
|
216
|
+
export type CliCommandsDeployGetZoneInfoBaseDomain = string;
|
|
217
|
+
|
|
218
|
+
export type CliCommandsDeployGetZoneInfoResultZoneId = string;
|
|
219
|
+
|
|
220
|
+
export type CliCommandsDeployGetZoneInfoResultAccountId = string;
|
|
221
|
+
|
|
222
|
+
export type CliCommandsDeployGetZoneInfoResultZoneName = string;
|
|
223
|
+
|
|
224
|
+
export type CliCommandsDeployGetZoneInfoResult = {
|
|
225
|
+
zoneId: CliCommandsDeployGetZoneInfoResultZoneId;
|
|
226
|
+
accountId: CliCommandsDeployGetZoneInfoResultAccountId;
|
|
227
|
+
zoneName: CliCommandsDeployGetZoneInfoResultZoneName;
|
|
228
|
+
};
|
|
229
|
+
|
|
230
|
+
export type CliCommandsDeployGetZoneInfoReturn = Promise<CliCommandsDeployGetZoneInfoResult>;
|
|
231
|
+
|
|
232
|
+
export type CliCommandsDeployGetZoneInfoParts = string[];
|
|
233
|
+
|
|
234
|
+
export type CliCommandsDeployGetZoneInfoCandidate = string;
|
|
235
|
+
|
|
236
|
+
export type CliCommandsDeployGetZoneInfoCandidates = CliCommandsDeployGetZoneInfoCandidate[];
|
|
237
|
+
|
|
238
|
+
export type CliCommandsDeployGetZoneInfoResponse = Response;
|
|
239
|
+
|
|
240
|
+
export type CliCommandsDeployGetZoneInfoDataSuccess = boolean;
|
|
241
|
+
|
|
242
|
+
export type CliCommandsDeployGetZoneInfoDataResultId = string;
|
|
243
|
+
|
|
244
|
+
export type CliCommandsDeployGetZoneInfoDataResultName = string;
|
|
245
|
+
|
|
246
|
+
export type CliCommandsDeployGetZoneInfoDataResultAccountId = string;
|
|
247
|
+
|
|
248
|
+
export type CliCommandsDeployGetZoneInfoDataResultAccount = {
|
|
249
|
+
id: CliCommandsDeployGetZoneInfoDataResultAccountId;
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
export type CliCommandsDeployGetZoneInfoDataResult = {
|
|
253
|
+
id: CliCommandsDeployGetZoneInfoDataResultId;
|
|
254
|
+
name: CliCommandsDeployGetZoneInfoDataResultName;
|
|
255
|
+
account: CliCommandsDeployGetZoneInfoDataResultAccount;
|
|
256
|
+
};
|
|
257
|
+
|
|
258
|
+
export type CliCommandsDeployGetZoneInfoDataResults = CliCommandsDeployGetZoneInfoDataResult[];
|
|
259
|
+
|
|
260
|
+
export type CliCommandsDeployGetZoneInfoData = {
|
|
261
|
+
success: CliCommandsDeployGetZoneInfoDataSuccess;
|
|
262
|
+
result: CliCommandsDeployGetZoneInfoDataResults;
|
|
263
|
+
};
|
|
264
|
+
|
|
265
|
+
export type CliCommandsDeployGetZoneInfoHasResults = boolean;
|
|
266
|
+
|
|
267
|
+
export type CliCommandsDeployGetZoneInfoFirstResult = CliCommandsDeployGetZoneInfoDataResult | undefined;
|
|
268
|
+
|
|
269
|
+
/**
|
|
270
|
+
* CLI - Commands - Deploy - List Email Routing Rules.
|
|
271
|
+
*
|
|
272
|
+
* @since 2.0.0
|
|
273
|
+
*/
|
|
274
|
+
export type CliCommandsDeployListEmailRoutingRulesToken = string;
|
|
275
|
+
|
|
276
|
+
export type CliCommandsDeployListEmailRoutingRulesZoneId = string;
|
|
277
|
+
|
|
278
|
+
export type CliCommandsDeployListEmailRoutingRulesReturn = Promise<CliCommandsDeployListEmailRoutingRulesRule[]>;
|
|
279
|
+
|
|
280
|
+
export type CliCommandsDeployListEmailRoutingRulesRuleMatcherType = string;
|
|
281
|
+
|
|
282
|
+
export type CliCommandsDeployListEmailRoutingRulesRuleMatcherField = string;
|
|
283
|
+
|
|
284
|
+
export type CliCommandsDeployListEmailRoutingRulesRuleMatcherValue = string;
|
|
285
|
+
|
|
286
|
+
export type CliCommandsDeployListEmailRoutingRulesRuleMatcher = {
|
|
287
|
+
type: CliCommandsDeployListEmailRoutingRulesRuleMatcherType;
|
|
288
|
+
field: CliCommandsDeployListEmailRoutingRulesRuleMatcherField;
|
|
289
|
+
value: CliCommandsDeployListEmailRoutingRulesRuleMatcherValue;
|
|
290
|
+
};
|
|
291
|
+
|
|
292
|
+
export type CliCommandsDeployListEmailRoutingRulesRuleMatchers = CliCommandsDeployListEmailRoutingRulesRuleMatcher[];
|
|
293
|
+
|
|
294
|
+
export type CliCommandsDeployListEmailRoutingRulesRuleActionType = string;
|
|
295
|
+
|
|
296
|
+
export type CliCommandsDeployListEmailRoutingRulesRuleActionValue = string[];
|
|
297
|
+
|
|
298
|
+
export type CliCommandsDeployListEmailRoutingRulesRuleAction = {
|
|
299
|
+
type: CliCommandsDeployListEmailRoutingRulesRuleActionType;
|
|
300
|
+
value: CliCommandsDeployListEmailRoutingRulesRuleActionValue;
|
|
301
|
+
};
|
|
302
|
+
|
|
303
|
+
export type CliCommandsDeployListEmailRoutingRulesRuleActions = CliCommandsDeployListEmailRoutingRulesRuleAction[];
|
|
304
|
+
|
|
305
|
+
export type CliCommandsDeployListEmailRoutingRulesRuleTag = string;
|
|
306
|
+
|
|
307
|
+
export type CliCommandsDeployListEmailRoutingRulesRuleName = string;
|
|
308
|
+
|
|
309
|
+
export type CliCommandsDeployListEmailRoutingRulesRuleEnabled = boolean;
|
|
310
|
+
|
|
311
|
+
export type CliCommandsDeployListEmailRoutingRulesRule = {
|
|
312
|
+
tag: CliCommandsDeployListEmailRoutingRulesRuleTag;
|
|
313
|
+
name: CliCommandsDeployListEmailRoutingRulesRuleName;
|
|
314
|
+
enabled: CliCommandsDeployListEmailRoutingRulesRuleEnabled;
|
|
315
|
+
matchers: CliCommandsDeployListEmailRoutingRulesRuleMatchers;
|
|
316
|
+
actions: CliCommandsDeployListEmailRoutingRulesRuleActions;
|
|
317
|
+
};
|
|
318
|
+
|
|
319
|
+
export type CliCommandsDeployListEmailRoutingRulesResponse = Response;
|
|
320
|
+
|
|
321
|
+
export type CliCommandsDeployListEmailRoutingRulesDataSuccess = boolean;
|
|
322
|
+
|
|
323
|
+
export type CliCommandsDeployListEmailRoutingRulesDataErrorCode = number;
|
|
324
|
+
|
|
325
|
+
export type CliCommandsDeployListEmailRoutingRulesDataErrorMessage = string;
|
|
326
|
+
|
|
327
|
+
export type CliCommandsDeployListEmailRoutingRulesDataError = {
|
|
328
|
+
code: CliCommandsDeployListEmailRoutingRulesDataErrorCode;
|
|
329
|
+
message: CliCommandsDeployListEmailRoutingRulesDataErrorMessage;
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
export type CliCommandsDeployListEmailRoutingRulesDataResult = CliCommandsDeployListEmailRoutingRulesRule[];
|
|
333
|
+
|
|
334
|
+
export type CliCommandsDeployListEmailRoutingRulesDataErrorsList = CliCommandsDeployListEmailRoutingRulesDataError[] | undefined;
|
|
335
|
+
|
|
336
|
+
export type CliCommandsDeployListEmailRoutingRulesData = {
|
|
337
|
+
success: CliCommandsDeployListEmailRoutingRulesDataSuccess;
|
|
338
|
+
result: CliCommandsDeployListEmailRoutingRulesDataResult;
|
|
339
|
+
errors: CliCommandsDeployListEmailRoutingRulesDataErrorsList;
|
|
340
|
+
};
|
|
341
|
+
|
|
342
|
+
export type CliCommandsDeployListEmailRoutingRulesDataErrors = CliCommandsDeployListEmailRoutingRulesDataErrorsList;
|
|
343
|
+
|
|
344
|
+
export type CliCommandsDeployListEmailRoutingRulesErrorDetails = string;
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* CLI - Commands - Deploy - Load Env Token.
|
|
348
|
+
*
|
|
349
|
+
* @since 2.0.0
|
|
350
|
+
*/
|
|
351
|
+
export type CliCommandsDeployLoadEnvTokenReturn = string | undefined;
|
|
352
|
+
|
|
353
|
+
export type CliCommandsDeployLoadEnvTokenEnvValue = string | undefined;
|
|
354
|
+
|
|
355
|
+
export type CliCommandsDeployLoadEnvTokenContent = string;
|
|
356
|
+
|
|
357
|
+
export type CliCommandsDeployLoadEnvTokenMatch = RegExpMatchArray | null;
|
|
358
|
+
|
|
359
|
+
export type CliCommandsDeployLoadEnvTokenValue = string;
|
|
360
|
+
|
|
361
|
+
/**
|
|
362
|
+
* CLI - Commands - Deploy - Print Context Summary.
|
|
363
|
+
*
|
|
364
|
+
* @since 2.0.0
|
|
365
|
+
*/
|
|
366
|
+
export type CliCommandsDeployPrintContextSummaryConfigPath = string;
|
|
367
|
+
|
|
368
|
+
export type CliCommandsDeployPrintContextSummaryReturn = void;
|
|
369
|
+
|
|
370
|
+
export type CliCommandsDeployPrintContextSummaryContexts = LibSchemaContextConfig[];
|
|
371
|
+
|
|
372
|
+
export type CliCommandsDeployPrintContextSummarySettings = LibSchemaSettingsConfig;
|
|
373
|
+
|
|
374
|
+
/**
|
|
375
|
+
* CLI - Commands - Deploy - Print Email Routing Manual Instructions.
|
|
376
|
+
*
|
|
377
|
+
* @since 2.0.0
|
|
378
|
+
*/
|
|
379
|
+
export type CliCommandsDeployPrintEmailRoutingManualInstructionsEmailContextsId = string;
|
|
380
|
+
|
|
381
|
+
export type CliCommandsDeployPrintEmailRoutingManualInstructionsEmailContextsName = string;
|
|
382
|
+
|
|
383
|
+
export type CliCommandsDeployPrintEmailRoutingManualInstructionsEmailContexts = Array<{
|
|
384
|
+
id: CliCommandsDeployPrintEmailRoutingManualInstructionsEmailContextsId;
|
|
385
|
+
name: CliCommandsDeployPrintEmailRoutingManualInstructionsEmailContextsName;
|
|
386
|
+
}>;
|
|
387
|
+
|
|
388
|
+
export type CliCommandsDeployPrintEmailRoutingManualInstructionsBaseDomain = string;
|
|
389
|
+
|
|
390
|
+
export type CliCommandsDeployPrintEmailRoutingManualInstructionsAccountId = string | undefined;
|
|
391
|
+
|
|
392
|
+
export type CliCommandsDeployPrintEmailRoutingManualInstructionsReturn = void;
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* CLI - Commands - Deploy - Prompt For Api Token.
|
|
396
|
+
*
|
|
397
|
+
* @since 2.0.0
|
|
398
|
+
*/
|
|
399
|
+
export type CliCommandsDeployPromptForApiTokenReturn = Promise<string>;
|
|
400
|
+
|
|
401
|
+
export type CliCommandsDeployPromptForApiTokenPromptResultApiToken = string | undefined;
|
|
402
|
+
|
|
403
|
+
export type CliCommandsDeployPromptForApiTokenPromptResult = {
|
|
404
|
+
apiToken: CliCommandsDeployPromptForApiTokenPromptResultApiToken;
|
|
405
|
+
};
|
|
406
|
+
|
|
407
|
+
export type CliCommandsDeployPromptForApiTokenValidateValue = string;
|
|
408
|
+
|
|
409
|
+
export type CliCommandsDeployPromptForApiTokenToken = string;
|
|
410
|
+
|
|
411
|
+
/**
|
|
412
|
+
* CLI - Commands - Deploy - Resolve Api Token.
|
|
413
|
+
*
|
|
414
|
+
* @since 2.0.0
|
|
415
|
+
*/
|
|
416
|
+
export type CliCommandsDeployResolveApiTokenInteractive = boolean;
|
|
417
|
+
|
|
418
|
+
export type CliCommandsDeployResolveApiTokenReturn = Promise<string>;
|
|
419
|
+
|
|
420
|
+
export type CliCommandsDeployResolveApiTokenEnvToken = string | undefined;
|
|
421
|
+
|
|
422
|
+
/**
|
|
423
|
+
* CLI - Commands - Deploy - Run Lint.
|
|
424
|
+
*
|
|
425
|
+
* @since 2.0.0
|
|
426
|
+
*/
|
|
427
|
+
export type CliCommandsDeployRunLintReturn = void;
|
|
428
|
+
|
|
429
|
+
export type CliCommandsDeployRunLintLintResult = SpawnSyncReturns<string>;
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* CLI - Commands - Deploy - Save Env Token.
|
|
433
|
+
*
|
|
434
|
+
* @since 2.0.0
|
|
435
|
+
*/
|
|
436
|
+
export type CliCommandsDeploySaveEnvTokenToken = string;
|
|
437
|
+
|
|
438
|
+
export type CliCommandsDeploySaveEnvTokenReturn = void;
|
|
439
|
+
|
|
440
|
+
export type CliCommandsDeploySaveEnvTokenContent = string;
|
|
441
|
+
|
|
442
|
+
export type CliCommandsDeploySaveEnvTokenRegex = RegExp;
|
|
443
|
+
|
|
444
|
+
/**
|
|
445
|
+
* CLI - Commands - Deploy - Setup Email Routing.
|
|
446
|
+
*
|
|
447
|
+
* @since 2.0.0
|
|
448
|
+
*/
|
|
449
|
+
export type CliCommandsDeploySetupEmailRoutingConfigPath = string;
|
|
450
|
+
|
|
451
|
+
export type CliCommandsDeploySetupEmailRoutingToken = string;
|
|
452
|
+
|
|
453
|
+
export type CliCommandsDeploySetupEmailRoutingReturn = Promise<void>;
|
|
454
|
+
|
|
455
|
+
export type CliCommandsDeploySetupEmailRoutingContexts = LibSchemaContextConfig[];
|
|
456
|
+
|
|
457
|
+
export type CliCommandsDeploySetupEmailRoutingEmailContexts = LibSchemaContextConfig[];
|
|
458
|
+
|
|
459
|
+
export type CliCommandsDeploySetupEmailRoutingSettings = LibSchemaSettingsConfig;
|
|
460
|
+
|
|
461
|
+
export type CliCommandsDeploySetupEmailRoutingWorkerName = string;
|
|
462
|
+
|
|
463
|
+
export type CliCommandsDeploySetupEmailRoutingZoneInfoZoneId = string;
|
|
464
|
+
|
|
465
|
+
export type CliCommandsDeploySetupEmailRoutingZoneInfoAccountId = string;
|
|
466
|
+
|
|
467
|
+
export type CliCommandsDeploySetupEmailRoutingZoneInfoZoneName = string;
|
|
468
|
+
|
|
469
|
+
export type CliCommandsDeploySetupEmailRoutingZoneInfo = {
|
|
470
|
+
zoneId: CliCommandsDeploySetupEmailRoutingZoneInfoZoneId;
|
|
471
|
+
accountId: CliCommandsDeploySetupEmailRoutingZoneInfoAccountId;
|
|
472
|
+
zoneName: CliCommandsDeploySetupEmailRoutingZoneInfoZoneName;
|
|
473
|
+
};
|
|
474
|
+
|
|
475
|
+
export type CliCommandsDeploySetupEmailRoutingZoneId = string;
|
|
476
|
+
|
|
477
|
+
export type CliCommandsDeploySetupEmailRoutingRuleMatcherType = string;
|
|
478
|
+
|
|
479
|
+
export type CliCommandsDeploySetupEmailRoutingRuleMatcherField = string;
|
|
480
|
+
|
|
481
|
+
export type CliCommandsDeploySetupEmailRoutingRuleMatcherValue = string;
|
|
482
|
+
|
|
483
|
+
export type CliCommandsDeploySetupEmailRoutingRuleMatcher = {
|
|
484
|
+
type: CliCommandsDeploySetupEmailRoutingRuleMatcherType;
|
|
485
|
+
field: CliCommandsDeploySetupEmailRoutingRuleMatcherField;
|
|
486
|
+
value: CliCommandsDeploySetupEmailRoutingRuleMatcherValue;
|
|
487
|
+
};
|
|
488
|
+
|
|
489
|
+
export type CliCommandsDeploySetupEmailRoutingRuleMatchers = CliCommandsDeploySetupEmailRoutingRuleMatcher[];
|
|
490
|
+
|
|
491
|
+
export type CliCommandsDeploySetupEmailRoutingRuleActionType = string;
|
|
492
|
+
|
|
493
|
+
export type CliCommandsDeploySetupEmailRoutingRuleActionValue = string[];
|
|
494
|
+
|
|
495
|
+
export type CliCommandsDeploySetupEmailRoutingRuleAction = {
|
|
496
|
+
type: CliCommandsDeploySetupEmailRoutingRuleActionType;
|
|
497
|
+
value: CliCommandsDeploySetupEmailRoutingRuleActionValue;
|
|
498
|
+
};
|
|
499
|
+
|
|
500
|
+
export type CliCommandsDeploySetupEmailRoutingRuleActions = CliCommandsDeploySetupEmailRoutingRuleAction[];
|
|
501
|
+
|
|
502
|
+
export type CliCommandsDeploySetupEmailRoutingRuleTag = string;
|
|
503
|
+
|
|
504
|
+
export type CliCommandsDeploySetupEmailRoutingRuleName = string;
|
|
505
|
+
|
|
506
|
+
export type CliCommandsDeploySetupEmailRoutingRuleEnabled = boolean;
|
|
507
|
+
|
|
508
|
+
export type CliCommandsDeploySetupEmailRoutingRule = {
|
|
509
|
+
tag: CliCommandsDeploySetupEmailRoutingRuleTag;
|
|
510
|
+
name: CliCommandsDeploySetupEmailRoutingRuleName;
|
|
511
|
+
enabled: CliCommandsDeploySetupEmailRoutingRuleEnabled;
|
|
512
|
+
matchers: CliCommandsDeploySetupEmailRoutingRuleMatchers;
|
|
513
|
+
actions: CliCommandsDeploySetupEmailRoutingRuleActions;
|
|
514
|
+
};
|
|
515
|
+
|
|
516
|
+
export type CliCommandsDeploySetupEmailRoutingExistingRules = CliCommandsDeploySetupEmailRoutingRule[];
|
|
517
|
+
|
|
518
|
+
export type CliCommandsDeploySetupEmailRoutingWorkerRules = CliCommandsDeploySetupEmailRoutingRule[];
|
|
519
|
+
|
|
520
|
+
export type CliCommandsDeploySetupEmailRoutingDesiredEmails = Set<string>;
|
|
521
|
+
|
|
522
|
+
export type CliCommandsDeploySetupEmailRoutingCreated = number;
|
|
523
|
+
|
|
524
|
+
export type CliCommandsDeploySetupEmailRoutingKept = number;
|
|
525
|
+
|
|
526
|
+
export type CliCommandsDeploySetupEmailRoutingRemoved = number;
|
|
527
|
+
|
|
528
|
+
export type CliCommandsDeploySetupEmailRoutingEmail = string;
|
|
529
|
+
|
|
530
|
+
export type CliCommandsDeploySetupEmailRoutingRuleExists = boolean;
|
|
531
|
+
|
|
532
|
+
export type CliCommandsDeploySetupEmailRoutingRuleEmail = CliCommandsDeploySetupEmailRoutingRuleMatcher | undefined;
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* CLI - Commands - Deploy - Verify Api Token.
|
|
536
|
+
*
|
|
537
|
+
* @since 2.0.0
|
|
538
|
+
*/
|
|
539
|
+
export type CliCommandsDeployVerifyApiTokenToken = string;
|
|
540
|
+
|
|
541
|
+
export type CliCommandsDeployVerifyApiTokenReturn = Promise<boolean>;
|
|
542
|
+
|
|
543
|
+
export type CliCommandsDeployVerifyApiTokenResponse = Response;
|
|
544
|
+
|
|
545
|
+
export type CliCommandsDeployVerifyApiTokenDataSuccess = boolean;
|
|
546
|
+
|
|
547
|
+
export type CliCommandsDeployVerifyApiTokenData = {
|
|
548
|
+
success: CliCommandsDeployVerifyApiTokenDataSuccess;
|
|
549
|
+
};
|
|
550
|
+
|
|
551
|
+
/**
|
|
552
|
+
* CLI - Commands - Deploy - Verify Permissions.
|
|
553
|
+
*
|
|
554
|
+
* @since 2.0.0
|
|
555
|
+
*/
|
|
556
|
+
export type CliCommandsDeployVerifyPermissionsToken = string;
|
|
557
|
+
|
|
558
|
+
export type CliCommandsDeployVerifyPermissionsBaseDomain = string;
|
|
559
|
+
|
|
560
|
+
export type CliCommandsDeployVerifyPermissionsHasEmailContexts = boolean;
|
|
561
|
+
|
|
562
|
+
export type CliCommandsDeployVerifyPermissionsInteractive = boolean;
|
|
563
|
+
|
|
564
|
+
export type CliCommandsDeployVerifyPermissionsReturn = Promise<string>;
|
|
565
|
+
|
|
566
|
+
export type CliCommandsDeployVerifyPermissionsZoneInfoZoneId = string;
|
|
567
|
+
|
|
568
|
+
export type CliCommandsDeployVerifyPermissionsZoneInfoAccountId = string;
|
|
569
|
+
|
|
570
|
+
export type CliCommandsDeployVerifyPermissionsZoneInfoZoneName = string;
|
|
571
|
+
|
|
572
|
+
export type CliCommandsDeployVerifyPermissionsZoneInfo = {
|
|
573
|
+
zoneId: CliCommandsDeployVerifyPermissionsZoneInfoZoneId;
|
|
574
|
+
accountId: CliCommandsDeployVerifyPermissionsZoneInfoAccountId;
|
|
575
|
+
zoneName: CliCommandsDeployVerifyPermissionsZoneInfoZoneName;
|
|
576
|
+
};
|
|
577
|
+
|
|
578
|
+
export type CliCommandsDeployVerifyPermissionsZoneId = string;
|
|
579
|
+
|
|
580
|
+
export type CliCommandsDeployVerifyPermissionsAccountId = string;
|
|
581
|
+
|
|
582
|
+
export type CliCommandsDeployVerifyPermissionsHasWorkersScripts = boolean;
|
|
583
|
+
|
|
584
|
+
export type CliCommandsDeployVerifyPermissionsWorkersScriptsResponse = Response;
|
|
585
|
+
|
|
586
|
+
export type CliCommandsDeployVerifyPermissionsWorkersScriptsDataSuccess = boolean;
|
|
587
|
+
|
|
588
|
+
export type CliCommandsDeployVerifyPermissionsWorkersScriptsData = {
|
|
589
|
+
success: CliCommandsDeployVerifyPermissionsWorkersScriptsDataSuccess;
|
|
590
|
+
};
|
|
591
|
+
|
|
592
|
+
export type CliCommandsDeployVerifyPermissionsHasWorkersRoutes = boolean;
|
|
593
|
+
|
|
594
|
+
export type CliCommandsDeployVerifyPermissionsWorkersRoutesResponse = Response;
|
|
595
|
+
|
|
596
|
+
export type CliCommandsDeployVerifyPermissionsWorkersRoutesDataSuccess = boolean;
|
|
597
|
+
|
|
598
|
+
export type CliCommandsDeployVerifyPermissionsWorkersRoutesData = {
|
|
599
|
+
success: CliCommandsDeployVerifyPermissionsWorkersRoutesDataSuccess;
|
|
600
|
+
};
|
|
601
|
+
|
|
602
|
+
export type CliCommandsDeployVerifyPermissionsHasKvStorage = boolean;
|
|
603
|
+
|
|
604
|
+
export type CliCommandsDeployVerifyPermissionsKvStorageResponse = Response;
|
|
605
|
+
|
|
606
|
+
export type CliCommandsDeployVerifyPermissionsKvStorageDataSuccess = boolean;
|
|
607
|
+
|
|
608
|
+
export type CliCommandsDeployVerifyPermissionsKvStorageData = {
|
|
609
|
+
success: CliCommandsDeployVerifyPermissionsKvStorageDataSuccess;
|
|
610
|
+
};
|
|
611
|
+
|
|
612
|
+
export type CliCommandsDeployVerifyPermissionsHasEmailRouting = boolean;
|
|
613
|
+
|
|
614
|
+
export type CliCommandsDeployVerifyPermissionsMissing = string[];
|
|
615
|
+
|
|
616
|
+
export type CliCommandsDeployVerifyPermissionsMissingMessage = string;
|
|
617
|
+
|
|
618
|
+
export type CliCommandsDeployVerifyPermissionsPromptResultReady = boolean | undefined;
|
|
619
|
+
|
|
620
|
+
export type CliCommandsDeployVerifyPermissionsPromptResult = {
|
|
621
|
+
ready: CliCommandsDeployVerifyPermissionsPromptResultReady;
|
|
622
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
LibSchemaConfigSchema,
|
|
3
|
+
LibSchemaContextConfig,
|
|
4
|
+
LibSchemaEmailContextConfig,
|
|
5
|
+
LibSchemaHttpContextConfig,
|
|
6
|
+
} from '../../lib/schema.d.ts';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* CLI - Commands - Generate - Generate Wrangler Toml.
|
|
10
|
+
*
|
|
11
|
+
* @since 2.0.0
|
|
12
|
+
*/
|
|
13
|
+
export type CliCommandsGenerateGenerateWranglerTomlProjectRoot = string;
|
|
14
|
+
|
|
15
|
+
export type CliCommandsGenerateGenerateWranglerTomlDefaultPath = string;
|
|
16
|
+
|
|
17
|
+
export type CliCommandsGenerateGenerateWranglerTomlConfigPath = string;
|
|
18
|
+
|
|
19
|
+
export type CliCommandsGenerateGenerateWranglerTomlOutputPath = string | undefined;
|
|
20
|
+
|
|
21
|
+
export type CliCommandsGenerateGenerateWranglerTomlAccountId = string;
|
|
22
|
+
|
|
23
|
+
export type CliCommandsGenerateGenerateWranglerTomlKvNamespaceId = string;
|
|
24
|
+
|
|
25
|
+
export type CliCommandsGenerateGenerateWranglerTomlReturn = void;
|
|
26
|
+
|
|
27
|
+
export type CliCommandsGenerateGenerateWranglerTomlConfig = LibSchemaConfigSchema;
|
|
28
|
+
|
|
29
|
+
export type CliCommandsGenerateGenerateWranglerTomlSettings = LibSchemaConfigSchema['settings'];
|
|
30
|
+
|
|
31
|
+
export type CliCommandsGenerateGenerateWranglerTomlServers = LibSchemaConfigSchema['servers'];
|
|
32
|
+
|
|
33
|
+
export type CliCommandsGenerateGenerateWranglerTomlContexts = LibSchemaContextConfig[];
|
|
34
|
+
|
|
35
|
+
export type CliCommandsGenerateGenerateWranglerTomlCompatibilityDate = string;
|
|
36
|
+
|
|
37
|
+
export type CliCommandsGenerateGenerateWranglerTomlHttpContexts = LibSchemaHttpContextConfig[];
|
|
38
|
+
|
|
39
|
+
export type CliCommandsGenerateGenerateWranglerTomlEmailContexts = LibSchemaEmailContextConfig[];
|
|
40
|
+
|
|
41
|
+
export type CliCommandsGenerateGenerateWranglerTomlRouteLines = string[];
|
|
42
|
+
|
|
43
|
+
export type CliCommandsGenerateGenerateWranglerTomlLines = string[];
|
|
44
|
+
|
|
45
|
+
export type CliCommandsGenerateGenerateWranglerTomlSettingsJson = string;
|
|
46
|
+
|
|
47
|
+
export type CliCommandsGenerateGenerateWranglerTomlServersJson = string;
|
|
48
|
+
|
|
49
|
+
export type CliCommandsGenerateGenerateWranglerTomlContextsJson = string;
|
|
50
|
+
|
|
51
|
+
export type CliCommandsGenerateGenerateWranglerTomlOutputDir = string;
|