mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
moved all enums to jslib
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { FieldType } from '../../enums/fieldType.enum';
|
||||
import { FieldType } from '@bitwarden/jslib';
|
||||
|
||||
class FieldData {
|
||||
type: FieldType;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { SecureNoteType } from '../../enums/secureNoteType.enum';
|
||||
import { SecureNoteType } from '@bitwarden/jslib';
|
||||
|
||||
class SecureNoteData {
|
||||
type: SecureNoteType;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { CipherType } from '../../enums/cipherType.enum';
|
||||
import { CipherType } from '@bitwarden/jslib';
|
||||
|
||||
import { CipherData } from '../data/cipherData';
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { EncryptionType } from '../../enums/encryptionType.enum';
|
||||
import { EncryptionType } from '@bitwarden/jslib';
|
||||
|
||||
import ContainerService from '../../services/container.service';
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { FieldType } from '../../enums/fieldType.enum';
|
||||
import { FieldType } from '@bitwarden/jslib';
|
||||
|
||||
import { FieldData } from '../data/fieldData';
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { SecureNoteType } from '../../enums/secureNoteType.enum';
|
||||
import { SecureNoteType } from '@bitwarden/jslib';
|
||||
|
||||
import { SecureNoteData } from '../data/secureNoteData';
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { CipherType } from '../../enums/cipherType.enum';
|
||||
import { CipherType } from '@bitwarden/jslib';
|
||||
|
||||
class CipherRequest {
|
||||
type: CipherType;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { DeviceType } from '../../enums/deviceType.enum';
|
||||
import { DeviceType } from '@bitwarden/jslib';
|
||||
import { PlatformUtilsService } from '../../services/abstractions/platformUtils.service';
|
||||
|
||||
class DeviceRequest {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { DeviceType } from '../../enums/deviceType.enum';
|
||||
import { DeviceType } from '@bitwarden/jslib';
|
||||
|
||||
class DeviceResponse {
|
||||
id: string;
|
||||
|
||||
Reference in New Issue
Block a user