1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | 1× 1× | "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * This module exports main property names that are provided by faker.js * More documentation can be found at: https://github.com/marak/Faker.js/ */ exports.default = { address: [ 'zipCode', 'city', 'cityPrefix', 'citySuffix', 'streetName', 'streetAddress', 'streetSuffix', 'streetPrefix', 'secondaryAddress', 'county', 'country', 'countryCode', 'state', 'stateAbbr', 'latitude', 'longitude', ], commerce: [ 'color', 'department', 'productName', 'price', 'productAdjective', 'productMaterial', 'product', ], company: [ 'suffixes', 'companyName', 'companySuffix', 'catchPhrase', 'bs', 'catchPhraseAdjective', 'catchPhraseDescriptor', 'catchPhraseNoun', 'bsAdjective', 'bsBuzz', 'bsNoun', ], database: [ 'column', 'type', 'collation', 'engine', ], date: [ 'past', 'future', 'between', 'recent', 'month', 'weekday', ], finance: [ 'account', 'accountName', 'mask', 'amount', 'transactionType', 'currencyCode', 'currencyName', 'currencySymbol', 'bitcoinAddress', 'iban', 'bic', ], hacker: [ 'abbreviation', 'adjective', 'noun', 'verb', 'ingverb', 'phrase', ], helpers: [ 'randomize', 'slugify', 'replaceSymbolWithNumber', 'replaceSymbols', 'shuffle', 'mustache', 'createCard', 'contextualCard', 'userCard', 'createTransaction', ], image: [ 'avatar', 'imageUrl', 'abstract', 'animals', 'business', 'cats', 'city', 'food', 'nightlife', 'fashion', 'people', 'nature', 'sports', 'technics', 'transport', 'dataUri', ], internet: [ 'avatar', 'email', 'exampleEmail', 'userName', 'protocol', 'url', 'domainName', 'domainSuffix', 'domainWord', 'ip', 'ipv6', 'userAgent', 'color', 'mac', 'password', ], lorem: [ 'word', 'words', 'sentence', 'slug', 'sentences', 'paragraph', 'paragraphs', 'text', 'lines', ], name: [ 'firstName', 'lastName', 'findName', 'jobTitle', 'prefix', 'suffix', 'title', 'jobDescriptor', 'jobArea', 'jobType', ], phone: [ 'phoneNumber', 'phoneNumberFormat', 'phoneFormats', ], random: [ 'number', 'arrayElement', 'objectElement', 'uuid', 'boolean', 'word', 'words', 'image', 'locale', 'alphaNumeric', ], system: [ 'fileName', 'commonFileName', 'mimeType', 'commonFileType', 'commonFileExt', 'fileType', 'fileExt', 'directoryPath', 'filePath', 'server', ], }; |