@newfold/huapi-js 2.1893.0 → 2.1900.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 +327 -1
- package/src/index.js +257 -1
- package/src/index.msw.d.ts +21 -1
- package/src/index.msw.js +123 -3
- package/src/index.schemas.d.ts +480 -283
- package/src/index.schemas.js +11 -0
package/src/index.schemas.js
CHANGED
|
@@ -358,6 +358,17 @@ export const BackupPrefSetStatusBodyStatus = {
|
|
|
358
358
|
disable: 'disable',
|
|
359
359
|
};
|
|
360
360
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
361
|
+
export const BackupCreateOndemandV1BodyIncludeBackupTarLink = {
|
|
362
|
+
NUMBER_0: 0,
|
|
363
|
+
NUMBER_1: 1,
|
|
364
|
+
};
|
|
365
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
366
|
+
export const BackupCreateOndemandV1BodyBackupType = {
|
|
367
|
+
home: 'home',
|
|
368
|
+
db: 'db',
|
|
369
|
+
home_db: 'home_db',
|
|
370
|
+
};
|
|
371
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
361
372
|
export const BackupListBackupType = {
|
|
362
373
|
full: 'full',
|
|
363
374
|
home: 'home',
|