graph.json 82 KB

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