@newfold/huapi-js 2.1317.0 → 2.1337.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.
- package/package.json +1 -1
- package/src/index.d.ts +195 -6
- package/src/index.js +148 -2
- package/src/index.msw.d.ts +15 -3
- package/src/index.msw.js +76 -4
- package/src/index.schemas.d.ts +279 -42
- package/src/index.schemas.js +35 -0
package/src/index.schemas.js
CHANGED
|
@@ -168,6 +168,36 @@ export const HostingFtpUpdateBodyUserTypeSet = {
|
|
|
168
168
|
quota: 'quota',
|
|
169
169
|
};
|
|
170
170
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
171
|
+
export const HostingEmailSuspendBodyType = {
|
|
172
|
+
account_login: 'account_login',
|
|
173
|
+
account_outgoing: 'account_outgoing',
|
|
174
|
+
account_incoming: 'account_incoming',
|
|
175
|
+
};
|
|
176
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
177
|
+
export const HostingEmailSuspendBodyAction = {
|
|
178
|
+
suspend: 'suspend',
|
|
179
|
+
unsuspend: 'unsuspend',
|
|
180
|
+
};
|
|
181
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
182
|
+
export const HostingEmailForwarderAddBodyType = {
|
|
183
|
+
account: 'account',
|
|
184
|
+
domain: 'domain',
|
|
185
|
+
};
|
|
186
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
187
|
+
export const HostingEmailForwarderAddBodyDestinationType = {
|
|
188
|
+
domain: 'domain',
|
|
189
|
+
discard: 'discard',
|
|
190
|
+
discard_with_error: 'discard_with_error',
|
|
191
|
+
email: 'email',
|
|
192
|
+
pipe: 'pipe',
|
|
193
|
+
system: 'system',
|
|
194
|
+
};
|
|
195
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
196
|
+
export const HostingEmailForwardersListType = {
|
|
197
|
+
account: 'account',
|
|
198
|
+
domain: 'domain',
|
|
199
|
+
};
|
|
200
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
171
201
|
export const HostingEmailAddBodyType = {
|
|
172
202
|
box: 'box',
|
|
173
203
|
domainalias: 'domainalias',
|
|
@@ -229,6 +259,11 @@ export const DbAddBodyType = {
|
|
|
229
259
|
postgres: 'postgres',
|
|
230
260
|
};
|
|
231
261
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
262
|
+
export const AccessLogsType = {
|
|
263
|
+
error: 'error',
|
|
264
|
+
all: 'all',
|
|
265
|
+
};
|
|
266
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
232
267
|
export const BackupListBackupType = {
|
|
233
268
|
full: 'full',
|
|
234
269
|
home: 'home',
|