From 1fa2f7f0d3a27fc8fffadee3dbaf814bb1d54243 Mon Sep 17 00:00:00 2001 From: Jeroen Claassens Date: Thu, 6 Aug 2020 19:14:15 +0200 Subject: [PATCH] fix: cover data changes Covered until and including "Add Zarude and Celebi events" or 5db71751189ec30153ee07f7dd800499d516cfaf --- package.json | 30 +- scripts/auto/pokemonlearnsets.ts | 4 +- scripts/auto/sha-tracker.json | 5 +- scripts/auto/smogontiers.ts | 6 +- scripts/auto/utils.ts | 4 +- src/assets/formats.json | 208 +++--- src/assets/learnsets.ts | 446 ++++--------- src/assets/moves.ts | 5 +- src/assets/pokedex.ts | 38 +- yarn.lock | 1042 ++++++++++++------------------ 10 files changed, 733 insertions(+), 1055 deletions(-) diff --git a/package.json b/package.json index ca8097258c..e2afbc4317 100644 --- a/package.json +++ b/package.json @@ -36,36 +36,36 @@ "graphql": "^15.3.0" }, "devDependencies": { - "@commitlint/cli": "^8.3.5", - "@commitlint/config-conventional": "^8.3.4", + "@commitlint/cli": "^9.1.1", + "@commitlint/config-conventional": "^9.1.1", "@favware/eslint-config": "^5.1.0", "@favware/ts-config": "^3.0.2", - "@graphql-codegen/c-sharp": "^1.17.4", - "@graphql-codegen/cli": "^1.17.4", - "@graphql-codegen/schema-ast": "^1.17.4", - "@graphql-codegen/typescript": "^1.17.4", - "@graphql-codegen/typescript-resolvers": "^1.17.4", + "@graphql-codegen/c-sharp": "^1.17.7", + "@graphql-codegen/cli": "^1.17.7", + "@graphql-codegen/schema-ast": "^1.17.7", + "@graphql-codegen/typescript": "^1.17.7", + "@graphql-codegen/typescript-resolvers": "^1.17.7", "@klasa/cache": "^0.0.3", "@klasa/console": "^0.0.3", "@klasa/timestamp": "^0.0.1", "@types/express": "^4.17.7", "@types/glob": "^7.1.3", - "@types/jest": "^26.0.7", - "@types/node": "^14.0.26", + "@types/jest": "^26.0.9", + "@types/node": "^14.0.27", "@types/node-fetch": "^2.5.7", - "apollo-server-express": "^2.16.0", + "apollo-server-express": "^2.16.1", "class-validator": "^0.12.2", "cz-conventional-changelog": "^3.2.0", "express": "^4.17.1", "fast-xml-parser": "^3.17.4", "fs-nextra": "^0.5.1", - "fuse.js": "^6.4.0", + "fuse.js": "^6.4.1", "glob": "^7.1.6", "graphql-parse-resolve-info": "^4.7.0", "graphql-type-json": "^0.3.2", "husky": "^4.2.5", - "jest": "^26.1.0", - "jest-circus": "^26.1.0", + "jest": "^26.2.2", + "jest-circus": "^26.2.2", "lint-staged": "^10.2.11", "node-fetch": "^2.6.0", "npm-run-all": "^4.1.5", @@ -73,9 +73,9 @@ "reflect-metadata": "^0.1.13", "replace-in-file": "^6.1.0", "standard-version": "^8.0.2", - "ts-jest": "^26.1.3", + "ts-jest": "^26.1.4", "ts-node": "^8.10.2", - "type-graphql": "^1.0.0-rc.2", + "type-graphql": "^1.0.0-rc.3", "typescript": "^3.9.7", "utility-types": "^3.10.0" }, diff --git a/scripts/auto/pokemonlearnsets.ts b/scripts/auto/pokemonlearnsets.ts index 258e42d91f..b5fa0b12fd 100644 --- a/scripts/auto/pokemonlearnsets.ts +++ b/scripts/auto/pokemonlearnsets.ts @@ -46,13 +46,13 @@ const autoUpdateLearnsets = async () => { return process.exit(0); } - const { BattleLearnsets } = await importFileFromWeb({ + const { Learnsets } = await importFileFromWeb({ url: 'https://raw.githubusercontent.com/smogon/pokemon-showdown/master/data/learnsets.ts', temporaryFileName: 'learnsets.ts' }); const output = new Map(); - for (const [pokemon, learnset] of Object.entries(BattleLearnsets)) { + for (const [pokemon, learnset] of Object.entries(Learnsets)) { if (learnset.eventOnly === undefined && learnset.learnset === undefined) continue; if (learnset.eventOnly !== undefined && learnset.learnset === undefined) output.set(pokemon, { eventOnly: ['See base forme of this Pokémon'] }); diff --git a/scripts/auto/sha-tracker.json b/scripts/auto/sha-tracker.json index 47c7235a73..0a28780b27 100644 --- a/scripts/auto/sha-tracker.json +++ b/scripts/auto/sha-tracker.json @@ -1 +1,4 @@ -{"tiersLastSha":"38a74d7a9e85f6049f4f7f8d8cf4b9d1204878b5","learnsetsLastSha":"00b88b521d15b7c118053d96284bbdcbe85cfadb"} +{ + "tiersLastSha": "5db71751189ec30153ee07f7dd800499d516cfaf", + "learnsetsLastSha": "5db71751189ec30153ee07f7dd800499d516cfaf" +} diff --git a/scripts/auto/smogontiers.ts b/scripts/auto/smogontiers.ts index de56f650d0..7a98663dda 100644 --- a/scripts/auto/smogontiers.ts +++ b/scripts/auto/smogontiers.ts @@ -34,14 +34,14 @@ const autoUpdateSmogonTiers = async () => { return process.exit(0); } - const { BattleFormatsData } = await importFileFromWeb({ + const { FormatsData } = await importFileFromWeb({ url: 'https://raw.githubusercontent.com/smogon/pokemon-showdown/master/data/formats-data.ts', temporaryFileName: 'tiers.ts' }); const output: Record = {}; - for (const mon in BattleFormatsData) { - const tier = BattleFormatsData[mon].isNonstandard || BattleFormatsData[mon].tier; + for (const mon in FormatsData) { + const tier = FormatsData[mon].isNonstandard || FormatsData[mon].tier; output[mon] = tier || 'Refer to base form / unknown'; } diff --git a/scripts/auto/utils.ts b/scripts/auto/utils.ts index 1e75bb6b59..522e418962 100644 --- a/scripts/auto/utils.ts +++ b/scripts/auto/utils.ts @@ -44,8 +44,8 @@ export interface DataJSON { learnsetsLastSha: string; } -export type SmogonTiersData = Record<'BattleFormatsData', Record>; -export type SmogonLearnsetData = Record<'BattleLearnsets', Record>; +export type SmogonTiersData = Record<'FormatsData', Record>; +export type SmogonLearnsetData = Record<'Learnsets', Record>; interface SpeciesFormatsData { comboMoves?: readonly string[]; diff --git a/src/assets/formats.json b/src/assets/formats.json index 3ab4ec0549..a9dd19e2f5 100644 --- a/src/assets/formats.json +++ b/src/assets/formats.json @@ -1,7 +1,7 @@ { "bulbasaur": "LC", "ivysaur": "NFE", - "venusaur": "UUBL", + "venusaur": "OU", "venusaurmega": "Past", "venusaurgmax": "Gigantamax", "charmander": "LC", @@ -12,7 +12,7 @@ "charizardgmax": "Gigantamax", "squirtle": "LC", "wartortle": "NFE", - "blastoise": "UU", + "blastoise": "RU", "blastoisemega": "Past", "blastoisegmax": "Gigantamax", "caterpie": "LC", @@ -38,24 +38,24 @@ "arbok": "Past", "pichu": "LC", "pichuspikyeared": "Past", - "pikachu": "PU", + "pikachu": "NFE", "pikachucosplay": "Past", "pikachurockstar": "Past", "pikachubelle": "Past", "pikachupopstar": "Past", "pikachuphd": "Past", "pikachulibre": "Past", - "pikachuoriginal": "PU", - "pikachuhoenn": "PU", - "pikachusinnoh": "PU", - "pikachuunova": "PU", - "pikachukalos": "PU", - "pikachualola": "PU", - "pikachupartner": "PU", + "pikachuoriginal": "(PU)", + "pikachuhoenn": "(PU)", + "pikachusinnoh": "(PU)", + "pikachuunova": "(PU)", + "pikachukalos": "(PU)", + "pikachualola": "(PU)", + "pikachupartner": "(PU)", "pikachustarter": "LGPE", "pikachugmax": "Gigantamax", "pikachuworld": "Unobtainable", - "raichu": "PU", + "raichu": "(PU)", "raichualola": "RUBL", "sandshrew": "LC", "sandshrewalola": "LC", @@ -72,7 +72,7 @@ "clefable": "OU", "vulpix": "LC", "vulpixalola": "LC Uber", - "ninetales": "RUBL", + "ninetales": "RU", "ninetalesalola": "UUBL", "igglybuff": "LC", "jigglypuff": "NFE", @@ -83,15 +83,15 @@ "oddish": "LC", "gloom": "NFE", "vileplume": "RU", - "bellossom": "PU", + "bellossom": "(PU)", "paras": "Past", "parasect": "Past", "venonat": "Past", "venomoth": "Past", "diglett": "LC", "diglettalola": "LC", - "dugtrio": "NU", - "dugtrioalola": "NU", + "dugtrio": "PU", + "dugtrioalola": "PU", "meowth": "LC", "meowthalola": "LC", "meowthgalar": "LC", @@ -104,11 +104,11 @@ "mankey": "Past", "primeape": "Past", "growlithe": "LC", - "arcanine": "UU", + "arcanine": "RU", "poliwag": "LC", "poliwhirl": "NFE", - "poliwrath": "UU", - "politoed": "RU", + "poliwrath": "RU", + "politoed": "NU", "abra": "LC", "kadabra": "PU", "alakazam": "OU", @@ -136,14 +136,14 @@ "slowpokegalar": "LC", "slowbro": "OU", "slowbromega": "Past", - "slowbrogalar": "UU", + "slowbrogalar": "RU", "slowking": "UU", "magnemite": "LC", - "magneton": "RU", + "magneton": "NU", "magnezone": "OU", "farfetchd": "(PU)", "farfetchdgalar": "LC", - "sirfetchd": "UU", + "sirfetchd": "RUBL", "doduo": "Past", "dodrio": "Past", "seel": "Past", @@ -160,7 +160,7 @@ "gengarmega": "Past", "gengargmax": "Gigantamax", "onix": "LC", - "steelix": "UU", + "steelix": "RU", "steelixmega": "Past", "drowzee": "Past", "hypno": "Past", @@ -187,19 +187,19 @@ "weezinggalar": "UU", "rhyhorn": "LC", "rhydon": "RU", - "rhyperior": "UU", + "rhyperior": "RU", "happiny": "LC", "chansey": "OU", - "blissey": "UU", + "blissey": "OU", "tangela": "PU", "tangrowth": "OU", - "kangaskhan": "PUBL", + "kangaskhan": "NU", "kangaskhanmega": "Past", "horsea": "LC", "seadra": "NFE", "kingdra": "OU", "goldeen": "LC", - "seaking": "PU", + "seaking": "(PU)", "staryu": "LC", "starmie": "UU", "mimejr": "LC", @@ -219,22 +219,22 @@ "magmortar": "Past", "pinsir": "PU", "pinsirmega": "Past", - "tauros": "NUBL", + "tauros": "RU", "magikarp": "LC", "gyarados": "UUBL", "gyaradosmega": "Past", "lapras": "PU", "laprasgmax": "Gigantamax", - "ditto": "RU", + "ditto": "NU", "eevee": "LC", "eeveestarter": "LGPE", "eeveegmax": "Gigantamax", "vaporeon": "RU", "jolteon": "NU", - "flareon": "NU", + "flareon": "PU", "espeon": "RU", - "umbreon": "UU", - "leafeon": "PU", + "umbreon": "RU", + "leafeon": "(PU)", "glaceon": "PU", "sylveon": "UU", "porygon": "LC", @@ -247,7 +247,7 @@ "aerodactyl": "Past", "aerodactylmega": "Past", "munchlax": "LC", - "snorlax": "UU", + "snorlax": "RU", "snorlaxgmax": "Gigantamax", "articuno": "Past", "zapdos": "Past", @@ -279,7 +279,7 @@ "chinchou": "LC", "lanturn": "NU", "togepi": "LC", - "togetic": "PU", + "togetic": "NFE", "togekiss": "OU", "natu": "LC", "xatu": "RU", @@ -313,7 +313,7 @@ "girafarig": "Past", "pineco": "Past", "forretress": "Past", - "dunsparce": "PU", + "dunsparce": "(PU)", "gligar": "Past", "gliscor": "Past", "snubbull": "Past", @@ -338,7 +338,7 @@ "octillery": "(PU)", "delibird": "(PU)", "mantyke": "LC", - "mantine": "UU", + "mantine": "RU", "skarmory": "UU", "houndour": "Past", "houndoom": "Past", @@ -374,7 +374,7 @@ "mightyena": "Past", "zigzagoon": "LC", "zigzagoongalar": "LC", - "linoone": "RUBL", + "linoone": "RU", "linoonegalar": "NFE", "obstagoon": "UU", "wurmple": "Past", @@ -394,7 +394,7 @@ "pelipper": "OU", "ralts": "LC", "kirlia": "NFE", - "gardevoir": "UU", + "gardevoir": "RU", "gardevoirmega": "Past", "gallade": "NUBL", "gallademega": "Past", @@ -406,11 +406,11 @@ "vigoroth": "Past", "slaking": "Past", "nincada": "LC", - "ninjask": "PUBL", + "ninjask": "NU", "shedinja": "(PU)", "whismur": "LC", "loudred": "NFE", - "exploud": "UU", + "exploud": "RU", "makuhita": "Past", "hariyama": "Past", "nosepass": "Past", @@ -441,19 +441,19 @@ "gulpin": "Past", "swalot": "Past", "carvanha": "LC", - "sharpedo": "UU", + "sharpedo": "RU", "sharpedomega": "Past", "wailmer": "LC", "wailord": "(PU)", "numel": "Past", "camerupt": "Past", "cameruptmega": "Past", - "torkoal": "RU", + "torkoal": "OU", "spoink": "Past", "grumpig": "Past", "spinda": "Past", "trapinch": "LC", - "vibrava": "PU", + "vibrava": "NFE", "flygon": "UU", "cacnea": "Past", "cacturne": "Past", @@ -467,7 +467,7 @@ "barboach": "LC", "whiscash": "(PU)", "corphish": "LC", - "crawdaunt": "UU", + "crawdaunt": "OU", "baltoy": "LC", "claydol": "RU", "lileep": "Past", @@ -475,7 +475,7 @@ "anorith": "Past", "armaldo": "Past", "feebas": "LC", - "milotic": "UU", + "milotic": "RU", "castform": "Past", "castformsunny": "Past", "castformrainy": "Past", @@ -548,7 +548,7 @@ "kricketune": "Past", "shinx": "LC", "luxio": "NFE", - "luxray": "RU", + "luxray": "NU", "cranidos": "Past", "rampardos": "Past", "shieldon": "Past", @@ -559,7 +559,7 @@ "wormadamtrash": "Past", "mothim": "Past", "combee": "LC", - "vespiquen": "PU", + "vespiquen": "(PU)", "pachirisu": "Past", "buizel": "Past", "floatzel": "Past", @@ -571,14 +571,14 @@ "drifloon": "LC Uber", "drifblim": "PU", "buneary": "LC", - "lopunny": "PU", + "lopunny": "(PU)", "lopunnymega": "Past", "glameow": "Past", "purugly": "Past", "stunky": "LC", "skuntank": "NU", "bronzor": "LC", - "bronzong": "UU", + "bronzong": "RU", "chatot": "Past", "spiritomb": "Past", "gible": "Past", @@ -586,7 +586,7 @@ "garchomp": "Past", "garchompmega": "Past", "riolu": "LC", - "lucario": "UU", + "lucario": "RUBL", "lucariomega": "Past", "hippopotas": "LC", "hippowdon": "OU", @@ -603,7 +603,7 @@ "rotom": "NU", "rotomheat": "OU", "rotomwash": "UU", - "rotomfrost": "PUBL", + "rotomfrost": "NU", "rotomfan": "NU", "rotommow": "RU", "uxie": "Past", @@ -653,7 +653,7 @@ "watchog": "Past", "lillipup": "LC", "herdier": "NFE", - "stoutland": "PU", + "stoutland": "(PU)", "purrloin": "LC", "liepard": "NU", "pansage": "Past", @@ -663,7 +663,7 @@ "panpour": "Past", "simipour": "Past", "munna": "LC", - "musharna": "PU", + "musharna": "(PU)", "pidove": "LC", "tranquill": "NFE", "unfezant": "PU", @@ -671,9 +671,9 @@ "zebstrika": "Past", "roggenrola": "LC", "boldore": "NFE", - "gigalith": "UU", + "gigalith": "RU", "woobat": "LC", - "swoobat": "PU", + "swoobat": "(PU)", "drilbur": "LC", "excadrill": "OU", "audino": "Past", @@ -683,14 +683,14 @@ "conkeldurr": "UUBL", "tympole": "LC", "palpitoad": "NFE", - "seismitoad": "UU", + "seismitoad": "RU", "throh": "PU", "sawk": "NU", "sewaddle": "Past", "swadloon": "Past", "leavanny": "Past", "venipede": "LC", - "whirlipede": "PU", + "whirlipede": "NFE", "scolipede": "UUBL", "cottonee": "LC", "whimsicott": "RU", @@ -711,7 +711,7 @@ "crustle": "PU", "scraggy": "LC", "scrafty": "RU", - "sigilyph": "RUBL", + "sigilyph": "RU", "yamask": "LC", "yamaskgalar": "LC", "cofagrigus": "NU", @@ -724,7 +724,7 @@ "garbodor": "NU", "garbodorgmax": "Gigantamax", "zorua": "LC", - "zoroark": "UU", + "zoroark": "RU", "minccino": "LC", "cinccino": "RU", "gothita": "LC Uber", @@ -732,17 +732,17 @@ "gothitelle": "(PU)", "solosis": "LC", "duosion": "NFE", - "reuniclus": "UU", + "reuniclus": "RUBL", "ducklett": "Past", "swanna": "Past", "vanillite": "LC", "vanillish": "NFE", - "vanilluxe": "NUBL", + "vanilluxe": "RU", "deerling": "Past", "sawsbuck": "Past", - "emolga": "PU", + "emolga": "(PU)", "karrablast": "LC", - "escavalier": "UU", + "escavalier": "RU", "foongus": "LC", "amoonguss": "OU", "frillish": "LC", @@ -759,29 +759,29 @@ "eelektrik": "Past", "eelektross": "Past", "elgyem": "LC", - "beheeyem": "PU", + "beheeyem": "(PU)", "litwick": "LC", "lampent": "NFE", "chandelure": "UU", "axew": "LC", - "fraxure": "PU", + "fraxure": "NFE", "haxorus": "UUBL", "cubchoo": "LC", "beartic": "(PU)", "cryogonal": "Past", "shelmet": "LC", - "accelgor": "RU", + "accelgor": "NU", "stunfisk": "PU", "stunfiskgalar": "NU", "mienfoo": "LC", "mienshao": "UU", - "druddigon": "UU", + "druddigon": "RU", "golett": "LC", "golurk": "NU", "pawniard": "PU", - "bisharp": "OU", - "bouffalant": "RU", - "rufflet": "LC Uber", + "bisharp": "UU", + "bouffalant": "NU", + "rufflet": "LC", "braviary": "RU", "vullaby": "LC", "mandibuzz": "OU", @@ -794,7 +794,7 @@ "volcarona": "OU", "cobalion": "UU", "terrakion": "UU", - "virizion": "RUBL", + "virizion": "RU", "tornadus": "Past", "tornadustherian": "Past", "thundurus": "Past", @@ -844,7 +844,7 @@ "skiddo": "Past", "gogoat": "Past", "pancham": "LC", - "pangoro": "UU", + "pangoro": "RUBL", "furfrou": "Past", "espurr": "LC", "meowstic": "PU", @@ -862,9 +862,9 @@ "binacle": "LC", "barbaracle": "RUBL", "skrelp": "LC", - "dragalge": "UU", + "dragalge": "RU", "clauncher": "LC", - "clawitzer": "UU", + "clawitzer": "RU", "helioptile": "LC", "heliolisk": "RU", "tyrunt": "Past", @@ -872,14 +872,14 @@ "amaura": "Past", "aurorus": "Past", "hawlucha": "OU", - "dedenne": "PU", + "dedenne": "(PU)", "carbink": "Past", "goomy": "LC", "sliggoo": "NFE", - "goodra": "RUBL", - "klefki": "UU", + "goodra": "RU", + "klefki": "RU", "phantump": "LC", - "trevenant": "PU", + "trevenant": "(PU)", "pumpkaboo": "LC", "pumpkaboosmall": "LC", "pumpkaboolarge": "LC", @@ -887,13 +887,13 @@ "gourgeist": "PU", "gourgeistsmall": "NU", "gourgeistlarge": "(PU)", - "gourgeistsuper": "NU", + "gourgeistsuper": "PU", "bergmite": "LC", "avalugg": "NU", "noibat": "LC", "noivern": "UU", "xerneas": "Past", - "xerneasneutral": "Gigantamax", + "xerneasneutral": "Custom", "yveltal": "Past", "zygarde": "Past", "zygarde10": "Past", @@ -933,7 +933,7 @@ "ribombeetotem": "Past", "rockruff": "LC", "rockruffdusk": "LC", - "lycanroc": "UU", + "lycanroc": "RU", "lycanrocmidnight": "PU", "lycanrocdusk": "UU", "wishiwashi": "NU", @@ -943,10 +943,10 @@ "mudbray": "LC", "mudsdale": "RU", "dewpider": "LC", - "araquanid": "UU", + "araquanid": "RU", "araquanidtotem": "Past", "fomantis": "LC", - "lurantis": "RU", + "lurantis": "NU", "lurantistotem": "Past", "morelull": "LC", "shiinotic": "(PU)", @@ -958,11 +958,11 @@ "bounsweet": "LC", "steenee": "NFE", "tsareena": "UU", - "comfey": "UU", + "comfey": "RU", "oranguru": "(PU)", "passimian": "RU", "wimpod": "LC", - "golisopod": "UU", + "golisopod": "RU", "sandygast": "LC", "palossand": "UU", "pyukumuku": "(PU)", @@ -974,7 +974,7 @@ "silvallyelectric": "PUBL", "silvallyfairy": "RU", "silvallyfighting": "PUBL", - "silvallyfire": "NU", + "silvallyfire": "PUBL", "silvallyflying": "PUBL", "silvallyghost": "NU", "silvallygrass": "PUBL", @@ -983,19 +983,19 @@ "silvallypoison": "PUBL", "silvallypsychic": "PUBL", "silvallyrock": "PU", - "silvallysteel": "NU", + "silvallysteel": "RU", "silvallywater": "NU", "minior": "Past", "miniormeteor": "Past", "komala": "Past", - "turtonator": "RU", + "turtonator": "NUBL", "togedemaru": "NU", "togedemarutotem": "Past", "mimikyu": "UU", "mimikyutotem": "Past", "mimikyubustedtotem": "Past", "bruxish": "Past", - "drampa": "RUBL", + "drampa": "RU", "dhelmise": "RU", "jangmoo": "LC", "hakamoo": "NFE", @@ -1020,8 +1020,8 @@ "necrozmaduskmane": "Uber", "necrozmadawnwings": "Uber", "necrozmaultra": "Past", - "magearna": "OU", - "magearnaoriginal": "OU", + "magearna": "Uber", + "magearnaoriginal": "Refer to base form / unknown", "marshadow": "Uber", "poipole": "Past", "naganadel": "Past", @@ -1037,11 +1037,11 @@ "rillaboomgmax": "Gigantamax", "scorbunny": "LC", "raboot": "PU", - "cinderace": "OU", + "cinderace": "Uber", "cinderacegmax": "Gigantamax", "sobble": "LC", "drizzile": "NFE", - "inteleon": "RUBL", + "inteleon": "RU", "inteleongmax": "Gigantamax", "skwovet": "LC", "greedent": "(PU)", @@ -1054,7 +1054,7 @@ "orbeetle": "PUBL", "orbeetlegmax": "Gigantamax", "nickit": "LC", - "thievul": "PU", + "thievul": "PUBL", "gossifleur": "LC", "eldegoss": "NU", "wooloo": "LC", @@ -1065,11 +1065,11 @@ "yamper": "LC", "boltund": "PU", "rolycoly": "LC", - "carkol": "PU", + "carkol": "NFE", "coalossal": "RU", "coalossalgmax": "Gigantamax", "applin": "LC", - "flapple": "NU", + "flapple": "PUBL", "flapplegmax": "Gigantamax", "appletun": "PU", "appletungmax": "Gigantamax", @@ -1078,7 +1078,7 @@ "sandacondagmax": "Gigantamax", "cramorant": "NU", "arrokuda": "LC", - "barraskewda": "UU", + "barraskewda": "RU", "toxel": "LC", "toxtricity": "UU", "toxtricitylowkey": "UU", @@ -1088,7 +1088,7 @@ "centiskorch": "RU", "centiskorchgmax": "Gigantamax", "clobbopus": "LC", - "grapploct": "PU", + "grapploct": "(PU)", "sinistea": "LC", "sinisteaantique": "LC", "polteageist": "UU", @@ -1108,13 +1108,13 @@ "pincurchin": "RU", "snom": "LC", "frosmoth": "RU", - "stonjourner": "PU", + "stonjourner": "(PU)", "eiscue": "(PU)", - "indeedee": "UU", - "indeedeef": "RUBL", - "morpeko": "NU", + "indeedee": "RUBL", + "indeedeef": "RU", + "morpeko": "PU", "cufant": "LC", - "copperajah": "UU", + "copperajah": "RU", "copperajahgmax": "Gigantamax", "dracozolt": "UUBL", "arctozolt": "PUBL", @@ -1136,7 +1136,7 @@ "urshifurapidstrike": "OU", "urshifugmax": "Gigantamax", "urshifurapidstrikegmax": "Gigantamax", - "zarude": "Unobtainable", + "zarude": "OU", "zarudedada": "Unobtainable", "missingno": "Custom", "syclar": "CAP", @@ -1193,7 +1193,9 @@ "swirlpool": "CAP", "coribalis": "CAP", "snaelstrom": "CAP", + "justyke": "CAP", "equilibra": "CAP", + "solotl": "CAP", "astrolotl": "CAP", "pokestarsmeargle": "Custom", "pokestarufo": "Custom", diff --git a/src/assets/learnsets.ts b/src/assets/learnsets.ts index edb2359c5c..3a7fe564e2 100644 --- a/src/assets/learnsets.ts +++ b/src/assets/learnsets.ts @@ -2449,306 +2449,11 @@ export default new GraphQLCache([ wildcharge: ['6M', '6L50'] } ], - [ - 'pikachurockstar', - { - agility: ['6L45'], - attract: ['6M'], - brickbreak: ['6M'], - chargebeam: ['6M'], - confide: ['6M'], - covet: ['6T'], - dig: ['6M'], - discharge: ['6L34'], - doubleteam: ['6M', '6L23'], - echoedvoice: ['6M'], - electroball: ['6L13', '6S0'], - electroweb: ['6T'], - facade: ['6M'], - feint: ['6L21'], - flash: ['6M'], - fling: ['6M'], - focuspunch: ['6T'], - frustration: ['6M'], - grassknot: ['6M'], - growl: ['6L5'], - helpinghand: ['6T'], - hiddenpower: ['6M'], - irontail: ['6T'], - knockoff: ['6T'], - lightscreen: ['6M', '6L53'], - magnetrise: ['6T'], - meteormash: ['6S0'], - nuzzle: ['6L29'], - playnice: ['6L7'], - protect: ['6M'], - quickattack: ['6L10', '6S0'], - raindance: ['6M'], - rest: ['6M'], - return: ['6M'], - rocksmash: ['6M'], - round: ['6M'], - secretpower: ['6M'], - shockwave: ['6T'], - signalbeam: ['6T'], - slam: ['6L37'], - sleeptalk: ['6M'], - snore: ['6T'], - spark: ['6L26'], - strength: ['6M'], - substitute: ['6M'], - swagger: ['6M'], - tailwhip: ['6L1'], - thunder: ['6M', '6L58'], - thunderbolt: ['6M', '6L42'], - thunderpunch: ['6T'], - thundershock: ['6L1'], - thunderwave: ['6M', '6L18', '6S0'], - toxic: ['6M'], - voltswitch: ['6M'], - wildcharge: ['6M', '6L50'] - } - ], - [ - 'pikachubelle', - { - agility: ['6L45'], - attract: ['6M'], - brickbreak: ['6M'], - chargebeam: ['6M'], - confide: ['6M'], - covet: ['6T'], - dig: ['6M'], - discharge: ['6L34'], - doubleteam: ['6M', '6L23'], - echoedvoice: ['6M'], - electroball: ['6L13', '6S0'], - electroweb: ['6T'], - facade: ['6M'], - feint: ['6L21'], - flash: ['6M'], - fling: ['6M'], - focuspunch: ['6T'], - frustration: ['6M'], - grassknot: ['6M'], - growl: ['6L5'], - helpinghand: ['6T'], - hiddenpower: ['6M'], - iciclecrash: ['6S0'], - irontail: ['6T'], - knockoff: ['6T'], - lightscreen: ['6M', '6L53'], - magnetrise: ['6T'], - nuzzle: ['6L29'], - playnice: ['6L7'], - protect: ['6M'], - quickattack: ['6L10', '6S0'], - raindance: ['6M'], - rest: ['6M'], - return: ['6M'], - rocksmash: ['6M'], - round: ['6M'], - secretpower: ['6M'], - shockwave: ['6T'], - signalbeam: ['6T'], - slam: ['6L37'], - sleeptalk: ['6M'], - snore: ['6T'], - spark: ['6L26'], - strength: ['6M'], - substitute: ['6M'], - swagger: ['6M'], - tailwhip: ['6L1'], - thunder: ['6M', '6L58'], - thunderbolt: ['6M', '6L42'], - thunderpunch: ['6T'], - thundershock: ['6L1'], - thunderwave: ['6M', '6L18', '6S0'], - toxic: ['6M'], - voltswitch: ['6M'], - wildcharge: ['6M', '6L50'] - } - ], - [ - 'pikachupopstar', - { - agility: ['6L45'], - attract: ['6M'], - brickbreak: ['6M'], - chargebeam: ['6M'], - confide: ['6M'], - covet: ['6T'], - dig: ['6M'], - discharge: ['6L34'], - doubleteam: ['6M', '6L23'], - drainingkiss: ['6S0'], - echoedvoice: ['6M'], - electroball: ['6L13', '6S0'], - electroweb: ['6T'], - facade: ['6M'], - feint: ['6L21'], - flash: ['6M'], - fling: ['6M'], - focuspunch: ['6T'], - frustration: ['6M'], - grassknot: ['6M'], - growl: ['6L5'], - helpinghand: ['6T'], - hiddenpower: ['6M'], - irontail: ['6T'], - knockoff: ['6T'], - lightscreen: ['6M', '6L53'], - magnetrise: ['6T'], - nuzzle: ['6L29'], - playnice: ['6L7'], - protect: ['6M'], - quickattack: ['6L10', '6S0'], - raindance: ['6M'], - rest: ['6M'], - return: ['6M'], - rocksmash: ['6M'], - round: ['6M'], - secretpower: ['6M'], - shockwave: ['6T'], - signalbeam: ['6T'], - slam: ['6L37'], - sleeptalk: ['6M'], - snore: ['6T'], - spark: ['6L26'], - strength: ['6M'], - substitute: ['6M'], - swagger: ['6M'], - tailwhip: ['6L1'], - thunder: ['6M', '6L58'], - thunderbolt: ['6M', '6L42'], - thunderpunch: ['6T'], - thundershock: ['6L1'], - thunderwave: ['6M', '6L18', '6S0'], - toxic: ['6M'], - voltswitch: ['6M'], - wildcharge: ['6M', '6L50'] - } - ], - [ - 'pikachuphd', - { - agility: ['6L45'], - attract: ['6M'], - brickbreak: ['6M'], - chargebeam: ['6M'], - confide: ['6M'], - covet: ['6T'], - dig: ['6M'], - discharge: ['6L34'], - doubleteam: ['6M', '6L23'], - echoedvoice: ['6M'], - electricterrain: ['6S0'], - electroball: ['6L13', '6S0'], - electroweb: ['6T'], - facade: ['6M'], - feint: ['6L21'], - flash: ['6M'], - fling: ['6M'], - focuspunch: ['6T'], - frustration: ['6M'], - grassknot: ['6M'], - growl: ['6L5'], - helpinghand: ['6T'], - hiddenpower: ['6M'], - irontail: ['6T'], - knockoff: ['6T'], - lightscreen: ['6M', '6L53'], - magnetrise: ['6T'], - nuzzle: ['6L29'], - playnice: ['6L7'], - protect: ['6M'], - quickattack: ['6L10', '6S0'], - raindance: ['6M'], - rest: ['6M'], - return: ['6M'], - rocksmash: ['6M'], - round: ['6M'], - secretpower: ['6M'], - shockwave: ['6T'], - signalbeam: ['6T'], - slam: ['6L37'], - sleeptalk: ['6M'], - snore: ['6T'], - spark: ['6L26'], - strength: ['6M'], - substitute: ['6M'], - swagger: ['6M'], - tailwhip: ['6L1'], - thunder: ['6M', '6L58'], - thunderbolt: ['6M', '6L42'], - thunderpunch: ['6T'], - thundershock: ['6L1'], - thunderwave: ['6M', '6L18', '6S0'], - toxic: ['6M'], - voltswitch: ['6M'], - wildcharge: ['6M', '6L50'] - } - ], - [ - 'pikachulibre', - { - agility: ['6L45'], - attract: ['6M'], - brickbreak: ['6M'], - chargebeam: ['6M'], - confide: ['6M'], - covet: ['6T'], - dig: ['6M'], - discharge: ['6L34'], - doubleteam: ['6M', '6L23'], - echoedvoice: ['6M'], - electroball: ['6L13', '6S0'], - electroweb: ['6T'], - facade: ['6M'], - feint: ['6L21'], - flash: ['6M'], - fling: ['6M'], - flyingpress: ['6S0'], - focuspunch: ['6T'], - frustration: ['6M'], - grassknot: ['6M'], - growl: ['6L5'], - helpinghand: ['6T'], - hiddenpower: ['6M'], - irontail: ['6T'], - knockoff: ['6T'], - lightscreen: ['6M', '6L53'], - magnetrise: ['6T'], - nuzzle: ['6L29'], - playnice: ['6L7'], - protect: ['6M'], - quickattack: ['6L10', '6S0'], - raindance: ['6M'], - rest: ['6M'], - return: ['6M'], - rocksmash: ['6M'], - round: ['6M'], - secretpower: ['6M'], - shockwave: ['6T'], - signalbeam: ['6T'], - slam: ['6L37'], - sleeptalk: ['6M'], - snore: ['6T'], - spark: ['6L26'], - strength: ['6M'], - substitute: ['6M'], - swagger: ['6M'], - tailwhip: ['6L1'], - thunder: ['6M', '6L58'], - thunderbolt: ['6M', '6L42'], - thunderpunch: ['6T'], - thundershock: ['6L1'], - thunderwave: ['6M', '6L18', '6S0'], - toxic: ['6M'], - voltswitch: ['6M'], - wildcharge: ['6M', '6L50'] - } - ], + ['pikachurockstar', { meteormash: ['6R'] }], + ['pikachubelle', { iciclecrash: ['6R'] }], + ['pikachupopstar', { drainingkiss: ['6R'] }], + ['pikachuphd', { electricterrain: ['6R'] }], + ['pikachulibre', { flyingpress: ['6R'] }], [ 'pikachuoriginal', { @@ -28017,13 +27722,13 @@ export default new GraphQLCache([ flash: ['7V', '6M', '5M', '4M', '3M'], fling: ['8M', '7M', '6M', '5M', '4M'], frustration: ['7M', '7V', '6M', '5M', '4M', '3M'], - futuresight: ['8M', '8L70', '7L64', '7S7', '7V', '6L64', '5L64', '4L64', '3L30', '3S1', '3S3'], + futuresight: ['8M', '8L70', '8S8', '7L64', '7S7', '7V', '6L64', '5L64', '4L64', '3L30', '3S1', '3S3'], gigadrain: ['8M', '7T', '7V', '6T', '5T', '4M', '3M'], gigaimpact: ['8M', '7M', '6M', '5M', '4M'], grassknot: ['8M', '7M', '6M', '5M', '4M'], grassyglide: ['8T'], grassyterrain: ['8M'], - healbell: ['8L1', '7T', '7L1', '7S7', '7V', '6T', '6L1', '6S5', '6S6', '5T', '5L1', '4T', '4L1', '3L1', '3S0', '3S2', '3S3'], + healbell: ['8L1', '8S8', '7T', '7L1', '7S7', '7V', '6T', '6L1', '6S5', '6S6', '5T', '5L1', '4T', '4L1', '3L1', '3S0', '3S2', '3S3'], healblock: ['7L55', '6L55', '5L55', '4L55'], healingwish: ['8L80', '7L73', '6L73', '5L73', '4L73', '4S4'], helpinghand: ['8M', '7T', '6T', '5T', '4T'], @@ -28036,9 +27741,9 @@ export default new GraphQLCache([ leafblade: ['8M'], leafstorm: ['8M', '8L90', '7L82', '6L82', '5L82', '4L82', '4S4'], leechseed: ['8L50', '7L1', '7V', '6L1', '5L1', '4L1', '3L1', '3S2'], - lifedew: ['8L40'], + lifedew: ['8L40', '8S8'], lightscreen: ['8M', '7M', '6M', '5M', '4M', '3M'], - magicalleaf: ['8M', '8L10', '7L19', '6L19', '5L19', '4L19'], + magicalleaf: ['8M', '8L10', '8S8', '7L19', '6L19', '5L19', '4L19'], magiccoat: ['7T', '6T', '5T', '4T'], magicroom: ['8M', '7T', '6T', '5T'], metronome: ['8M', '3T'], @@ -73800,7 +73505,7 @@ export default new GraphQLCache([ brutalswing: ['8M'], bulkup: ['8M'], bulletseed: ['8M'], - closecombat: ['8M'], + closecombat: ['8M', '8S0'], crunch: ['8M'], darkestlariat: ['8M'], darkpulse: ['8M'], @@ -73832,7 +73537,7 @@ export default new GraphQLCache([ mudshot: ['8M'], nastyplot: ['8M'], payback: ['8M'], - powerwhip: ['8M', '8L84'], + powerwhip: ['8M', '8L84', '8S0'], protect: ['8M'], rest: ['8M'], revenge: ['8M'], @@ -73843,7 +73548,7 @@ export default new GraphQLCache([ scratch: ['8L1'], seedbomb: ['8M'], sleeptalk: ['8M'], - snarl: ['8M'], + snarl: ['8M', '8S0'], snore: ['8M'], solarbeam: ['8M'], solarblade: ['8M'], @@ -73851,7 +73556,7 @@ export default new GraphQLCache([ substitute: ['8M'], sunnyday: ['8M'], superpower: ['8M'], - swagger: ['8L54'], + swagger: ['8L54', '8S0'], swift: ['8M'], synthesis: ['8L66'], taunt: ['8M'], @@ -78080,5 +77785,130 @@ export default new GraphQLCache([ wonderroom: ['7T'], workup: ['7M'] } + ], + [ + 'justyke', + { + allyswitch: ['7T'], + aurasphere: ['7L64'], + bulldoze: ['7M'], + confide: ['7M'], + destinybond: ['7L58'], + doubleteam: ['7M'], + drillrun: ['7T'], + earthpower: ['7T', '7L36'], + earthquake: ['7M', '7L52'], + embargo: ['7M'], + facade: ['7M'], + flashcannon: ['7M', '7L41'], + frustration: ['7M'], + guardsplit: ['7L21'], + gyroball: ['7M', '7L17'], + healingwish: ['7L46'], + helpinghand: ['7T'], + hiddenpower: ['7M'], + imprison: ['7L9'], + irondefense: ['7T'], + ironhead: ['7T'], + irontail: ['7T'], + magicroom: ['7T'], + magnetrise: ['7T'], + memento: ['7L46'], + mindreader: ['7L31'], + mirrorshot: ['7L26'], + mudshot: ['7L13'], + mudslap: ['7L5'], + mudsport: ['7L1'], + painsplit: ['7T', '7L70'], + pound: ['7L1'], + powersplit: ['7L21'], + protect: ['7M'], + psychup: ['7M'], + quash: ['7M'], + recycle: ['7T'], + rest: ['7M'], + return: ['7M'], + rockpolish: ['7M'], + rockslide: ['7M'], + rocktomb: ['7M'], + round: ['7M'], + safeguard: ['7M'], + sandstorm: ['7M'], + sleeptalk: ['7M'], + smartstrike: ['7M'], + snore: ['7M'], + substitute: ['7M'], + swagger: ['7M'], + trickroom: ['7M'], + wonderroom: ['7T'], + workup: ['7M'] + } + ], + [ + 'solotl', + { + acrobatics: ['8M'], + agility: ['8M'], + allyswitch: ['8M'], + attract: ['8M'], + batonpass: ['8M'], + breakingswipe: ['8M'], + charm: ['8M', '8L23'], + cosmicpower: ['8M', '8L30'], + dazzlinggleam: ['8M'], + defog: ['8E'], + dracometeor: ['8T'], + dragonbreath: ['8L12'], + dragonpulse: ['8M', '8L45'], + dragonrush: ['8L53'], + dragontail: ['8L26'], + ember: ['8L8'], + encore: ['8M', '8L15'], + endure: ['8M'], + explosion: ['8E'], + facade: ['8M'], + fireblast: ['8M'], + firelash: ['8L37'], + firespin: ['8M'], + flamethrower: ['8M'], + flamewheel: ['8L19'], + flareblitz: ['8M', '8L57'], + healbell: ['8L34'], + healingwish: ['8L49'], + heatwave: ['8M'], + helpinghand: ['8M'], + imprison: ['8M'], + lifedew: ['8E'], + lightscreen: ['8M'], + magicalleaf: ['8M'], + metronome: ['8M'], + mysticalfire: ['8M'], + outrage: ['8M'], + overheat: ['8M'], + pound: ['8L1'], + protect: ['8M'], + reflect: ['8M'], + rest: ['8M'], + round: ['8M'], + safeguard: ['8M'], + sleeptalk: ['8M'], + snore: ['8M'], + solarbeam: ['8M'], + spikes: ['8M'], + storedpower: ['8M'], + substitute: ['8M'], + sunnyday: ['8M'], + swift: ['8M'], + tailwhip: ['8L4'], + taunt: ['8M'], + thunderwave: ['8M'], + toxic: ['8E'], + trick: ['8M'], + twister: ['8E'], + willowisp: ['8M'], + wish: ['8L41'], + workup: ['8M'], + yawn: ['8E'] + } ] ]); diff --git a/src/assets/moves.ts b/src/assets/moves.ts index 3e2c1fb869..9dc4a6073c 100644 --- a/src/assets/moves.ts +++ b/src/assets/moves.ts @@ -9729,7 +9729,8 @@ export default new GraphQLCache([ pp: 20, priority: 0, target: 'Normal', - type: 'Electric' + type: 'Electric', + maxMovePower: 140 } ], [ @@ -11604,7 +11605,7 @@ export default new GraphQLCache([ basePower: '130', category: 'Physical', desc: 'Fails if there is no terrain active. Ends the effects of Electric Terrain, Grassy Terrain, Misty Terrain, and Psychic Terrain.', - shortDesc: 'Fails if there is no terrain active. Ends the effects of terrain.', + shortDesc: 'Ends the effects of terrain; fails if none is active.', name: 'Steel Roller', pp: 5, priority: 0, diff --git a/src/assets/pokedex.ts b/src/assets/pokedex.ts index 863117de54..941313973e 100644 --- a/src/assets/pokedex.ts +++ b/src/assets/pokedex.ts @@ -27865,7 +27865,7 @@ export default new GraphQLCache([ { species: 'kitsunoh', num: -14, - types: ['Steel', 'Ghost'], + types: ['Ghost', 'Steel'], genderRatio: { male: 0.5, female: 0.5 }, baseStats: { hp: 80, @@ -28374,6 +28374,22 @@ export default new GraphQLCache([ eggGroups: ['Water 1', 'Fairy'] } ], + [ + 'justyke', + { + num: -54, + species: 'Justyke', + types: ['Steel', 'Ground'], + genderRatio: { male: 0, female: 0 }, + baseStats: { hp: 72, atk: 70, def: 56, spa: 83, spd: 68, spe: 30 }, + abilities: { first: 'Levitate', second: 'Bulletproof', hidden: 'Justified' }, + heightm: 0.4, + weightkg: 36.5, + color: 'Brown', + evos: ['equilibra'], + eggGroups: ['Mineral'] + } + ], [ 'equilibra', { @@ -28392,10 +28408,28 @@ export default new GraphQLCache([ abilities: { first: 'Levitate', second: 'Bulletproof', hidden: 'Justified' }, heightm: 0.8, weightkg: 51.3, + prevo: 'justyke', + evoLevel: '32', color: 'Brown', eggGroups: ['Mineral'] } ], + [ + 'solotl', + { + num: -56, + species: 'Solotl', + types: ['Fire', 'Dragon'], + genderRatio: { male: 0, female: 0 }, + baseStats: { hp: 68, atk: 48, def: 34, spa: 72, spd: 24, spe: 84 }, + abilities: { first: 'Regenerator', second: 'Vital Spirit', hidden: 'Magician' }, + heightm: 0.6, + weightkg: 11.8, + evos: ['astrolotl'], + color: 'Red', + eggGroups: ['Dragon', 'Fairy'] + } + ], [ 'astrolotl', { @@ -28414,6 +28448,8 @@ export default new GraphQLCache([ abilities: { first: 'Regenerator', second: 'Vital Spirit', hidden: 'Magician' }, heightm: 1.9, weightkg: 50, + prevo: 'solotl', + evoLevel: '36', color: 'Red', eggGroups: ['Dragon', 'Fairy'] } diff --git a/yarn.lock b/yarn.lock index 0a8292d5b2..5a2e3757e1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -48,15 +48,15 @@ "@babel/highlight" "^7.10.4" "@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.7.5": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.0.tgz#73b9c33f1658506887f767c26dae07798b30df76" - integrity sha512-mkLq8nwaXmDtFmRkQ8ED/eA2CnVw4zr7dCztKalZXBvdK5EeNUAesrrwUqjQEzFgomJssayzB0aqlOsP1vGLqg== + version "7.11.1" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.1.tgz#2c55b604e73a40dc21b0e52650b11c65cf276643" + integrity sha512-XqF7F6FWQdKGGWAzGELL+aCO1p+lRY5Tj5/tbT3St1G8NaH70jhhDIKknIZaDans0OQBG5wRAldROLHSt44BgQ== dependencies: "@babel/code-frame" "^7.10.4" "@babel/generator" "^7.11.0" "@babel/helper-module-transforms" "^7.11.0" "@babel/helpers" "^7.10.4" - "@babel/parser" "^7.11.0" + "@babel/parser" "^7.11.1" "@babel/template" "^7.10.4" "@babel/traverse" "^7.11.0" "@babel/types" "^7.11.0" @@ -69,7 +69,7 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.10.5", "@babel/generator@^7.11.0", "@babel/generator@^7.5.0": +"@babel/generator@^7.11.0", "@babel/generator@^7.5.0": version "7.11.0" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.0.tgz#4b90c78d8c12825024568cbe83ee6c9af193585c" integrity sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ== @@ -233,15 +233,15 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@7.10.5": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.5.tgz#e7c6bf5a7deff957cec9f04b551e2762909d826b" - integrity sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ== +"@babel/parser@7.11.1": + version "7.11.1" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.1.tgz#d91a387990b21e5d20047b336bb19b0553f02ff5" + integrity sha512-u9QMIRdKVF7hfEkb3nu2LgZDIzCQPv+yHD9Eg6ruoJLjkrQ9fFz4IBSlF/9XwoNri9+2F1IY+dYuOfZrXq8t3w== -"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.10.5", "@babel/parser@^7.11.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.0.tgz#a9d7e11aead25d3b422d17b2c6502c8dddef6a5d" - integrity sha512-qvRvi4oI8xii8NllyEc4MDJjuZiNaRzyb7Y7lup1NqJV8TZHF4O27CcP+72WPn/k1zkgJ6WJfnIbk4jTsVAZHw== +"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.11.0", "@babel/parser@^7.11.1": + version "7.11.2" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.2.tgz#0882ab8a455df3065ea2dcb4c753b2460a24bead" + integrity sha512-Vuj/+7vLo6l1Vi7uuO+1ngCDNeVmNbTngcJFKCR/oEtz8tKz0CJxZEGmPt9KcIloZhOZ3Zit6xbpXT2MDlS9Vw== "@babel/plugin-proposal-class-properties@^7.0.0": version "7.10.4" @@ -366,9 +366,9 @@ "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-transform-block-scoping@^7.0.0": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.5.tgz#b81b8aafefbfe68f0f65f7ef397b9ece68a6037d" - integrity sha512-6Ycw3hjpQti0qssQcA6AMSFDHeNJ++R6dIMnpRqUjFeBBTmTDPa8zgF90OVfTvAo11mXZTlVUViY1g8ffrURLg== + version "7.11.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz#5b7efe98852bef8d652c0b28144cd93a9e4b5215" + integrity sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew== dependencies: "@babel/helper-plugin-utils" "^7.10.4" @@ -510,10 +510,10 @@ "@babel/helper-annotate-as-pure" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4" -"@babel/runtime@^7.0.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.0.tgz#f10245877042a815e07f7e693faff0ae9d3a2aac" - integrity sha512-qArkXsjJq7H+T86WrIFV0Fnu/tNOkZ4cgXmjkzAu3b/58D5mFIO8JH/y77t7C9q0OdDRdh9s7Ue5GasYssxtXw== +"@babel/runtime@^7.0.0", "@babel/runtime@^7.9.6": + version "7.11.2" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736" + integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw== dependencies: regenerator-runtime "^0.13.4" @@ -526,22 +526,7 @@ "@babel/parser" "^7.10.4" "@babel/types" "^7.10.4" -"@babel/traverse@7.10.5": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.5.tgz#77ce464f5b258be265af618d8fddf0536f20b564" - integrity sha512-yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.10.5" - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.10.4" - "@babel/parser" "^7.10.5" - "@babel/types" "^7.10.5" - debug "^4.1.0" - globals "^11.1.0" - lodash "^4.17.19" - -"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.0": +"@babel/traverse@7.11.0", "@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.0": version "7.11.0" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.0.tgz#9b996ce1b98f53f7c3e4175115605d56ed07dd24" integrity sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg== @@ -556,16 +541,7 @@ globals "^11.1.0" lodash "^4.17.19" -"@babel/types@7.10.5": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.5.tgz#d88ae7e2fde86bfbfe851d4d81afa70a997b5d15" - integrity sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q== - dependencies: - "@babel/helper-validator-identifier" "^7.10.4" - lodash "^4.17.19" - to-fast-properties "^2.0.0" - -"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3": +"@babel/types@7.11.0", "@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3": version "7.11.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.0.tgz#2ae6bf1ba9ae8c3c43824e5861269871b206e90d" integrity sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA== @@ -587,73 +563,71 @@ exec-sh "^0.3.2" minimist "^1.2.0" -"@commitlint/cli@^8.3.5": - version "8.3.5" - resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-8.3.5.tgz#6d93a3a8b2437fa978999d3f6a336bcc70be3fd3" - integrity sha512-6+L0vbw55UEdht71pgWOE55SRgb+8OHcEwGDB234VlIBFGK9P2QOBU7MHiYJ5cjdjCQ0rReNrGjOHmJ99jwf0w== - dependencies: - "@commitlint/format" "^8.3.4" - "@commitlint/lint" "^8.3.5" - "@commitlint/load" "^8.3.5" - "@commitlint/read" "^8.3.4" - babel-polyfill "6.26.0" - chalk "2.4.2" +"@commitlint/cli@^9.1.1": + version "9.1.1" + resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-9.1.1.tgz#24277e6c1e616191a34a7182a1d3e73369a34f98" + integrity sha512-ye9vUZz8Niv77e5ecBWnA2PnuPF+vYy/3BfSZx8sEaNjozJWUolTk/fuqTsoij3bseZBVObd+cVqZgGk8lfEdw== + dependencies: + "@babel/runtime" "^7.9.6" + "@commitlint/format" "^9.1.1" + "@commitlint/lint" "^9.1.1" + "@commitlint/load" "^9.1.1" + "@commitlint/read" "^9.1.1" + chalk "4.1.0" + core-js "^3.6.1" get-stdin "7.0.0" - lodash "4.17.15" + lodash "^4.17.15" meow "5.0.0" + regenerator-runtime "0.13.5" resolve-from "5.0.0" resolve-global "1.0.0" -"@commitlint/config-conventional@^8.3.4": - version "8.3.4" - resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-8.3.4.tgz#fed13b3711690663b176c1f6b39c205a565618d2" - integrity sha512-w0Yc5+aVAjZgjYqx29igBOnVCj8O22gy3Vo6Fyp7PwoS7+AYS1x3sN7IBq6i7Ae15Mv5P+rEx1pkxXo5zOMe4g== +"@commitlint/config-conventional@^9.1.1": + version "9.1.1" + resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-9.1.1.tgz#c10e6ff8e56bd462fa33e17522b0f98da97daa39" + integrity sha512-t/bvv8ofjj7V4W99eVDyuACaC7Ch4SYaukglBYt/K1Y9Ixg8mCBuFDMGRMhyZn4upUe1ls8l4SO3rjaVbYIjlg== dependencies: - conventional-changelog-conventionalcommits "4.2.1" + conventional-changelog-conventionalcommits "4.3.0" -"@commitlint/ensure@^8.3.4": - version "8.3.4" - resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-8.3.4.tgz#6931677e4ca0fde71686ae3b7a367261647a341d" - integrity sha512-8NW77VxviLhD16O3EUd02lApMFnrHexq10YS4F4NftNoErKbKaJ0YYedktk2boKrtNRf/gQHY/Qf65edPx4ipw== +"@commitlint/ensure@^9.1.1": + version "9.1.1" + resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-9.1.1.tgz#0143f2c34a27fcd7fb91b7a5029de84a0f416b93" + integrity sha512-dCvev16s7pTqM3Qka8WkWkjZ0lKu3cZ8q+EK34gXR90v7rkssVbPvbyttTfTWTvmQTqZY1zNkvMqbOc8V7pXwA== dependencies: - lodash "4.17.15" - -"@commitlint/execute-rule@^8.3.4": - version "8.3.4" - resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-8.3.4.tgz#1b63f0713b197889d90b76f9eea1abc010d256b1" - integrity sha512-f4HigYjeIBn9f7OuNv5zh2y5vWaAhNFrfeul8CRJDy82l3Y+09lxOTGxfF3uMXKrZq4LmuK6qvvRCZ8mUrVvzQ== + "@commitlint/types" "^9.1.1" + lodash "^4.17.15" "@commitlint/execute-rule@^9.1.1": version "9.1.1" resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-9.1.1.tgz#59bfe018d85545881e4bd1a47f9cd155b2df4c2c" integrity sha512-kCncHMXfVDfmUx1NExl7T+s7udAWEOh039DFGR9R5MWoy+zm2cJsCdsbWFFuNbcPWCKor57ywdIUN2t048P6Yg== -"@commitlint/format@^8.3.4": - version "8.3.4" - resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-8.3.4.tgz#7cd1f0ba5a3289c8d14d7dac29ee1fc1597fe1d9" - integrity sha512-809wlQ/ND6CLZON+w2Rb3YM2TLNDfU2xyyqpZeqzf2reJNpySMSUAeaO/fNDJSOKIsOsR3bI01rGu6hv28k+Nw== +"@commitlint/format@^9.1.1": + version "9.1.1" + resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-9.1.1.tgz#a1a48bcdcaca304ff33d40bbf2b787600e47082e" + integrity sha512-CLVXltSA8U7Sr+8ad1hBCFFL5GSdVWZsFgttt1hNT6CiOtPHV9e3AeWK0TACFcXWIl+iFKdRNfNrYM77RBJN0A== dependencies: - chalk "^2.0.1" + chalk "^4.0.0" -"@commitlint/is-ignored@^8.3.5": - version "8.3.5" - resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-8.3.5.tgz#e6f59496e1b1ce58020d519cd578ad0f43169199" - integrity sha512-Zo+8a6gJLFDTqyNRx53wQi/XTiz8mncvmWf/4oRG+6WRcBfjSSHY7KPVj5Y6UaLy2EgZ0WQ2Tt6RdTDeQiQplA== +"@commitlint/is-ignored@^9.1.1": + version "9.1.1" + resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-9.1.1.tgz#1f2683897dab03ec00d363486b4b439791a86927" + integrity sha512-A2ernvkAIfkGh53cNSuuMlTVZyJ58BYbkUw8h34pG0uS/GDteUyh7K3hgRqMmrwoL/DNBEp5earRM6nBYgLX1Q== dependencies: - semver "6.3.0" + "@commitlint/types" "^9.1.1" + semver "7.3.2" -"@commitlint/lint@^8.3.5": - version "8.3.5" - resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-8.3.5.tgz#627e75adb1cc803cc723e33cc2ba4aa27cbb9f0c" - integrity sha512-02AkI0a6PU6rzqUvuDkSi6rDQ2hUgkq9GpmdJqfai5bDbxx2939mK4ZO+7apbIh4H6Pae7EpYi7ffxuJgm+3hQ== +"@commitlint/lint@^9.1.1": + version "9.1.1" + resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-9.1.1.tgz#c947a1b1a68213488450a4c4ce047e46a45c4699" + integrity sha512-2g2OL8J5dfzH3VY004i506DmRbCJR1W49JbYsTGuTAv1y9f0s8ocV2Wbfh7WJ8YZQabSHXTMZFQJjsvMQ+b0Hw== dependencies: - "@commitlint/is-ignored" "^8.3.5" - "@commitlint/parse" "^8.3.4" - "@commitlint/rules" "^8.3.4" - babel-runtime "^6.23.0" - lodash "4.17.15" + "@commitlint/is-ignored" "^9.1.1" + "@commitlint/parse" "^9.1.1" + "@commitlint/rules" "^9.1.1" + "@commitlint/types" "^9.1.1" -"@commitlint/load@>6.1.1": +"@commitlint/load@>6.1.1", "@commitlint/load@^9.1.1": version "9.1.1" resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-9.1.1.tgz#8b1580ab821729bbe197e95f960e7cee966402ae" integrity sha512-RCIX44M8nq3bW98vuxA6C2rM0wAnZlneFls2OVi5l2BvD/rsQ2R9CZYwPt/MYU6RbwMmlGhkuHdScwK6pJeUqA== @@ -666,53 +640,28 @@ lodash "^4.17.15" resolve-from "^5.0.0" -"@commitlint/load@^8.3.5": - version "8.3.5" - resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-8.3.5.tgz#3f059225ede92166ba94cf4c48e3d67c8b08b18a" - integrity sha512-poF7R1CtQvIXRmVIe63FjSQmN9KDqjRtU5A6hxqXBga87yB2VUJzic85TV6PcQc+wStk52cjrMI+g0zFx+Zxrw== - dependencies: - "@commitlint/execute-rule" "^8.3.4" - "@commitlint/resolve-extends" "^8.3.5" - babel-runtime "^6.23.0" - chalk "2.4.2" - cosmiconfig "^5.2.0" - lodash "4.17.15" - resolve-from "^5.0.0" - -"@commitlint/message@^8.3.4": - version "8.3.4" - resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-8.3.4.tgz#b4e50d14aa6e15a5ad0767b952a7953f3681d768" - integrity sha512-nEj5tknoOKXqBsaQtCtgPcsAaf5VCg3+fWhss4Vmtq40633xLq0irkdDdMEsYIx8rGR0XPBTukqzln9kAWCkcA== +"@commitlint/message@^9.1.1": + version "9.1.1" + resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-9.1.1.tgz#7621e8f194d676d7d747bfdda49c00ca4d1572df" + integrity sha512-52Li4BNSY55I0fAq1s8cnxIK9Jneozdh4oonLlDzqWvgFq8znsHb9LWmi46K0bsCQT3CRUnMU+GPnikghIMRKQ== -"@commitlint/parse@^8.3.4": - version "8.3.4" - resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-8.3.4.tgz#d741f8b9104b35d0f4c10938165b20cbf167f81e" - integrity sha512-b3uQvpUQWC20EBfKSfMRnyx5Wc4Cn778bVeVOFErF/cXQK725L1bYFvPnEjQO/GT8yGVzq2wtLaoEqjm1NJ/Bw== +"@commitlint/parse@^9.1.1": + version "9.1.1" + resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-9.1.1.tgz#ec2b9527eb42725591976bedbed5bccfcde529bd" + integrity sha512-WxvsEi7sMBh8vynamTiHvUOsPOUZ5308pi0gJ5q+DnLY+JPx0Bbxdho9pjyVc3S0bymPCbOrk2gTIbmaTokIRQ== dependencies: - conventional-changelog-angular "^1.3.3" + conventional-changelog-angular "^5.0.0" conventional-commits-parser "^3.0.0" - lodash "^4.17.11" -"@commitlint/read@^8.3.4": - version "8.3.4" - resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-8.3.4.tgz#81a34283d8cd7b2acdf57829a91761e9c7791455" - integrity sha512-FKv1kHPrvcAG5j+OSbd41IWexsbLhfIXpxVC/YwQZO+FR0EHmygxQNYs66r+GnhD1EfYJYM4WQIqd5bJRx6OIw== +"@commitlint/read@^9.1.1": + version "9.1.1" + resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-9.1.1.tgz#de20c32e9f7020ecaf1601c5e06a83c74464b161" + integrity sha512-cg75klW1WNBAJZABxacf2FhxAlP0di7xs/wuTqPNq0OTpblhY5s2BoS7eO0UlQi1K14Unx7b9+Sb7sjuE9Viyw== dependencies: - "@commitlint/top-level" "^8.3.4" - "@marionebl/sander" "^0.6.0" - babel-runtime "^6.23.0" + "@commitlint/top-level" "^9.1.1" + fs-extra "^8.1.0" git-raw-commits "^2.0.0" -"@commitlint/resolve-extends@^8.3.5": - version "8.3.5" - resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-8.3.5.tgz#8fff800f292ac217ae30b1862f5f9a84b278310a" - integrity sha512-nHhFAK29qiXNe6oH6uG5wqBnCR+BQnxlBW/q5fjtxIaQALgfoNLHwLS9exzbIRFqwJckpR6yMCfgMbmbAOtklQ== - dependencies: - import-fresh "^3.0.0" - lodash "4.17.15" - resolve-from "^5.0.0" - resolve-global "^1.0.0" - "@commitlint/resolve-extends@^9.1.1": version "9.1.1" resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-9.1.1.tgz#8ce703fcd2426ab1f5449906442267e18c995430" @@ -723,25 +672,25 @@ resolve-from "^5.0.0" resolve-global "^1.0.0" -"@commitlint/rules@^8.3.4": - version "8.3.4" - resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-8.3.4.tgz#41da7e16c6b89af268fe81c87a158c1fd2ac82b1" - integrity sha512-xuC9dlqD5xgAoDFgnbs578cJySvwOSkMLQyZADb1xD5n7BNcUJfP8WjT9W1Aw8K3Wf8+Ym/ysr9FZHXInLeaRg== +"@commitlint/rules@^9.1.1": + version "9.1.1" + resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-9.1.1.tgz#21165c9dc8621a52fa57eec9a66e01c83ec58f90" + integrity sha512-QicTJ9v4g8WbJ71gu2ypvbdEP6Q+cJYlLPrb6ilNhtOMCyn6ndXSlCMpcQNw84d9ORyd28okzhDZZBSqX5hslg== dependencies: - "@commitlint/ensure" "^8.3.4" - "@commitlint/message" "^8.3.4" - "@commitlint/to-lines" "^8.3.4" - babel-runtime "^6.23.0" + "@commitlint/ensure" "^9.1.1" + "@commitlint/message" "^9.1.1" + "@commitlint/to-lines" "^9.1.1" + "@commitlint/types" "^9.1.1" -"@commitlint/to-lines@^8.3.4": - version "8.3.4" - resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-8.3.4.tgz#ce24963b6d86dbe51d88d5e3028ab28f38562e2e" - integrity sha512-5AvcdwRsMIVq0lrzXTwpbbG5fKRTWcHkhn/hCXJJ9pm1JidsnidS1y0RGkb3O50TEHGewhXwNoavxW9VToscUA== +"@commitlint/to-lines@^9.1.1": + version "9.1.1" + resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-9.1.1.tgz#882631657ea4e14aea8600e7d48c4fbfb3e63c2d" + integrity sha512-JFKfpehPL3Qrlo6DpIsuJvdtR1wSjdbXD3liphvFTAFWo64yYC/jmnTdy0UqWIhrV1jcxP1LzNejIuRt6hsCXQ== -"@commitlint/top-level@^8.3.4": - version "8.3.4" - resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-8.3.4.tgz#803fc6e8f5be5efa5f3551761acfca961f1d8685" - integrity sha512-nOaeLBbAqSZNpKgEtO6NAxmui1G8ZvLG+0wb4rvv6mWhPDzK1GNZkCd8FUZPahCoJ1iHDoatw7F8BbJLg4nDjg== +"@commitlint/top-level@^9.1.1": + version "9.1.1" + resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-9.1.1.tgz#5b825515381d70972189e549b0a9d57542afe996" + integrity sha512-pIgAbGqHbOunTGiUzBPhIKfXrTWdCrVwsimECXy/If5XaZ3GHhxiiA7BxsWFlAN1UZ6PgVMPgymKU0kx2D5A/w== dependencies: find-up "^4.0.0" @@ -764,24 +713,24 @@ resolved "https://registry.yarnpkg.com/@favware/ts-config/-/ts-config-3.0.2.tgz#4b8c96efc1ffe6359a6fda10c1a8211266308df7" integrity sha512-T20sRidRETqffgiCzY+vi6uri0W30YUUD9ENZKpBz3+L4xkwoeBxVDqWjTk2OQBNhHFWsuoT4gRY4eBhczWdnw== -"@graphql-codegen/c-sharp@^1.17.4": - version "1.17.6" - resolved "https://registry.yarnpkg.com/@graphql-codegen/c-sharp/-/c-sharp-1.17.6.tgz#75d6b0973c316528b69e48635c67c939f09c4566" - integrity sha512-S1A+yn/O/55+sT9rKO4CEPkc0/0UdUr99kjKVyPYcLIrZ7jpA83AUKBrvy0ll+69TM2DqHB9ZqSL1T28vk+HGg== +"@graphql-codegen/c-sharp@^1.17.7": + version "1.17.7" + resolved "https://registry.yarnpkg.com/@graphql-codegen/c-sharp/-/c-sharp-1.17.7.tgz#1a2b0a710d086bc889fc63da431e89e764e7f95a" + integrity sha512-bfkQbDRm2nPWmt+Z9N+hBDlXiTxSGPtdgdgOqtVTBpf5ojU082C0AfXIQ20fRH2cdSX38o+sbviAZiaq0HRqAA== dependencies: - "@graphql-codegen/plugin-helpers" "1.17.6" - "@graphql-codegen/visitor-plugin-common" "1.17.6" + "@graphql-codegen/plugin-helpers" "1.17.7" + "@graphql-codegen/visitor-plugin-common" "1.17.7" strip-indent "3.0.0" tslib "2.0.0" unixify "1.0.0" -"@graphql-codegen/cli@^1.17.4": - version "1.17.6" - resolved "https://registry.yarnpkg.com/@graphql-codegen/cli/-/cli-1.17.6.tgz#c6ff046a8aa0c29c965ed55dd937c87065a217d5" - integrity sha512-whJYs0+4oz40rfzUHWbSl56ZAejQdEabIhyrI8KeMUt3xzQrNjnk1rIrbPca8wadjU8gTrfEfP+QJJ2g0psA/w== +"@graphql-codegen/cli@^1.17.7": + version "1.17.7" + resolved "https://registry.yarnpkg.com/@graphql-codegen/cli/-/cli-1.17.7.tgz#4ba45106403a3aca36585bf04f0169fda38ac9df" + integrity sha512-T9b4r7WkA+VfW8nsAjOWFoFbtpfFAAjPQM6q/8aPg6Ny3rwwefH8UDVa3P3QSfdIYl2qKnBk1FG2mNjBCUYKsg== dependencies: - "@graphql-codegen/core" "1.17.6" - "@graphql-codegen/plugin-helpers" "1.17.6" + "@graphql-codegen/core" "1.17.7" + "@graphql-codegen/plugin-helpers" "1.17.7" "@graphql-tools/apollo-engine-loader" "^6.0.0" "@graphql-tools/code-file-loader" "^6.0.0" "@graphql-tools/git-loader" "^6.0.0" @@ -798,7 +747,7 @@ chokidar "3.4.1" common-tags "1.8.0" constant-case "3.0.3" - cosmiconfig "6.0.0" + cosmiconfig "7.0.0" debounce "1.2.0" dependency-graph "0.9.0" detect-indent "6.0.0" @@ -824,20 +773,20 @@ wrap-ansi "7.0.0" yargs "15.4.1" -"@graphql-codegen/core@1.17.6": - version "1.17.6" - resolved "https://registry.yarnpkg.com/@graphql-codegen/core/-/core-1.17.6.tgz#8f3bd27223f47b455cdc455d768fdd6238a6199d" - integrity sha512-m9wWTIR5SucEtsxQZUu1UxCR+XgcGox6+5aplzOxF3q4SYVZqLRcMA3WrHkV/2s57jAYQvrHj+4l5XtY/ErCzw== +"@graphql-codegen/core@1.17.7": + version "1.17.7" + resolved "https://registry.yarnpkg.com/@graphql-codegen/core/-/core-1.17.7.tgz#9f2f5798ec1c551827aa4ce6417d58cf48cd2a92" + integrity sha512-KfVoNtGCHvj/oN22Yl7ljPC9LkxvAAGDVPilYjJa3GjcT6YvF5k+ijyZ3GMjU8belN3g04Ls/WpKUsWA6HpkiQ== dependencies: - "@graphql-codegen/plugin-helpers" "1.17.6" + "@graphql-codegen/plugin-helpers" "1.17.7" "@graphql-tools/merge" "^6.0.0" "@graphql-tools/utils" "^6.0.0" tslib "~2.0.0" -"@graphql-codegen/plugin-helpers@1.17.6": - version "1.17.6" - resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-1.17.6.tgz#533eff5acdf5ddd5b361d5b4f04ed778235432b3" - integrity sha512-ULt9VhERutfyg2UmYLAV37MsItL1tCP16OkUrXluoEPsinRhtBmSVn2F0JeZoNdtb2ZQO/uvg6qnj1xBvTwh+Q== +"@graphql-codegen/plugin-helpers@1.17.7": + version "1.17.7" + resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-1.17.7.tgz#5903105fda9470aafefe9da29e3a6fb3a52b8376" + integrity sha512-LsXS0s/ZOACZXa3W29ekcaQLzP8TsYzow6nIjW6rtkWX5T0EDooBQbDn1cdLdlpenqbUU+vtONwR6Qqc6hrq2Q== dependencies: "@graphql-tools/utils" "^6.0.0" camel-case "4.1.1" @@ -851,144 +800,144 @@ tslib "~2.0.0" upper-case "2.0.1" -"@graphql-codegen/schema-ast@^1.17.4": - version "1.17.6" - resolved "https://registry.yarnpkg.com/@graphql-codegen/schema-ast/-/schema-ast-1.17.6.tgz#7192239a963560bc1c7ac68f0d083c63c53704ce" - integrity sha512-TLFc5DPoIa7xMeld6yMSxD8x5SEhfatwt55Gt9yH6or8l1NgISGL4FiaKypkCX3c9jwM2Q90GcFkTXLwky6dww== +"@graphql-codegen/schema-ast@^1.17.7": + version "1.17.7" + resolved "https://registry.yarnpkg.com/@graphql-codegen/schema-ast/-/schema-ast-1.17.7.tgz#f24bd0ca6861d09d49b68f96d0198dbab8f9723e" + integrity sha512-fQbp8Fz0KruoZ2aTtBpk3wBUJMsSUBmRQq201eQyt+ANUIY7PoSAGIlOKgze0JRwhlU6zN8mIS95RFzDyJUPkg== dependencies: - "@graphql-codegen/plugin-helpers" "1.17.6" + "@graphql-codegen/plugin-helpers" "1.17.7" "@graphql-tools/utils" "^6.0.0" tslib "~2.0.0" -"@graphql-codegen/typescript-resolvers@^1.17.4": - version "1.17.6" - resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript-resolvers/-/typescript-resolvers-1.17.6.tgz#3d941d90eeafb7f45a3269a20706dfbf1b48f2dc" - integrity sha512-J3I2Cu2R02osPztsWcnEuANgo6ndbtJazZzwI+BmapCVDUGd6mbkNauUQIGds5i/OxpCxBz25TMBRp/9l1udew== +"@graphql-codegen/typescript-resolvers@^1.17.7": + version "1.17.7" + resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript-resolvers/-/typescript-resolvers-1.17.7.tgz#fe912db2abeab36daf747108607d09bbc97b82fa" + integrity sha512-TFi7P8xSymFLj46HA8o/eLHPsY2X4z/maID+2rSaIYi+7IXVn2aHgvhFpvmmjIuCEdRvVH5Gdss7i7hwbaxW6w== dependencies: - "@graphql-codegen/plugin-helpers" "1.17.6" - "@graphql-codegen/typescript" "1.17.6" - "@graphql-codegen/visitor-plugin-common" "1.17.6" + "@graphql-codegen/plugin-helpers" "1.17.7" + "@graphql-codegen/typescript" "1.17.7" + "@graphql-codegen/visitor-plugin-common" "1.17.7" "@graphql-tools/utils" "^6.0.0" auto-bind "~4.0.0" tslib "~2.0.0" -"@graphql-codegen/typescript@1.17.6", "@graphql-codegen/typescript@^1.17.4": - version "1.17.6" - resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript/-/typescript-1.17.6.tgz#85d9e6b391747f61bbc37b8808b7c5a0f0bd84f5" - integrity sha512-Wk/U/95zvaE12hzhJsQt9jra7ads+IzMJrENLb93Gv6I1fQQK6StcGTQVIoMvw4e5w+cUVzt7MFIbU0UMbBmag== +"@graphql-codegen/typescript@1.17.7", "@graphql-codegen/typescript@^1.17.7": + version "1.17.7" + resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript/-/typescript-1.17.7.tgz#35d92da76d4e07b612ab1ac0bd9726fbaac1fb0d" + integrity sha512-itjssTRBIvZgoNwzz/mhDkaeZvoMqHaeN+PDqev+6gY+RDDGcr9fsEm/SLm9nOpBWZCAHFVc9u7wHlSPhbYGtw== dependencies: - "@graphql-codegen/plugin-helpers" "1.17.6" - "@graphql-codegen/visitor-plugin-common" "1.17.6" + "@graphql-codegen/plugin-helpers" "1.17.7" + "@graphql-codegen/visitor-plugin-common" "1.17.7" auto-bind "~4.0.0" tslib "~2.0.0" -"@graphql-codegen/visitor-plugin-common@1.17.6": - version "1.17.6" - resolved "https://registry.yarnpkg.com/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-1.17.6.tgz#d66ab05efb36f6966b7bef688e9c115aa122482a" - integrity sha512-1TNOf0VncmOESeh7oZbFXSAst8GpEpiHuOdgUjGCPHYqahlehRi5tMeoKPNht9h7oHhVa93/dDhx6gM4iy+Y/Q== +"@graphql-codegen/visitor-plugin-common@1.17.7": + version "1.17.7" + resolved "https://registry.yarnpkg.com/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-1.17.7.tgz#3158ca4fc7d45a0f5a6ad0706061015eae481d9e" + integrity sha512-z5WvYqgCgPAAuMJMOE0e0nEicdaQRm59/vP+yYihKQmwrASzPlqa1BUiGDnfrPcCooB9fEUHB+cQb3gt9GRfEg== dependencies: - "@graphql-codegen/plugin-helpers" "1.17.6" + "@graphql-codegen/plugin-helpers" "1.17.7" "@graphql-tools/relay-operation-optimizer" "6.0.15" array.prototype.flatmap "1.2.3" auto-bind "~4.0.0" dependency-graph "0.9.0" - graphql-tag "2.10.4" + graphql-tag "2.11.0" parse-filepath "1.0.2" pascal-case "3.1.1" tslib "~2.0.0" "@graphql-tools/apollo-engine-loader@^6.0.0": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-6.0.15.tgz#05ceca3ba024b5fbd4ac4366cf0cfc88e0fd7ef4" - integrity sha512-9SwaZZPr03dZh3rqmpw6GG2S+SzSuBCfYgx/cY37TPPB+wTJjBzZSzRGrC8hsUlbGLF7Qzq7rFYxfl0zGYpxXg== + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-6.0.16.tgz#ff2d4fba293b1aa150f6294c9d7b4e29aa27e6d9" + integrity sha512-MSiI3AVRPrO3fNA/uIWe6zM1IPUXipobEKYLd3C1bQiFCof+r3oAsfrpQyb5543C1wL5VgWxx3CPKaj26Pj2dA== dependencies: - "@graphql-tools/utils" "6.0.15" + "@graphql-tools/utils" "6.0.16" cross-fetch "3.0.5" tslib "~2.0.0" "@graphql-tools/code-file-loader@^6.0.0": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/code-file-loader/-/code-file-loader-6.0.15.tgz#d4c04b6493ac658da13bb115e7ed6821e2c687f1" - integrity sha512-Z4RLnJzlHWHbfe/yRFLqWuqxd6//dSxj/87FiOwN2GR+o/7I0N7ppZIAsLleVDM0LghDO+Nnt1cacNAEmTd0Fw== + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/code-file-loader/-/code-file-loader-6.0.16.tgz#c98e6e24149cc4478634e5b35200615ad8e180a7" + integrity sha512-PGlwhMzKd2lhSZ/y5DDtuEchvKi/ySgziscf9qofzXmcNb07dDHMQijeF2AkzG+oR6CtJjFOZ9GD8grFkBD0cw== dependencies: - "@graphql-tools/graphql-tag-pluck" "6.0.15" - "@graphql-tools/utils" "6.0.15" + "@graphql-tools/graphql-tag-pluck" "6.0.16" + "@graphql-tools/utils" "6.0.16" fs-extra "9.0.1" tslib "~2.0.0" -"@graphql-tools/delegate@6.0.15": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-6.0.15.tgz#9e060bfc31fe7735bd5b2b401e98dea3fa5d3b25" - integrity sha512-GG/zp29PMfG6eXpfe1M5C3U1EI1f3tJu2glFN8t0RIfp4FEgZs/PRvZuuep5orFge8dvX/LQpJY8Vl2JmU4WMg== +"@graphql-tools/delegate@6.0.16": + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-6.0.16.tgz#3c6d74d91421c2bf43a8524f63dc15722f3b6f1a" + integrity sha512-mq/vTHaBGOWxqKqjkj8KJpH+hg6Y096nZYTLpUZcPf6eX1OhxEIkdw5NDN99ii2/NGAyw7ApoY7BWFEEneiiTg== dependencies: "@ardatan/aggregate-error" "0.0.1" - "@graphql-tools/schema" "6.0.15" - "@graphql-tools/utils" "6.0.15" + "@graphql-tools/schema" "6.0.16" + "@graphql-tools/utils" "6.0.16" tslib "~2.0.0" "@graphql-tools/git-loader@^6.0.0": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/git-loader/-/git-loader-6.0.15.tgz#b9c70e332943372f50c7ef4e1161a65d5bdac08e" - integrity sha512-Tt33twi6oe++Hk+CeEl8A6DxETunwLG9EOkdHglxIKFn5k6yt8sd2hninwGjj8uyceC6CpeChN6jkF6Hg3N7fA== + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/git-loader/-/git-loader-6.0.16.tgz#48b36c0e9955d596b0c4015ff29acd6bc0cfdc8a" + integrity sha512-GuHq/jvTF9lDQUevmkRKCrDeG1jK2bxsQOgtKW7HODD2XV0lPimbvyizrQufzBaWSTBy/uFqu1jHM+wVEdZSKQ== dependencies: - "@graphql-tools/graphql-tag-pluck" "6.0.15" - "@graphql-tools/utils" "6.0.15" + "@graphql-tools/graphql-tag-pluck" "6.0.16" + "@graphql-tools/utils" "6.0.16" "@graphql-tools/github-loader@^6.0.0": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/github-loader/-/github-loader-6.0.15.tgz#2faccd5d20de87fba4762aa0e33659edd924da54" - integrity sha512-JYZp+u84JHJUB84dAlAHVgCxWtots6qtqMeENHPgNnpkci0cYKHAw+Mna3rZCEXR+9m4QKkM6K35U9cHODc6BA== + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/github-loader/-/github-loader-6.0.16.tgz#6654bc7d3256d156d42ca1fb546803fca47c89ab" + integrity sha512-ENjrKNgmvyA84CraErwL8oRWKpi2ZfsgMw0N0yVmKB9dIr7/0lABW92+XSLxqLPKNQo+F5GlQDcEdZY0t5rqwA== dependencies: - "@graphql-tools/graphql-tag-pluck" "6.0.15" - "@graphql-tools/utils" "6.0.15" + "@graphql-tools/graphql-tag-pluck" "6.0.16" + "@graphql-tools/utils" "6.0.16" cross-fetch "3.0.5" "@graphql-tools/graphql-file-loader@^6.0.0": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-file-loader/-/graphql-file-loader-6.0.15.tgz#e186b8147397bd7510e1b3318f5d3f7d365fc4e1" - integrity sha512-QbCf731A2A2hrHP+cMSAKvY3D7IauFNqp5bAGdbLwSHRqaxUIfKi7Q76/9pZ3rN/e6yu/zVz+t1rkf7lT2/8OA== + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-file-loader/-/graphql-file-loader-6.0.16.tgz#62c240cf94d948e6c516753c06938cceff2436f7" + integrity sha512-qgYplQhnY90CnQiRZpM2svCzyZ7FAXaca+liZ6hqA9jfWUWh4N9Tnmy//BqrTmULGVeanPM/m8MyhZEWvvRNIg== dependencies: - "@graphql-tools/import" "6.0.15" - "@graphql-tools/utils" "6.0.15" + "@graphql-tools/import" "6.0.16" + "@graphql-tools/utils" "6.0.16" fs-extra "9.0.1" tslib "~2.0.0" -"@graphql-tools/graphql-tag-pluck@6.0.15": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-6.0.15.tgz#0e519202bc21faf068a22528b2e10d196e181aa6" - integrity sha512-d27PwoTIz3mQumnFtWjn60dulpePvWG6D8itPTGgl75H7LNpIdKPYlLTTcPcFsfWiFb4yIgg6/oarU8pJfRAsw== +"@graphql-tools/graphql-tag-pluck@6.0.16": + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-6.0.16.tgz#9ef83e12a90c1267b28bce2a8e73b812e1fd6316" + integrity sha512-5LZFv7kSq/Itkfso6FKYM9ys0pKSvwLwpKGgcELM4PGD1jBmp1EiU+IdOHJGm5F0ABI45QAVzSOW4V/3v2KyOw== dependencies: - "@babel/parser" "7.10.5" - "@babel/traverse" "7.10.5" - "@babel/types" "7.10.5" - "@graphql-tools/utils" "6.0.15" + "@babel/parser" "7.11.1" + "@babel/traverse" "7.11.0" + "@babel/types" "7.11.0" + "@graphql-tools/utils" "6.0.16" optionalDependencies: vue-template-compiler "^2.6.11" -"@graphql-tools/import@6.0.15": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/import/-/import-6.0.15.tgz#d6a9d3b6199a1e07d80d8021635d317b2c190c6f" - integrity sha512-YaQizD031nlrObiAJj+DO+0Wf2ompR2G5OFNQZIOgUlm1+kfH3GPIFoE5Ww74YH6vy9s4UyYYeZJz6APxPdMzg== +"@graphql-tools/import@6.0.16": + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/import/-/import-6.0.16.tgz#996aec516d0f9c6272572ac980631ecd524f4e62" + integrity sha512-zZRxJwAtUsyIckjfiscteFwpaIuEh3EjuhXEaNviMuwhOSrYT0oWmelcPgp/VHT6N4NZD1/y5jxQ4KHK4MrAfg== dependencies: fs-extra "9.0.1" resolve-from "5.0.0" "@graphql-tools/json-file-loader@^6.0.0": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/json-file-loader/-/json-file-loader-6.0.15.tgz#e341a5fed1ef3af8f8bfde17ed9a14e1a6df36c0" - integrity sha512-SQO7w+KPxW6Q3snE3G4eNOA8CcBBDYHpk8JILj93oe4BassuPY5NCUOeZ+2PYczwZQbTNDQXeW1oQou44U1aBg== + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/json-file-loader/-/json-file-loader-6.0.16.tgz#791a57d2579569de5440b4f2b05aa86d97c545f3" + integrity sha512-djkzPmGvVpD3YRypibYRNTgVUUfkae0JXcEWP/gn/8Y8+mnwyE2EiBfGZoW6Ejw5xTKQ7PgmOyWUIJgdEVMCJg== dependencies: - "@graphql-tools/utils" "6.0.15" + "@graphql-tools/utils" "6.0.16" fs-extra "9.0.1" tslib "~2.0.0" "@graphql-tools/load@^6.0.0": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/load/-/load-6.0.15.tgz#f2012b8938b3a535dbafefbb719997684028f30f" - integrity sha512-STH3ZjbViRqDyCw+f7PZrnDs6yhP7m2l4x5lJBMyMeLaLwuO1z+WhgtqYZNpCYlQY2jNSLXWCa0nWmpYvdLnlA== + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/load/-/load-6.0.16.tgz#18e4ff3b75f008f79c665d17ef51e61cdbcd346d" + integrity sha512-7nJUrQqou8lQG5x6tJQAl0N/ONP2oYEgSmN0QwjSxv8iz0aRDoK/nHzGlVk6/Sot58iogF0E+qx/vDKNJh2piw== dependencies: - "@graphql-tools/merge" "6.0.15" - "@graphql-tools/utils" "6.0.15" + "@graphql-tools/merge" "6.0.16" + "@graphql-tools/utils" "6.0.16" globby "11.0.1" import-from "3.0.0" is-glob "4.0.1" @@ -997,25 +946,44 @@ unixify "1.0.0" valid-url "1.0.9" -"@graphql-tools/merge@6.0.15", "@graphql-tools/merge@^6.0.0": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-6.0.15.tgz#09c84bd08971edfb3e1035d71432b47687820bdc" - integrity sha512-qusTLzkf6GtxS6LRQnEAWIwA1BeJj5SkZ2pnE4/wVe9gs0grpEsOKYxvGpBi8IZR7r8UeNpkdgk2HP0jlq/WWA== +"@graphql-tools/merge@6.0.16", "@graphql-tools/merge@^6.0.0": + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-6.0.16.tgz#48c38a99c02c1cb93848892b75d7b9b59732187d" + integrity sha512-QWeTru5IAON9ruTqs48X3WndRjz4pamTfA90M/RICkgog1LsFbIFhHM2QF+hogoMqxhlhmjgfMjQl7xXtDT+9Q== dependencies: - "@graphql-tools/schema" "6.0.15" - "@graphql-tools/utils" "6.0.15" + "@graphql-tools/schema" "6.0.16" + "@graphql-tools/utils" "6.0.16" tslib "~2.0.0" "@graphql-tools/prisma-loader@^6.0.0": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/prisma-loader/-/prisma-loader-6.0.15.tgz#9d67046cc577f0f9028d56a0ff29ac454ded5165" - integrity sha512-jitPrrJgR5RV0F557dLubHQ5XeID9Kc9G/Owp/ux2CPRJRoagm/4rudlA4LbE87vzO2EGKUJiYsFRHlTZuCqAg== - dependencies: - "@graphql-tools/url-loader" "6.0.15" - "@graphql-tools/utils" "6.0.15" + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/prisma-loader/-/prisma-loader-6.0.16.tgz#a016d6a5c108b3ebe52a6d8f105490337ebec0fe" + integrity sha512-hZashUzok45T9nIFp0uly8ZX8CZ4hN3CkryvO37ke3BZkTC8zpqfjQcMvL13W8M2MTypJLAm8oWbw83b0S71GA== + dependencies: + "@graphql-tools/url-loader" "6.0.16" + "@graphql-tools/utils" "6.0.16" + "@types/http-proxy-agent" "^2.0.2" + "@types/js-yaml" "^3.12.5" + "@types/json-stable-stringify" "^1.0.32" + "@types/jsonwebtoken" "^8.5.0" + ajv "^6.12.3" + bluebird "^3.7.2" + chalk "^4.1.0" + debug "^4.1.1" + dotenv "^8.2.0" fs-extra "9.0.1" - prisma-yml "1.34.10" + graphql-request "^2.0.0" + http-proxy-agent "^4.0.1" + https-proxy-agent "^5.0.0" + isomorphic-fetch "^2.2.1" + js-yaml "^3.14.0" + json-stable-stringify "^1.0.1" + jsonwebtoken "^8.5.1" + lodash "^4.17.19" + replaceall "^0.1.6" + scuid "^1.1.0" tslib "~2.0.0" + yaml-ast-parser "^0.0.43" "@graphql-tools/relay-operation-optimizer@6.0.15": version "6.0.15" @@ -1025,22 +993,22 @@ "@graphql-tools/utils" "6.0.15" relay-compiler "10.0.0" -"@graphql-tools/schema@6.0.15": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-6.0.15.tgz#b016f9f36820342982887a291baa7e7d11b039ae" - integrity sha512-Wo+d6/OPjeXjwB1pcqsWmqLdweGH+BVhvKe/YPQA/uiWr8ikgShvNLNiuF03gc/1AMR487A09XcPEyabRKJLew== +"@graphql-tools/schema@6.0.16": + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-6.0.16.tgz#778e6eefbc48052538d1f8976b1ecf50e2330e1b" + integrity sha512-e5jqE13L5eywCc0Uqlf2ThgScj1KgrCQmwvm+giVK0Dh9goMbwLZt/ciEJSr/LYn/vsH5sec9Qu5Jml6IX7zLA== dependencies: - "@graphql-tools/utils" "6.0.15" + "@graphql-tools/utils" "6.0.16" tslib "~2.0.0" -"@graphql-tools/url-loader@6.0.15", "@graphql-tools/url-loader@^6.0.0": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/url-loader/-/url-loader-6.0.15.tgz#3ad621ed75c03fbc0ea08d2560f379a053c4035f" - integrity sha512-/iGuK7J9yCECYMYQJqKNWnz4ytPHppkxh4YS5Ud9QPDNl488e+eInyNbkdiWcFGyZ4KHqEnXSDdRFg3mFNrMnw== +"@graphql-tools/url-loader@6.0.16", "@graphql-tools/url-loader@^6.0.0": + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/url-loader/-/url-loader-6.0.16.tgz#db8e3ecba7e0f6ca9ec1261942d9800f494d0d86" + integrity sha512-b+dwCDTcWIGOCYNYUKr6nbkAi8uOmgYHCf1wXsG09gV8uchU74tL8ebxBoaIEU8C9GSqterK2Y7mNjWyw3UdQQ== dependencies: - "@graphql-tools/delegate" "6.0.15" - "@graphql-tools/utils" "6.0.15" - "@graphql-tools/wrap" "6.0.15" + "@graphql-tools/delegate" "6.0.16" + "@graphql-tools/utils" "6.0.16" + "@graphql-tools/wrap" "6.0.16" "@types/websocket" "1.0.1" cross-fetch "3.0.5" subscriptions-transport-ws "0.9.17" @@ -1048,7 +1016,7 @@ valid-url "1.0.9" websocket "1.0.31" -"@graphql-tools/utils@6.0.15", "@graphql-tools/utils@^6.0.0": +"@graphql-tools/utils@6.0.15": version "6.0.15" resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-6.0.15.tgz#6d54d383285bea3c22797531933b62a408e78e49" integrity sha512-VG5cMLPgh9RDLGHamGpXVnBrNw7bZGT46LrxK7IIqDZI9H0GPsRCo8+p+CfDkw0IlDiEECb624WVCpm9IYNecA== @@ -1056,14 +1024,22 @@ "@ardatan/aggregate-error" "0.0.1" camel-case "4.1.1" -"@graphql-tools/wrap@6.0.15": - version "6.0.15" - resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-6.0.15.tgz#1b4a43d406f3894e4cbc931f9d4e0d282ab0076e" - integrity sha512-yWiDBrbzml6PRl4aeJBLNGPw385LFtszMfkfYwjLSWvNyVILDCMa/XWHThw4FMaZ1nPL0GuLggW2bVkUBi3TYA== +"@graphql-tools/utils@6.0.16", "@graphql-tools/utils@^6.0.0": + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-6.0.16.tgz#f36cadb2638771ff111270711b30daa31be5d6d6" + integrity sha512-WSYVqiIpda0CzXgHuKBJkqE0zZs4aruoVxn5KVMmqDoZbPVJ4f/pATVgKYyelOlBlx5gOfs8PCFpWcQhDB39LA== dependencies: - "@graphql-tools/delegate" "6.0.15" - "@graphql-tools/schema" "6.0.15" - "@graphql-tools/utils" "6.0.15" + "@ardatan/aggregate-error" "0.0.1" + camel-case "4.1.1" + +"@graphql-tools/wrap@6.0.16": + version "6.0.16" + resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-6.0.16.tgz#4a0903a936772599d1c14c4f0f1f1c5d5142fa7f" + integrity sha512-Q1VECNmmRygX1qdlGEF6dimAiuX9rauqalJif2zL9Fa4uORSvPr3VxOA8A0+4ypz2QYL+PjqQ88rCATUZxpY9g== + dependencies: + "@graphql-tools/delegate" "6.0.16" + "@graphql-tools/schema" "6.0.16" + "@graphql-tools/utils" "6.0.16" aggregate-error "3.0.1" tslib "~2.0.0" @@ -1287,15 +1263,6 @@ resolved "https://registry.yarnpkg.com/@klasa/utils/-/utils-0.0.8.tgz#8b017d8f7a771e5c1894b85f8dafefc219fc9d76" integrity sha512-6G/P9/HM8fTanKUFPrODFmmD3ff8Jwr7gG//2BsTeWfGBBulDn/H8ObWRJjIu81nLKX1I4iQ1jNcK5uOfso6ug== -"@marionebl/sander@^0.6.0": - version "0.6.1" - resolved "https://registry.yarnpkg.com/@marionebl/sander/-/sander-0.6.1.tgz#1958965874f24bc51be48875feb50d642fc41f7b" - integrity sha1-GViWWHTyS8Ub5Ih1/rUNZC/EH3s= - dependencies: - graceful-fs "^4.1.3" - mkdirp "^0.5.1" - rimraf "^2.5.2" - "@nodelib/fs.scandir@2.1.3": version "2.1.3" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b" @@ -1391,6 +1358,11 @@ dependencies: "@sinonjs/commons" "^1.7.0" +"@tootallnate/once@1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" + integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== + "@types/accepts@*", "@types/accepts@^1.3.5": version "1.3.5" resolved "https://registry.yarnpkg.com/@types/accepts/-/accepts-1.3.5.tgz#c34bec115cfc746e04fe5a059df4ce7e7b391575" @@ -1534,6 +1506,13 @@ resolved "https://registry.yarnpkg.com/@types/http-assert/-/http-assert-1.5.1.tgz#d775e93630c2469c2f980fc27e3143240335db3b" integrity sha512-PGAK759pxyfXE78NbKxyfRcWYA/KwW17X290cNev/qAsn9eQIxkH4shoNBafH37wewhDG/0p1cHPbK6+SzZjWQ== +"@types/http-proxy-agent@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@types/http-proxy-agent/-/http-proxy-agent-2.0.2.tgz#942c1f35c7e1f0edd1b6ffae5d0f9051cfb32be1" + integrity sha512-2S6IuBRhqUnH1/AUx9k8KWtY3Esg4eqri946MnxTG5HwehF1S5mqLln8fcyMiuQkY72p2gH3W+rIPqp5li0LyQ== + dependencies: + "@types/node" "*" + "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": version "2.0.3" resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" @@ -1554,19 +1533,36 @@ "@types/istanbul-lib-coverage" "*" "@types/istanbul-lib-report" "*" -"@types/jest@^26.0.7": - version "26.0.8" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.8.tgz#f5c5559cf25911ce227f7ce30f1f160f24966369" - integrity sha512-eo3VX9jGASSuv680D4VQ89UmuLZneNxv2MCZjfwlInav05zXVJTzfc//lavdV0GPwSxsXJTy2jALscB7Acqg0g== +"@types/jest@^26.0.9": + version "26.0.9" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.9.tgz#0543b57da5f0cd949c5f423a00c56c492289c989" + integrity sha512-k4qFfJ5AUKrWok5KYXp2EPm89b0P/KZpl7Vg4XuOTVVQEhLDBDBU3iBFrjjdgd8fLw96aAtmnwhXHl63bWeBQQ== dependencies: jest-diff "^25.2.1" pretty-format "^25.2.1" +"@types/js-yaml@^3.12.5": + version "3.12.5" + resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-3.12.5.tgz#136d5e6a57a931e1cce6f9d8126aa98a9c92a6bb" + integrity sha512-JCcp6J0GV66Y4ZMDAQCXot4xprYB+Zfd3meK9+INSJeVZwJmHAW30BBEEkPzXswMXuiyReUGOP3GxrADc9wPww== + "@types/json-schema@^7.0.3": version "7.0.5" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd" integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== +"@types/json-stable-stringify@^1.0.32": + version "1.0.32" + resolved "https://registry.yarnpkg.com/@types/json-stable-stringify/-/json-stable-stringify-1.0.32.tgz#121f6917c4389db3923640b2e68de5fa64dda88e" + integrity sha512-q9Q6+eUEGwQkv4Sbst3J4PNgDOvpuVuKj79Hl/qnmBMEIPzB5QoFRUtjcgcg2xNUZyYUGXBk5wYIBKHt0A+Mxw== + +"@types/jsonwebtoken@^8.5.0": + version "8.5.0" + resolved "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-8.5.0.tgz#2531d5e300803aa63279b232c014acf780c981c5" + integrity sha512-9bVao7LvyorRGZCw0VmH/dr7Og+NdjYSsKAxB43OQoComFbBgsEpoR9JW6+qSq/ogwVBg8GI2MfAlk4SYI4OLg== + dependencies: + "@types/node" "*" + "@types/keygrip@*": version "1.0.2" resolved "https://registry.yarnpkg.com/@types/keygrip/-/keygrip-1.0.2.tgz#513abfd256d7ad0bf1ee1873606317b33b1b2a72" @@ -1620,7 +1616,7 @@ "@types/node" "*" form-data "^3.0.0" -"@types/node@*", "@types/node@^14.0.11", "@types/node@^14.0.26": +"@types/node@*", "@types/node@^14.0.11", "@types/node@^14.0.27": version "14.0.27" resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.27.tgz#a151873af5a5e851b51b3b065c9e63390a9e0eb1" integrity sha512-kVrqXhbclHNHGu9ztnAwSncIgJv/FaxmzXJvGXNdcCpV1b8u1/Mi6z6m0vwy0LzKeXFTPLH0NzwmoJ3fNCIq0g== @@ -1707,51 +1703,51 @@ "@types/yargs-parser" "*" "@typescript-eslint/eslint-plugin@^3.2.0": - version "3.7.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.7.1.tgz#d144c49a9a0ffe8dd704bb179c243df76c111bc9" - integrity sha512-3DB9JDYkMrc8Au00rGFiJLK2Ja9CoMP6Ut0sHsXp3ZtSugjNxvSSHTnKLfo4o+QmjYBJqEznDqsG1zj4F2xnsg== + version "3.8.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.8.0.tgz#f82947bcdd9a4e42be7ad80dfd61f1dc411dd1df" + integrity sha512-lFb4VCDleFSR+eo4Ew+HvrJ37ZH1Y9ZyE+qyP7EiwBpcCVxwmUc5PAqhShCQ8N8U5vqYydm74nss+a0wrrCErw== dependencies: - "@typescript-eslint/experimental-utils" "3.7.1" + "@typescript-eslint/experimental-utils" "3.8.0" debug "^4.1.1" functional-red-black-tree "^1.0.1" regexpp "^3.0.0" semver "^7.3.2" tsutils "^3.17.1" -"@typescript-eslint/experimental-utils@3.7.1": - version "3.7.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.7.1.tgz#ab036caaed4c870d22531d41f9352f3147364d61" - integrity sha512-TqE97pv7HrqWcGJbLbZt1v59tcqsSVpWTOf1AqrWK7n8nok2sGgVtYRuGXeNeLw3wXlLEbY1MKP3saB2HsO/Ng== +"@typescript-eslint/experimental-utils@3.8.0": + version "3.8.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.8.0.tgz#ac1f7c88322dcfb7635ece6f0441516dd951099a" + integrity sha512-o8T1blo1lAJE0QDsW7nSyvZHbiDzQDjINJKyB44Z3sSL39qBy5L10ScI/XwDtaiunoyKGLiY9bzRk4YjsUZl8w== dependencies: "@types/json-schema" "^7.0.3" - "@typescript-eslint/types" "3.7.1" - "@typescript-eslint/typescript-estree" "3.7.1" + "@typescript-eslint/types" "3.8.0" + "@typescript-eslint/typescript-estree" "3.8.0" eslint-scope "^5.0.0" eslint-utils "^2.0.0" "@typescript-eslint/parser@^3.2.0": - version "3.7.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.7.1.tgz#5d9ccecb116d12d9c6073e9861c57c9b1aa88128" - integrity sha512-W4QV/gXvfIsccN8225784LNOorcm7ch68Fi3V4Wg7gmkWSQRKevO4RrRqWo6N/Z/myK1QAiGgeaXN57m+R/8iQ== + version "3.8.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.8.0.tgz#8e1dcd404299bf79492409c81c415fa95a7c622b" + integrity sha512-u5vjOBaCsnMVQOvkKCXAmmOhyyMmFFf5dbkM3TIbg3MZ2pyv5peE4gj81UAbTHwTOXEwf7eCQTUMKrDl/+qGnA== dependencies: "@types/eslint-visitor-keys" "^1.0.0" - "@typescript-eslint/experimental-utils" "3.7.1" - "@typescript-eslint/types" "3.7.1" - "@typescript-eslint/typescript-estree" "3.7.1" + "@typescript-eslint/experimental-utils" "3.8.0" + "@typescript-eslint/types" "3.8.0" + "@typescript-eslint/typescript-estree" "3.8.0" eslint-visitor-keys "^1.1.0" -"@typescript-eslint/types@3.7.1": - version "3.7.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.7.1.tgz#90375606b2fd73c1224fe9e397ee151e28fa1e0c" - integrity sha512-PZe8twm5Z4b61jt7GAQDor6KiMhgPgf4XmUb9zdrwTbgtC/Sj29gXP1dws9yEn4+aJeyXrjsD9XN7AWFhmnUfg== +"@typescript-eslint/types@3.8.0": + version "3.8.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.8.0.tgz#58581dd863f86e0cd23353d94362bb90b4bea796" + integrity sha512-8kROmEQkv6ss9kdQ44vCN1dTrgu4Qxrd2kXr10kz2NP5T8/7JnEfYNxCpPkArbLIhhkGLZV3aVMplH1RXQRF7Q== -"@typescript-eslint/typescript-estree@3.7.1": - version "3.7.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.7.1.tgz#ce1ffbd0fa53f34d4ce851a7a364e392432f6eb3" - integrity sha512-m97vNZkI08dunYOr2lVZOHoyfpqRs0KDpd6qkGaIcLGhQ2WPtgHOd/eVbsJZ0VYCQvupKrObAGTOvk3tfpybYA== +"@typescript-eslint/typescript-estree@3.8.0": + version "3.8.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.8.0.tgz#0606d19f629f813dbdd5a34c7a1e895d6191cac6" + integrity sha512-MTv9nPDhlKfclwnplRNDL44mP2SY96YmPGxmMbMy6x12I+pERcxpIUht7DXZaj4mOKKtet53wYYXU0ABaiXrLw== dependencies: - "@typescript-eslint/types" "3.7.1" - "@typescript-eslint/visitor-keys" "3.7.1" + "@typescript-eslint/types" "3.8.0" + "@typescript-eslint/visitor-keys" "3.8.0" debug "^4.1.1" glob "^7.1.6" is-glob "^4.0.1" @@ -1759,10 +1755,10 @@ semver "^7.3.2" tsutils "^3.17.1" -"@typescript-eslint/visitor-keys@3.7.1": - version "3.7.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.7.1.tgz#b90191e74efdee656be8c5a30f428ed16dda46d1" - integrity sha512-xn22sQbEya+Utj2IqJHGLA3i1jDzR43RzWupxojbSWnj3nnPLavaQmWe5utw03CwYao3r00qzXfgJMGNkrzrAA== +"@typescript-eslint/visitor-keys@3.8.0": + version "3.8.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.8.0.tgz#ad35110249fb3fc30a36bfcbfeea93e710cfaab1" + integrity sha512-gfqQWyVPpT9NpLREXNR820AYwgz+Kr1GuF3nf1wxpHD6hdxI62tq03ToomFnDxY0m3pUB39IF7sil7D5TQexLA== dependencies: eslint-visitor-keys "^1.1.0" @@ -1782,9 +1778,9 @@ JSONStream@^1.0.4: through ">=2.2.7 <3" abab@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a" - integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg== + version "2.0.4" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.4.tgz#6dfa57b417ca06d21b2478f0e638302f99c2405c" + integrity sha512-Eu9ELJWCz/c1e9gTiCY+FceWxcqzjYEbqMgtndnuSqZSUCOL73TWNK2mHfIj4Cw2E/ongOp+JISVNCmovt2KYQ== accepts@^1.3.5, accepts@~1.3.7: version "1.3.7" @@ -1813,21 +1809,21 @@ acorn-walk@^7.1.1: integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== acorn@^7.1.1, acorn@^7.3.1: - version "7.3.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd" - integrity sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA== + version "7.4.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c" + integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w== add-stream@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" integrity sha1-anmQQ3ynNtXhKI25K9MmbV9csqo= -agent-base@4, agent-base@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee" - integrity sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg== +agent-base@6: + version "6.0.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.1.tgz#808007e4e5867decb0ab6ab2f928fbdb5a596db4" + integrity sha512-01q25QQDwLSsyfhrKbn8yuur+JNw0H+0Y4JiGIKd3z9aYk/w/2kxD/Upc+t2ZBBSUNff50VjPsSW2YxM8QYKVg== dependencies: - es6-promisify "^5.0.0" + debug "4" aggregate-error@3.0.1, aggregate-error@^3.0.0: version "3.0.1" @@ -1837,16 +1833,6 @@ aggregate-error@3.0.1, aggregate-error@^3.0.0: clean-stack "^2.0.0" indent-string "^4.0.0" -ajv@5: - version "5.5.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" - integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU= - dependencies: - co "^4.6.0" - fast-deep-equal "^1.0.0" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.3.0" - ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3: version "6.12.3" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706" @@ -2049,7 +2035,7 @@ apollo-server-errors@^2.4.2: resolved "https://registry.yarnpkg.com/apollo-server-errors/-/apollo-server-errors-2.4.2.tgz#1128738a1d14da989f58420896d70524784eabe5" integrity sha512-FeGxW3Batn6sUtX3OVVUm7o56EgjxDlmgpTLNyWcLb0j6P8mw9oLNyAm3B+deHA4KNdNHO5BmHS2g1SJYjqPCQ== -apollo-server-express@^2.16.0: +apollo-server-express@^2.16.1: version "2.16.1" resolved "https://registry.yarnpkg.com/apollo-server-express/-/apollo-server-express-2.16.1.tgz#7438bca590ef8577d24d20ba0b6d582c120c0146" integrity sha512-Oq5YNcaMYnRk6jDmA9LWf8oSd2KHDVe7jQ4wtooAvG9FVUD+FaFBgSkytXHMvtifQh2wdF07Ri8uDLMz6IQjTw== @@ -2297,15 +2283,6 @@ babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0: resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf" integrity sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ== -babel-polyfill@6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" - integrity sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM= - dependencies: - babel-runtime "^6.26.0" - core-js "^2.5.0" - regenerator-runtime "^0.10.5" - babel-preset-current-node-syntax@^0.1.2: version "0.1.3" resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.3.tgz#b4b547acddbf963cba555ba9f9cbbb70bfd044da" @@ -2364,14 +2341,6 @@ babel-preset-jest@^26.2.0: babel-plugin-jest-hoist "^26.2.0" babel-preset-current-node-syntax "^0.1.2" -babel-runtime@^6.23.0, babel-runtime@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" - integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.11.0" - backo2@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" @@ -2407,7 +2376,7 @@ binary-extensions@^2.0.0: resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== -bluebird@^3.5.1: +bluebird@^3.7.2: version "3.7.2" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== @@ -2520,25 +2489,6 @@ cachedir@2.2.0: resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.2.0.tgz#19afa4305e05d79e417566882e0c8f960f62ff0e" integrity sha512-VvxA0xhNqIIfg0V9AmJkDg91DaJwryutH5rVEZAhcNi4iJFj9f+QxmAjgK1LT9I8OgToX27fypX6/MeCXVbBjQ== -caller-callsite@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" - integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= - dependencies: - callsites "^2.0.0" - -caller-path@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" - integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= - dependencies: - caller-callsite "^2.0.0" - -callsites@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" - integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= - callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -2610,15 +2560,6 @@ caseless@~0.12.0: resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= -chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - chalk@4.1.0, chalk@^4.0.0, chalk@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" @@ -2638,6 +2579,15 @@ chalk@^1.0.0, chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" +chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + chalk@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" @@ -2893,15 +2843,7 @@ content-type@~1.0.4: resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== -conventional-changelog-angular@^1.3.3: - version "1.6.6" - resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.6.6.tgz#b27f2b315c16d0a1f23eb181309d0e6a4698ea0f" - integrity sha512-suQnFSqCxRwyBxY68pYTsFkG0taIdinHLNEAX5ivtw8bCRnIgnpvcHmlR/yjUyZIrNPYAoXlY1WiEKWgSE4BNg== - dependencies: - compare-func "^1.3.1" - q "^1.5.1" - -conventional-changelog-angular@^5.0.10: +conventional-changelog-angular@^5.0.0, conventional-changelog-angular@^5.0.10: version "5.0.10" resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.10.tgz#5cf7b00dd315b6a6a558223c80d5ef24ddb34205" integrity sha512-k7RPPRs0vp8+BtPsM9uDxRl6KcgqtCJmzRD1wRtgqmhQ96g8ifBGo9O/TZBG23jqlXS/rg8BKRDELxfnQQGiaA== @@ -2928,15 +2870,6 @@ conventional-changelog-config-spec@2.1.0: resolved "https://registry.yarnpkg.com/conventional-changelog-config-spec/-/conventional-changelog-config-spec-2.1.0.tgz#874a635287ef8b581fd8558532bf655d4fb59f2d" integrity sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ== -conventional-changelog-conventionalcommits@4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.2.1.tgz#d6cb2e2c5d7bfca044a08b9dba84b4082e1a1bd9" - integrity sha512-vC02KucnkNNap+foDKFm7BVUSDAXktXrUJqGszUuYnt6T0J2azsbYz/w9TDc3VsrW2v6JOtiQWVcgZnporHr4Q== - dependencies: - compare-func "^1.3.1" - lodash "^4.2.1" - q "^1.5.1" - conventional-changelog-conventionalcommits@4.3.0, conventional-changelog-conventionalcommits@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.3.0.tgz#c4205a659f7ca9d7881f29ee78a4e7d6aeb8b3c2" @@ -3103,12 +3036,12 @@ copy-descriptor@^0.1.0: resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= -core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0: +core-js@^2.4.1: version "2.6.11" resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== -core-js@^3.0.1: +core-js@^3.0.1, core-js@^3.6.1: version "3.6.5" resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a" integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA== @@ -3137,23 +3070,16 @@ cosmiconfig@6.0.0, cosmiconfig@^6.0.0: path-type "^4.0.0" yaml "^1.7.2" -cosmiconfig@^5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" - integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== - dependencies: - import-fresh "^2.0.0" - is-directory "^0.3.1" - js-yaml "^3.13.1" - parse-json "^4.0.0" - -cross-fetch@2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-2.2.2.tgz#a47ff4f7fc712daba8f6a695a11c948440d45723" - integrity sha1-pH/09/xxLauo9qaVoRyUhEDUVyM= +cosmiconfig@7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" + integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== dependencies: - node-fetch "2.1.2" - whatwg-fetch "2.0.4" + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" cross-fetch@3.0.5: version "3.0.5" @@ -3288,21 +3214,7 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3: dependencies: ms "2.0.0" -debug@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" - integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== - dependencies: - ms "2.0.0" - -debug@^3.1.0: - version "3.2.6" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" - integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== - dependencies: - ms "^2.1.1" - -debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: +debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== @@ -3474,10 +3386,10 @@ dot-prop@^3.0.0, dot-prop@^5.2.0: dependencies: is-obj "^2.0.0" -dotenv@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-4.0.0.tgz#864ef1379aced55ce6f95debecdce179f7a0cd1d" - integrity sha1-hk7xN5rO1Vzm+V3r7NzhefegzR0= +dotenv@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" + integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== dotgitignore@^2.1.0: version "2.1.0" @@ -3604,18 +3516,6 @@ es6-iterator@~2.0.3: es5-ext "^0.10.35" es6-symbol "^3.1.1" -es6-promise@^4.0.3: - version "4.2.8" - resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" - integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== - -es6-promisify@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" - integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM= - dependencies: - es6-promise "^4.0.3" - es6-symbol@^3.1.1, es6-symbol@~3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" @@ -3672,9 +3572,9 @@ eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== eslint@^7.2.0: - version "7.5.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.5.0.tgz#9ecbfad62216d223b82ac9ffea7ef3444671d135" - integrity sha512-vlUP10xse9sWt9SGRtcr1LAC67BENcQMFeV+w5EvLEoFe3xJ8cF1Skd0msziRx/VMC+72B4DxreCE+OR12OA6Q== + version "7.6.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.6.0.tgz#522d67cfaea09724d96949c70e7a0550614d64d6" + integrity sha512-QlAManNtqr7sozWm5TF4wIH9gmUm2hE3vNRUvyoYAa4y1l5/jxD/PQStEjBMQtCqZmSep8UxrcecI60hOpe61w== dependencies: "@babel/code-frame" "^7.0.0" ajv "^6.10.0" @@ -3747,9 +3647,9 @@ estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== estraverse@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642" - integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw== + version "5.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" + integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== esutils@^2.0.2: version "2.0.3" @@ -3932,11 +3832,6 @@ extsprintf@^1.2.0: resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= -fast-deep-equal@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" - integrity sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ= - fast-deep-equal@^3.1.1: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -4192,7 +4087,7 @@ fs-capacitor@^2.0.4: resolved "https://registry.yarnpkg.com/fs-capacitor/-/fs-capacitor-2.0.4.tgz#5a22e72d40ae5078b4fe64fe4d08c0d3fc88ad3c" integrity sha512-8S4f4WsCryNw2mJJchi46YgB6CR5Ze+4L1h8ewl9tEpL4SJ3ZO+c/bS4BWhB8bK+O3TMqhuZarTitd0S0eh2pA== -fs-extra@8.1.0: +fs-extra@8.1.0, fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== @@ -4211,15 +4106,6 @@ fs-extra@9.0.1: jsonfile "^6.0.1" universalify "^1.0.0" -fs-extra@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" - integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== - dependencies: - graceful-fs "^4.1.2" - jsonfile "^4.0.0" - universalify "^0.1.0" - fs-nextra@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/fs-nextra/-/fs-nextra-0.5.1.tgz#acf8bd3785a46a30573d3be768e158652191fafc" @@ -4245,7 +4131,7 @@ functional-red-black-tree@^1.0.1: resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= -fuse.js@^6.4.0: +fuse.js@^6.4.1: version "6.4.1" resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-6.4.1.tgz#76f1b4ab9cd021b854a68381b35628033d27507e" integrity sha512-+hAS7KYgLXontDh/vqffs7wIBw0ceb9Sx8ywZQhOsiQGcSO5zInGhttWOUYQYlvV/yYMJOacQ129Xs3mP3+oZQ== @@ -4449,7 +4335,7 @@ google-libphonenumber@^3.2.8: resolved "https://registry.yarnpkg.com/google-libphonenumber/-/google-libphonenumber-3.2.10.tgz#021a314652747d736a39e2e60dc670f0431425ad" integrity sha512-TsckE9O8QgqaIeaOXPjcJa4/kX3BzFdO1oCbMfmUpRZckml4xJhjJVxaT9Mdt/VrZZkT9lX44eHAEWfJK1tHtw== -graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4: +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4: version "4.2.4" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== @@ -4493,12 +4379,10 @@ graphql-query-complexity@^0.6.0: dependencies: lodash.get "^4.4.2" -graphql-request@^1.5.0: - version "1.8.2" - resolved "https://registry.yarnpkg.com/graphql-request/-/graphql-request-1.8.2.tgz#398d10ae15c585676741bde3fc01d5ca948f8fbe" - integrity sha512-dDX2M+VMsxXFCmUX0Vo0TopIZIX4ggzOtiCsThgtrKR4niiaagsGTDIHj3fsOMFETpa064vzovI+4YV4QnMbcg== - dependencies: - cross-fetch "2.2.2" +graphql-request@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/graphql-request/-/graphql-request-2.0.0.tgz#8dd12cf1eb2ce0c80f4114fd851741e091134862" + integrity sha512-Ww3Ax+G3l2d+mPT8w7HC9LfrKjutnCKtnDq7ZZp2ghVk5IQDjwAk3/arRF1ix17Ky15rm0hrSKVKxRhIVlSuoQ== graphql-subscriptions@^1.0.0, graphql-subscriptions@^1.1.0: version "1.1.0" @@ -4507,12 +4391,7 @@ graphql-subscriptions@^1.0.0, graphql-subscriptions@^1.1.0: dependencies: iterall "^1.2.1" -graphql-tag@2.10.4: - version "2.10.4" - resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.10.4.tgz#2f301a98219be8b178a6453bb7e33b79b66d8f83" - integrity sha512-O7vG5BT3w6Sotc26ybcvLKNTdfr4GfsIVMD+LdYqXCeJIYPRyp8BIsDOUtxw7S1PYvRw5vH3278J2EDezR6mfA== - -graphql-tag@^2.9.2: +graphql-tag@2.11.0, graphql-tag@^2.9.2: version "2.11.0" resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.11.0.tgz#1deb53a01c46a7eb401d6cb59dec86fa1cccbffd" integrity sha512-VmsD5pJqWJnQZMUeRwrDhfgoyqcfwEkvtpANqcoUG8/tOLkwNgU9mzub/Mc78OJMhHjx7gfAMTxzdG43VGg3bA== @@ -4712,13 +4591,14 @@ http-errors@~1.7.2: statuses ">= 1.5.0 < 2" toidentifier "1.0.0" -http-proxy-agent@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz#e4821beef5b2142a2026bd73926fe537631c5405" - integrity sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg== +http-proxy-agent@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" + integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== dependencies: - agent-base "4" - debug "3.1.0" + "@tootallnate/once" "1" + agent-base "6" + debug "4" http-signature@~1.2.0: version "1.2.0" @@ -4729,13 +4609,13 @@ http-signature@~1.2.0: jsprim "^1.2.2" sshpk "^1.7.0" -https-proxy-agent@^2.2.1: - version "2.2.4" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz#4ee7a737abd92678a293d9b34a1af4d0d08c787b" - integrity sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg== +https-proxy-agent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" + integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== dependencies: - agent-base "^4.3.0" - debug "^3.1.0" + agent-base "6" + debug "4" human-signals@^1.1.1: version "1.1.1" @@ -4787,15 +4667,7 @@ immutable@~3.7.6: resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b" integrity sha1-E7TTyxK++hVIKib+Gy665kAHHks= -import-fresh@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" - integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= - dependencies: - caller-path "^2.0.0" - resolve-from "^3.0.0" - -import-fresh@^3.0.0, import-fresh@^3.1.0: +import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== @@ -4999,15 +4871,10 @@ is-descriptor@^1.0.0, is-descriptor@^1.0.2: is-data-descriptor "^1.0.0" kind-of "^6.0.2" -is-directory@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" - integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= - is-docker@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.0.0.tgz#2cb0df0e75e2d064fe1864c37cdeacb7b2dcf25b" - integrity sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ== + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156" + integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw== is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" @@ -5112,9 +4979,9 @@ is-promise@^2.1.0: integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== is-regex@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" - integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" + integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== dependencies: has-symbols "^1.0.1" @@ -5273,7 +5140,7 @@ jest-changed-files@^26.2.0: execa "^4.0.0" throat "^5.0.0" -jest-circus@^26.1.0: +jest-circus@^26.2.2: version "26.2.2" resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-26.2.2.tgz#478589b6c6490507f312de25d98cd33b8d49740b" integrity sha512-o8yaf3atbWED1dfM/Vxl7VsgN/tDskh5ptqsTF/oCCLPo5RVV39Ubr5/Y9fdW/mP/gNQe+QsrqcHKXHdK/00GQ== @@ -5666,7 +5533,7 @@ jest-worker@^26.2.1: merge-stream "^2.0.0" supports-color "^7.0.0" -jest@^26.1.0: +jest@^26.2.2: version "26.2.2" resolved "https://registry.yarnpkg.com/jest/-/jest-26.2.2.tgz#a022303887b145147204c5f66e6a5c832333c7e7" integrity sha512-EkJNyHiAG1+A8pqSz7cXttoVa34hOEzN/MrnJhYnfp5VHxflVcf2pu3oJSrhiy6LfIutLdWo+n6q63tjcoIeig== @@ -5680,7 +5547,7 @@ jest@^26.1.0: resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@^3.10.0, js-yaml@^3.13.1: +js-yaml@^3.13.1, js-yaml@^3.14.0: version "3.14.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== @@ -5735,11 +5602,6 @@ json-parse-better-errors@^1.0.1: resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== -json-schema-traverse@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" - integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= - json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -5808,7 +5670,7 @@ jsonparse@^1.2.0: resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= -jsonwebtoken@^8.1.0: +jsonwebtoken@^8.5.1: version "8.5.1" resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz#00e71e0b8df54c2121a1f26137df2280673bcc0d" integrity sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w== @@ -6090,7 +5952,7 @@ lodash.templatesettings@^4.0.0: dependencies: lodash._reinterpolate "^3.0.0" -lodash@4.17.15, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.4, lodash@^4.2.1, lodash@~4.17.15: +lodash@4.17.15, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@~4.17.15: version "4.17.19" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== @@ -6511,11 +6373,6 @@ no-case@^3.0.3: lower-case "^2.0.1" tslib "^1.10.0" -node-fetch@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.1.2.tgz#ab884e8e7e57e38a944753cec706f788d1768bb5" - integrity sha1-q4hOjn5X44qUR1POxwb3iNF2i7U= - node-fetch@2.6.0, node-fetch@^2.1.2, node-fetch@^2.2.0, node-fetch@^2.6.0: version "2.6.0" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" @@ -6710,9 +6567,9 @@ onetime@^2.0.0: mimic-fn "^1.0.0" onetime@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" - integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== + version "5.1.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.1.tgz#5c8016847b0d67fcedb7eef254751cfcdc7e9418" + integrity sha512-ZpZpjcJeugQfWsfyQlshVoowIIQ1qBGSVll4rfDq6JJVO//fesjoX808hXWfBjY+ROZgpKDI5TRSRBSoJiZ8eg== dependencies: mimic-fn "^2.1.0" @@ -7079,35 +6936,6 @@ pretty-format@^26.2.0: ansi-styles "^4.0.0" react-is "^16.12.0" -prisma-json-schema@0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/prisma-json-schema/-/prisma-json-schema-0.1.3.tgz#6c302db8f464f8b92e8694d3f7dd3f41ac9afcbe" - integrity sha512-XZrf2080oR81mY8/OC8al68HiwBm0nXlFE727JIia0ZbNqwuV4MyRYk6E0+OIa6/9KEYxZrcAmoBs3EW1cCvnA== - -prisma-yml@1.34.10: - version "1.34.10" - resolved "https://registry.yarnpkg.com/prisma-yml/-/prisma-yml-1.34.10.tgz#0ef1ad3a125f54f200289cba56bdd9597f17f410" - integrity sha512-N9on+Cf/XQKFGUULk/681tnpfqiZ19UBTurFMm+/9rnml37mteDaFr2k8yz+K8Gt2xpEJ7kBu7ikG5PrXI1uoA== - dependencies: - ajv "5" - bluebird "^3.5.1" - chalk "^2.3.0" - debug "^3.1.0" - dotenv "^4.0.0" - fs-extra "^7.0.0" - graphql-request "^1.5.0" - http-proxy-agent "^2.1.0" - https-proxy-agent "^2.2.1" - isomorphic-fetch "^2.2.1" - js-yaml "^3.10.0" - json-stable-stringify "^1.0.1" - jsonwebtoken "^8.1.0" - lodash "^4.17.4" - prisma-json-schema "0.1.3" - replaceall "^0.1.6" - scuid "^1.0.2" - yaml-ast-parser "^0.0.40" - process-nextick-args@~2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" @@ -7322,15 +7150,10 @@ reflect-metadata@^0.1.13: resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08" integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg== -regenerator-runtime@^0.10.5: - version "0.10.5" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" - integrity sha1-M2w+/BIgrc7dosn6tntaeVWjNlg= - -regenerator-runtime@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" - integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== +regenerator-runtime@0.13.5: + version "0.13.5" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" + integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== regenerator-runtime@^0.13.4: version "0.13.7" @@ -7498,11 +7321,6 @@ resolve-from@5.0.0, resolve-from@^5.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== -resolve-from@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" - integrity sha1-six699nWiBvItuZTM17rywoYh0g= - resolve-from@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" @@ -7565,13 +7383,6 @@ rimraf@2.6.3: dependencies: glob "^7.1.3" -rimraf@^2.5.2: - version "2.7.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== - dependencies: - glob "^7.1.3" - rimraf@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" @@ -7645,7 +7456,7 @@ saxes@^5.0.0: dependencies: xmlchars "^2.2.0" -scuid@^1.0.2: +scuid@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/scuid/-/scuid-1.1.0.tgz#d3f9f920956e737a60f72d0e4ad280bf324d5dab" integrity sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg== @@ -7665,16 +7476,16 @@ semver-regex@^2.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== -semver@6.3.0, semver@^6.0.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@7.x, semver@^7.1.1, semver@^7.2.1, semver@^7.3.2: +semver@7.3.2, semver@7.x, semver@^7.1.1, semver@^7.2.1, semver@^7.3.2: version "7.3.2" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== +semver@^6.0.0, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + send@0.17.1: version "0.17.1" resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" @@ -8429,7 +8240,7 @@ ts-invariant@^0.4.0: dependencies: tslib "^1.9.3" -ts-jest@^26.1.3: +ts-jest@^26.1.4: version "26.1.4" resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-26.1.4.tgz#87d41a96016a8efe4b8cc14501d3785459af6fa6" integrity sha512-Nd7diUX6NZWfWq6FYyvcIPR/c7GbEF75fH1R6coOp3fbNzbRJBZZAn0ueVS0r8r9ral1VcrpneAFAwB3TsVS1Q== @@ -8529,7 +8340,7 @@ type-fest@^0.8.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== -type-graphql@^1.0.0-rc.2: +type-graphql@^1.0.0-rc.3: version "1.0.0-rc.3" resolved "https://registry.yarnpkg.com/type-graphql/-/type-graphql-1.0.0-rc.3.tgz#fa5bfb91f6e11b0a223598d71dffc22c4206fd78" integrity sha512-klfYIlnmwvYbBQh5CHDfDzbaN3/v6y4ZSfdz9K96QNBvf9+7iE3jMG0weKWFqv5aY1iI3ZMiQznxIpbbGaKQmA== @@ -8584,9 +8395,9 @@ ua-parser-js@^0.7.18: integrity sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ== uglify-js@^3.1.4: - version "3.10.0" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.0.tgz#397a7e6e31ce820bfd1cb55b804ee140c587a9e7" - integrity sha512-Esj5HG5WAyrLIdYU74Z3JdG2PxdIusvj6IWHMtlyESxc7kcDz7zYlYjpnSokn1UbpV0d/QX9fan7gkCNd/9BQA== + version "3.10.1" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.1.tgz#dd14767eb7150de97f2573a5ff210db14fffe4ad" + integrity sha512-RjxApKkrPJB6kjJxQS3iZlf///REXWYxYJxO/MpmlQzVkDWVI3PSnCBWezMecmTU/TRkNxrl8bmsfFQCp+LO+Q== unc-path-regex@^0.1.2: version "0.1.2" @@ -8795,15 +8606,10 @@ whatwg-encoding@^1.0.5: dependencies: iconv-lite "0.4.24" -whatwg-fetch@2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" - integrity sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng== - whatwg-fetch@>=0.10.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.2.0.tgz#8e134f701f0a4ab5fda82626f113e2b647fd16dc" - integrity sha512-SdGPoQMMnzVYThUbSrEvqTlkvC1Ux27NehaJ/GUHBfNrh5Mjg+1/uRyFMwVnxO2MrikMWvWAqUGgQOfVU4hT7w== + version "3.3.1" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.3.1.tgz#6c1acf37dec176b0fd6bc9a74b616bec2f612935" + integrity sha512-faXTmGDcLuEPBpJwb5LQfyxvubKiE+RlbmmweFGKjvIPFj4uHTTfdtTIkdTRhC6OSH9S9eyYbx8kZ0UEaQqYTA== whatwg-mimetype@^2.3.0: version "2.3.0" @@ -8958,12 +8764,12 @@ yallist@^3.0.2: resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== -yaml-ast-parser@^0.0.40: - version "0.0.40" - resolved "https://registry.yarnpkg.com/yaml-ast-parser/-/yaml-ast-parser-0.0.40.tgz#08536d4e73d322b1c9ce207ab8dd70e04d20ae6e" - integrity sha1-CFNtTnPTIrHJziB6uN1w4E0grm4= +yaml-ast-parser@^0.0.43: + version "0.0.43" + resolved "https://registry.yarnpkg.com/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz#e8a23e6fb4c38076ab92995c5dca33f3d3d7c9bb" + integrity sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A== -yaml@^1.7.2: +yaml@^1.10.0, yaml@^1.7.2: version "1.10.0" resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==