@newfold/huapi-js 2.1933.0 → 2.1974.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 +200 -7
- package/src/index.js +168 -10
- package/src/index.msw.d.ts +13 -1
- package/src/index.msw.js +75 -3
- package/src/index.schemas.d.ts +374 -171
- package/src/index.schemas.js +11 -0
package/src/index.schemas.js
CHANGED
|
@@ -371,6 +371,10 @@ export const DbAddBodyType = {
|
|
|
371
371
|
postgres: 'postgres',
|
|
372
372
|
};
|
|
373
373
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
374
|
+
export const HostingAdvancedConsoleProtocol = {
|
|
375
|
+
ssh: 'ssh',
|
|
376
|
+
};
|
|
377
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
374
378
|
export const AccessLogsType = {
|
|
375
379
|
error: 'error',
|
|
376
380
|
all: 'all',
|
|
@@ -444,6 +448,13 @@ export const BackupNotificationsEmailFailedBackups = {
|
|
|
444
448
|
NUMBER_1: 1,
|
|
445
449
|
};
|
|
446
450
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
451
|
+
export const AnnouncementSeverity = {
|
|
452
|
+
NEUTRAL: 'NEUTRAL',
|
|
453
|
+
SUCCESS: 'SUCCESS',
|
|
454
|
+
WARNING: 'WARNING',
|
|
455
|
+
ERROR: 'ERROR',
|
|
456
|
+
};
|
|
457
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
447
458
|
export const AutoresponderCharset = {
|
|
448
459
|
'ansi_x3110-1983': 'ansi_x3.110-1983',
|
|
449
460
|
'ansi_x34-1968': 'ansi_x3.4-1968',
|