@newfold/huapi-js 2.2011.0 → 2.2026.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 +191 -1
- package/src/index.js +149 -1
- package/src/index.msw.d.ts +13 -1
- package/src/index.msw.js +75 -3
- package/src/index.schemas.d.ts +445 -144
- package/src/index.schemas.js +20 -0
package/src/index.schemas.js
CHANGED
|
@@ -380,6 +380,26 @@ export const AccessLogsType = {
|
|
|
380
380
|
all: 'all',
|
|
381
381
|
};
|
|
382
382
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
383
|
+
export const DomainHealthCacheMode = {
|
|
384
|
+
auto: 'auto',
|
|
385
|
+
cache_only: 'cache_only',
|
|
386
|
+
live: 'live',
|
|
387
|
+
};
|
|
388
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
389
|
+
export const DomainHealthInclude = {
|
|
390
|
+
public: 'public',
|
|
391
|
+
box: 'box',
|
|
392
|
+
xns: 'xns',
|
|
393
|
+
registrar: 'registrar',
|
|
394
|
+
};
|
|
395
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
396
|
+
export const DomainHealthChecksItem = {
|
|
397
|
+
hosting: 'hosting',
|
|
398
|
+
email: 'email',
|
|
399
|
+
ssl_prereq: 'ssl_prereq',
|
|
400
|
+
cdn: 'cdn',
|
|
401
|
+
};
|
|
402
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
383
403
|
export const BackupPrefSetStatusBodyStatus = {
|
|
384
404
|
enable: 'enable',
|
|
385
405
|
disable: 'disable',
|