graph.json 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327
  1. {
  2. "nodes": {
  3. "95355232": {
  4. "id": "95355232",
  5. "label": "JwtModule",
  6. "parent": "-536515674",
  7. "metadata": {
  8. "type": "provider",
  9. "internal": true,
  10. "sourceModuleName": "JwtModule",
  11. "durable": false,
  12. "static": true,
  13. "scope": 0,
  14. "transient": false,
  15. "exported": false,
  16. "token": "JwtModule",
  17. "initTime": 1.3889579996466637
  18. }
  19. },
  20. "203550704": {
  21. "id": "203550704",
  22. "label": "ExternalContextCreator",
  23. "parent": "555176277",
  24. "metadata": {
  25. "type": "provider",
  26. "internal": true,
  27. "sourceModuleName": "InternalCoreModule",
  28. "durable": false,
  29. "static": true,
  30. "scope": 0,
  31. "transient": false,
  32. "exported": true,
  33. "token": "ExternalContextCreator"
  34. }
  35. },
  36. "211572259": {
  37. "id": "211572259",
  38. "label": "ConfigHostModule",
  39. "metadata": {
  40. "type": "module",
  41. "global": true,
  42. "dynamic": false,
  43. "internal": false
  44. }
  45. },
  46. "225063248": {
  47. "id": "225063248",
  48. "label": "InternalCoreModule",
  49. "parent": "555176277",
  50. "metadata": {
  51. "type": "provider",
  52. "internal": true,
  53. "sourceModuleName": "InternalCoreModule",
  54. "durable": false,
  55. "static": true,
  56. "scope": 0,
  57. "transient": false,
  58. "exported": false,
  59. "token": "InternalCoreModule",
  60. "initTime": 2.810791999101639
  61. }
  62. },
  63. "233936880": {
  64. "id": "233936880",
  65. "label": "AppController",
  66. "parent": "-19112576",
  67. "metadata": {
  68. "type": "controller",
  69. "internal": false,
  70. "sourceModuleName": "AppModule",
  71. "durable": false,
  72. "static": true,
  73. "transient": false,
  74. "exported": false,
  75. "token": "AppController"
  76. }
  77. },
  78. "266839889": {
  79. "id": "266839889",
  80. "label": "EntityManager",
  81. "parent": "-1026304274",
  82. "metadata": {
  83. "type": "provider",
  84. "internal": false,
  85. "sourceModuleName": "TypeOrmCoreModule",
  86. "durable": false,
  87. "static": true,
  88. "transient": false,
  89. "exported": true,
  90. "token": "EntityManager"
  91. }
  92. },
  93. "303302557": {
  94. "id": "303302557",
  95. "label": "ModuleRef",
  96. "parent": "211572259",
  97. "metadata": {
  98. "type": "provider",
  99. "internal": true,
  100. "sourceModuleName": "ConfigHostModule",
  101. "durable": false,
  102. "static": true,
  103. "scope": 0,
  104. "transient": false,
  105. "exported": false,
  106. "token": "ModuleRef"
  107. }
  108. },
  109. "373235992": {
  110. "id": "373235992",
  111. "label": "SandboxedCodeExecutor",
  112. "parent": "-1033621697",
  113. "metadata": {
  114. "type": "provider",
  115. "internal": false,
  116. "sourceModuleName": "DevtoolsModule",
  117. "durable": false,
  118. "static": true,
  119. "transient": false,
  120. "exported": false,
  121. "token": "SandboxedCodeExecutor",
  122. "initTime": 3.408957999199629
  123. }
  124. },
  125. "385041166": {
  126. "id": "385041166",
  127. "label": "JwtStrategy",
  128. "parent": "-1134487807",
  129. "metadata": {
  130. "type": "provider",
  131. "internal": false,
  132. "sourceModuleName": "AuthModule",
  133. "durable": false,
  134. "static": true,
  135. "transient": false,
  136. "exported": false,
  137. "token": "JwtStrategy",
  138. "initTime": 2.633415997028351
  139. }
  140. },
  141. "400681591": {
  142. "id": "400681591",
  143. "label": "DiscoveryService",
  144. "parent": "-643397745",
  145. "metadata": {
  146. "type": "provider",
  147. "internal": false,
  148. "sourceModuleName": "DiscoveryModule",
  149. "durable": false,
  150. "static": true,
  151. "transient": false,
  152. "exported": true,
  153. "token": "DiscoveryService",
  154. "initTime": 2.79695900157094
  155. }
  156. },
  157. "457665600": {
  158. "id": "457665600",
  159. "label": "AliyunModule",
  160. "parent": "612499341",
  161. "metadata": {
  162. "type": "provider",
  163. "internal": true,
  164. "sourceModuleName": "AliyunModule",
  165. "durable": false,
  166. "static": true,
  167. "scope": 0,
  168. "transient": false,
  169. "exported": false,
  170. "token": "AliyunModule",
  171. "initTime": 1.7141249999403954
  172. }
  173. },
  174. "545846241": {
  175. "id": "545846241",
  176. "label": "TypeOrmModule",
  177. "metadata": {
  178. "type": "module",
  179. "global": false,
  180. "dynamic": true,
  181. "internal": false
  182. }
  183. },
  184. "545846242": {
  185. "id": "545846242",
  186. "label": "TypeOrmModule",
  187. "metadata": {
  188. "type": "module",
  189. "global": false,
  190. "dynamic": true,
  191. "internal": false
  192. }
  193. },
  194. "555176277": {
  195. "id": "555176277",
  196. "label": "InternalCoreModule",
  197. "metadata": {
  198. "type": "module",
  199. "global": true,
  200. "dynamic": true,
  201. "internal": true
  202. }
  203. },
  204. "590446087": {
  205. "id": "590446087",
  206. "label": "ModuleRef",
  207. "parent": "612499341",
  208. "metadata": {
  209. "type": "provider",
  210. "internal": true,
  211. "sourceModuleName": "AliyunModule",
  212. "durable": false,
  213. "static": true,
  214. "scope": 0,
  215. "transient": false,
  216. "exported": false,
  217. "token": "ModuleRef"
  218. }
  219. },
  220. "603011239": {
  221. "id": "603011239",
  222. "label": "UsersService",
  223. "parent": "-2003726489",
  224. "metadata": {
  225. "type": "provider",
  226. "internal": false,
  227. "sourceModuleName": "UsersModule",
  228. "durable": false,
  229. "static": true,
  230. "transient": false,
  231. "exported": true,
  232. "token": "UsersService"
  233. }
  234. },
  235. "612499341": {
  236. "id": "612499341",
  237. "label": "AliyunModule",
  238. "metadata": {
  239. "type": "module",
  240. "global": false,
  241. "dynamic": false,
  242. "internal": false
  243. }
  244. },
  245. "671882984": {
  246. "id": "671882984",
  247. "label": "Reflector",
  248. "parent": "555176277",
  249. "metadata": {
  250. "type": "provider",
  251. "internal": true,
  252. "sourceModuleName": "InternalCoreModule",
  253. "durable": false,
  254. "static": true,
  255. "transient": false,
  256. "exported": true,
  257. "token": "Reflector",
  258. "initTime": 2.732208002358675
  259. }
  260. },
  261. "687352615": {
  262. "id": "687352615",
  263. "label": "ModuleRef",
  264. "parent": "545846241",
  265. "metadata": {
  266. "type": "provider",
  267. "internal": true,
  268. "sourceModuleName": "TypeOrmModule",
  269. "durable": false,
  270. "static": true,
  271. "scope": 0,
  272. "transient": false,
  273. "exported": false,
  274. "token": "ModuleRef"
  275. }
  276. },
  277. "687352616": {
  278. "id": "687352616",
  279. "label": "ModuleRef",
  280. "parent": "545846242",
  281. "metadata": {
  282. "type": "provider",
  283. "internal": true,
  284. "sourceModuleName": "TypeOrmModule",
  285. "durable": false,
  286. "static": true,
  287. "scope": 0,
  288. "transient": false,
  289. "exported": false,
  290. "token": "ModuleRef"
  291. }
  292. },
  293. "712454178": {
  294. "id": "712454178",
  295. "label": "ApplicationConfig",
  296. "parent": "1482218087",
  297. "metadata": {
  298. "type": "provider",
  299. "internal": true,
  300. "sourceModuleName": "ThrottlerModule",
  301. "durable": false,
  302. "static": true,
  303. "scope": 0,
  304. "transient": false,
  305. "exported": false,
  306. "token": "ApplicationConfig"
  307. }
  308. },
  309. "731684192": {
  310. "id": "731684192",
  311. "label": "TypeOrmCoreModule",
  312. "parent": "-1026304274",
  313. "metadata": {
  314. "type": "provider",
  315. "internal": true,
  316. "sourceModuleName": "TypeOrmCoreModule",
  317. "durable": false,
  318. "static": true,
  319. "scope": 0,
  320. "transient": false,
  321. "exported": false,
  322. "token": "TypeOrmCoreModule"
  323. }
  324. },
  325. "863216333": {
  326. "id": "863216333",
  327. "label": "ConfigModule",
  328. "metadata": {
  329. "type": "module",
  330. "global": false,
  331. "dynamic": false,
  332. "internal": false
  333. }
  334. },
  335. "863216334": {
  336. "id": "863216334",
  337. "label": "ConfigModule",
  338. "metadata": {
  339. "type": "module",
  340. "global": false,
  341. "dynamic": true,
  342. "internal": false
  343. }
  344. },
  345. "863216335": {
  346. "id": "863216335",
  347. "label": "ConfigModule",
  348. "metadata": {
  349. "type": "module",
  350. "global": false,
  351. "dynamic": true,
  352. "internal": false
  353. }
  354. },
  355. "915774976": {
  356. "id": "915774976",
  357. "label": "ApplicationConfig",
  358. "parent": "1712628187",
  359. "metadata": {
  360. "type": "provider",
  361. "internal": true,
  362. "sourceModuleName": "ConfigModule",
  363. "durable": false,
  364. "static": true,
  365. "scope": 0,
  366. "transient": false,
  367. "exported": false,
  368. "token": "ApplicationConfig"
  369. }
  370. },
  371. "930519593": {
  372. "id": "930519593",
  373. "label": "ConfigService",
  374. "parent": "211572259",
  375. "metadata": {
  376. "type": "provider",
  377. "internal": false,
  378. "sourceModuleName": "ConfigHostModule",
  379. "durable": false,
  380. "static": true,
  381. "transient": false,
  382. "exported": true,
  383. "token": "Symbol(CONFIG_SERVICE)",
  384. "initTime": 2.812959000468254
  385. }
  386. },
  387. "1014874916": {
  388. "id": "1014874916",
  389. "label": "TypeOrmModuleId",
  390. "parent": "-1026304274",
  391. "metadata": {
  392. "type": "provider",
  393. "internal": false,
  394. "sourceModuleName": "TypeOrmCoreModule",
  395. "durable": false,
  396. "static": true,
  397. "scope": 0,
  398. "transient": false,
  399. "exported": false,
  400. "token": "TypeOrmModuleId"
  401. }
  402. },
  403. "1063746662": {
  404. "id": "1063746662",
  405. "label": "CONFIGURATION_TOKEN",
  406. "parent": "211572259",
  407. "metadata": {
  408. "type": "provider",
  409. "internal": false,
  410. "sourceModuleName": "ConfigHostModule",
  411. "durable": false,
  412. "static": true,
  413. "transient": false,
  414. "exported": true,
  415. "token": "CONFIGURATION_TOKEN",
  416. "initTime": 1.9665419980883598
  417. }
  418. },
  419. "1070370213": {
  420. "id": "1070370213",
  421. "label": "JwtService",
  422. "parent": "-536515674",
  423. "metadata": {
  424. "type": "provider",
  425. "internal": false,
  426. "sourceModuleName": "JwtModule",
  427. "durable": false,
  428. "static": true,
  429. "transient": false,
  430. "exported": true,
  431. "token": "JwtService"
  432. }
  433. },
  434. "1144875719": {
  435. "id": "1144875719",
  436. "label": "ModuleRef",
  437. "parent": "863216333",
  438. "metadata": {
  439. "type": "provider",
  440. "internal": true,
  441. "sourceModuleName": "ConfigModule",
  442. "durable": false,
  443. "static": true,
  444. "scope": 0,
  445. "transient": false,
  446. "exported": false,
  447. "token": "ModuleRef"
  448. }
  449. },
  450. "1144875720": {
  451. "id": "1144875720",
  452. "label": "ModuleRef",
  453. "parent": "863216334",
  454. "metadata": {
  455. "type": "provider",
  456. "internal": true,
  457. "sourceModuleName": "ConfigModule",
  458. "durable": false,
  459. "static": true,
  460. "scope": 0,
  461. "transient": false,
  462. "exported": false,
  463. "token": "ModuleRef"
  464. }
  465. },
  466. "1144875721": {
  467. "id": "1144875721",
  468. "label": "ModuleRef",
  469. "parent": "863216335",
  470. "metadata": {
  471. "type": "provider",
  472. "internal": true,
  473. "sourceModuleName": "ConfigModule",
  474. "durable": false,
  475. "static": true,
  476. "scope": 0,
  477. "transient": false,
  478. "exported": false,
  479. "token": "ModuleRef"
  480. }
  481. },
  482. "1259084392": {
  483. "id": "1259084392",
  484. "label": "SmsRecordRepository",
  485. "parent": "545846241",
  486. "metadata": {
  487. "type": "provider",
  488. "internal": false,
  489. "sourceModuleName": "TypeOrmModule",
  490. "durable": false,
  491. "static": true,
  492. "transient": false,
  493. "exported": true,
  494. "token": "SmsRecordRepository"
  495. }
  496. },
  497. "1310883338": {
  498. "id": "1310883338",
  499. "label": "CONFIGURATION_LOADER",
  500. "parent": "863216334",
  501. "metadata": {
  502. "type": "provider",
  503. "internal": false,
  504. "sourceModuleName": "ConfigModule",
  505. "durable": false,
  506. "static": true,
  507. "transient": false,
  508. "exported": false,
  509. "token": "CONFIGURATION_LOADER",
  510. "initTime": 2.864833001047373
  511. }
  512. },
  513. "1333473084": {
  514. "id": "1333473084",
  515. "label": "CONFIGURATION_LOADER",
  516. "parent": "863216335",
  517. "metadata": {
  518. "type": "provider",
  519. "internal": false,
  520. "sourceModuleName": "ConfigModule",
  521. "durable": false,
  522. "static": true,
  523. "transient": false,
  524. "exported": false,
  525. "token": "CONFIGURATION_LOADER",
  526. "initTime": 2.582125000655651
  527. }
  528. },
  529. "1349506255": {
  530. "id": "1349506255",
  531. "label": "ModuleRef",
  532. "parent": "-1327562795",
  533. "metadata": {
  534. "type": "provider",
  535. "internal": true,
  536. "sourceModuleName": "FileModule",
  537. "durable": false,
  538. "static": true,
  539. "scope": 0,
  540. "transient": false,
  541. "exported": false,
  542. "token": "ModuleRef"
  543. }
  544. },
  545. "1376902224": {
  546. "id": "1376902224",
  547. "label": "FileModule",
  548. "parent": "-1327562795",
  549. "metadata": {
  550. "type": "provider",
  551. "internal": true,
  552. "sourceModuleName": "FileModule",
  553. "durable": false,
  554. "static": true,
  555. "scope": 0,
  556. "transient": false,
  557. "exported": false,
  558. "token": "FileModule",
  559. "initTime": 1.3686669990420341
  560. }
  561. },
  562. "1399306624": {
  563. "id": "1399306624",
  564. "label": "ThrottlerModule",
  565. "parent": "1482218087",
  566. "metadata": {
  567. "type": "provider",
  568. "internal": true,
  569. "sourceModuleName": "ThrottlerModule",
  570. "durable": false,
  571. "static": true,
  572. "scope": 0,
  573. "transient": false,
  574. "exported": false,
  575. "token": "ThrottlerModule",
  576. "initTime": 1.9613750018179417
  577. }
  578. },
  579. "1404752088": {
  580. "id": "1404752088",
  581. "label": "AuthController",
  582. "parent": "-1134487807",
  583. "metadata": {
  584. "type": "controller",
  585. "internal": false,
  586. "sourceModuleName": "AuthModule",
  587. "durable": false,
  588. "static": true,
  589. "transient": false,
  590. "exported": false,
  591. "token": "AuthController"
  592. }
  593. },
  594. "1434456218": {
  595. "id": "1434456218",
  596. "label": "Reflector",
  597. "parent": "555176277",
  598. "metadata": {
  599. "type": "provider",
  600. "internal": true,
  601. "sourceModuleName": "InternalCoreModule",
  602. "durable": false,
  603. "static": true,
  604. "scope": 0,
  605. "transient": false,
  606. "exported": true,
  607. "token": "Reflector",
  608. "initTime": 3.626333002001047
  609. }
  610. },
  611. "1475573941": {
  612. "id": "1475573941",
  613. "label": "ModuleRef",
  614. "parent": "-2135742481",
  615. "metadata": {
  616. "type": "provider",
  617. "internal": true,
  618. "sourceModuleName": "TypeOrmModule",
  619. "durable": false,
  620. "static": true,
  621. "scope": 0,
  622. "transient": false,
  623. "exported": false,
  624. "token": "ModuleRef"
  625. }
  626. },
  627. "1482218087": {
  628. "id": "1482218087",
  629. "label": "ThrottlerModule",
  630. "metadata": {
  631. "type": "module",
  632. "global": true,
  633. "dynamic": true,
  634. "internal": false
  635. }
  636. },
  637. "1489982643": {
  638. "id": "1489982643",
  639. "label": "ApplicationConfig",
  640. "parent": "-759474504",
  641. "metadata": {
  642. "type": "provider",
  643. "internal": true,
  644. "sourceModuleName": "SmsModule",
  645. "durable": false,
  646. "static": true,
  647. "scope": 0,
  648. "transient": false,
  649. "exported": false,
  650. "token": "ApplicationConfig"
  651. }
  652. },
  653. "1529900285": {
  654. "id": "1529900285",
  655. "label": "Connection",
  656. "parent": "-1026304274",
  657. "metadata": {
  658. "type": "provider",
  659. "internal": false,
  660. "sourceModuleName": "TypeOrmCoreModule",
  661. "durable": false,
  662. "static": true,
  663. "scope": 0,
  664. "transient": false,
  665. "exported": true,
  666. "token": "Connection"
  667. }
  668. },
  669. "1542581243": {
  670. "id": "1542581243",
  671. "label": "ModuleRef",
  672. "parent": "-1134487807",
  673. "metadata": {
  674. "type": "provider",
  675. "internal": true,
  676. "sourceModuleName": "AuthModule",
  677. "durable": false,
  678. "static": true,
  679. "scope": 0,
  680. "transient": false,
  681. "exported": false,
  682. "token": "ModuleRef"
  683. }
  684. },
  685. "1609867136": {
  686. "id": "1609867136",
  687. "label": "FileController",
  688. "parent": "-1327562795",
  689. "metadata": {
  690. "type": "controller",
  691. "internal": false,
  692. "sourceModuleName": "FileModule",
  693. "durable": false,
  694. "static": true,
  695. "transient": false,
  696. "exported": false,
  697. "token": "FileController"
  698. }
  699. },
  700. "1623724461": {
  701. "id": "1623724461",
  702. "label": "ModuleRef",
  703. "parent": "1482218087",
  704. "metadata": {
  705. "type": "provider",
  706. "internal": true,
  707. "sourceModuleName": "ThrottlerModule",
  708. "durable": false,
  709. "static": true,
  710. "scope": 0,
  711. "transient": false,
  712. "exported": false,
  713. "token": "ModuleRef"
  714. }
  715. },
  716. "1688619051": {
  717. "id": "1688619051",
  718. "label": "DevtoolsHttpServerHost",
  719. "parent": "-1033621697",
  720. "metadata": {
  721. "type": "provider",
  722. "internal": false,
  723. "sourceModuleName": "DevtoolsModule",
  724. "durable": false,
  725. "static": true,
  726. "transient": false,
  727. "exported": false,
  728. "token": "DevtoolsHttpServerHost"
  729. }
  730. },
  731. "1690574933": {
  732. "id": "1690574933",
  733. "label": "ModuleRef",
  734. "parent": "1712628187",
  735. "metadata": {
  736. "type": "provider",
  737. "internal": true,
  738. "sourceModuleName": "ConfigModule",
  739. "durable": false,
  740. "static": true,
  741. "scope": 0,
  742. "transient": false,
  743. "exported": false,
  744. "token": "ModuleRef"
  745. }
  746. },
  747. "1705191969": {
  748. "id": "1705191969",
  749. "label": "AliyunService",
  750. "parent": "612499341",
  751. "metadata": {
  752. "type": "provider",
  753. "internal": false,
  754. "sourceModuleName": "AliyunModule",
  755. "durable": false,
  756. "static": true,
  757. "transient": false,
  758. "exported": true,
  759. "token": "AliyunService",
  760. "initTime": 2.923583000898361
  761. }
  762. },
  763. "1712628187": {
  764. "id": "1712628187",
  765. "label": "ConfigModule",
  766. "metadata": {
  767. "type": "module",
  768. "global": true,
  769. "dynamic": true,
  770. "internal": false
  771. }
  772. },
  773. "1712941473": {
  774. "id": "1712941473",
  775. "label": "ApplicationConfig",
  776. "parent": "-536515674",
  777. "metadata": {
  778. "type": "provider",
  779. "internal": true,
  780. "sourceModuleName": "JwtModule",
  781. "durable": false,
  782. "static": true,
  783. "scope": 0,
  784. "transient": false,
  785. "exported": false,
  786. "token": "ApplicationConfig"
  787. }
  788. },
  789. "1769319388": {
  790. "id": "1769319388",
  791. "label": "ConfigModule",
  792. "parent": "1712628187",
  793. "metadata": {
  794. "type": "provider",
  795. "internal": true,
  796. "sourceModuleName": "ConfigModule",
  797. "durable": false,
  798. "static": true,
  799. "scope": 0,
  800. "transient": false,
  801. "exported": false,
  802. "token": "ConfigModule",
  803. "initTime": 2.0757080018520355
  804. }
  805. },
  806. "1787828844": {
  807. "id": "1787828844",
  808. "label": "ConfigHostModule",
  809. "parent": "211572259",
  810. "metadata": {
  811. "type": "provider",
  812. "internal": true,
  813. "sourceModuleName": "ConfigHostModule",
  814. "durable": false,
  815. "static": true,
  816. "scope": 0,
  817. "transient": false,
  818. "exported": false,
  819. "token": "ConfigHostModule",
  820. "initTime": 1.9723340012133121
  821. }
  822. },
  823. "1811342262": {
  824. "id": "1811342262",
  825. "label": "CONFIGURABLE_MODULE_OPTIONS[7adf7a3c9416a5fd2f4c0]",
  826. "parent": "-1033621697",
  827. "metadata": {
  828. "type": "provider",
  829. "internal": false,
  830. "sourceModuleName": "DevtoolsModule",
  831. "durable": false,
  832. "static": true,
  833. "scope": 0,
  834. "transient": false,
  835. "exported": false,
  836. "token": "CONFIGURABLE_MODULE_OPTIONS[7adf7a3c9416a5fd2f4c0]"
  837. }
  838. },
  839. "1817334964": {
  840. "id": "1817334964",
  841. "label": "ModuleRef",
  842. "parent": "-1026304274",
  843. "metadata": {
  844. "type": "provider",
  845. "internal": true,
  846. "sourceModuleName": "TypeOrmCoreModule",
  847. "durable": false,
  848. "static": true,
  849. "scope": 0,
  850. "transient": false,
  851. "exported": false,
  852. "token": "ModuleRef"
  853. }
  854. },
  855. "1837744481": {
  856. "id": "1837744481",
  857. "label": "FileService",
  858. "parent": "-1327562795",
  859. "metadata": {
  860. "type": "provider",
  861. "internal": false,
  862. "sourceModuleName": "FileModule",
  863. "durable": false,
  864. "static": true,
  865. "transient": false,
  866. "exported": false,
  867. "token": "FileService"
  868. }
  869. },
  870. "1864578377": {
  871. "id": "1864578377",
  872. "label": "SmsService",
  873. "parent": "-759474504",
  874. "metadata": {
  875. "type": "provider",
  876. "internal": false,
  877. "sourceModuleName": "SmsModule",
  878. "durable": false,
  879. "static": true,
  880. "transient": false,
  881. "exported": true,
  882. "token": "SmsService"
  883. }
  884. },
  885. "1919157847": {
  886. "id": "1919157847",
  887. "label": "REQUEST",
  888. "parent": "555176277",
  889. "metadata": {
  890. "type": "provider",
  891. "internal": true,
  892. "sourceModuleName": "InternalCoreModule",
  893. "durable": false,
  894. "static": false,
  895. "scope": 2,
  896. "transient": false,
  897. "exported": true,
  898. "token": "REQUEST",
  899. "initTime": 2.215082999318838
  900. }
  901. },
  902. "1989588516": {
  903. "id": "1989588516",
  904. "label": "ApplicationConfig",
  905. "parent": "-1033621697",
  906. "metadata": {
  907. "type": "provider",
  908. "internal": true,
  909. "sourceModuleName": "DevtoolsModule",
  910. "durable": false,
  911. "static": true,
  912. "scope": 0,
  913. "transient": false,
  914. "exported": false,
  915. "token": "ApplicationConfig"
  916. }
  917. },
  918. "2075644217": {
  919. "id": "2075644217",
  920. "label": "TypeOrmModuleOptions",
  921. "parent": "-1026304274",
  922. "metadata": {
  923. "type": "provider",
  924. "internal": false,
  925. "sourceModuleName": "TypeOrmCoreModule",
  926. "durable": false,
  927. "static": true,
  928. "transient": false,
  929. "exported": false,
  930. "token": "TypeOrmModuleOptions"
  931. }
  932. },
  933. "2118694856": {
  934. "id": "2118694856",
  935. "label": "ApplicationConfig",
  936. "parent": "211572259",
  937. "metadata": {
  938. "type": "provider",
  939. "internal": true,
  940. "sourceModuleName": "ConfigHostModule",
  941. "durable": false,
  942. "static": true,
  943. "scope": 0,
  944. "transient": false,
  945. "exported": false,
  946. "token": "ApplicationConfig"
  947. }
  948. },
  949. "-1486320561": {
  950. "id": "-1486320561",
  951. "label": "ModuleRef",
  952. "parent": "555176277",
  953. "metadata": {
  954. "type": "provider",
  955. "internal": true,
  956. "sourceModuleName": "InternalCoreModule",
  957. "durable": false,
  958. "static": true,
  959. "scope": 0,
  960. "transient": false,
  961. "exported": false,
  962. "token": "ModuleRef"
  963. }
  964. },
  965. "-651043398": {
  966. "id": "-651043398",
  967. "label": "ApplicationConfig",
  968. "parent": "555176277",
  969. "metadata": {
  970. "type": "provider",
  971. "internal": true,
  972. "sourceModuleName": "InternalCoreModule",
  973. "durable": false,
  974. "static": true,
  975. "scope": 0,
  976. "transient": false,
  977. "exported": false,
  978. "token": "ApplicationConfig"
  979. }
  980. },
  981. "-255469305": {
  982. "id": "-255469305",
  983. "label": "INQUIRER",
  984. "parent": "555176277",
  985. "metadata": {
  986. "type": "provider",
  987. "internal": true,
  988. "sourceModuleName": "InternalCoreModule",
  989. "durable": false,
  990. "static": true,
  991. "scope": 1,
  992. "transient": true,
  993. "exported": true,
  994. "token": "INQUIRER",
  995. "initTime": 2.2113750018179417
  996. }
  997. },
  998. "-26938366": {
  999. "id": "-26938366",
  1000. "label": "ModulesContainer",
  1001. "parent": "555176277",
  1002. "metadata": {
  1003. "type": "provider",
  1004. "internal": true,
  1005. "sourceModuleName": "InternalCoreModule",
  1006. "durable": false,
  1007. "static": true,
  1008. "scope": 0,
  1009. "transient": false,
  1010. "exported": true,
  1011. "token": "ModulesContainer"
  1012. }
  1013. },
  1014. "-326832201": {
  1015. "id": "-326832201",
  1016. "label": "HttpAdapterHost",
  1017. "parent": "555176277",
  1018. "metadata": {
  1019. "type": "provider",
  1020. "internal": true,
  1021. "sourceModuleName": "InternalCoreModule",
  1022. "durable": false,
  1023. "static": true,
  1024. "scope": 0,
  1025. "transient": false,
  1026. "exported": true,
  1027. "token": "HttpAdapterHost"
  1028. }
  1029. },
  1030. "-553129559": {
  1031. "id": "-553129559",
  1032. "label": "HttpAdapterHost",
  1033. "parent": "555176277",
  1034. "metadata": {
  1035. "type": "provider",
  1036. "internal": true,
  1037. "sourceModuleName": "InternalCoreModule",
  1038. "durable": false,
  1039. "static": true,
  1040. "scope": 0,
  1041. "transient": false,
  1042. "exported": true,
  1043. "token": "HttpAdapterHost",
  1044. "initTime": 2.9109590016305447
  1045. }
  1046. },
  1047. "-702581189": {
  1048. "id": "-702581189",
  1049. "label": "LazyModuleLoader",
  1050. "parent": "555176277",
  1051. "metadata": {
  1052. "type": "provider",
  1053. "internal": true,
  1054. "sourceModuleName": "InternalCoreModule",
  1055. "durable": false,
  1056. "static": true,
  1057. "transient": false,
  1058. "exported": true,
  1059. "token": "LazyModuleLoader",
  1060. "initTime": 2.4618749991059303
  1061. }
  1062. },
  1063. "-1904419534": {
  1064. "id": "-1904419534",
  1065. "label": "SerializedGraph",
  1066. "parent": "555176277",
  1067. "metadata": {
  1068. "type": "provider",
  1069. "internal": true,
  1070. "sourceModuleName": "InternalCoreModule",
  1071. "durable": false,
  1072. "static": true,
  1073. "scope": 0,
  1074. "transient": false,
  1075. "exported": true,
  1076. "token": "SerializedGraph"
  1077. }
  1078. },
  1079. "-19112576": {
  1080. "id": "-19112576",
  1081. "label": "AppModule",
  1082. "metadata": {
  1083. "type": "module",
  1084. "global": false,
  1085. "dynamic": false,
  1086. "internal": false
  1087. }
  1088. },
  1089. "-2139588960": {
  1090. "id": "-2139588960",
  1091. "label": "AppModule",
  1092. "parent": "-19112576",
  1093. "metadata": {
  1094. "type": "provider",
  1095. "internal": true,
  1096. "sourceModuleName": "AppModule",
  1097. "durable": false,
  1098. "static": true,
  1099. "scope": 0,
  1100. "transient": false,
  1101. "exported": false,
  1102. "token": "AppModule",
  1103. "initTime": 2.4542919993400574
  1104. }
  1105. },
  1106. "-71302842": {
  1107. "id": "-71302842",
  1108. "label": "ModuleRef",
  1109. "parent": "-19112576",
  1110. "metadata": {
  1111. "type": "provider",
  1112. "internal": true,
  1113. "sourceModuleName": "AppModule",
  1114. "durable": false,
  1115. "static": true,
  1116. "scope": 0,
  1117. "transient": false,
  1118. "exported": false,
  1119. "token": "ModuleRef"
  1120. }
  1121. },
  1122. "-2064622725": {
  1123. "id": "-2064622725",
  1124. "label": "ApplicationConfig",
  1125. "parent": "-19112576",
  1126. "metadata": {
  1127. "type": "provider",
  1128. "internal": true,
  1129. "sourceModuleName": "AppModule",
  1130. "durable": false,
  1131. "static": true,
  1132. "scope": 0,
  1133. "transient": false,
  1134. "exported": false,
  1135. "token": "ApplicationConfig"
  1136. }
  1137. },
  1138. "-2130614055": {
  1139. "id": "-2130614055",
  1140. "label": "AppService",
  1141. "parent": "-19112576",
  1142. "metadata": {
  1143. "type": "provider",
  1144. "internal": false,
  1145. "sourceModuleName": "AppModule",
  1146. "durable": false,
  1147. "static": true,
  1148. "transient": false,
  1149. "exported": false,
  1150. "token": "AppService",
  1151. "initTime": 2.362790998071432
  1152. }
  1153. },
  1154. "-1033621697": {
  1155. "id": "-1033621697",
  1156. "label": "DevtoolsModule",
  1157. "metadata": {
  1158. "type": "module",
  1159. "global": false,
  1160. "dynamic": true,
  1161. "internal": false
  1162. }
  1163. },
  1164. "-1142553948": {
  1165. "id": "-1142553948",
  1166. "label": "DevtoolsModule",
  1167. "parent": "-1033621697",
  1168. "metadata": {
  1169. "type": "provider",
  1170. "internal": true,
  1171. "sourceModuleName": "DevtoolsModule",
  1172. "durable": false,
  1173. "static": true,
  1174. "scope": 0,
  1175. "transient": false,
  1176. "exported": false,
  1177. "token": "DevtoolsModule",
  1178. "initTime": 2.3459170013666153
  1179. }
  1180. },
  1181. "-751962311": {
  1182. "id": "-751962311",
  1183. "label": "ModuleRef",
  1184. "parent": "-1033621697",
  1185. "metadata": {
  1186. "type": "provider",
  1187. "internal": true,
  1188. "sourceModuleName": "DevtoolsModule",
  1189. "durable": false,
  1190. "static": true,
  1191. "scope": 0,
  1192. "transient": false,
  1193. "exported": false,
  1194. "token": "ModuleRef"
  1195. }
  1196. },
  1197. "-643397745": {
  1198. "id": "-643397745",
  1199. "label": "DiscoveryModule",
  1200. "metadata": {
  1201. "type": "module",
  1202. "global": false,
  1203. "dynamic": false,
  1204. "internal": false
  1205. }
  1206. },
  1207. "-1048394624": {
  1208. "id": "-1048394624",
  1209. "label": "DiscoveryModule",
  1210. "parent": "-643397745",
  1211. "metadata": {
  1212. "type": "provider",
  1213. "internal": true,
  1214. "sourceModuleName": "DiscoveryModule",
  1215. "durable": false,
  1216. "static": true,
  1217. "scope": 0,
  1218. "transient": false,
  1219. "exported": false,
  1220. "token": "DiscoveryModule",
  1221. "initTime": 2.1185000017285347
  1222. }
  1223. },
  1224. "-501891371": {
  1225. "id": "-501891371",
  1226. "label": "ModuleRef",
  1227. "parent": "-643397745",
  1228. "metadata": {
  1229. "type": "provider",
  1230. "internal": true,
  1231. "sourceModuleName": "DiscoveryModule",
  1232. "durable": false,
  1233. "static": true,
  1234. "scope": 0,
  1235. "transient": false,
  1236. "exported": false,
  1237. "token": "ModuleRef"
  1238. }
  1239. },
  1240. "-1413161654": {
  1241. "id": "-1413161654",
  1242. "label": "ApplicationConfig",
  1243. "parent": "-643397745",
  1244. "metadata": {
  1245. "type": "provider",
  1246. "internal": true,
  1247. "sourceModuleName": "DiscoveryModule",
  1248. "durable": false,
  1249. "static": true,
  1250. "scope": 0,
  1251. "transient": false,
  1252. "exported": false,
  1253. "token": "ApplicationConfig"
  1254. }
  1255. },
  1256. "-438112115": {
  1257. "id": "-438112115",
  1258. "label": "MetadataScanner",
  1259. "parent": "-643397745",
  1260. "metadata": {
  1261. "type": "provider",
  1262. "internal": false,
  1263. "sourceModuleName": "DiscoveryModule",
  1264. "durable": false,
  1265. "static": true,
  1266. "transient": false,
  1267. "exported": true,
  1268. "token": "MetadataScanner",
  1269. "initTime": 2.1332500018179417
  1270. }
  1271. },
  1272. "-503631789": {
  1273. "id": "-503631789",
  1274. "label": "ConfigService",
  1275. "parent": "1712628187",
  1276. "metadata": {
  1277. "type": "provider",
  1278. "internal": false,
  1279. "sourceModuleName": "ConfigModule",
  1280. "durable": false,
  1281. "static": true,
  1282. "transient": false,
  1283. "exported": true,
  1284. "token": "ConfigService"
  1285. }
  1286. },
  1287. "-1952648617": {
  1288. "id": "-1952648617",
  1289. "label": "THROTTLER:MODULE_OPTIONS",
  1290. "parent": "1482218087",
  1291. "metadata": {
  1292. "type": "provider",
  1293. "internal": false,
  1294. "sourceModuleName": "ThrottlerModule",
  1295. "durable": false,
  1296. "static": true,
  1297. "transient": false,
  1298. "exported": true,
  1299. "token": "THROTTLER:MODULE_OPTIONS"
  1300. }
  1301. },
  1302. "-470986226": {
  1303. "id": "-470986226",
  1304. "label": "Symbol(ThrottlerStorage)",
  1305. "parent": "1482218087",
  1306. "metadata": {
  1307. "type": "provider",
  1308. "internal": false,
  1309. "sourceModuleName": "ThrottlerModule",
  1310. "durable": false,
  1311. "static": true,
  1312. "transient": false,
  1313. "exported": true,
  1314. "token": "Symbol(ThrottlerStorage)"
  1315. }
  1316. },
  1317. "-491114354": {
  1318. "id": "-491114354",
  1319. "label": "ConfigModule",
  1320. "parent": "863216333",
  1321. "metadata": {
  1322. "type": "provider",
  1323. "internal": true,
  1324. "sourceModuleName": "ConfigModule",
  1325. "durable": false,
  1326. "static": true,
  1327. "scope": 0,
  1328. "transient": false,
  1329. "exported": false,
  1330. "token": "ConfigModule",
  1331. "initTime": 1.8596660010516644
  1332. }
  1333. },
  1334. "-408540750": {
  1335. "id": "-408540750",
  1336. "label": "ApplicationConfig",
  1337. "parent": "863216333",
  1338. "metadata": {
  1339. "type": "provider",
  1340. "internal": true,
  1341. "sourceModuleName": "ConfigModule",
  1342. "durable": false,
  1343. "static": true,
  1344. "scope": 0,
  1345. "transient": false,
  1346. "exported": false,
  1347. "token": "ApplicationConfig"
  1348. }
  1349. },
  1350. "-503631788": {
  1351. "id": "-503631788",
  1352. "label": "ConfigService",
  1353. "parent": "863216333",
  1354. "metadata": {
  1355. "type": "provider",
  1356. "internal": false,
  1357. "sourceModuleName": "ConfigModule",
  1358. "durable": false,
  1359. "static": true,
  1360. "scope": 0,
  1361. "transient": false,
  1362. "exported": true,
  1363. "token": "ConfigService"
  1364. }
  1365. },
  1366. "-2135742481": {
  1367. "id": "-2135742481",
  1368. "label": "TypeOrmModule",
  1369. "metadata": {
  1370. "type": "module",
  1371. "global": false,
  1372. "dynamic": true,
  1373. "internal": false
  1374. }
  1375. },
  1376. "-1872891520": {
  1377. "id": "-1872891520",
  1378. "label": "TypeOrmModule",
  1379. "parent": "-2135742481",
  1380. "metadata": {
  1381. "type": "provider",
  1382. "internal": true,
  1383. "sourceModuleName": "TypeOrmModule",
  1384. "durable": false,
  1385. "static": true,
  1386. "scope": 0,
  1387. "transient": false,
  1388. "exported": false,
  1389. "token": "TypeOrmModule",
  1390. "initTime": 1.8517090007662773
  1391. }
  1392. },
  1393. "-1068388246": {
  1394. "id": "-1068388246",
  1395. "label": "ApplicationConfig",
  1396. "parent": "-2135742481",
  1397. "metadata": {
  1398. "type": "provider",
  1399. "internal": true,
  1400. "sourceModuleName": "TypeOrmModule",
  1401. "durable": false,
  1402. "static": true,
  1403. "scope": 0,
  1404. "transient": false,
  1405. "exported": false,
  1406. "token": "ApplicationConfig"
  1407. }
  1408. },
  1409. "-1026304274": {
  1410. "id": "-1026304274",
  1411. "label": "TypeOrmCoreModule",
  1412. "metadata": {
  1413. "type": "module",
  1414. "global": true,
  1415. "dynamic": true,
  1416. "internal": false
  1417. }
  1418. },
  1419. "-2035045911": {
  1420. "id": "-2035045911",
  1421. "label": "ApplicationConfig",
  1422. "parent": "-1026304274",
  1423. "metadata": {
  1424. "type": "provider",
  1425. "internal": true,
  1426. "sourceModuleName": "TypeOrmCoreModule",
  1427. "durable": false,
  1428. "static": true,
  1429. "scope": 0,
  1430. "transient": false,
  1431. "exported": false,
  1432. "token": "ApplicationConfig"
  1433. }
  1434. },
  1435. "-2103415210": {
  1436. "id": "-2103415210",
  1437. "label": "DataSource",
  1438. "parent": "-1026304274",
  1439. "metadata": {
  1440. "type": "provider",
  1441. "internal": false,
  1442. "sourceModuleName": "TypeOrmCoreModule",
  1443. "durable": false,
  1444. "static": true,
  1445. "transient": false,
  1446. "exported": true,
  1447. "token": "DataSource"
  1448. }
  1449. },
  1450. "-184353870": {
  1451. "id": "-184353870",
  1452. "label": "ApplicationConfig",
  1453. "parent": "612499341",
  1454. "metadata": {
  1455. "type": "provider",
  1456. "internal": true,
  1457. "sourceModuleName": "AliyunModule",
  1458. "durable": false,
  1459. "static": true,
  1460. "scope": 0,
  1461. "transient": false,
  1462. "exported": false,
  1463. "token": "ApplicationConfig"
  1464. }
  1465. },
  1466. "-491114353": {
  1467. "id": "-491114353",
  1468. "label": "ConfigModule",
  1469. "parent": "863216334",
  1470. "metadata": {
  1471. "type": "provider",
  1472. "internal": true,
  1473. "sourceModuleName": "ConfigModule",
  1474. "durable": false,
  1475. "static": true,
  1476. "scope": 0,
  1477. "transient": false,
  1478. "exported": false,
  1479. "token": "ConfigModule",
  1480. "initTime": 1.6802500002086163
  1481. }
  1482. },
  1483. "-408540749": {
  1484. "id": "-408540749",
  1485. "label": "ApplicationConfig",
  1486. "parent": "863216334",
  1487. "metadata": {
  1488. "type": "provider",
  1489. "internal": true,
  1490. "sourceModuleName": "ConfigModule",
  1491. "durable": false,
  1492. "static": true,
  1493. "scope": 0,
  1494. "transient": false,
  1495. "exported": false,
  1496. "token": "ApplicationConfig"
  1497. }
  1498. },
  1499. "-503631786": {
  1500. "id": "-503631786",
  1501. "label": "ConfigService",
  1502. "parent": "863216334",
  1503. "metadata": {
  1504. "type": "provider",
  1505. "internal": false,
  1506. "sourceModuleName": "ConfigModule",
  1507. "durable": false,
  1508. "static": true,
  1509. "transient": false,
  1510. "exported": true,
  1511. "token": "ConfigService"
  1512. }
  1513. },
  1514. "-1790226991": {
  1515. "id": "-1790226991",
  1516. "label": "CONFIGURATION(aliyun)",
  1517. "parent": "863216334",
  1518. "metadata": {
  1519. "type": "provider",
  1520. "internal": false,
  1521. "sourceModuleName": "ConfigModule",
  1522. "durable": false,
  1523. "static": true,
  1524. "transient": false,
  1525. "exported": true,
  1526. "token": "CONFIGURATION(aliyun)",
  1527. "initTime": 1.6869169995188713
  1528. }
  1529. },
  1530. "-759474504": {
  1531. "id": "-759474504",
  1532. "label": "SmsModule",
  1533. "metadata": {
  1534. "type": "module",
  1535. "global": false,
  1536. "dynamic": false,
  1537. "internal": false
  1538. }
  1539. },
  1540. "-648981088": {
  1541. "id": "-648981088",
  1542. "label": "SmsModule",
  1543. "parent": "-759474504",
  1544. "metadata": {
  1545. "type": "provider",
  1546. "internal": true,
  1547. "sourceModuleName": "SmsModule",
  1548. "durable": false,
  1549. "static": true,
  1550. "scope": 0,
  1551. "transient": false,
  1552. "exported": false,
  1553. "token": "SmsModule",
  1554. "initTime": 1.642374999821186
  1555. }
  1556. },
  1557. "-811664770": {
  1558. "id": "-811664770",
  1559. "label": "ModuleRef",
  1560. "parent": "-759474504",
  1561. "metadata": {
  1562. "type": "provider",
  1563. "internal": true,
  1564. "sourceModuleName": "SmsModule",
  1565. "durable": false,
  1566. "static": true,
  1567. "scope": 0,
  1568. "transient": false,
  1569. "exported": false,
  1570. "token": "ModuleRef"
  1571. }
  1572. },
  1573. "-397258000": {
  1574. "id": "-397258000",
  1575. "label": "SmsController",
  1576. "parent": "-759474504",
  1577. "metadata": {
  1578. "type": "controller",
  1579. "internal": false,
  1580. "sourceModuleName": "SmsModule",
  1581. "durable": false,
  1582. "static": true,
  1583. "transient": false,
  1584. "exported": false,
  1585. "token": "SmsController"
  1586. }
  1587. },
  1588. "-257450702": {
  1589. "id": "-257450702",
  1590. "label": "TypeOrmModule",
  1591. "parent": "545846241",
  1592. "metadata": {
  1593. "type": "provider",
  1594. "internal": true,
  1595. "sourceModuleName": "TypeOrmModule",
  1596. "durable": false,
  1597. "static": true,
  1598. "scope": 0,
  1599. "transient": false,
  1600. "exported": false,
  1601. "token": "TypeOrmModule",
  1602. "initTime": 1.5041669979691505
  1603. }
  1604. },
  1605. "-223917668": {
  1606. "id": "-223917668",
  1607. "label": "ApplicationConfig",
  1608. "parent": "545846241",
  1609. "metadata": {
  1610. "type": "provider",
  1611. "internal": true,
  1612. "sourceModuleName": "TypeOrmModule",
  1613. "durable": false,
  1614. "static": true,
  1615. "scope": 0,
  1616. "transient": false,
  1617. "exported": false,
  1618. "token": "ApplicationConfig"
  1619. }
  1620. },
  1621. "-2003726489": {
  1622. "id": "-2003726489",
  1623. "label": "UsersModule",
  1624. "metadata": {
  1625. "type": "module",
  1626. "global": false,
  1627. "dynamic": false,
  1628. "internal": false
  1629. }
  1630. },
  1631. "-495603840": {
  1632. "id": "-495603840",
  1633. "label": "UsersModule",
  1634. "parent": "-2003726489",
  1635. "metadata": {
  1636. "type": "provider",
  1637. "internal": true,
  1638. "sourceModuleName": "UsersModule",
  1639. "durable": false,
  1640. "static": true,
  1641. "scope": 0,
  1642. "transient": false,
  1643. "exported": false,
  1644. "token": "UsersModule",
  1645. "initTime": 1.4964170008897781
  1646. }
  1647. },
  1648. "-618964563": {
  1649. "id": "-618964563",
  1650. "label": "ModuleRef",
  1651. "parent": "-2003726489",
  1652. "metadata": {
  1653. "type": "provider",
  1654. "internal": true,
  1655. "sourceModuleName": "UsersModule",
  1656. "durable": false,
  1657. "static": true,
  1658. "scope": 0,
  1659. "transient": false,
  1660. "exported": false,
  1661. "token": "ModuleRef"
  1662. }
  1663. },
  1664. "-643958110": {
  1665. "id": "-643958110",
  1666. "label": "ApplicationConfig",
  1667. "parent": "-2003726489",
  1668. "metadata": {
  1669. "type": "provider",
  1670. "internal": true,
  1671. "sourceModuleName": "UsersModule",
  1672. "durable": false,
  1673. "static": true,
  1674. "scope": 0,
  1675. "transient": false,
  1676. "exported": false,
  1677. "token": "ApplicationConfig"
  1678. }
  1679. },
  1680. "-1629317077": {
  1681. "id": "-1629317077",
  1682. "label": "BcryptService",
  1683. "parent": "-2003726489",
  1684. "metadata": {
  1685. "type": "provider",
  1686. "internal": false,
  1687. "sourceModuleName": "UsersModule",
  1688. "durable": false,
  1689. "static": true,
  1690. "transient": false,
  1691. "exported": false,
  1692. "token": "HashingService",
  1693. "initTime": 1.4916249997913837
  1694. }
  1695. },
  1696. "-1102473136": {
  1697. "id": "-1102473136",
  1698. "label": "UsersController",
  1699. "parent": "-2003726489",
  1700. "metadata": {
  1701. "type": "controller",
  1702. "internal": false,
  1703. "sourceModuleName": "UsersModule",
  1704. "durable": false,
  1705. "static": true,
  1706. "transient": false,
  1707. "exported": false,
  1708. "token": "UsersController"
  1709. }
  1710. },
  1711. "-257450701": {
  1712. "id": "-257450701",
  1713. "label": "TypeOrmModule",
  1714. "parent": "545846242",
  1715. "metadata": {
  1716. "type": "provider",
  1717. "internal": true,
  1718. "sourceModuleName": "TypeOrmModule",
  1719. "durable": false,
  1720. "static": true,
  1721. "scope": 0,
  1722. "transient": false,
  1723. "exported": false,
  1724. "token": "TypeOrmModule",
  1725. "initTime": 1.4689580015838146
  1726. }
  1727. },
  1728. "-223917667": {
  1729. "id": "-223917667",
  1730. "label": "ApplicationConfig",
  1731. "parent": "545846242",
  1732. "metadata": {
  1733. "type": "provider",
  1734. "internal": true,
  1735. "sourceModuleName": "TypeOrmModule",
  1736. "durable": false,
  1737. "static": true,
  1738. "scope": 0,
  1739. "transient": false,
  1740. "exported": false,
  1741. "token": "ApplicationConfig"
  1742. }
  1743. },
  1744. "-323187286": {
  1745. "id": "-323187286",
  1746. "label": "UsersRepository",
  1747. "parent": "545846242",
  1748. "metadata": {
  1749. "type": "provider",
  1750. "internal": false,
  1751. "sourceModuleName": "TypeOrmModule",
  1752. "durable": false,
  1753. "static": true,
  1754. "transient": false,
  1755. "exported": true,
  1756. "token": "UsersRepository"
  1757. }
  1758. },
  1759. "-1134487807": {
  1760. "id": "-1134487807",
  1761. "label": "AuthModule",
  1762. "metadata": {
  1763. "type": "module",
  1764. "global": false,
  1765. "dynamic": false,
  1766. "internal": false
  1767. }
  1768. },
  1769. "-1846279256": {
  1770. "id": "-1846279256",
  1771. "label": "AuthModule",
  1772. "parent": "-1134487807",
  1773. "metadata": {
  1774. "type": "provider",
  1775. "internal": true,
  1776. "sourceModuleName": "AuthModule",
  1777. "durable": false,
  1778. "static": true,
  1779. "scope": 0,
  1780. "transient": false,
  1781. "exported": false,
  1782. "token": "AuthModule",
  1783. "initTime": 1.4592499993741512
  1784. }
  1785. },
  1786. "-120792986": {
  1787. "id": "-120792986",
  1788. "label": "ApplicationConfig",
  1789. "parent": "-1134487807",
  1790. "metadata": {
  1791. "type": "provider",
  1792. "internal": true,
  1793. "sourceModuleName": "AuthModule",
  1794. "durable": false,
  1795. "static": true,
  1796. "scope": 0,
  1797. "transient": false,
  1798. "exported": false,
  1799. "token": "ApplicationConfig"
  1800. }
  1801. },
  1802. "-793915935": {
  1803. "id": "-793915935",
  1804. "label": "AuthService",
  1805. "parent": "-1134487807",
  1806. "metadata": {
  1807. "type": "provider",
  1808. "internal": false,
  1809. "sourceModuleName": "AuthModule",
  1810. "durable": false,
  1811. "static": true,
  1812. "transient": false,
  1813. "exported": true,
  1814. "token": "AuthService"
  1815. }
  1816. },
  1817. "-239266870": {
  1818. "id": "-239266870",
  1819. "label": "JwtAuthGuard",
  1820. "parent": "-1134487807",
  1821. "metadata": {
  1822. "type": "provider",
  1823. "internal": false,
  1824. "sourceModuleName": "AuthModule",
  1825. "durable": false,
  1826. "static": true,
  1827. "transient": false,
  1828. "exported": false,
  1829. "token": "APP_GUARD (UUID: 1239237319)",
  1830. "subtype": "guard"
  1831. }
  1832. },
  1833. "-491114352": {
  1834. "id": "-491114352",
  1835. "label": "ConfigModule",
  1836. "parent": "863216335",
  1837. "metadata": {
  1838. "type": "provider",
  1839. "internal": true,
  1840. "sourceModuleName": "ConfigModule",
  1841. "durable": false,
  1842. "static": true,
  1843. "scope": 0,
  1844. "transient": false,
  1845. "exported": false,
  1846. "token": "ConfigModule",
  1847. "initTime": 1.418333001434803
  1848. }
  1849. },
  1850. "-408540748": {
  1851. "id": "-408540748",
  1852. "label": "ApplicationConfig",
  1853. "parent": "863216335",
  1854. "metadata": {
  1855. "type": "provider",
  1856. "internal": true,
  1857. "sourceModuleName": "ConfigModule",
  1858. "durable": false,
  1859. "static": true,
  1860. "scope": 0,
  1861. "transient": false,
  1862. "exported": false,
  1863. "token": "ApplicationConfig"
  1864. }
  1865. },
  1866. "-503631784": {
  1867. "id": "-503631784",
  1868. "label": "ConfigService",
  1869. "parent": "863216335",
  1870. "metadata": {
  1871. "type": "provider",
  1872. "internal": false,
  1873. "sourceModuleName": "ConfigModule",
  1874. "durable": false,
  1875. "static": true,
  1876. "transient": false,
  1877. "exported": true,
  1878. "token": "ConfigService"
  1879. }
  1880. },
  1881. "-1453472830": {
  1882. "id": "-1453472830",
  1883. "label": "CONFIGURATION(jwt)",
  1884. "parent": "863216335",
  1885. "metadata": {
  1886. "type": "provider",
  1887. "internal": false,
  1888. "sourceModuleName": "ConfigModule",
  1889. "durable": false,
  1890. "static": true,
  1891. "transient": false,
  1892. "exported": true,
  1893. "token": "CONFIGURATION(jwt)",
  1894. "initTime": 1.4312499985098839
  1895. }
  1896. },
  1897. "-536515674": {
  1898. "id": "-536515674",
  1899. "label": "JwtModule",
  1900. "metadata": {
  1901. "type": "module",
  1902. "global": false,
  1903. "dynamic": true,
  1904. "internal": false
  1905. }
  1906. },
  1907. "-588705940": {
  1908. "id": "-588705940",
  1909. "label": "ModuleRef",
  1910. "parent": "-536515674",
  1911. "metadata": {
  1912. "type": "provider",
  1913. "internal": true,
  1914. "sourceModuleName": "JwtModule",
  1915. "durable": false,
  1916. "static": true,
  1917. "scope": 0,
  1918. "transient": false,
  1919. "exported": false,
  1920. "token": "ModuleRef"
  1921. }
  1922. },
  1923. "-1900804336": {
  1924. "id": "-1900804336",
  1925. "label": "JWT_MODULE_OPTIONS",
  1926. "parent": "-536515674",
  1927. "metadata": {
  1928. "type": "provider",
  1929. "internal": false,
  1930. "sourceModuleName": "JwtModule",
  1931. "durable": false,
  1932. "static": true,
  1933. "transient": false,
  1934. "exported": false,
  1935. "token": "JWT_MODULE_OPTIONS",
  1936. "initTime": 2.5627500005066395
  1937. }
  1938. },
  1939. "-1327562795": {
  1940. "id": "-1327562795",
  1941. "label": "FileModule",
  1942. "metadata": {
  1943. "type": "module",
  1944. "global": false,
  1945. "dynamic": false,
  1946. "internal": false
  1947. }
  1948. },
  1949. "-313867974": {
  1950. "id": "-313867974",
  1951. "label": "ApplicationConfig",
  1952. "parent": "-1327562795",
  1953. "metadata": {
  1954. "type": "provider",
  1955. "internal": true,
  1956. "sourceModuleName": "FileModule",
  1957. "durable": false,
  1958. "static": true,
  1959. "scope": 0,
  1960. "transient": false,
  1961. "exported": false,
  1962. "token": "ApplicationConfig"
  1963. }
  1964. }
  1965. },
  1966. "edges": {
  1967. "33362649": {
  1968. "source": "-1327562795",
  1969. "target": "-1026304274",
  1970. "metadata": {
  1971. "type": "module-to-module",
  1972. "sourceModuleName": "FileModule",
  1973. "targetModuleName": "TypeOrmCoreModule"
  1974. },
  1975. "id": "33362649"
  1976. },
  1977. "43962647": {
  1978. "source": "-2003726489",
  1979. "target": "-1026304274",
  1980. "metadata": {
  1981. "type": "module-to-module",
  1982. "sourceModuleName": "UsersModule",
  1983. "targetModuleName": "TypeOrmCoreModule"
  1984. },
  1985. "id": "43962647"
  1986. },
  1987. "50149515": {
  1988. "source": "863216334",
  1989. "target": "1482218087",
  1990. "metadata": {
  1991. "type": "module-to-module",
  1992. "sourceModuleName": "ConfigModule",
  1993. "targetModuleName": "ThrottlerModule"
  1994. },
  1995. "id": "50149515"
  1996. },
  1997. "175763745": {
  1998. "source": "545846241",
  1999. "target": "211572259",
  2000. "metadata": {
  2001. "type": "module-to-module",
  2002. "sourceModuleName": "TypeOrmModule",
  2003. "targetModuleName": "ConfigHostModule"
  2004. },
  2005. "id": "175763745"
  2006. },
  2007. "184060730": {
  2008. "source": "-643397745",
  2009. "target": "555176277",
  2010. "metadata": {
  2011. "type": "module-to-module",
  2012. "sourceModuleName": "DiscoveryModule",
  2013. "targetModuleName": "InternalCoreModule"
  2014. },
  2015. "id": "184060730"
  2016. },
  2017. "189694679": {
  2018. "source": "1434456218",
  2019. "target": "671882984",
  2020. "metadata": {
  2021. "type": "class-to-class",
  2022. "sourceModuleName": "InternalCoreModule",
  2023. "sourceClassName": "Reflector",
  2024. "targetClassName": "Reflector",
  2025. "sourceClassToken": "Reflector",
  2026. "targetClassToken": "Reflector",
  2027. "targetModuleName": "InternalCoreModule",
  2028. "keyOrIndex": 0,
  2029. "injectionType": "constructor",
  2030. "internal": true
  2031. },
  2032. "id": "189694679"
  2033. },
  2034. "219775656": {
  2035. "source": "-19112576",
  2036. "target": "-1134487807",
  2037. "metadata": {
  2038. "type": "module-to-module",
  2039. "sourceModuleName": "AppModule",
  2040. "targetModuleName": "AuthModule"
  2041. },
  2042. "id": "219775656"
  2043. },
  2044. "241654674": {
  2045. "source": "-1026304274",
  2046. "target": "1712628187",
  2047. "metadata": {
  2048. "type": "module-to-module",
  2049. "sourceModuleName": "TypeOrmCoreModule",
  2050. "targetModuleName": "ConfigModule"
  2051. },
  2052. "id": "241654674"
  2053. },
  2054. "254091268": {
  2055. "source": "863216333",
  2056. "target": "-1026304274",
  2057. "metadata": {
  2058. "type": "module-to-module",
  2059. "sourceModuleName": "ConfigModule",
  2060. "targetModuleName": "TypeOrmCoreModule"
  2061. },
  2062. "id": "254091268"
  2063. },
  2064. "289403048": {
  2065. "source": "-1134487807",
  2066. "target": "-2003726489",
  2067. "metadata": {
  2068. "type": "module-to-module",
  2069. "sourceModuleName": "AuthModule",
  2070. "targetModuleName": "UsersModule"
  2071. },
  2072. "id": "289403048"
  2073. },
  2074. "309543654": {
  2075. "source": "-759474504",
  2076. "target": "1712628187",
  2077. "metadata": {
  2078. "type": "module-to-module",
  2079. "sourceModuleName": "SmsModule",
  2080. "targetModuleName": "ConfigModule"
  2081. },
  2082. "id": "309543654"
  2083. },
  2084. "353572985": {
  2085. "source": "1712628187",
  2086. "target": "211572259",
  2087. "metadata": {
  2088. "type": "module-to-module",
  2089. "sourceModuleName": "ConfigModule",
  2090. "targetModuleName": "ConfigHostModule"
  2091. },
  2092. "id": "353572985"
  2093. },
  2094. "363633297": {
  2095. "source": "-1327562795",
  2096. "target": "1712628187",
  2097. "metadata": {
  2098. "type": "module-to-module",
  2099. "sourceModuleName": "FileModule",
  2100. "targetModuleName": "ConfigModule"
  2101. },
  2102. "id": "363633297"
  2103. },
  2104. "420319069": {
  2105. "source": "-2003726489",
  2106. "target": "-759474504",
  2107. "metadata": {
  2108. "type": "module-to-module",
  2109. "sourceModuleName": "UsersModule",
  2110. "targetModuleName": "SmsModule"
  2111. },
  2112. "id": "420319069"
  2113. },
  2114. "450524884": {
  2115. "source": "545846241",
  2116. "target": "1712628187",
  2117. "metadata": {
  2118. "type": "module-to-module",
  2119. "sourceModuleName": "TypeOrmModule",
  2120. "targetModuleName": "ConfigModule"
  2121. },
  2122. "id": "450524884"
  2123. },
  2124. "453731008": {
  2125. "source": "863216334",
  2126. "target": "211572259",
  2127. "metadata": {
  2128. "type": "module-to-module",
  2129. "sourceModuleName": "ConfigModule",
  2130. "targetModuleName": "ConfigHostModule"
  2131. },
  2132. "id": "453731008"
  2133. },
  2134. "459666374": {
  2135. "source": "-759474504",
  2136. "target": "-1026304274",
  2137. "metadata": {
  2138. "type": "module-to-module",
  2139. "sourceModuleName": "SmsModule",
  2140. "targetModuleName": "TypeOrmCoreModule"
  2141. },
  2142. "id": "459666374"
  2143. },
  2144. "508258671": {
  2145. "source": "612499341",
  2146. "target": "211572259",
  2147. "metadata": {
  2148. "type": "module-to-module",
  2149. "sourceModuleName": "AliyunModule",
  2150. "targetModuleName": "ConfigHostModule"
  2151. },
  2152. "id": "508258671"
  2153. },
  2154. "527989730": {
  2155. "source": "-759474504",
  2156. "target": "545846241",
  2157. "metadata": {
  2158. "type": "module-to-module",
  2159. "sourceModuleName": "SmsModule",
  2160. "targetModuleName": "TypeOrmModule"
  2161. },
  2162. "id": "527989730"
  2163. },
  2164. "561408245": {
  2165. "source": "-1033621697",
  2166. "target": "211572259",
  2167. "metadata": {
  2168. "type": "module-to-module",
  2169. "sourceModuleName": "DevtoolsModule",
  2170. "targetModuleName": "ConfigHostModule"
  2171. },
  2172. "id": "561408245"
  2173. },
  2174. "565650659": {
  2175. "source": "-536515674",
  2176. "target": "1482218087",
  2177. "metadata": {
  2178. "type": "module-to-module",
  2179. "sourceModuleName": "JwtModule",
  2180. "targetModuleName": "ThrottlerModule"
  2181. },
  2182. "id": "565650659"
  2183. },
  2184. "584653416": {
  2185. "source": "1712628187",
  2186. "target": "555176277",
  2187. "metadata": {
  2188. "type": "module-to-module",
  2189. "sourceModuleName": "ConfigModule",
  2190. "targetModuleName": "InternalCoreModule"
  2191. },
  2192. "id": "584653416"
  2193. },
  2194. "591206582": {
  2195. "source": "545846241",
  2196. "target": "1482218087",
  2197. "metadata": {
  2198. "type": "module-to-module",
  2199. "sourceModuleName": "TypeOrmModule",
  2200. "targetModuleName": "ThrottlerModule"
  2201. },
  2202. "id": "591206582"
  2203. },
  2204. "632258133": {
  2205. "source": "545846242",
  2206. "target": "1712628187",
  2207. "metadata": {
  2208. "type": "module-to-module",
  2209. "sourceModuleName": "TypeOrmModule",
  2210. "targetModuleName": "ConfigModule"
  2211. },
  2212. "id": "632258133"
  2213. },
  2214. "636494595": {
  2215. "source": "-536515674",
  2216. "target": "-1026304274",
  2217. "metadata": {
  2218. "type": "module-to-module",
  2219. "sourceModuleName": "JwtModule",
  2220. "targetModuleName": "TypeOrmCoreModule"
  2221. },
  2222. "id": "636494595"
  2223. },
  2224. "677989064": {
  2225. "source": "-643397745",
  2226. "target": "1712628187",
  2227. "metadata": {
  2228. "type": "module-to-module",
  2229. "sourceModuleName": "DiscoveryModule",
  2230. "targetModuleName": "ConfigModule"
  2231. },
  2232. "id": "677989064"
  2233. },
  2234. "784525888": {
  2235. "source": "-536515674",
  2236. "target": "211572259",
  2237. "metadata": {
  2238. "type": "module-to-module",
  2239. "sourceModuleName": "JwtModule",
  2240. "targetModuleName": "ConfigHostModule"
  2241. },
  2242. "id": "784525888"
  2243. },
  2244. "920687522": {
  2245. "source": "-1134487807",
  2246. "target": "211572259",
  2247. "metadata": {
  2248. "type": "module-to-module",
  2249. "sourceModuleName": "AuthModule",
  2250. "targetModuleName": "ConfigHostModule"
  2251. },
  2252. "id": "920687522"
  2253. },
  2254. "978356204": {
  2255. "source": "-1134487807",
  2256. "target": "-536515674",
  2257. "metadata": {
  2258. "type": "module-to-module",
  2259. "sourceModuleName": "AuthModule",
  2260. "targetModuleName": "JwtModule"
  2261. },
  2262. "id": "978356204"
  2263. },
  2264. "987755577": {
  2265. "source": "-2003726489",
  2266. "target": "555176277",
  2267. "metadata": {
  2268. "type": "module-to-module",
  2269. "sourceModuleName": "UsersModule",
  2270. "targetModuleName": "InternalCoreModule"
  2271. },
  2272. "id": "987755577"
  2273. },
  2274. "1010561902": {
  2275. "source": "545846241",
  2276. "target": "555176277",
  2277. "metadata": {
  2278. "type": "module-to-module",
  2279. "sourceModuleName": "TypeOrmModule",
  2280. "targetModuleName": "InternalCoreModule"
  2281. },
  2282. "id": "1010561902"
  2283. },
  2284. "1028357956": {
  2285. "source": "373235992",
  2286. "target": "-438112115",
  2287. "metadata": {
  2288. "type": "class-to-class",
  2289. "sourceModuleName": "DevtoolsModule",
  2290. "sourceClassName": "SandboxedCodeExecutor",
  2291. "targetClassName": "MetadataScanner",
  2292. "sourceClassToken": "SandboxedCodeExecutor",
  2293. "targetClassToken": "MetadataScanner",
  2294. "targetModuleName": "DiscoveryModule",
  2295. "keyOrIndex": 2,
  2296. "injectionType": "constructor"
  2297. },
  2298. "id": "1028357956"
  2299. },
  2300. "1056428433": {
  2301. "source": "-19112576",
  2302. "target": "555176277",
  2303. "metadata": {
  2304. "type": "module-to-module",
  2305. "sourceModuleName": "AppModule",
  2306. "targetModuleName": "InternalCoreModule"
  2307. },
  2308. "id": "1056428433"
  2309. },
  2310. "1134336077": {
  2311. "source": "-536515674",
  2312. "target": "555176277",
  2313. "metadata": {
  2314. "type": "module-to-module",
  2315. "sourceModuleName": "JwtModule",
  2316. "targetModuleName": "InternalCoreModule"
  2317. },
  2318. "id": "1134336077"
  2319. },
  2320. "1138009401": {
  2321. "source": "-1327562795",
  2322. "target": "555176277",
  2323. "metadata": {
  2324. "type": "module-to-module",
  2325. "sourceModuleName": "FileModule",
  2326. "targetModuleName": "InternalCoreModule"
  2327. },
  2328. "id": "1138009401"
  2329. },
  2330. "1173495886": {
  2331. "source": "-759474504",
  2332. "target": "612499341",
  2333. "metadata": {
  2334. "type": "module-to-module",
  2335. "sourceModuleName": "SmsModule",
  2336. "targetModuleName": "AliyunModule"
  2337. },
  2338. "id": "1173495886"
  2339. },
  2340. "1173813571": {
  2341. "source": "-536515674",
  2342. "target": "863216335",
  2343. "metadata": {
  2344. "type": "module-to-module",
  2345. "sourceModuleName": "JwtModule",
  2346. "targetModuleName": "ConfigModule"
  2347. },
  2348. "id": "1173813571"
  2349. },
  2350. "1176615609": {
  2351. "source": "-2003726489",
  2352. "target": "1712628187",
  2353. "metadata": {
  2354. "type": "module-to-module",
  2355. "sourceModuleName": "UsersModule",
  2356. "targetModuleName": "ConfigModule"
  2357. },
  2358. "id": "1176615609"
  2359. },
  2360. "1263570858": {
  2361. "source": "-759474504",
  2362. "target": "555176277",
  2363. "metadata": {
  2364. "type": "module-to-module",
  2365. "sourceModuleName": "SmsModule",
  2366. "targetModuleName": "InternalCoreModule"
  2367. },
  2368. "id": "1263570858"
  2369. },
  2370. "1318898112": {
  2371. "source": "-19112576",
  2372. "target": "-2135742481",
  2373. "metadata": {
  2374. "type": "module-to-module",
  2375. "sourceModuleName": "AppModule",
  2376. "targetModuleName": "TypeOrmModule"
  2377. },
  2378. "id": "1318898112"
  2379. },
  2380. "1333633315": {
  2381. "source": "863216334",
  2382. "target": "-1026304274",
  2383. "metadata": {
  2384. "type": "module-to-module",
  2385. "sourceModuleName": "ConfigModule",
  2386. "targetModuleName": "TypeOrmCoreModule"
  2387. },
  2388. "id": "1333633315"
  2389. },
  2390. "1359911797": {
  2391. "source": "-19112576",
  2392. "target": "612499341",
  2393. "metadata": {
  2394. "type": "module-to-module",
  2395. "sourceModuleName": "AppModule",
  2396. "targetModuleName": "AliyunModule"
  2397. },
  2398. "id": "1359911797"
  2399. },
  2400. "1414936007": {
  2401. "source": "-536515674",
  2402. "target": "1712628187",
  2403. "metadata": {
  2404. "type": "module-to-module",
  2405. "sourceModuleName": "JwtModule",
  2406. "targetModuleName": "ConfigModule"
  2407. },
  2408. "id": "1414936007"
  2409. },
  2410. "1431808641": {
  2411. "source": "-1134487807",
  2412. "target": "-1026304274",
  2413. "metadata": {
  2414. "type": "module-to-module",
  2415. "sourceModuleName": "AuthModule",
  2416. "targetModuleName": "TypeOrmCoreModule"
  2417. },
  2418. "id": "1431808641"
  2419. },
  2420. "1450432242": {
  2421. "source": "1482218087",
  2422. "target": "863216333",
  2423. "metadata": {
  2424. "type": "module-to-module",
  2425. "sourceModuleName": "ThrottlerModule",
  2426. "targetModuleName": "ConfigModule"
  2427. },
  2428. "id": "1450432242"
  2429. },
  2430. "1454288893": {
  2431. "source": "-2135742481",
  2432. "target": "-1026304274",
  2433. "metadata": {
  2434. "type": "module-to-module",
  2435. "sourceModuleName": "TypeOrmModule",
  2436. "targetModuleName": "TypeOrmCoreModule"
  2437. },
  2438. "id": "1454288893"
  2439. },
  2440. "1457352847": {
  2441. "source": "-1134487807",
  2442. "target": "863216335",
  2443. "metadata": {
  2444. "type": "module-to-module",
  2445. "sourceModuleName": "AuthModule",
  2446. "targetModuleName": "ConfigModule"
  2447. },
  2448. "id": "1457352847"
  2449. },
  2450. "1488040101": {
  2451. "source": "211572259",
  2452. "target": "-1026304274",
  2453. "metadata": {
  2454. "type": "module-to-module",
  2455. "sourceModuleName": "ConfigHostModule",
  2456. "targetModuleName": "TypeOrmCoreModule"
  2457. },
  2458. "id": "1488040101"
  2459. },
  2460. "1498156362": {
  2461. "source": "863216333",
  2462. "target": "1482218087",
  2463. "metadata": {
  2464. "type": "module-to-module",
  2465. "sourceModuleName": "ConfigModule",
  2466. "targetModuleName": "ThrottlerModule"
  2467. },
  2468. "id": "1498156362"
  2469. },
  2470. "1635338963": {
  2471. "source": "-2135742481",
  2472. "target": "555176277",
  2473. "metadata": {
  2474. "type": "module-to-module",
  2475. "sourceModuleName": "TypeOrmModule",
  2476. "targetModuleName": "InternalCoreModule"
  2477. },
  2478. "id": "1635338963"
  2479. },
  2480. "1690588001": {
  2481. "source": "-1134487807",
  2482. "target": "1712628187",
  2483. "metadata": {
  2484. "type": "module-to-module",
  2485. "sourceModuleName": "AuthModule",
  2486. "targetModuleName": "ConfigModule"
  2487. },
  2488. "id": "1690588001"
  2489. },
  2490. "1720992914": {
  2491. "source": "-2003726489",
  2492. "target": "545846242",
  2493. "metadata": {
  2494. "type": "module-to-module",
  2495. "sourceModuleName": "UsersModule",
  2496. "targetModuleName": "TypeOrmModule"
  2497. },
  2498. "id": "1720992914"
  2499. },
  2500. "1733675336": {
  2501. "source": "-1033621697",
  2502. "target": "1482218087",
  2503. "metadata": {
  2504. "type": "module-to-module",
  2505. "sourceModuleName": "DevtoolsModule",
  2506. "targetModuleName": "ThrottlerModule"
  2507. },
  2508. "id": "1733675336"
  2509. },
  2510. "1733822514": {
  2511. "source": "1482218087",
  2512. "target": "-1026304274",
  2513. "metadata": {
  2514. "type": "module-to-module",
  2515. "sourceModuleName": "ThrottlerModule",
  2516. "targetModuleName": "TypeOrmCoreModule"
  2517. },
  2518. "id": "1733822514"
  2519. },
  2520. "1744123909": {
  2521. "source": "-1026304274",
  2522. "target": "211572259",
  2523. "metadata": {
  2524. "type": "module-to-module",
  2525. "sourceModuleName": "TypeOrmCoreModule",
  2526. "targetModuleName": "ConfigHostModule"
  2527. },
  2528. "id": "1744123909"
  2529. },
  2530. "1759774274": {
  2531. "source": "-643397745",
  2532. "target": "1482218087",
  2533. "metadata": {
  2534. "type": "module-to-module",
  2535. "sourceModuleName": "DiscoveryModule",
  2536. "targetModuleName": "ThrottlerModule"
  2537. },
  2538. "id": "1759774274"
  2539. },
  2540. "1786225585": {
  2541. "source": "1482218087",
  2542. "target": "211572259",
  2543. "metadata": {
  2544. "type": "module-to-module",
  2545. "sourceModuleName": "ThrottlerModule",
  2546. "targetModuleName": "ConfigHostModule"
  2547. },
  2548. "id": "1786225585"
  2549. },
  2550. "1867382584": {
  2551. "source": "-1026304274",
  2552. "target": "1482218087",
  2553. "metadata": {
  2554. "type": "module-to-module",
  2555. "sourceModuleName": "TypeOrmCoreModule",
  2556. "targetModuleName": "ThrottlerModule"
  2557. },
  2558. "id": "1867382584"
  2559. },
  2560. "1901737855": {
  2561. "source": "863216333",
  2562. "target": "211572259",
  2563. "metadata": {
  2564. "type": "module-to-module",
  2565. "sourceModuleName": "ConfigModule",
  2566. "targetModuleName": "ConfigHostModule"
  2567. },
  2568. "id": "1901737855"
  2569. },
  2570. "2090103949": {
  2571. "source": "545846242",
  2572. "target": "555176277",
  2573. "metadata": {
  2574. "type": "module-to-module",
  2575. "sourceModuleName": "TypeOrmModule",
  2576. "targetModuleName": "InternalCoreModule"
  2577. },
  2578. "id": "2090103949"
  2579. },
  2580. "2099251801": {
  2581. "source": "211572259",
  2582. "target": "1482218087",
  2583. "metadata": {
  2584. "type": "module-to-module",
  2585. "sourceModuleName": "ConfigHostModule",
  2586. "targetModuleName": "ThrottlerModule"
  2587. },
  2588. "id": "2099251801"
  2589. },
  2590. "2107559886": {
  2591. "source": "-1033621697",
  2592. "target": "-1026304274",
  2593. "metadata": {
  2594. "type": "module-to-module",
  2595. "sourceModuleName": "DevtoolsModule",
  2596. "targetModuleName": "TypeOrmCoreModule"
  2597. },
  2598. "id": "2107559886"
  2599. },
  2600. "2109546608": {
  2601. "source": "863216333",
  2602. "target": "1712628187",
  2603. "metadata": {
  2604. "type": "module-to-module",
  2605. "sourceModuleName": "ConfigModule",
  2606. "targetModuleName": "ConfigModule"
  2607. },
  2608. "id": "2109546608"
  2609. },
  2610. "-1759625292": {
  2611. "source": "-553129559",
  2612. "target": "-326832201",
  2613. "metadata": {
  2614. "type": "class-to-class",
  2615. "sourceModuleName": "InternalCoreModule",
  2616. "sourceClassName": "HttpAdapterHost",
  2617. "targetClassName": "HttpAdapterHost",
  2618. "sourceClassToken": "HttpAdapterHost",
  2619. "targetClassToken": "HttpAdapterHost",
  2620. "targetModuleName": "InternalCoreModule",
  2621. "keyOrIndex": 0,
  2622. "injectionType": "constructor",
  2623. "internal": true
  2624. },
  2625. "id": "-1759625292"
  2626. },
  2627. "-221187751": {
  2628. "source": "400681591",
  2629. "target": "-26938366",
  2630. "metadata": {
  2631. "type": "class-to-class",
  2632. "sourceModuleName": "DiscoveryModule",
  2633. "sourceClassName": "DiscoveryService",
  2634. "targetClassName": "ModulesContainer",
  2635. "sourceClassToken": "DiscoveryService",
  2636. "targetClassToken": "ModulesContainer",
  2637. "targetModuleName": "InternalCoreModule",
  2638. "keyOrIndex": 0,
  2639. "injectionType": "constructor",
  2640. "internal": true
  2641. },
  2642. "id": "-221187751"
  2643. },
  2644. "-692061701": {
  2645. "source": "-19112576",
  2646. "target": "-1033621697",
  2647. "metadata": {
  2648. "type": "module-to-module",
  2649. "sourceModuleName": "AppModule",
  2650. "targetModuleName": "DevtoolsModule"
  2651. },
  2652. "id": "-692061701"
  2653. },
  2654. "-844262897": {
  2655. "source": "-19112576",
  2656. "target": "1712628187",
  2657. "metadata": {
  2658. "type": "module-to-module",
  2659. "sourceModuleName": "AppModule",
  2660. "targetModuleName": "ConfigModule"
  2661. },
  2662. "id": "-844262897"
  2663. },
  2664. "-1091370085": {
  2665. "source": "-19112576",
  2666. "target": "1482218087",
  2667. "metadata": {
  2668. "type": "module-to-module",
  2669. "sourceModuleName": "AppModule",
  2670. "targetModuleName": "ThrottlerModule"
  2671. },
  2672. "id": "-1091370085"
  2673. },
  2674. "-1622731513": {
  2675. "source": "-19112576",
  2676. "target": "-759474504",
  2677. "metadata": {
  2678. "type": "module-to-module",
  2679. "sourceModuleName": "AppModule",
  2680. "targetModuleName": "SmsModule"
  2681. },
  2682. "id": "-1622731513"
  2683. },
  2684. "-158970266": {
  2685. "source": "-19112576",
  2686. "target": "-2003726489",
  2687. "metadata": {
  2688. "type": "module-to-module",
  2689. "sourceModuleName": "AppModule",
  2690. "targetModuleName": "UsersModule"
  2691. },
  2692. "id": "-158970266"
  2693. },
  2694. "-789499568": {
  2695. "source": "-19112576",
  2696. "target": "-1327562795",
  2697. "metadata": {
  2698. "type": "module-to-module",
  2699. "sourceModuleName": "AppModule",
  2700. "targetModuleName": "FileModule"
  2701. },
  2702. "id": "-789499568"
  2703. },
  2704. "-815553404": {
  2705. "source": "-19112576",
  2706. "target": "211572259",
  2707. "metadata": {
  2708. "type": "module-to-module",
  2709. "sourceModuleName": "AppModule",
  2710. "targetModuleName": "ConfigHostModule"
  2711. },
  2712. "id": "-815553404"
  2713. },
  2714. "-495517505": {
  2715. "source": "-19112576",
  2716. "target": "-1026304274",
  2717. "metadata": {
  2718. "type": "module-to-module",
  2719. "sourceModuleName": "AppModule",
  2720. "targetModuleName": "TypeOrmCoreModule"
  2721. },
  2722. "id": "-495517505"
  2723. },
  2724. "-1926621316": {
  2725. "source": "-1033621697",
  2726. "target": "-643397745",
  2727. "metadata": {
  2728. "type": "module-to-module",
  2729. "sourceModuleName": "DevtoolsModule",
  2730. "targetModuleName": "DiscoveryModule"
  2731. },
  2732. "id": "-1926621316"
  2733. },
  2734. "-308574300": {
  2735. "source": "-1033621697",
  2736. "target": "555176277",
  2737. "metadata": {
  2738. "type": "module-to-module",
  2739. "sourceModuleName": "DevtoolsModule",
  2740. "targetModuleName": "InternalCoreModule"
  2741. },
  2742. "id": "-308574300"
  2743. },
  2744. "-932159694": {
  2745. "source": "-1033621697",
  2746. "target": "1712628187",
  2747. "metadata": {
  2748. "type": "module-to-module",
  2749. "sourceModuleName": "DevtoolsModule",
  2750. "targetModuleName": "ConfigModule"
  2751. },
  2752. "id": "-932159694"
  2753. },
  2754. "-1107570771": {
  2755. "source": "-643397745",
  2756. "target": "211572259",
  2757. "metadata": {
  2758. "type": "module-to-module",
  2759. "sourceModuleName": "DiscoveryModule",
  2760. "targetModuleName": "ConfigHostModule"
  2761. },
  2762. "id": "-1107570771"
  2763. },
  2764. "-1777027914": {
  2765. "source": "-643397745",
  2766. "target": "-1026304274",
  2767. "metadata": {
  2768. "type": "module-to-module",
  2769. "sourceModuleName": "DiscoveryModule",
  2770. "targetModuleName": "TypeOrmCoreModule"
  2771. },
  2772. "id": "-1777027914"
  2773. },
  2774. "-50008508": {
  2775. "source": "1712628187",
  2776. "target": "1482218087",
  2777. "metadata": {
  2778. "type": "module-to-module",
  2779. "sourceModuleName": "ConfigModule",
  2780. "targetModuleName": "ThrottlerModule"
  2781. },
  2782. "id": "-50008508"
  2783. },
  2784. "-1766726454": {
  2785. "source": "1712628187",
  2786. "target": "-1026304274",
  2787. "metadata": {
  2788. "type": "module-to-module",
  2789. "sourceModuleName": "ConfigModule",
  2790. "targetModuleName": "TypeOrmCoreModule"
  2791. },
  2792. "id": "-1766726454"
  2793. },
  2794. "-1995183955": {
  2795. "source": "211572259",
  2796. "target": "555176277",
  2797. "metadata": {
  2798. "type": "module-to-module",
  2799. "sourceModuleName": "ConfigHostModule",
  2800. "targetModuleName": "InternalCoreModule"
  2801. },
  2802. "id": "-1995183955"
  2803. },
  2804. "-60954175": {
  2805. "source": "211572259",
  2806. "target": "1712628187",
  2807. "metadata": {
  2808. "type": "module-to-module",
  2809. "sourceModuleName": "ConfigHostModule",
  2810. "targetModuleName": "ConfigModule"
  2811. },
  2812. "id": "-60954175"
  2813. },
  2814. "-2016448962": {
  2815. "source": "1482218087",
  2816. "target": "555176277",
  2817. "metadata": {
  2818. "type": "module-to-module",
  2819. "sourceModuleName": "ThrottlerModule",
  2820. "targetModuleName": "InternalCoreModule"
  2821. },
  2822. "id": "-2016448962"
  2823. },
  2824. "-1929299820": {
  2825. "source": "1482218087",
  2826. "target": "1712628187",
  2827. "metadata": {
  2828. "type": "module-to-module",
  2829. "sourceModuleName": "ThrottlerModule",
  2830. "targetModuleName": "ConfigModule"
  2831. },
  2832. "id": "-1929299820"
  2833. },
  2834. "-1982558226": {
  2835. "source": "863216333",
  2836. "target": "555176277",
  2837. "metadata": {
  2838. "type": "module-to-module",
  2839. "sourceModuleName": "ConfigModule",
  2840. "targetModuleName": "InternalCoreModule"
  2841. },
  2842. "id": "-1982558226"
  2843. },
  2844. "-1887218609": {
  2845. "source": "-2135742481",
  2846. "target": "1712628187",
  2847. "metadata": {
  2848. "type": "module-to-module",
  2849. "sourceModuleName": "TypeOrmModule",
  2850. "targetModuleName": "ConfigModule"
  2851. },
  2852. "id": "-1887218609"
  2853. },
  2854. "-645931578": {
  2855. "source": "-2135742481",
  2856. "target": "211572259",
  2857. "metadata": {
  2858. "type": "module-to-module",
  2859. "sourceModuleName": "TypeOrmModule",
  2860. "targetModuleName": "ConfigHostModule"
  2861. },
  2862. "id": "-645931578"
  2863. },
  2864. "-230488741": {
  2865. "source": "-2135742481",
  2866. "target": "1482218087",
  2867. "metadata": {
  2868. "type": "module-to-module",
  2869. "sourceModuleName": "TypeOrmModule",
  2870. "targetModuleName": "ThrottlerModule"
  2871. },
  2872. "id": "-230488741"
  2873. },
  2874. "-2027398394": {
  2875. "source": "-1026304274",
  2876. "target": "863216333",
  2877. "metadata": {
  2878. "type": "module-to-module",
  2879. "sourceModuleName": "TypeOrmCoreModule",
  2880. "targetModuleName": "ConfigModule"
  2881. },
  2882. "id": "-2027398394"
  2883. },
  2884. "-485008942": {
  2885. "source": "-1026304274",
  2886. "target": "555176277",
  2887. "metadata": {
  2888. "type": "module-to-module",
  2889. "sourceModuleName": "TypeOrmCoreModule",
  2890. "targetModuleName": "InternalCoreModule"
  2891. },
  2892. "id": "-485008942"
  2893. },
  2894. "-651417091": {
  2895. "source": "612499341",
  2896. "target": "863216334",
  2897. "metadata": {
  2898. "type": "module-to-module",
  2899. "sourceModuleName": "AliyunModule",
  2900. "targetModuleName": "ConfigModule"
  2901. },
  2902. "id": "-651417091"
  2903. },
  2904. "-1086257698": {
  2905. "source": "612499341",
  2906. "target": "555176277",
  2907. "metadata": {
  2908. "type": "module-to-module",
  2909. "sourceModuleName": "AliyunModule",
  2910. "targetModuleName": "InternalCoreModule"
  2911. },
  2912. "id": "-1086257698"
  2913. },
  2914. "-304556580": {
  2915. "source": "612499341",
  2916. "target": "1712628187",
  2917. "metadata": {
  2918. "type": "module-to-module",
  2919. "sourceModuleName": "AliyunModule",
  2920. "targetModuleName": "ConfigModule"
  2921. },
  2922. "id": "-304556580"
  2923. },
  2924. "-2117513122": {
  2925. "source": "612499341",
  2926. "target": "1482218087",
  2927. "metadata": {
  2928. "type": "module-to-module",
  2929. "sourceModuleName": "AliyunModule",
  2930. "targetModuleName": "ThrottlerModule"
  2931. },
  2932. "id": "-2117513122"
  2933. },
  2934. "-1596822380": {
  2935. "source": "612499341",
  2936. "target": "-1026304274",
  2937. "metadata": {
  2938. "type": "module-to-module",
  2939. "sourceModuleName": "AliyunModule",
  2940. "targetModuleName": "TypeOrmCoreModule"
  2941. },
  2942. "id": "-1596822380"
  2943. },
  2944. "-1947734289": {
  2945. "source": "863216334",
  2946. "target": "555176277",
  2947. "metadata": {
  2948. "type": "module-to-module",
  2949. "sourceModuleName": "ConfigModule",
  2950. "targetModuleName": "InternalCoreModule"
  2951. },
  2952. "id": "-1947734289"
  2953. },
  2954. "-2041010993": {
  2955. "source": "863216334",
  2956. "target": "1712628187",
  2957. "metadata": {
  2958. "type": "module-to-module",
  2959. "sourceModuleName": "ConfigModule",
  2960. "targetModuleName": "ConfigModule"
  2961. },
  2962. "id": "-2041010993"
  2963. },
  2964. "-355003171": {
  2965. "source": "-759474504",
  2966. "target": "211572259",
  2967. "metadata": {
  2968. "type": "module-to-module",
  2969. "sourceModuleName": "SmsModule",
  2970. "targetModuleName": "ConfigHostModule"
  2971. },
  2972. "id": "-355003171"
  2973. },
  2974. "-663679132": {
  2975. "source": "-759474504",
  2976. "target": "1482218087",
  2977. "metadata": {
  2978. "type": "module-to-module",
  2979. "sourceModuleName": "SmsModule",
  2980. "targetModuleName": "ThrottlerModule"
  2981. },
  2982. "id": "-663679132"
  2983. },
  2984. "-733930814": {
  2985. "source": "545846241",
  2986. "target": "-1026304274",
  2987. "metadata": {
  2988. "type": "module-to-module",
  2989. "sourceModuleName": "TypeOrmModule",
  2990. "targetModuleName": "TypeOrmCoreModule"
  2991. },
  2992. "id": "-733930814"
  2993. },
  2994. "-991562516": {
  2995. "source": "-2003726489",
  2996. "target": "211572259",
  2997. "metadata": {
  2998. "type": "module-to-module",
  2999. "sourceModuleName": "UsersModule",
  3000. "targetModuleName": "ConfigHostModule"
  3001. },
  3002. "id": "-991562516"
  3003. },
  3004. "-127805263": {
  3005. "source": "-2003726489",
  3006. "target": "1482218087",
  3007. "metadata": {
  3008. "type": "module-to-module",
  3009. "sourceModuleName": "UsersModule",
  3010. "targetModuleName": "ThrottlerModule"
  3011. },
  3012. "id": "-127805263"
  3013. },
  3014. "-1762775552": {
  3015. "source": "545846242",
  3016. "target": "211572259",
  3017. "metadata": {
  3018. "type": "module-to-module",
  3019. "sourceModuleName": "TypeOrmModule",
  3020. "targetModuleName": "ConfigHostModule"
  3021. },
  3022. "id": "-1762775552"
  3023. },
  3024. "-1347332715": {
  3025. "source": "545846242",
  3026. "target": "1482218087",
  3027. "metadata": {
  3028. "type": "module-to-module",
  3029. "sourceModuleName": "TypeOrmModule",
  3030. "targetModuleName": "ThrottlerModule"
  3031. },
  3032. "id": "-1347332715"
  3033. },
  3034. "-1627865725": {
  3035. "source": "545846242",
  3036. "target": "-1026304274",
  3037. "metadata": {
  3038. "type": "module-to-module",
  3039. "sourceModuleName": "TypeOrmModule",
  3040. "targetModuleName": "TypeOrmCoreModule"
  3041. },
  3042. "id": "-1627865725"
  3043. },
  3044. "-1377619055": {
  3045. "source": "-1134487807",
  3046. "target": "555176277",
  3047. "metadata": {
  3048. "type": "module-to-module",
  3049. "sourceModuleName": "AuthModule",
  3050. "targetModuleName": "InternalCoreModule"
  3051. },
  3052. "id": "-1377619055"
  3053. },
  3054. "-1088610631": {
  3055. "source": "-1134487807",
  3056. "target": "1482218087",
  3057. "metadata": {
  3058. "type": "module-to-module",
  3059. "sourceModuleName": "AuthModule",
  3060. "targetModuleName": "ThrottlerModule"
  3061. },
  3062. "id": "-1088610631"
  3063. },
  3064. "-994275839": {
  3065. "source": "863216335",
  3066. "target": "211572259",
  3067. "metadata": {
  3068. "type": "module-to-module",
  3069. "sourceModuleName": "ConfigModule",
  3070. "targetModuleName": "ConfigHostModule"
  3071. },
  3072. "id": "-994275839"
  3073. },
  3074. "-1912910352": {
  3075. "source": "863216335",
  3076. "target": "555176277",
  3077. "metadata": {
  3078. "type": "module-to-module",
  3079. "sourceModuleName": "ConfigModule",
  3080. "targetModuleName": "InternalCoreModule"
  3081. },
  3082. "id": "-1912910352"
  3083. },
  3084. "-1896601298": {
  3085. "source": "863216335",
  3086. "target": "1712628187",
  3087. "metadata": {
  3088. "type": "module-to-module",
  3089. "sourceModuleName": "ConfigModule",
  3090. "targetModuleName": "ConfigModule"
  3091. },
  3092. "id": "-1896601298"
  3093. },
  3094. "-1397857332": {
  3095. "source": "863216335",
  3096. "target": "1482218087",
  3097. "metadata": {
  3098. "type": "module-to-module",
  3099. "sourceModuleName": "ConfigModule",
  3100. "targetModuleName": "ThrottlerModule"
  3101. },
  3102. "id": "-1397857332"
  3103. },
  3104. "-1881791934": {
  3105. "source": "863216335",
  3106. "target": "-1026304274",
  3107. "metadata": {
  3108. "type": "module-to-module",
  3109. "sourceModuleName": "ConfigModule",
  3110. "targetModuleName": "TypeOrmCoreModule"
  3111. },
  3112. "id": "-1881791934"
  3113. },
  3114. "-693890971": {
  3115. "source": "-1327562795",
  3116. "target": "612499341",
  3117. "metadata": {
  3118. "type": "module-to-module",
  3119. "sourceModuleName": "FileModule",
  3120. "targetModuleName": "AliyunModule"
  3121. },
  3122. "id": "-693890971"
  3123. },
  3124. "-497922230": {
  3125. "source": "-1327562795",
  3126. "target": "211572259",
  3127. "metadata": {
  3128. "type": "module-to-module",
  3129. "sourceModuleName": "FileModule",
  3130. "targetModuleName": "ConfigHostModule"
  3131. },
  3132. "id": "-497922230"
  3133. },
  3134. "-1517205111": {
  3135. "source": "-1327562795",
  3136. "target": "1482218087",
  3137. "metadata": {
  3138. "type": "module-to-module",
  3139. "sourceModuleName": "FileModule",
  3140. "targetModuleName": "ThrottlerModule"
  3141. },
  3142. "id": "-1517205111"
  3143. },
  3144. "-951393523": {
  3145. "source": "930519593",
  3146. "target": "1063746662",
  3147. "metadata": {
  3148. "type": "class-to-class",
  3149. "sourceModuleName": "ConfigHostModule",
  3150. "sourceClassName": "ConfigService",
  3151. "targetClassName": "CONFIGURATION_TOKEN",
  3152. "sourceClassToken": "Symbol(CONFIG_SERVICE)",
  3153. "targetClassToken": "CONFIGURATION_TOKEN",
  3154. "targetModuleName": "ConfigHostModule",
  3155. "keyOrIndex": 0,
  3156. "injectionType": "constructor"
  3157. },
  3158. "id": "-951393523"
  3159. },
  3160. "-1597821732": {
  3161. "source": "373235992",
  3162. "target": "-1904419534",
  3163. "metadata": {
  3164. "type": "class-to-class",
  3165. "sourceModuleName": "DevtoolsModule",
  3166. "sourceClassName": "SandboxedCodeExecutor",
  3167. "targetClassName": "SerializedGraph",
  3168. "sourceClassToken": "SandboxedCodeExecutor",
  3169. "targetClassToken": "SerializedGraph",
  3170. "targetModuleName": "InternalCoreModule",
  3171. "keyOrIndex": 0,
  3172. "injectionType": "constructor",
  3173. "internal": true
  3174. },
  3175. "id": "-1597821732"
  3176. },
  3177. "-2041147046": {
  3178. "source": "373235992",
  3179. "target": "-26938366",
  3180. "metadata": {
  3181. "type": "class-to-class",
  3182. "sourceModuleName": "DevtoolsModule",
  3183. "sourceClassName": "SandboxedCodeExecutor",
  3184. "targetClassName": "ModulesContainer",
  3185. "sourceClassToken": "SandboxedCodeExecutor",
  3186. "targetClassToken": "ModulesContainer",
  3187. "targetModuleName": "InternalCoreModule",
  3188. "keyOrIndex": 1,
  3189. "injectionType": "constructor",
  3190. "internal": true
  3191. },
  3192. "id": "-2041147046"
  3193. },
  3194. "-1045206778": {
  3195. "source": "1310883338",
  3196. "target": "1063746662",
  3197. "metadata": {
  3198. "type": "class-to-class",
  3199. "sourceModuleName": "ConfigModule",
  3200. "sourceClassName": "CONFIGURATION_LOADER",
  3201. "targetClassName": "CONFIGURATION_TOKEN",
  3202. "sourceClassToken": "CONFIGURATION_LOADER",
  3203. "targetClassToken": "CONFIGURATION_TOKEN",
  3204. "targetModuleName": "ConfigHostModule",
  3205. "keyOrIndex": 0,
  3206. "injectionType": "constructor"
  3207. },
  3208. "id": "-1045206778"
  3209. },
  3210. "-481663631": {
  3211. "source": "1310883338",
  3212. "target": "-1790226991",
  3213. "metadata": {
  3214. "type": "class-to-class",
  3215. "sourceModuleName": "ConfigModule",
  3216. "sourceClassName": "CONFIGURATION_LOADER",
  3217. "targetClassName": "CONFIGURATION(aliyun)",
  3218. "sourceClassToken": "CONFIGURATION_LOADER",
  3219. "targetClassToken": "CONFIGURATION(aliyun)",
  3220. "targetModuleName": "ConfigModule",
  3221. "keyOrIndex": 1,
  3222. "injectionType": "constructor"
  3223. },
  3224. "id": "-481663631"
  3225. },
  3226. "-1782972962": {
  3227. "source": "1333473084",
  3228. "target": "1063746662",
  3229. "metadata": {
  3230. "type": "class-to-class",
  3231. "sourceModuleName": "ConfigModule",
  3232. "sourceClassName": "CONFIGURATION_LOADER",
  3233. "targetClassName": "CONFIGURATION_TOKEN",
  3234. "sourceClassToken": "CONFIGURATION_LOADER",
  3235. "targetClassToken": "CONFIGURATION_TOKEN",
  3236. "targetModuleName": "ConfigHostModule",
  3237. "keyOrIndex": 0,
  3238. "injectionType": "constructor"
  3239. },
  3240. "id": "-1782972962"
  3241. },
  3242. "-1103714220": {
  3243. "source": "1333473084",
  3244. "target": "-1453472830",
  3245. "metadata": {
  3246. "type": "class-to-class",
  3247. "sourceModuleName": "ConfigModule",
  3248. "sourceClassName": "CONFIGURATION_LOADER",
  3249. "targetClassName": "CONFIGURATION(jwt)",
  3250. "sourceClassToken": "CONFIGURATION_LOADER",
  3251. "targetClassToken": "CONFIGURATION(jwt)",
  3252. "targetModuleName": "ConfigModule",
  3253. "keyOrIndex": 1,
  3254. "injectionType": "constructor"
  3255. },
  3256. "id": "-1103714220"
  3257. },
  3258. "-1276722459": {
  3259. "source": "1705191969",
  3260. "target": "-1790226991",
  3261. "metadata": {
  3262. "type": "class-to-class",
  3263. "sourceModuleName": "AliyunModule",
  3264. "sourceClassName": "AliyunService",
  3265. "targetClassName": "CONFIGURATION(aliyun)",
  3266. "sourceClassToken": "AliyunService",
  3267. "targetClassToken": "CONFIGURATION(aliyun)",
  3268. "targetModuleName": "ConfigModule",
  3269. "keyOrIndex": 0,
  3270. "injectionType": "constructor"
  3271. },
  3272. "id": "-1276722459"
  3273. },
  3274. "-711278315": {
  3275. "source": "-1900804336",
  3276. "target": "-1453472830",
  3277. "metadata": {
  3278. "type": "class-to-class",
  3279. "sourceModuleName": "JwtModule",
  3280. "sourceClassName": "JWT_MODULE_OPTIONS",
  3281. "targetClassName": "CONFIGURATION(jwt)",
  3282. "sourceClassToken": "JWT_MODULE_OPTIONS",
  3283. "targetClassToken": "CONFIGURATION(jwt)",
  3284. "targetModuleName": "ConfigModule",
  3285. "keyOrIndex": 0,
  3286. "injectionType": "constructor"
  3287. },
  3288. "id": "-711278315"
  3289. },
  3290. "-1717178441": {
  3291. "source": "385041166",
  3292. "target": "-1453472830",
  3293. "metadata": {
  3294. "type": "class-to-class",
  3295. "sourceModuleName": "AuthModule",
  3296. "sourceClassName": "JwtStrategy",
  3297. "targetClassName": "CONFIGURATION(jwt)",
  3298. "sourceClassToken": "JwtStrategy",
  3299. "targetClassToken": "CONFIGURATION(jwt)",
  3300. "targetModuleName": "ConfigModule",
  3301. "keyOrIndex": 0,
  3302. "injectionType": "constructor"
  3303. },
  3304. "id": "-1717178441"
  3305. }
  3306. },
  3307. "entrypoints": {},
  3308. "extras": {
  3309. "orphanedEnhancers": [],
  3310. "attachedEnhancers": []
  3311. },
  3312. "status": "partial",
  3313. "metadata": {
  3314. "cause": {
  3315. "type": "unknown-dependencies",
  3316. "context": {
  3317. "index": 0,
  3318. "dependencies": [
  3319. "Object"
  3320. ],
  3321. "name": "Object"
  3322. },
  3323. "moduleId": "-1327562795",
  3324. "nodeId": "1837744481"
  3325. }
  3326. }
  3327. }