adaptic-backend 1.0.78 → 1.0.79

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/Account.cjs +45 -54
  2. package/Alert.cjs +45 -54
  3. package/AlpacaAccount.cjs +80 -96
  4. package/Asset.cjs +35 -42
  5. package/Authenticator.cjs +45 -54
  6. package/Customer.cjs +65 -78
  7. package/NewsArticle.cjs +5 -6
  8. package/NewsArticleAssetSentiment.cjs +45 -54
  9. package/Order.cjs +90 -108
  10. package/Position.cjs +90 -108
  11. package/Session.cjs +45 -54
  12. package/Trade.cjs +95 -114
  13. package/User.cjs +80 -96
  14. package/package.json +1 -1
  15. package/server/Account.d.ts.map +1 -1
  16. package/server/Account.js.map +1 -1
  17. package/server/Account.mjs +45 -54
  18. package/server/Alert.d.ts.map +1 -1
  19. package/server/Alert.js.map +1 -1
  20. package/server/Alert.mjs +45 -54
  21. package/server/AlpacaAccount.d.ts.map +1 -1
  22. package/server/AlpacaAccount.js.map +1 -1
  23. package/server/AlpacaAccount.mjs +80 -96
  24. package/server/Asset.d.ts.map +1 -1
  25. package/server/Asset.js.map +1 -1
  26. package/server/Asset.mjs +35 -42
  27. package/server/Authenticator.d.ts.map +1 -1
  28. package/server/Authenticator.js.map +1 -1
  29. package/server/Authenticator.mjs +45 -54
  30. package/server/Customer.d.ts.map +1 -1
  31. package/server/Customer.js.map +1 -1
  32. package/server/Customer.mjs +65 -78
  33. package/server/NewsArticle.d.ts.map +1 -1
  34. package/server/NewsArticle.js.map +1 -1
  35. package/server/NewsArticle.mjs +5 -6
  36. package/server/NewsArticleAssetSentiment.d.ts.map +1 -1
  37. package/server/NewsArticleAssetSentiment.js.map +1 -1
  38. package/server/NewsArticleAssetSentiment.mjs +45 -54
  39. package/server/Order.d.ts.map +1 -1
  40. package/server/Order.js.map +1 -1
  41. package/server/Order.mjs +90 -108
  42. package/server/Position.d.ts.map +1 -1
  43. package/server/Position.js.map +1 -1
  44. package/server/Position.mjs +90 -108
  45. package/server/Session.d.ts.map +1 -1
  46. package/server/Session.js.map +1 -1
  47. package/server/Session.mjs +45 -54
  48. package/server/Trade.d.ts.map +1 -1
  49. package/server/Trade.js.map +1 -1
  50. package/server/Trade.mjs +95 -114
  51. package/server/User.d.ts.map +1 -1
  52. package/server/User.js.map +1 -1
  53. package/server/User.mjs +80 -96
package/server/Trade.mjs CHANGED
@@ -335,12 +335,11 @@ export const Trade = {
335
335
  }
336
336
  } : undefined,
337
337
  orders: props.alpacaAccount.orders ?
