bfg-common 1.5.728 → 1.5.729

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.
@@ -160,7 +160,7 @@ export interface UI_I_CreateBackupForm {
160
160
  }
161
161
 
162
162
  export interface UI_I_RestoreForm {
163
- restore_code: 1 | 2 | 3 // 1 - disk only, 2 - existing, 3 - asNew
163
+ restore_code: 1 | 2 | 3 | 4 // 1 - disk only, 2 - existing, 3 - as New, 4 - as new and copy other disks
164
164
  backup_storage: string
165
165
  bucket: string
166
166
  backup: string
@@ -47,6 +47,7 @@ export const readyToCompleteOptions = (
47
47
  })
48
48
  break
49
49
  case restoreCodes.asNew:
50
+ case restoreCodes.asNewAndCopy:
50
51
  result.push({
51
52
  label: localization.common.vmName,
52
53
  value: model.pvm.name,
@@ -18,7 +18,7 @@ export const backupsTypesFunc = (
18
18
  },
19
19
  {
20
20
  text: localization.common.restoreAsNewAndCopy,
21
- value: restoreCodes.asNew,
21
+ value: restoreCodes.asNewAndCopy,
22
22
  testId: 'backup-type-restore-as-new',
23
23
  },
24
24
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.728",
4
+ "version": "1.5.729",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",