1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

remove model window assignments

This commit is contained in:
Kyle Spearrin
2018-01-20 14:12:18 -05:00
parent e753becd33
commit e157d5be6d
41 changed files with 41 additions and 164 deletions

View File

@@ -3,7 +3,7 @@ import { AttachmentData } from '../data/attachmentData';
import { CipherString } from './cipherString';
import Domain from './domain';
class Attachment extends Domain {
export class Attachment extends Domain {
id: string;
url: string;
size: number;
@@ -38,6 +38,3 @@ class Attachment extends Domain {
}, orgId);
}
}
export { Attachment };
(window as any).Attachment = Attachment;

View File

@@ -3,7 +3,7 @@ import { CardData } from '../data/cardData';
import { CipherString } from './cipherString';
import Domain from './domain';
class Card extends Domain {
export class Card extends Domain {
cardholderName: CipherString;
brand: CipherString;
number: CipherString;
@@ -38,6 +38,3 @@ class Card extends Domain {
}, orgId);
}
}
export { Card };
(window as any).Card = Card;

View File

@@ -13,7 +13,7 @@ import { Identity } from './identity';
import { Login } from './login';
import { SecureNote } from './secureNote';
class Cipher extends Domain {
export class Cipher extends Domain {
id: string;
organizationId: string;
folderId: string;
@@ -187,6 +187,3 @@ class Cipher extends Domain {
return model;
}
}
export { Cipher };
(window as any).Cipher = Cipher;

View File

@@ -2,7 +2,7 @@ import { EncryptionType } from '../../enums/encryptionType';
import { CryptoService } from '../../abstractions/crypto.service';
class CipherString {
export class CipherString {
encryptedString?: string;
encryptionType?: EncryptionType;
decryptedValue?: string;
@@ -111,6 +111,3 @@ class CipherString {
});
}
}
export { CipherString };
(window as any).CipherString = CipherString;

View File

@@ -3,7 +3,7 @@ import { CollectionData } from '../data/collectionData';
import { CipherString } from './cipherString';
import Domain from './domain';
class Collection extends Domain {
export class Collection extends Domain {
id: string;
organizationId: string;
name: CipherString;
@@ -32,6 +32,3 @@ class Collection extends Domain {
}, this.organizationId);
}
}
export { Collection };
(window as any).Collection = Collection;

View File

@@ -5,7 +5,7 @@ import { FieldData } from '../data/fieldData';
import { CipherString } from './cipherString';
import Domain from './domain';
class Field extends Domain {
export class Field extends Domain {
name: CipherString;
vault: CipherString;
type: FieldType;
@@ -34,6 +34,3 @@ class Field extends Domain {
}, orgId);
}
}
export { Field };
(window as any).Field = Field;

View File

@@ -3,7 +3,7 @@ import { FolderData } from '../data/folderData';
import { CipherString } from './cipherString';
import Domain from './domain';
class Folder extends Domain {
export class Folder extends Domain {
id: string;
name: CipherString;
@@ -29,6 +29,3 @@ class Folder extends Domain {
}, null);
}
}
export { Folder };
(window as any).Folder = Folder;

View File

@@ -3,7 +3,7 @@ import { IdentityData } from '../data/identityData';
import { CipherString } from './cipherString';
import Domain from './domain';
class Identity extends Domain {
export class Identity extends Domain {
title: CipherString;
firstName: CipherString;
middleName: CipherString;
@@ -74,6 +74,3 @@ class Identity extends Domain {
}, orgId);
}
}
export { Identity };
(window as any).Identity = Identity;

View File

@@ -3,7 +3,7 @@ import { LoginData } from '../data/loginData';
import { CipherString } from './cipherString';
import Domain from './domain';
class Login extends Domain {
export class Login extends Domain {
uri: CipherString;
username: CipherString;
password: CipherString;
@@ -32,6 +32,3 @@ class Login extends Domain {
}, orgId);
}
}
export { Login };
(window as any).Login = Login;

View File

@@ -4,7 +4,7 @@ import { SecureNoteData } from '../data/secureNoteData';
import Domain from './domain';
class SecureNote extends Domain {
export class SecureNote extends Domain {
type: SecureNoteType;
constructor(obj?: SecureNoteData, alreadyEncrypted: boolean = false) {
@@ -22,6 +22,3 @@ class SecureNote extends Domain {
};
}
}
export { SecureNote };
(window as any).SecureNote = SecureNote;