338
- Array.isArray(props.alpacaAccount.orders) && props.alpacaAccount.orders.length > 0
339
- ? props.alpacaAccount.orders.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
340
- connect: props.alpacaAccount.orders.map((item) => ({
341
- id: item.id
342
- }))
343
- }
338
+ Array.isArray(props.alpacaAccount.orders) && props.alpacaAccount.orders.length > 0 && props.alpacaAccount.orders.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
339
+ connect: props.alpacaAccount.orders.map((item) => ({
340
+ id: item.id
341
+ }))
342
+ }
344
343
  : { connectOrCreate: props.alpacaAccount.orders.map((item) => ({
345
344
  where: {
346
345
  id: item.id !== undefined ? item.id : undefined,
@@ -366,12 +365,11 @@ export const Trade = {
366
365
  }))
367
366
  } : undefined,
368
367
  positions: props.alpacaAccount.positions ?
369
- Array.isArray(props.alpacaAccount.positions) && props.alpacaAccount.positions.length > 0
370
- ? props.alpacaAccount.positions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
371
- connect: props.alpacaAccount.positions.map((item) => ({
372
- id: item.id
373
- }))
374
- }
368
+ Array.isArray(props.alpacaAccount.positions) && props.alpacaAccount.positions.length > 0 && props.alpacaAccount.positions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
369
+ connect: props.alpacaAccount.positions.map((item) => ({
370
+ id: item.id
371
+ }))
372
+ }
375
373
  : { connectOrCreate: props.alpacaAccount.positions.map((item) => ({
376
374
  where: {
377
375
  id: item.id !== undefined ? item.id : undefined,
@@ -394,12 +392,11 @@ export const Trade = {
394
392
  }))
395
393
  } : undefined,
396
394
  alerts: props.alpacaAccount.alerts ?
397
- Array.isArray(props.alpacaAccount.alerts) && props.alpacaAccount.alerts.length > 0
398
- ? props.alpacaAccount.alerts.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
399
- connect: props.alpacaAccount.alerts.map((item) => ({
400
- id: item.id
401
- }))
402
- }
395
+ Array.isArray(props.alpacaAccount.alerts) && props.alpacaAccount.alerts.length > 0 && props.alpacaAccount.alerts.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
396
+ connect: props.alpacaAccount.alerts.map((item) => ({
397
+ id: item.id
398
+ }))
399
+ }
403
400
  : { connectOrCreate: props.alpacaAccount.alerts.map((item) => ({
404
401
  where: {
405
402
  id: item.id !== undefined ? item.id : undefined,
@@ -483,12 +480,11 @@ export const Trade = {
483
480
  sellPrice: props.asset.sellPrice !== undefined ? props.asset.sellPrice : undefined,
484
481
  buyPrice: props.asset.buyPrice !== undefined ? props.asset.buyPrice : undefined,
485
482
  orders: props.asset.orders ?
486
- Array.isArray(props.asset.orders) && props.asset.orders.length > 0
487
- ? props.asset.orders.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
488
- connect: props.asset.orders.map((item) => ({
489
- id: item.id
490
- }))
491
- }
483
+ Array.isArray(props.asset.orders) && props.asset.orders.length > 0 && props.asset.orders.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
484
+ connect: props.asset.orders.map((item) => ({
485
+ id: item.id
486
+ }))
487
+ }
492
488
  : { connectOrCreate: props.asset.orders.map((item) => ({
493
489
  where: {
494
490
  id: item.id !== undefined ? item.id : undefined,
@@ -514,12 +510,11 @@ export const Trade = {
514
510
  }))
515
511
  } : undefined,
516
512
  positions: props.asset.positions ?
517
- Array.isArray(props.asset.positions) && props.asset.positions.length > 0
518
- ? props.asset.positions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
519
- connect: props.asset.positions.map((item) => ({
520
- id: item.id
521
- }))
522
- }
513
+ Array.isArray(props.asset.positions) && props.asset.positions.length > 0 && props.asset.positions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
514
+ connect: props.asset.positions.map((item) => ({
515
+ id: item.id
516
+ }))
517
+ }
523
518
  : { connectOrCreate: props.asset.positions.map((item) => ({
524
519
  where: {
525
520
  id: item.id !== undefined ? item.id : undefined,
@@ -542,12 +537,11 @@ export const Trade = {
542
537
  }))
543
538
  } : undefined,
544
539
  newsMentions: props.asset.newsMentions ?
545
- Array.isArray(props.asset.newsMentions) && props.asset.newsMentions.length > 0
546
- ? props.asset.newsMentions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
547
- connect: props.asset.newsMentions.map((item) => ({
548
- id: item.id
549
- }))
550
- }
540
+ Array.isArray(props.asset.newsMentions) && props.asset.newsMentions.length > 0 && props.asset.newsMentions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
541
+ connect: props.asset.newsMentions.map((item) => ({
542
+ id: item.id
543
+ }))
544
+ }
551
545
  : { connectOrCreate: props.asset.newsMentions.map((item) => ({
552
546
  where: {
553
547
  id: item.id !== undefined ? item.id : undefined,
@@ -565,12 +559,11 @@ export const Trade = {
565
559
  }
566
560
  } : undefined,
567
561
  actions: props.actions ?
568
- Array.isArray(props.actions) && props.actions.length > 0
569
- ? props.actions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
570
- connect: props.actions.map((item) => ({
571
- id: item.id
572
- }))
573
- }
562
+ Array.isArray(props.actions) && props.actions.length > 0 && props.actions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
563
+ connect: props.actions.map((item) => ({
564
+ id: item.id
565
+ }))
566
+ }
574
567
  : { connectOrCreate: props.actions.map((item) => ({
575
568
  where: {
576
569
  id: item.id !== undefined ? item.id : undefined,
@@ -1284,12 +1277,11 @@ export const Trade = {
1284
1277
  }
1285
1278
  } : undefined,
1286
1279
  orders: props.alpacaAccount.orders ?
1287
- Array.isArray(props.alpacaAccount.orders) && props.alpacaAccount.orders.length > 0
1288
- ? props.alpacaAccount.orders.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
1289
- connect: props.alpacaAccount.orders.map((item) => ({
1290
- id: item.id
1291
- }))
1292
- }
1280
+ Array.isArray(props.alpacaAccount.orders) && props.alpacaAccount.orders.length > 0 && props.alpacaAccount.orders.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
1281
+ connect: props.alpacaAccount.orders.map((item) => ({
1282
+ id: item.id
1283
+ }))
1284
+ }
1293
1285
  : { connectOrCreate: props.alpacaAccount.orders.map((item) => ({
1294
1286
  where: {
1295
1287
  id: item.id !== undefined ? item.id : undefined,
@@ -1315,12 +1307,11 @@ export const Trade = {
1315
1307
  }))
1316
1308
  } : undefined,
1317
1309
  positions: props.alpacaAccount.positions ?
1318
- Array.isArray(props.alpacaAccount.positions) && props.alpacaAccount.positions.length > 0
1319
- ? props.alpacaAccount.positions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
1320
- connect: props.alpacaAccount.positions.map((item) => ({
1321
- id: item.id
1322
- }))
1323
- }
1310
+ Array.isArray(props.alpacaAccount.positions) && props.alpacaAccount.positions.length > 0 && props.alpacaAccount.positions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
1311
+ connect: props.alpacaAccount.positions.map((item) => ({
1312
+ id: item.id
1313
+ }))
1314
+ }
1324
1315
  : { connectOrCreate: props.alpacaAccount.positions.map((item) => ({
1325
1316
  where: {
1326
1317
  id: item.id !== undefined ? item.id : undefined,
@@ -1343,12 +1334,11 @@ export const Trade = {
1343
1334
  }))
1344
1335
  } : undefined,
1345
1336
  alerts: props.alpacaAccount.alerts ?
1346
- Array.isArray(props.alpacaAccount.alerts) && props.alpacaAccount.alerts.length > 0
1347
- ? props.alpacaAccount.alerts.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
1348
- connect: props.alpacaAccount.alerts.map((item) => ({
1349
- id: item.id
1350
- }))
1351
- }
1337
+ Array.isArray(props.alpacaAccount.alerts) && props.alpacaAccount.alerts.length > 0 && props.alpacaAccount.alerts.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
1338
+ connect: props.alpacaAccount.alerts.map((item) => ({
1339
+ id: item.id
1340
+ }))
1341
+ }
1352
1342
  : { connectOrCreate: props.alpacaAccount.alerts.map((item) => ({
1353
1343
  where: {
1354
1344
  id: item.id !== undefined ? item.id : undefined,
@@ -1778,12 +1768,11 @@ export const Trade = {
1778
1768
  sellPrice: props.asset.sellPrice !== undefined ? props.asset.sellPrice : undefined,
1779
1769
  buyPrice: props.asset.buyPrice !== undefined ? props.asset.buyPrice : undefined,
1780
1770
  orders: props.asset.orders ?
1781
- Array.isArray(props.asset.orders) && props.asset.orders.length > 0
1782
- ? props.asset.orders.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
1783
- connect: props.asset.orders.map((item) => ({
1784
- id: item.id
1785
- }))
1786
- }
1771
+ Array.isArray(props.asset.orders) && props.asset.orders.length > 0 && props.asset.orders.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
1772
+ connect: props.asset.orders.map((item) => ({
1773
+ id: item.id
1774
+ }))
1775
+ }
1787
1776
  : { connectOrCreate: props.asset.orders.map((item) => ({
1788
1777
  where: {
1789
1778
  id: item.id !== undefined ? item.id : undefined,
@@ -1809,12 +1798,11 @@ export const Trade = {
1809
1798
  }))
1810
1799
  } : undefined,
1811
1800
  positions: props.asset.positions ?
1812
- Array.isArray(props.asset.positions) && props.asset.positions.length > 0
1813
- ? props.asset.positions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
1814
- connect: props.asset.positions.map((item) => ({
1815
- id: item.id
1816
- }))
1817
- }
1801
+ Array.isArray(props.asset.positions) && props.asset.positions.length > 0 && props.asset.positions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
1802
+ connect: props.asset.positions.map((item) => ({
1803
+ id: item.id
1804
+ }))
1805
+ }
1818
1806
  : { connectOrCreate: props.asset.positions.map((item) => ({
1819
1807
  where: {
1820
1808
  id: item.id !== undefined ? item.id : undefined,
@@ -1837,12 +1825,11 @@ export const Trade = {
1837
1825
  }))
1838
1826
  } : undefined,
1839
1827
  newsMentions: props.asset.newsMentions ?
1840
- Array.isArray(props.asset.newsMentions) && props.asset.newsMentions.length > 0
1841
- ? props.asset.newsMentions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
1842
- connect: props.asset.newsMentions.map((item) => ({
1843
- id: item.id
1844
- }))
1845
- }
1828
+ Array.isArray(props.asset.newsMentions) && props.asset.newsMentions.length > 0 && props.asset.newsMentions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
1829
+ connect: props.asset.newsMentions.map((item) => ({
1830
+ id: item.id
1831
+ }))
1832
+ }
1846
1833
  : { connectOrCreate: props.asset.newsMentions.map((item) => ({
1847
1834
  where: {
1848
1835
  id: item.id !== undefined ? item.id : undefined,
@@ -2368,12 +2355,11 @@ export const Trade = {
2368
2355
  }
2369
2356
  } : undefined,
2370
2357
  orders: prop.alpacaAccount.orders ?
2371
- Array.isArray(prop.alpacaAccount.orders) && prop.alpacaAccount.orders.length > 0
2372
- ? prop.alpacaAccount.orders.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
2373
- connect: prop.alpacaAccount.orders.map((item) => ({
2374
- id: item.id
2375
- }))
2376
- }
2358
+ Array.isArray(prop.alpacaAccount.orders) && prop.alpacaAccount.orders.length > 0 && prop.alpacaAccount.orders.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
2359
+ connect: prop.alpacaAccount.orders.map((item) => ({
2360
+ id: item.id
2361
+ }))
2362
+ }
2377
2363
  : { connectOrCreate: prop.alpacaAccount.orders.map((item) => ({
2378
2364
  where: {
2379
2365
  id: item.id !== undefined ? item.id : undefined,
@@ -2399,12 +2385,11 @@ export const Trade = {
2399
2385
  }))
2400
2386
  } : undefined,
2401
2387
  positions: prop.alpacaAccount.positions ?
2402
- Array.isArray(prop.alpacaAccount.positions) && prop.alpacaAccount.positions.length > 0
2403
- ? prop.alpacaAccount.positions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
2404
- connect: prop.alpacaAccount.positions.map((item) => ({
2405
- id: item.id
2406
- }))
2407
- }
2388
+ Array.isArray(prop.alpacaAccount.positions) && prop.alpacaAccount.positions.length > 0 && prop.alpacaAccount.positions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
2389
+ connect: prop.alpacaAccount.positions.map((item) => ({
2390
+ id: item.id
2391
+ }))
2392
+ }
2408
2393
  : { connectOrCreate: prop.alpacaAccount.positions.map((item) => ({
2409
2394
  where: {
2410
2395
  id: item.id !== undefined ? item.id : undefined,
@@ -2427,12 +2412,11 @@ export const Trade = {
2427
2412
  }))
2428
2413
  } : undefined,
2429
2414
  alerts: prop.alpacaAccount.alerts ?
2430
- Array.isArray(prop.alpacaAccount.alerts) && prop.alpacaAccount.alerts.length > 0
2431
- ? prop.alpacaAccount.alerts.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
2432
- connect: prop.alpacaAccount.alerts.map((item) => ({
2433
- id: item.id
2434
- }))
2435
- }
2415
+ Array.isArray(prop.alpacaAccount.alerts) && prop.alpacaAccount.alerts.length > 0 && prop.alpacaAccount.alerts.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
2416
+ connect: prop.alpacaAccount.alerts.map((item) => ({
2417
+ id: item.id
2418
+ }))
2419
+ }
2436
2420
  : { connectOrCreate: prop.alpacaAccount.alerts.map((item) => ({
2437
2421
  where: {
2438
2422
  id: item.id !== undefined ? item.id : undefined,
@@ -2862,12 +2846,11 @@ export const Trade = {
2862
2846
  sellPrice: prop.asset.sellPrice !== undefined ? prop.asset.sellPrice : undefined,
2863
2847
  buyPrice: prop.asset.buyPrice !== undefined ? prop.asset.buyPrice : undefined,
2864
2848
  orders: prop.asset.orders ?
2865
- Array.isArray(prop.asset.orders) && prop.asset.orders.length > 0
2866
- ? prop.asset.orders.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
2867
- connect: prop.asset.orders.map((item) => ({
2868
- id: item.id
2869
- }))
2870
- }
2849
+ Array.isArray(prop.asset.orders) && prop.asset.orders.length > 0 && prop.asset.orders.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
2850
+ connect: prop.asset.orders.map((item) => ({
2851
+ id: item.id
2852
+ }))
2853
+ }
2871
2854
  : { connectOrCreate: prop.asset.orders.map((item) => ({
2872
2855
  where: {
2873
2856
  id: item.id !== undefined ? item.id : undefined,
@@ -2893,12 +2876,11 @@ export const Trade = {
2893
2876
  }))
2894
2877
  } : undefined,
2895
2878
  positions: prop.asset.positions ?
2896
- Array.isArray(prop.asset.positions) && prop.asset.positions.length > 0
2897
- ? prop.asset.positions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
2898
- connect: prop.asset.positions.map((item) => ({
2899
- id: item.id
2900
- }))
2901
- }
2879
+ Array.isArray(prop.asset.positions) && prop.asset.positions.length > 0 && prop.asset.positions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
2880
+ connect: prop.asset.positions.map((item) => ({
2881
+ id: item.id
2882
+ }))
2883
+ }
2902
2884
  : { connectOrCreate: prop.asset.positions.map((item) => ({
2903
2885
  where: {
2904
2886
  id: item.id !== undefined ? item.id : undefined,
@@ -2921,12 +2903,11 @@ export const Trade = {
2921
2903
  }))
2922
2904
  } : undefined,
2923
2905
  newsMentions: prop.asset.newsMentions ?
2924
- Array.isArray(prop.asset.newsMentions) && prop.asset.newsMentions.length > 0
2925
- ? prop.asset.newsMentions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) && {
2926
- connect: prop.asset.newsMentions.map((item) => ({
2927
- id: item.id
2928
- }))
2929
- }
2906
+ Array.isArray(prop.asset.newsMentions) && prop.asset.newsMentions.length > 0 && prop.asset.newsMentions.every((item) => typeof item === 'object' && 'id' in item && Object.keys(item).length === 1) ? {
2907
+ connect: prop.asset.newsMentions.map((item) => ({
2908
+ id: item.id
2909
+ }))
2910
+ }
2930
2911
  : { connectOrCreate: prop.asset.newsMentions.map((item) => ({
2931
2912
  where: {
2932
2913
  id: item.id !== undefined ? item.id : undefined,
@@ -1 +1 @@
1
- {"version":3,"file":"User.d.ts","sourceRoot":"","sources":["../../src/User.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,IAAI,QAAQ,EAAE,MAAM,4CAA4C,CAAC;AAK9E;;GAEG;AAEH,eAAO,MAAM,IAAI;IAEf;;;;OAIG;kBAEiB,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;IA4fhD;;;;OAIG;sBACqB,QAAQ,EAAE,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IA0CtE;;;;OAIG;kBACiB,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;IAw0BhD;;;;OAIG;sBACqB,QAAQ,EAAE,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAwkBtE;;;;OAIG;kBACiB,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;IAoShD;;;;OAIG;eACc,QAAQ,GAAG,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC;IAuSpD;;;OAGG;cACa,OAAO,CAAC,QAAQ,EAAE,GAAG,IAAI,CAAC;IA4R1C;;;;OAIG;oBACmB,QAAQ,GAAG,OAAO,CAAC,QAAQ,EAAE,GAAG,IAAI,CAAC;CA+S5D,CAAC"}
1
+ {"version":3,"file":"User.d.ts","sourceRoot":"","sources":["../../src/User.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,IAAI,QAAQ,EAAE,MAAM,4CAA4C,CAAC;AAK9E;;GAEG;AAEH,eAAO,MAAM,IAAI;IAEf;;;;OAIG;kBAEiB,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;IAofhD;;;;OAIG;sBACqB,QAAQ,EAAE,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IA0CtE;;;;OAIG;kBACiB,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;IAo0BhD;;;;OAIG;sBACqB,QAAQ,EAAE,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAokBtE;;;;OAIG;kBACiB,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;IAoShD;;;;OAIG;eACc,QAAQ,GAAG,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC;IAuSpD;;;OAGG;cACa,OAAO,CAAC,QAAQ,EAAE,GAAG,IAAI,CAAC;IA4R1C;;;;OAIG;oBACmB,QAAQ,GAAG,OAAO,CAAC,QAAQ,EAAE,GAAG,IAAI,CAAC;CA+S5D,CAAC"}