adaptic-backend 1.0.86 → 1.0.87

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 (65) hide show
  1. package/Account.cjs +1 -1261
  2. package/Action.cjs +0 -2016
  3. package/Alert.cjs +1 -1261
  4. package/AlpacaAccount.cjs +1 -1261
  5. package/Asset.cjs +0 -1548
  6. package/Authenticator.cjs +1 -1261
  7. package/Customer.cjs +1 -1261
  8. package/NewsArticle.cjs +1 -1549
  9. package/NewsArticleAssetSentiment.cjs +1 -1549
  10. package/Order.cjs +2 -1550
  11. package/Position.cjs +1 -1909
  12. package/Session.cjs +1 -1261
  13. package/StopLoss.cjs +2 -1550
  14. package/TakeProfit.cjs +2 -1550
  15. package/Trade.cjs +2 -1694
  16. package/User.cjs +1 -1261
  17. package/package.json +1 -1
  18. package/server/Account.d.ts.map +1 -1
  19. package/server/Account.js.map +1 -1
  20. package/server/Account.mjs +1 -1261
  21. package/server/Action.d.ts.map +1 -1
  22. package/server/Action.js.map +1 -1
  23. package/server/Action.mjs +0 -2016
  24. package/server/Alert.d.ts.map +1 -1
  25. package/server/Alert.js.map +1 -1
  26. package/server/Alert.mjs +1 -1261
  27. package/server/AlpacaAccount.d.ts.map +1 -1
  28. package/server/AlpacaAccount.js.map +1 -1
  29. package/server/AlpacaAccount.mjs +1 -1261
  30. package/server/Asset.d.ts.map +1 -1
  31. package/server/Asset.js.map +1 -1
  32. package/server/Asset.mjs +0 -1548
  33. package/server/Authenticator.d.ts.map +1 -1
  34. package/server/Authenticator.js.map +1 -1
  35. package/server/Authenticator.mjs +1 -1261
  36. package/server/Customer.d.ts.map +1 -1
  37. package/server/Customer.js.map +1 -1
  38. package/server/Customer.mjs +1 -1261
  39. package/server/NewsArticle.d.ts.map +1 -1
  40. package/server/NewsArticle.js.map +1 -1
  41. package/server/NewsArticle.mjs +1 -1549
  42. package/server/NewsArticleAssetSentiment.d.ts.map +1 -1
  43. package/server/NewsArticleAssetSentiment.js.map +1 -1
  44. package/server/NewsArticleAssetSentiment.mjs +1 -1549
  45. package/server/Order.d.ts.map +1 -1
  46. package/server/Order.js.map +1 -1
  47. package/server/Order.mjs +2 -1550
  48. package/server/Position.d.ts.map +1 -1
  49. package/server/Position.js.map +1 -1
  50. package/server/Position.mjs +1 -1909
  51. package/server/Session.d.ts.map +1 -1
  52. package/server/Session.js.map +1 -1
  53. package/server/Session.mjs +1 -1261
  54. package/server/StopLoss.d.ts.map +1 -1
  55. package/server/StopLoss.js.map +1 -1
  56. package/server/StopLoss.mjs +2 -1550
  57. package/server/TakeProfit.d.ts.map +1 -1
  58. package/server/TakeProfit.js.map +1 -1
  59. package/server/TakeProfit.mjs +2 -1550
  60. package/server/Trade.d.ts.map +1 -1
  61. package/server/Trade.js.map +1 -1
  62. package/server/Trade.mjs +2 -1694
  63. package/server/User.d.ts.map +1 -1
  64. package/server/User.js.map +1 -1
  65. package/server/User.mjs +1 -1261
package/Session.cjs CHANGED
@@ -45,9 +45,6 @@ exports.Session = {
45
45
  stripeCurrentPeriodEnd
46
46
  createdAt
47
47
  updatedAt
48
- users {
49
- id
50
- }
51
48
  }
52
49
  customerId
53
50
  accounts {
@@ -65,12 +62,6 @@ exports.Session = {
65
62
  session_state
66
63
  createdAt
67
64
  updatedAt
68
- user {
69
- id
70
- }
71
- }
72
- sessions {
73
- id
74
65
  }
75
66
  authenticators {
76
67
  id
@@ -78,9 +69,6 @@ exports.Session = {
78
69
  credentialID
79
70
  publicKey
80
71
  counter
81
- user {
82
- id
83
- }
84
72
  createdAt
85
73
  updatedAt
86
74
  }
@@ -94,9 +82,6 @@ exports.Session = {
94
82
  marketOpen
95
83
  minOrderSize
96
84
  maxOrderSize
97
- user {
98
- id
99
- }
100
85
  userId
101
86
  createdAt
102
87
  updatedAt
@@ -115,9 +100,6 @@ exports.Session = {
115
100
  createdAt
116
101
  updatedAt
117
102
  status
118
- alpacaAccount {
119
- id
120
- }
121
103
  asset {
122
104
  id
123
105
  symbol
@@ -177,9 +159,6 @@ exports.Session = {
177
159
  buyPrice
178
160
  createdAt
179
161
  updatedAt
180
- trades {
181
- id
182
- }
183
162
  orders {
184
163
  id
185
164
  clientOrderId
@@ -200,9 +179,6 @@ exports.Session = {
200
179
  createdAt
201
180
  updatedAt
202
181
  orderId
203
- Order {
204
- id
205
- }
206
182
  }
207
183
  takeProfit {
208
184
  id
@@ -211,9 +187,6 @@ exports.Session = {
211
187
  createdAt
212
188
  updatedAt
213
189
  orderId
214
- Order {
215
- id
216
- }
217
190
  }
218
191
  trailPrice
219
192
  trailPercent
@@ -225,9 +198,6 @@ exports.Session = {
225
198
  filledAt
226
199
  filledAvgPrice
227
200
  actionId
228
- alpacaAccount {
229
- id
230
- }
231
201
  action {
232
202
  id
233
203
  sequence
@@ -236,15 +206,6 @@ exports.Session = {
236
206
  note
237
207
  status
238
208
  fee
239
- trade {
240
- id
241
- }
242
- order {
243
- id
244
- }
245
- }
246
- asset {
247
- id
248
209
  }
249
210
  fee
250
211
  strikePrice
@@ -256,9 +217,6 @@ exports.Session = {
256
217
  positions {
257
218
  id
258
219
  assetId
259
- asset {
260
- id
261
- }
262
220
  averageEntryPrice
263
221
  qty
264
222
  qtyAvailable
@@ -272,9 +230,6 @@ exports.Session = {
272
230
  lastTradePrice
273
231
  changeToday
274
232
  assetMarginable
275
- alpacaAccount {
276
- id
277
- }
278
233
  alpacaAccountId
279
234
  }
280
235
  newsMentions {
@@ -299,12 +254,6 @@ exports.Session = {
299
254
  logo
300
255
  createdAt
301
256
  updatedAt
302
- assets {
303
- id
304
- }
305
- }
306
- asset {
307
- id
308
257
  }
309
258
  relevancyScore
310
259
  sentimentScore
@@ -319,9 +268,6 @@ exports.Session = {
319
268
  note
320
269
  status
321
270
  fee
322
- trade {
323
- id
324
- }
325
271
  order {
326
272
  id
327
273
  clientOrderId
@@ -342,9 +288,6 @@ exports.Session = {
342
288
  createdAt
343
289
  updatedAt
344
290
  orderId
345
- Order {
346
- id
347
- }
348
291
  }
349
292
  takeProfit {
350
293
  id
@@ -353,9 +296,6 @@ exports.Session = {
353
296
  createdAt
354
297
  updatedAt
355
298
  orderId
356
- Order {
357
- id
358
- }
359
299
  }
360
300
  trailPrice
361
301
  trailPercent
@@ -367,12 +307,6 @@ exports.Session = {
367
307
  filledAt
368
308
  filledAvgPrice
369
309
  actionId
370
- alpacaAccount {
371
- id
372
- }
373
- action {
374
- id
375
- }
376
310
  asset {
377
311
  id
378
312
  symbol
@@ -432,18 +366,9 @@ exports.Session = {
432
366
  buyPrice
433
367
  createdAt
434
368
  updatedAt
435
- trades {
436
- id
437
- }
438
- orders {
439
- id
440
- }
441
369
  positions {
442
370
  id
443
371
  assetId
444
- asset {
445
- id
446
- }
447
372
  averageEntryPrice
448
373
  qty
449
374
  qtyAvailable
@@ -457,9 +382,6 @@ exports.Session = {
457
382
  lastTradePrice
458
383
  changeToday
459
384
  assetMarginable
460
- alpacaAccount {
461
- id
462
- }
463
385
  alpacaAccountId
464
386
  }
465
387
  newsMentions {
@@ -484,12 +406,6 @@ exports.Session = {
484
406
  logo
485
407
  createdAt
486
408
  updatedAt
487
- assets {
488
- id
489
- }
490
- }
491
- asset {
492
- id
493
409
  }
494
410
  relevancyScore
495
411
  sentimentScore
@@ -525,9 +441,6 @@ exports.Session = {
525
441
  createdAt
526
442
  updatedAt
527
443
  orderId
528
- Order {
529
- id
530
- }
531
444
  }
532
445
  takeProfit {
533
446
  id
@@ -536,9 +449,6 @@ exports.Session = {
536
449
  createdAt
537
450
  updatedAt
538
451
  orderId
539
- Order {
540
- id
541
- }
542
452
  }
543
453
  trailPrice
544
454
  trailPercent
@@ -550,9 +460,6 @@ exports.Session = {
550
460
  filledAt
551
461
  filledAvgPrice
552
462
  actionId
553
- alpacaAccount {
554
- id
555
- }
556
463
  action {
557
464
  id
558
465
  sequence
@@ -576,9 +483,6 @@ exports.Session = {
576
483
  createdAt
577
484
  updatedAt
578
485
  status
579
- alpacaAccount {
580
- id
581
- }
582
486
  asset {
583
487
  id
584
488
  symbol
@@ -638,18 +542,9 @@ exports.Session = {
638
542
  buyPrice
639
543
  createdAt
640
544
  updatedAt
641
- trades {
642
- id
643
- }
644
- orders {
645
- id
646
- }
647
545
  positions {
648
546
  id
649
547
  assetId
650
- asset {
651
- id
652
- }
653
548
  averageEntryPrice
654
549
  qty
655
550
  qtyAvailable
@@ -663,9 +558,6 @@ exports.Session = {
663
558
  lastTradePrice
664
559
  changeToday
665
560
  assetMarginable
666
- alpacaAccount {
667
- id
668
- }
669
561
  alpacaAccountId
670
562
  }
671
563
  newsMentions {
@@ -690,24 +582,12 @@ exports.Session = {
690
582
  logo
691
583
  createdAt
692
584
  updatedAt
693
- assets {
694
- id
695
- }
696
- }
697
- asset {
698
- id
699
585
  }
700
586
  relevancyScore
701
587
  sentimentScore
702
588
  sentimentLabel
703
589
  }
704
590
  }
705
- actions {
706
- id
707
- }
708
- }
709
- order {
710
- id
711
591
  }
712
592
  }
713
593
  asset {
@@ -784,12 +664,6 @@ exports.Session = {
784
664
  createdAt
785
665
  updatedAt
786
666
  status
787
- alpacaAccount {
788
- id
789
- }
790
- asset {
791
- id
792
- }
793
667
  actions {
794
668
  id
795
669
  sequence
@@ -798,23 +672,11 @@ exports.Session = {
798
672
  note
799
673
  status
800
674
  fee
801
- trade {
802
- id
803
- }
804
- order {
805
- id
806
- }
807
675
  }
808
676
  }
809
- orders {
810
- id
811
- }
812
677
  positions {
813
678
  id
814
679
  assetId
815
- asset {
816
- id
817
- }
818
680
  averageEntryPrice
819
681
  qty
820
682
  qtyAvailable
@@ -828,9 +690,6 @@ exports.Session = {
828
690
  lastTradePrice
829
691
  changeToday
830
692
  assetMarginable
831
- alpacaAccount {
832
- id
833
- }
834
693
  alpacaAccountId
835
694
  }
836
695
  newsMentions {
@@ -855,12 +714,6 @@ exports.Session = {
855
714
  logo
856
715
  createdAt
857
716
  updatedAt
858
- assets {
859
- id
860
- }
861
- }
862
- asset {
863
- id
864
717
  }
865
718
  relevancyScore
866
719
  sentimentScore
@@ -951,12 +804,6 @@ exports.Session = {
951
804
  createdAt
952
805
  updatedAt
953
806
  status
954
- alpacaAccount {
955
- id
956
- }
957
- asset {
958
- id
959
- }
960
807
  actions {
961
808
  id
962
809
  sequence
@@ -965,9 +812,6 @@ exports.Session = {
965
812
  note
966
813
  status
967
814
  fee
968
- trade {
969
- id
970
- }
971
815
  order {
972
816
  id
973
817
  clientOrderId
@@ -988,9 +832,6 @@ exports.Session = {
988
832
  createdAt
989
833
  updatedAt
990
834
  orderId
991
- Order {
992
- id
993
- }
994
835
  }
995
836
  takeProfit {
996
837
  id
@@ -999,9 +840,6 @@ exports.Session = {
999
840
  createdAt
1000
841
  updatedAt
1001
842
  orderId
1002
- Order {
1003
- id
1004
- }
1005
843
  }
1006
844
  trailPrice
1007
845
  trailPercent
@@ -1013,15 +851,6 @@ exports.Session = {
1013
851
  filledAt
1014
852
  filledAvgPrice
1015
853
  actionId
1016
- alpacaAccount {
1017
- id
1018
- }
1019
- action {
1020
- id
1021
- }
1022
- asset {
1023
- id
1024
- }
1025
854
  fee
1026
855
  strikePrice
1027
856
  expirationDate
@@ -1051,9 +880,6 @@ exports.Session = {
1051
880
  createdAt
1052
881
  updatedAt
1053
882
  orderId
1054
- Order {
1055
- id
1056
- }
1057
883
  }
1058
884
  takeProfit {
1059
885
  id
@@ -1062,9 +888,6 @@ exports.Session = {
1062
888
  createdAt
1063
889
  updatedAt
1064
890
  orderId
1065
- Order {
1066
- id
1067
- }
1068
891
  }
1069
892
  trailPrice
1070
893
  trailPercent
@@ -1076,9 +899,6 @@ exports.Session = {
1076
899
  filledAt
1077
900
  filledAvgPrice
1078
901
  actionId
1079
- alpacaAccount {
1080
- id
1081
- }
1082
902
  action {
1083
903
  id
1084
904
  sequence
@@ -1102,22 +922,7 @@ exports.Session = {
1102
922
  createdAt
1103
923
  updatedAt
1104
924
  status
1105
- alpacaAccount {
1106
- id
1107
- }
1108
- asset {
1109
- id
1110
- }
1111
- actions {
1112
- id
1113
- }
1114
925
  }
1115
- order {
1116
- id
1117
- }
1118
- }
1119
- asset {
1120
- id
1121
926
  }
1122
927
  fee
1123
928
  strikePrice
@@ -1126,9 +931,6 @@ exports.Session = {
1126
931
  stopLossId
1127
932
  takeProfitId
1128
933
  }
1129
- positions {
1130
- id
1131
- }
1132
934
  newsMentions {
1133
935
  id
1134
936
  assetId
@@ -1151,12 +953,6 @@ exports.Session = {
1151
953
  logo
1152
954
  createdAt
1153
955
  updatedAt
1154
- assets {
1155
- id
1156
- }
1157
- }
1158
- asset {
1159
- id
1160
956
  }
1161
957
  relevancyScore
1162
958
  sentimentScore
@@ -1176,9 +972,6 @@ exports.Session = {
1176
972
  lastTradePrice
1177
973
  changeToday
1178
974
  assetMarginable
1179
- alpacaAccount {
1180
- id
1181
- }
1182
975
  alpacaAccountId
1183
976
  }
1184
977
  alerts {
@@ -1189,9 +982,6 @@ exports.Session = {
1189
982
  isRead
1190
983
  createdAt
1191
984
  updatedAt
1192
- alpacaAccount {
1193
- id
1194
- }
1195
985
  }
1196
986
  }
1197
987
  }
@@ -1513,9 +1303,6 @@ exports.Session = {
1513
1303
  stripeCurrentPeriodEnd
1514
1304
  createdAt
1515
1305
  updatedAt
1516
- users {
1517
- id
1518
- }
1519
1306
  }
1520
1307
  customerId
1521
1308
  accounts {
@@ -1533,12 +1320,6 @@ exports.Session = {
1533
1320
  session_state
1534
1321
  createdAt
1535
1322
  updatedAt
1536
- user {
1537
- id
1538
- }
1539
- }
1540
- sessions {
1541
- id
1542
1323
  }
1543
1324
  authenticators {
1544
1325
  id
@@ -1546,9 +1327,6 @@ exports.Session = {
1546
1327
  credentialID
1547
1328
  publicKey
1548
1329
  counter
1549
- user {
1550
- id
1551
- }
1552
1330
  createdAt
1553
1331
  updatedAt
1554
1332
  }
@@ -1562,9 +1340,6 @@ exports.Session = {
1562
1340
  marketOpen
1563
1341
  minOrderSize
1564
1342
  maxOrderSize
1565
- user {
1566
- id
1567
- }
1568
1343
  userId
1569
1344
  createdAt
1570
1345
  updatedAt
@@ -1583,9 +1358,6 @@ exports.Session = {
1583
1358
  createdAt
1584
1359
  updatedAt
1585
1360
  status
1586
- alpacaAccount {
1587
- id
1588
- }
1589
1361
  asset {
1590
1362
  id
1591
1363
  symbol
@@ -1645,9 +1417,6 @@ exports.Session = {
1645
1417
  buyPrice
1646
1418
  createdAt
1647
1419
  updatedAt
1648
- trades {
1649
- id
1650
- }
1651
1420
  orders {
1652
1421
  id
1653
1422
  clientOrderId
@@ -1668,9 +1437,6 @@ exports.Session = {
1668
1437
  createdAt
1669
1438
  updatedAt
1670
1439
  orderId
1671
- Order {
1672
- id
1673
- }
1674
1440
  }
1675
1441
  takeProfit {
1676
1442
  id
@@ -1679,9 +1445,6 @@ exports.Session = {
1679
1445
  createdAt
1680
1446
  updatedAt
1681
1447
  orderId
1682
- Order {
1683
- id
1684
- }
1685
1448
  }
1686
1449
  trailPrice
1687
1450
  trailPercent
@@ -1693,9 +1456,6 @@ exports.Session = {
1693
1456
  filledAt
1694
1457
  filledAvgPrice
1695
1458
  actionId
1696
- alpacaAccount {
1697
- id
1698
- }
1699
1459
  action {
1700
1460
  id
1701
1461
  sequence
@@ -1704,15 +1464,6 @@ exports.Session = {
1704
1464
  note
1705
1465
  status
1706
1466
  fee
1707
- trade {
1708
- id
1709
- }
1710
- order {
1711
- id
1712
- }
1713
- }
1714
- asset {
1715
- id
1716
1467
  }
1717
1468
  fee
1718
1469
  strikePrice
@@ -1724,9 +1475,6 @@ exports.Session = {
1724
1475
  positions {
1725
1476
  id
1726
1477
  assetId
1727
- asset {
1728
- id
1729
- }
1730
1478
  averageEntryPrice
1731
1479
  qty
1732
1480
  qtyAvailable
@@ -1740,9 +1488,6 @@ exports.Session = {
1740
1488
  lastTradePrice
1741
1489
  changeToday
1742
1490
  assetMarginable
1743
- alpacaAccount {
1744
- id
1745
- }
1746
1491
  alpacaAccountId
1747
1492
  }
1748
1493
  newsMentions {
@@ -1767,12 +1512,6 @@ exports.Session = {
1767
1512
  logo
1768
1513
  createdAt
1769
1514
  updatedAt
1770
- assets {
1771
- id
1772
- }
1773
- }
1774
- asset {
1775
- id
1776
1515
  }
1777
1516
  relevancyScore
1778
1517
  sentimentScore
@@ -1787,9 +1526,6 @@ exports.Session = {
1787
1526
  note
1788
1527
  status
1789
1528
  fee
1790
- trade {
1791
- id
1792
- }
1793
1529
  order {
1794
1530
  id
1795
1531
  clientOrderId
@@ -1810,9 +1546,6 @@ exports.Session = {
1810
1546
  createdAt
1811
1547
  updatedAt
1812
1548
  orderId
1813
- Order {
1814
- id
1815
- }
1816
1549
  }
1817
1550
  takeProfit {
1818
1551
  id
@@ -1821,9 +1554,6 @@ exports.Session = {
1821
1554
  createdAt
1822
1555
  updatedAt
1823
1556
  orderId
1824
- Order {
1825
- id
1826
- }
1827
1557
  }
1828
1558
  trailPrice
1829
1559
  trailPercent
@@ -1835,12 +1565,6 @@ exports.Session = {
1835
1565
  filledAt
1836
1566
  filledAvgPrice
1837
1567
  actionId
1838
- alpacaAccount {
1839
- id
1840
- }
1841
- action {
1842
- id
1843
- }
1844
1568
  asset {
1845
1569
  id
1846
1570
  symbol
@@ -1900,18 +1624,9 @@ exports.Session = {
1900
1624
  buyPrice
1901
1625
  createdAt
1902
1626
  updatedAt
1903
- trades {
1904
- id
1905
- }
1906
- orders {
1907
- id
1908
- }
1909
1627
  positions {
1910
1628
  id
1911
1629
  assetId
1912
- asset {
1913
- id
1914
- }
1915
1630
  averageEntryPrice
1916
1631
  qty
1917
1632
  qtyAvailable
@@ -1925,9 +1640,6 @@ exports.Session = {
1925
1640
  lastTradePrice
1926
1641
  changeToday
1927
1642
  assetMarginable
1928
- alpacaAccount {
1929
- id
1930
- }
1931
1643
  alpacaAccountId
1932
1644
  }
1933
1645
  newsMentions {
@@ -1952,12 +1664,6 @@ exports.Session = {
1952
1664
  logo
1953
1665
  createdAt
1954
1666
  updatedAt
1955
- assets {
1956
- id
1957
- }
1958
- }
1959
- asset {
1960
- id
1961
1667
  }
1962
1668
  relevancyScore
1963
1669
  sentimentScore
@@ -1993,9 +1699,6 @@ exports.Session = {
1993
1699
  createdAt
1994
1700
  updatedAt
1995
1701
  orderId
1996
- Order {
1997
- id
1998
- }
1999
1702
  }
2000
1703
  takeProfit {
2001
1704
  id
@@ -2004,9 +1707,6 @@ exports.Session = {
2004
1707
  createdAt
2005
1708
  updatedAt
2006
1709
  orderId
2007
- Order {
2008
- id
2009
- }
2010
1710
  }
2011
1711
  trailPrice
2012
1712
  trailPercent
@@ -2018,9 +1718,6 @@ exports.Session = {
2018
1718
  filledAt
2019
1719
  filledAvgPrice
2020
1720
  actionId
2021
- alpacaAccount {
2022
- id
2023
- }
2024
1721
  action {
2025
1722
  id
2026
1723
  sequence
@@ -2044,9 +1741,6 @@ exports.Session = {
2044
1741
  createdAt
2045
1742
  updatedAt
2046
1743
  status
2047
- alpacaAccount {
2048
- id
2049
- }
2050
1744
  asset {
2051
1745
  id
2052
1746
  symbol
@@ -2106,18 +1800,9 @@ exports.Session = {
2106
1800
  buyPrice
2107
1801
  createdAt
2108
1802
  updatedAt
2109
- trades {
2110
- id
2111
- }
2112
- orders {
2113
- id
2114
- }
2115
1803
  positions {
2116
1804
  id
2117
1805
  assetId
2118
- asset {
2119
- id
2120
- }
2121
1806
  averageEntryPrice
2122
1807
  qty
2123
1808
  qtyAvailable
@@ -2131,9 +1816,6 @@ exports.Session = {
2131
1816
  lastTradePrice
2132
1817
  changeToday
2133
1818
  assetMarginable
2134
- alpacaAccount {
2135
- id
2136
- }
2137
1819
  alpacaAccountId
2138
1820
  }
2139
1821
  newsMentions {
@@ -2158,24 +1840,12 @@ exports.Session = {
2158
1840
  logo
2159
1841
  createdAt
2160
1842
  updatedAt
2161
- assets {
2162
- id
2163
- }
2164
- }
2165
- asset {
2166
- id
2167
1843
  }
2168
1844
  relevancyScore
2169
1845
  sentimentScore
2170
1846
  sentimentLabel
2171
1847
  }
2172
1848
  }
2173
- actions {
2174
- id
2175
- }
2176
- }
2177
- order {
2178
- id
2179
1849
  }
2180
1850
  }
2181
1851
  asset {
@@ -2252,12 +1922,6 @@ exports.Session = {
2252
1922
  createdAt
2253
1923
  updatedAt
2254
1924
  status
2255
- alpacaAccount {
2256
- id
2257
- }
2258
- asset {
2259
- id
2260
- }
2261
1925
  actions {
2262
1926
  id
2263
1927
  sequence
@@ -2266,23 +1930,11 @@ exports.Session = {
2266
1930
  note
2267
1931
  status
2268
1932
  fee
2269
- trade {
2270
- id
2271
- }
2272
- order {
2273
- id
2274
- }
2275
1933
  }
2276
1934
  }
2277
- orders {
2278
- id
2279
- }
2280
1935
  positions {
2281
1936
  id
2282
1937
  assetId
2283
- asset {
2284
- id
2285
- }
2286
1938
  averageEntryPrice
2287
1939
  qty
2288
1940
  qtyAvailable
@@ -2296,9 +1948,6 @@ exports.Session = {
2296
1948
  lastTradePrice
2297
1949
  changeToday
2298
1950
  assetMarginable
2299
- alpacaAccount {
2300
- id
2301
- }
2302
1951
  alpacaAccountId
2303
1952
  }
2304
1953
  newsMentions {
@@ -2323,12 +1972,6 @@ exports.Session = {
2323
1972
  logo
2324
1973
  createdAt
2325
1974
  updatedAt
2326
- assets {
2327
- id
2328
- }
2329
- }
2330
- asset {
2331
- id
2332
1975
  }
2333
1976
  relevancyScore
2334
1977
  sentimentScore
@@ -2419,12 +2062,6 @@ exports.Session = {
2419
2062
  createdAt
2420
2063
  updatedAt
2421
2064
  status
2422
- alpacaAccount {
2423
- id
2424
- }
2425
- asset {
2426
- id
2427
- }
2428
2065
  actions {
2429
2066
  id
2430
2067
  sequence
@@ -2433,9 +2070,6 @@ exports.Session = {
2433
2070
  note
2434
2071
  status
2435
2072
  fee
2436
- trade {
2437
- id
2438
- }
2439
2073
  order {
2440
2074
  id
2441
2075
  clientOrderId
@@ -2456,9 +2090,6 @@ exports.Session = {
2456
2090
  createdAt
2457
2091
  updatedAt
2458
2092
  orderId
2459
- Order {
2460
- id
2461
- }
2462
2093
  }
2463
2094
  takeProfit {
2464
2095
  id
@@ -2467,9 +2098,6 @@ exports.Session = {
2467
2098
  createdAt
2468
2099
  updatedAt
2469
2100
  orderId
2470
- Order {
2471
- id
2472
- }
2473
2101
  }
2474
2102
  trailPrice
2475
2103
  trailPercent
@@ -2481,15 +2109,6 @@ exports.Session = {
2481
2109
  filledAt
2482
2110
  filledAvgPrice
2483
2111
  actionId
2484
- alpacaAccount {
2485
- id
2486
- }
2487
- action {
2488
- id
2489
- }
2490
- asset {
2491
- id
2492
- }
2493
2112
  fee
2494
2113
  strikePrice
2495
2114
  expirationDate
@@ -2519,9 +2138,6 @@ exports.Session = {
2519
2138
  createdAt
2520
2139
  updatedAt
2521
2140
  orderId
2522
- Order {
2523
- id
2524
- }
2525
2141
  }
2526
2142
  takeProfit {
2527
2143
  id
@@ -2530,9 +2146,6 @@ exports.Session = {
2530
2146
  createdAt
2531
2147
  updatedAt
2532
2148
  orderId
2533
- Order {
2534
- id
2535
- }
2536
2149
  }
2537
2150
  trailPrice
2538
2151
  trailPercent
@@ -2544,9 +2157,6 @@ exports.Session = {
2544
2157
  filledAt
2545
2158
  filledAvgPrice
2546
2159
  actionId
2547
- alpacaAccount {
2548
- id
2549
- }
2550
2160
  action {
2551
2161
  id
2552
2162
  sequence
@@ -2570,23 +2180,8 @@ exports.Session = {
2570
2180
  createdAt
2571
2181
  updatedAt
2572
2182
  status
2573
- alpacaAccount {
2574
- id
2575
- }
2576
- asset {
2577
- id
2578
- }
2579
- actions {
2580
- id
2581
- }
2582
- }
2583
- order {
2584
- id
2585
2183
  }
2586
2184
  }
2587
- asset {
2588
- id
2589
- }
2590
2185
  fee
2591
2186
  strikePrice
2592
2187
  expirationDate
@@ -2594,9 +2189,6 @@ exports.Session = {
2594
2189
  stopLossId
2595
2190
  takeProfitId
2596
2191
  }
2597
- positions {
2598
- id
2599
- }
2600
2192
  newsMentions {
2601
2193
  id
2602
2194
  assetId
@@ -2619,12 +2211,6 @@ exports.Session = {
2619
2211
  logo
2620
2212
  createdAt
2621
2213
  updatedAt
2622
- assets {
2623
- id
2624
- }
2625
- }
2626
- asset {
2627
- id
2628
2214
  }
2629
2215
  relevancyScore
2630
2216
  sentimentScore
@@ -2644,9 +2230,6 @@ exports.Session = {
2644
2230
  lastTradePrice
2645
2231
  changeToday
2646
2232
  assetMarginable
2647
- alpacaAccount {
2648
- id
2649
- }
2650
2233
  alpacaAccountId
2651
2234
  }
2652
2235
  alerts {
@@ -2657,9 +2240,6 @@ exports.Session = {
2657
2240
  isRead
2658
2241
  createdAt
2659
2242
  updatedAt
2660
- alpacaAccount {
2661
- id
2662
- }
2663
2243
  }
2664
2244
  }
2665
2245
  }
@@ -4315,9 +3895,6 @@ exports.Session = {
4315
3895
  stripeCurrentPeriodEnd
4316
3896
  createdAt
4317
3897
  updatedAt
4318
- users {
4319
- id
4320
- }
4321
3898
  }
4322
3899
  customerId
4323
3900
  accounts {
@@ -4335,12 +3912,6 @@ exports.Session = {
4335
3912
  session_state
4336
3913
  createdAt
4337
3914
  updatedAt
4338
- user {
4339
- id
4340
- }
4341
- }
4342
- sessions {
4343
- id
4344
3915
  }
4345
3916
  authenticators {
4346
3917
  id
@@ -4348,9 +3919,6 @@ exports.Session = {
4348
3919
  credentialID
4349
3920
  publicKey
4350
3921
  counter
4351
- user {
4352
- id
4353
- }
4354
3922
  createdAt
4355
3923
  updatedAt
4356
3924
  }
@@ -4364,9 +3932,6 @@ exports.Session = {
4364
3932
  marketOpen
4365
3933
  minOrderSize
4366
3934
  maxOrderSize
4367
- user {
4368
- id
4369
- }
4370
3935
  userId
4371
3936
  createdAt
4372
3937
  updatedAt
@@ -4385,9 +3950,6 @@ exports.Session = {
4385
3950
  createdAt
4386
3951
  updatedAt
4387
3952
  status
4388
- alpacaAccount {
4389
- id
4390
- }
4391
3953
  asset {
4392
3954
  id
4393
3955
  symbol
@@ -4447,9 +4009,6 @@ exports.Session = {
4447
4009
  buyPrice
4448
4010
  createdAt
4449
4011
  updatedAt
4450
- trades {
4451
- id
4452
- }
4453
4012
  orders {
4454
4013
  id
4455
4014
  clientOrderId
@@ -4470,9 +4029,6 @@ exports.Session = {
4470
4029
  createdAt
4471
4030
  updatedAt
4472
4031
  orderId
4473
- Order {
4474
- id
4475
- }
4476
4032
  }
4477
4033
  takeProfit {
4478
4034
  id
@@ -4481,9 +4037,6 @@ exports.Session = {
4481
4037
  createdAt
4482
4038
  updatedAt
4483
4039
  orderId
4484
- Order {
4485
- id
4486
- }
4487
4040
  }
4488
4041
  trailPrice
4489
4042
  trailPercent
@@ -4495,9 +4048,6 @@ exports.Session = {
4495
4048
  filledAt
4496
4049
  filledAvgPrice
4497
4050
  actionId
4498
- alpacaAccount {
4499
- id
4500
- }
4501
4051
  action {
4502
4052
  id
4503
4053
  sequence
@@ -4506,15 +4056,6 @@ exports.Session = {
4506
4056
  note
4507
4057
  status
4508
4058
  fee
4509
- trade {
4510
- id
4511
- }
4512
- order {
4513
- id
4514
- }
4515
- }
4516
- asset {
4517
- id
4518
4059
  }
4519
4060
  fee
4520
4061
  strikePrice
@@ -4526,9 +4067,6 @@ exports.Session = {
4526
4067
  positions {
4527
4068
  id
4528
4069
  assetId
4529
- asset {
4530
- id
4531
- }
4532
4070
  averageEntryPrice
4533
4071
  qty
4534
4072
  qtyAvailable
@@ -4542,9 +4080,6 @@ exports.Session = {
4542
4080
  lastTradePrice
4543
4081
  changeToday
4544
4082
  assetMarginable
4545
- alpacaAccount {
4546
- id
4547
- }
4548
4083
  alpacaAccountId
4549
4084
  }
4550
4085
  newsMentions {
@@ -4569,12 +4104,6 @@ exports.Session = {
4569
4104
  logo
4570
4105
  createdAt
4571
4106
  updatedAt
4572
- assets {
4573
- id
4574
- }
4575
- }
4576
- asset {
4577
- id
4578
4107
  }
4579
4108
  relevancyScore
4580
4109
  sentimentScore
@@ -4589,9 +4118,6 @@ exports.Session = {
4589
4118
  note
4590
4119
  status
4591
4120
  fee
4592
- trade {
4593
- id
4594
- }
4595
4121
  order {
4596
4122
  id
4597
4123
  clientOrderId
@@ -4612,9 +4138,6 @@ exports.Session = {
4612
4138
  createdAt
4613
4139
  updatedAt
4614
4140
  orderId
4615
- Order {
4616
- id
4617
- }
4618
4141
  }
4619
4142
  takeProfit {
4620
4143
  id
@@ -4623,9 +4146,6 @@ exports.Session = {
4623
4146
  createdAt
4624
4147
  updatedAt
4625
4148
  orderId
4626
- Order {
4627
- id
4628
- }
4629
4149
  }
4630
4150
  trailPrice
4631
4151
  trailPercent
@@ -4637,12 +4157,6 @@ exports.Session = {
4637
4157
  filledAt
4638
4158
  filledAvgPrice
4639
4159
  actionId
4640
- alpacaAccount {
4641
- id
4642
- }
4643
- action {
4644
- id
4645
- }
4646
4160
  asset {
4647
4161
  id
4648
4162
  symbol
@@ -4702,18 +4216,9 @@ exports.Session = {
4702
4216
  buyPrice
4703
4217
  createdAt
4704
4218
  updatedAt
4705
- trades {
4706
- id
4707
- }
4708
- orders {
4709
- id
4710
- }
4711
4219
  positions {
4712
4220
  id
4713
4221
  assetId
4714
- asset {
4715
- id
4716
- }
4717
4222
  averageEntryPrice
4718
4223
  qty
4719
4224
  qtyAvailable
@@ -4727,9 +4232,6 @@ exports.Session = {
4727
4232
  lastTradePrice
4728
4233
  changeToday
4729
4234
  assetMarginable
4730
- alpacaAccount {
4731
- id
4732
- }
4733
4235
  alpacaAccountId
4734
4236
  }
4735
4237
  newsMentions {
@@ -4754,12 +4256,6 @@ exports.Session = {
4754
4256
  logo
4755
4257
  createdAt
4756
4258
  updatedAt
4757
- assets {
4758
- id
4759
- }
4760
- }
4761
- asset {
4762
- id
4763
4259
  }
4764
4260
  relevancyScore
4765
4261
  sentimentScore
@@ -4795,9 +4291,6 @@ exports.Session = {
4795
4291
  createdAt
4796
4292
  updatedAt
4797
4293
  orderId
4798
- Order {
4799
- id
4800
- }
4801
4294
  }
4802
4295
  takeProfit {
4803
4296
  id
@@ -4806,9 +4299,6 @@ exports.Session = {
4806
4299
  createdAt
4807
4300
  updatedAt
4808
4301
  orderId
4809
- Order {
4810
- id
4811
- }
4812
4302
  }
4813
4303
  trailPrice
4814
4304
  trailPercent
@@ -4820,9 +4310,6 @@ exports.Session = {
4820
4310
  filledAt
4821
4311
  filledAvgPrice
4822
4312
  actionId
4823
- alpacaAccount {
4824
- id
4825
- }
4826
4313
  action {
4827
4314
  id
4828
4315
  sequence
@@ -4846,9 +4333,6 @@ exports.Session = {
4846
4333
  createdAt
4847
4334
  updatedAt
4848
4335
  status
4849
- alpacaAccount {
4850
- id
4851
- }
4852
4336
  asset {
4853
4337
  id
4854
4338
  symbol
@@ -4908,18 +4392,9 @@ exports.Session = {
4908
4392
  buyPrice
4909
4393
  createdAt
4910
4394
  updatedAt
4911
- trades {
4912
- id
4913
- }
4914
- orders {
4915
- id
4916
- }
4917
4395
  positions {
4918
4396
  id
4919
4397
  assetId
4920
- asset {
4921
- id
4922
- }
4923
4398
  averageEntryPrice
4924
4399
  qty
4925
4400
  qtyAvailable
@@ -4933,9 +4408,6 @@ exports.Session = {
4933
4408
  lastTradePrice
4934
4409
  changeToday
4935
4410
  assetMarginable
4936
- alpacaAccount {
4937
- id
4938
- }
4939
4411
  alpacaAccountId
4940
4412
  }
4941
4413
  newsMentions {
@@ -4960,24 +4432,12 @@ exports.Session = {
4960
4432
  logo
4961
4433
  createdAt
4962
4434
  updatedAt
4963
- assets {
4964
- id
4965
- }
4966
- }
4967
- asset {
4968
- id
4969
4435
  }
4970
4436
  relevancyScore
4971
4437
  sentimentScore
4972
4438
  sentimentLabel
4973
4439
  }
4974
4440
  }
4975
- actions {
4976
- id
4977
- }
4978
- }
4979
- order {
4980
- id
4981
4441
  }
4982
4442
  }
4983
4443
  asset {
@@ -5054,12 +4514,6 @@ exports.Session = {
5054
4514
  createdAt
5055
4515
  updatedAt
5056
4516
  status
5057
- alpacaAccount {
5058
- id
5059
- }
5060
- asset {
5061
- id
5062
- }
5063
4517
  actions {
5064
4518
  id
5065
4519
  sequence
@@ -5068,23 +4522,11 @@ exports.Session = {
5068
4522
  note
5069
4523
  status
5070
4524
  fee
5071
- trade {
5072
- id
5073
- }
5074
- order {
5075
- id
5076
- }
5077
4525
  }
5078
4526
  }
5079
- orders {
5080
- id
5081
- }
5082
4527
  positions {
5083
4528
  id
5084
4529
  assetId
5085
- asset {
5086
- id
5087
- }
5088
4530
  averageEntryPrice
5089
4531
  qty
5090
4532
  qtyAvailable
@@ -5098,9 +4540,6 @@ exports.Session = {
5098
4540
  lastTradePrice
5099
4541
  changeToday
5100
4542
  assetMarginable
5101
- alpacaAccount {
5102
- id
5103
- }
5104
4543
  alpacaAccountId
5105
4544
  }
5106
4545
  newsMentions {
@@ -5125,12 +4564,6 @@ exports.Session = {
5125
4564
  logo
5126
4565
  createdAt
5127
4566
  updatedAt
5128
- assets {
5129
- id
5130
- }
5131
- }
5132
- asset {
5133
- id
5134
4567
  }
5135
4568
  relevancyScore
5136
4569
  sentimentScore
@@ -5221,12 +4654,6 @@ exports.Session = {
5221
4654
  createdAt
5222
4655
  updatedAt
5223
4656
  status
5224
- alpacaAccount {
5225
- id
5226
- }
5227
- asset {
5228
- id
5229
- }
5230
4657
  actions {
5231
4658
  id
5232
4659
  sequence
@@ -5235,9 +4662,6 @@ exports.Session = {
5235
4662
  note
5236
4663
  status
5237
4664
  fee
5238
- trade {
5239
- id
5240
- }
5241
4665
  order {
5242
4666
  id
5243
4667
  clientOrderId
@@ -5258,9 +4682,6 @@ exports.Session = {
5258
4682
  createdAt
5259
4683
  updatedAt
5260
4684
  orderId
5261
- Order {
5262
- id
5263
- }
5264
4685
  }
5265
4686
  takeProfit {
5266
4687
  id
@@ -5269,9 +4690,6 @@ exports.Session = {
5269
4690
  createdAt
5270
4691
  updatedAt
5271
4692
  orderId
5272
- Order {
5273
- id
5274
- }
5275
4693
  }
5276
4694
  trailPrice
5277
4695
  trailPercent
@@ -5283,15 +4701,6 @@ exports.Session = {
5283
4701
  filledAt
5284
4702
  filledAvgPrice
5285
4703
  actionId
5286
- alpacaAccount {
5287
- id
5288
- }
5289
- action {
5290
- id
5291
- }
5292
- asset {
5293
- id
5294
- }
5295
4704
  fee
5296
4705
  strikePrice
5297
4706
  expirationDate
@@ -5321,9 +4730,6 @@ exports.Session = {
5321
4730
  createdAt
5322
4731
  updatedAt
5323
4732
  orderId
5324
- Order {
5325
- id
5326
- }
5327
4733
  }
5328
4734
  takeProfit {
5329
4735
  id
@@ -5332,9 +4738,6 @@ exports.Session = {
5332
4738
  createdAt
5333
4739
  updatedAt
5334
4740
  orderId
5335
- Order {
5336
- id
5337
- }
5338
4741
  }
5339
4742
  trailPrice
5340
4743
  trailPercent
@@ -5346,9 +4749,6 @@ exports.Session = {
5346
4749
  filledAt
5347
4750
  filledAvgPrice
5348
4751
  actionId
5349
- alpacaAccount {
5350
- id
5351
- }
5352
4752
  action {
5353
4753
  id
5354
4754
  sequence
@@ -5372,22 +4772,7 @@ exports.Session = {
5372
4772
  createdAt
5373
4773
  updatedAt
5374
4774
  status
5375
- alpacaAccount {
5376
- id
5377
- }
5378
- asset {
5379
- id
5380
- }
5381
- actions {
5382
- id
5383
- }
5384
4775
  }
5385
- order {
5386
- id
5387
- }
5388
- }
5389
- asset {
5390
- id
5391
4776
  }
5392
4777
  fee
5393
4778
  strikePrice
@@ -5396,9 +4781,6 @@ exports.Session = {
5396
4781
  stopLossId
5397
4782
  takeProfitId
5398
4783
  }
5399
- positions {
5400
- id
5401
- }
5402
4784
  newsMentions {
5403
4785
  id
5404
4786
  assetId
@@ -5421,12 +4803,6 @@ exports.Session = {
5421
4803
  logo
5422
4804
  createdAt
5423
4805
  updatedAt
5424
- assets {
5425
- id
5426
- }
5427
- }
5428
- asset {
5429
- id
5430
4806
  }
5431
4807
  relevancyScore
5432
4808
  sentimentScore
@@ -5446,9 +4822,6 @@ exports.Session = {
5446
4822
  lastTradePrice
5447
4823
  changeToday
5448
4824
  assetMarginable
5449
- alpacaAccount {
5450
- id
5451
- }
5452
4825
  alpacaAccountId
5453
4826
  }
5454
4827
  alerts {
@@ -5459,9 +4832,6 @@ exports.Session = {
5459
4832
  isRead
5460
4833
  createdAt
5461
4834
  updatedAt
5462
- alpacaAccount {
5463
- id
5464
- }
5465
4835
  }
5466
4836
  }
5467
4837
  }
@@ -5529,9 +4899,6 @@ exports.Session = {
5529
4899
  stripeCurrentPeriodEnd
5530
4900
  createdAt
5531
4901
  updatedAt
5532
- users {
5533
- id
5534
- }
5535
4902
  }
5536
4903
  customerId
5537
4904
  accounts {
@@ -5549,12 +4916,6 @@ exports.Session = {
5549
4916
  session_state
5550
4917
  createdAt
5551
4918
  updatedAt
5552
- user {
5553
- id
5554
- }
5555
- }
5556
- sessions {
5557
- id
5558
4919
  }
5559
4920
  authenticators {
5560
4921
  id
@@ -5562,9 +4923,6 @@ exports.Session = {
5562
4923
  credentialID
5563
4924
  publicKey
5564
4925
  counter
5565
- user {
5566
- id
5567
- }
5568
4926
  createdAt
5569
4927
  updatedAt
5570
4928
  }
@@ -5578,9 +4936,6 @@ exports.Session = {
5578
4936
  marketOpen
5579
4937
  minOrderSize
5580
4938
  maxOrderSize
5581
- user {
5582
- id
5583
- }
5584
4939
  userId
5585
4940
  createdAt
5586
4941
  updatedAt
@@ -5599,9 +4954,6 @@ exports.Session = {
5599
4954
  createdAt
5600
4955
  updatedAt
5601
4956
  status
5602
- alpacaAccount {
5603
- id
5604
- }
5605
4957
  asset {
5606
4958
  id
5607
4959
  symbol
@@ -5661,9 +5013,6 @@ exports.Session = {
5661
5013
  buyPrice
5662
5014
  createdAt
5663
5015
  updatedAt
5664
- trades {
5665
- id
5666
- }
5667
5016
  orders {
5668
5017
  id
5669
5018
  clientOrderId
@@ -5684,9 +5033,6 @@ exports.Session = {
5684
5033
  createdAt
5685
5034
  updatedAt
5686
5035
  orderId
5687
- Order {
5688
- id
5689
- }
5690
5036
  }
5691
5037
  takeProfit {
5692
5038
  id
@@ -5695,9 +5041,6 @@ exports.Session = {
5695
5041
  createdAt
5696
5042
  updatedAt
5697
5043
  orderId
5698
- Order {
5699
- id
5700
- }
5701
5044
  }
5702
5045
  trailPrice
5703
5046
  trailPercent
@@ -5709,9 +5052,6 @@ exports.Session = {
5709
5052
  filledAt
5710
5053
  filledAvgPrice
5711
5054
  actionId
5712
- alpacaAccount {
5713
- id
5714
- }
5715
5055
  action {
5716
5056
  id
5717
5057
  sequence
@@ -5720,15 +5060,6 @@ exports.Session = {
5720
5060
  note
5721
5061
  status
5722
5062
  fee
5723
- trade {
5724
- id
5725
- }
5726
- order {
5727
- id
5728
- }
5729
- }
5730
- asset {
5731
- id
5732
5063
  }
5733
5064
  fee
5734
5065
  strikePrice
@@ -5740,9 +5071,6 @@ exports.Session = {
5740
5071
  positions {
5741
5072
  id
5742
5073
  assetId
5743
- asset {
5744
- id
5745
- }
5746
5074
  averageEntryPrice
5747
5075
  qty
5748
5076
  qtyAvailable
@@ -5756,9 +5084,6 @@ exports.Session = {
5756
5084
  lastTradePrice
5757
5085
  changeToday
5758
5086
  assetMarginable
5759
- alpacaAccount {
5760
- id
5761
- }
5762
5087
  alpacaAccountId
5763
5088
  }
5764
5089
  newsMentions {
@@ -5783,12 +5108,6 @@ exports.Session = {
5783
5108
  logo
5784
5109
  createdAt
5785
5110
  updatedAt
5786
- assets {
5787
- id
5788
- }
5789
- }
5790
- asset {
5791
- id
5792
5111
  }
5793
5112
  relevancyScore
5794
5113
  sentimentScore
@@ -5803,9 +5122,6 @@ exports.Session = {
5803
5122
  note
5804
5123
  status
5805
5124
  fee
5806
- trade {
5807
- id
5808
- }
5809
5125
  order {
5810
5126
  id
5811
5127
  clientOrderId
@@ -5826,9 +5142,6 @@ exports.Session = {
5826
5142
  createdAt
5827
5143
  updatedAt
5828
5144
  orderId
5829
- Order {
5830
- id
5831
- }
5832
5145
  }
5833
5146
  takeProfit {
5834
5147
  id
@@ -5837,9 +5150,6 @@ exports.Session = {
5837
5150
  createdAt
5838
5151
  updatedAt
5839
5152
  orderId
5840
- Order {
5841
- id
5842
- }
5843
5153
  }
5844
5154
  trailPrice
5845
5155
  trailPercent
@@ -5851,13 +5161,7 @@ exports.Session = {
5851
5161
  filledAt
5852
5162
  filledAvgPrice
5853
5163
  actionId
5854
- alpacaAccount {
5855
- id
5856
- }
5857
- action {
5858
- id
5859
- }
5860
- asset {
5164
+ asset {
5861
5165
  id
5862
5166
  symbol
5863
5167
  name
@@ -5916,18 +5220,9 @@ exports.Session = {
5916
5220
  buyPrice
5917
5221
  createdAt
5918
5222
  updatedAt
5919
- trades {
5920
- id
5921
- }
5922
- orders {
5923
- id
5924
- }
5925
5223
  positions {
5926
5224
  id
5927
5225
  assetId
5928
- asset {
5929
- id
5930
- }
5931
5226
  averageEntryPrice
5932
5227
  qty
5933
5228
  qtyAvailable
@@ -5941,9 +5236,6 @@ exports.Session = {
5941
5236
  lastTradePrice
5942
5237
  changeToday
5943
5238
  assetMarginable
5944
- alpacaAccount {
5945
- id
5946
- }
5947
5239
  alpacaAccountId
5948
5240
  }
5949
5241
  newsMentions {
@@ -5968,12 +5260,6 @@ exports.Session = {
5968
5260
  logo
5969
5261
  createdAt
5970
5262
  updatedAt
5971
- assets {
5972
- id
5973
- }
5974
- }
5975
- asset {
5976
- id
5977
5263
  }
5978
5264
  relevancyScore
5979
5265
  sentimentScore
@@ -6009,9 +5295,6 @@ exports.Session = {
6009
5295
  createdAt
6010
5296
  updatedAt
6011
5297
  orderId
6012
- Order {
6013
- id
6014
- }
6015
5298
  }
6016
5299
  takeProfit {
6017
5300
  id
@@ -6020,9 +5303,6 @@ exports.Session = {
6020
5303
  createdAt
6021
5304
  updatedAt
6022
5305
  orderId
6023
- Order {
6024
- id
6025
- }
6026
5306
  }
6027
5307
  trailPrice
6028
5308
  trailPercent
@@ -6034,9 +5314,6 @@ exports.Session = {
6034
5314
  filledAt
6035
5315
  filledAvgPrice
6036
5316
  actionId
6037
- alpacaAccount {
6038
- id
6039
- }
6040
5317
  action {
6041
5318
  id
6042
5319
  sequence
@@ -6060,9 +5337,6 @@ exports.Session = {
6060
5337
  createdAt
6061
5338
  updatedAt
6062
5339
  status
6063
- alpacaAccount {
6064
- id
6065
- }
6066
5340
  asset {
6067
5341
  id
6068
5342
  symbol
@@ -6122,18 +5396,9 @@ exports.Session = {
6122
5396
  buyPrice
6123
5397
  createdAt
6124
5398
  updatedAt
6125
- trades {
6126
- id
6127
- }
6128
- orders {
6129
- id
6130
- }
6131
5399
  positions {
6132
5400
  id
6133
5401
  assetId
6134
- asset {
6135
- id
6136
- }
6137
5402
  averageEntryPrice
6138
5403
  qty
6139
5404
  qtyAvailable
@@ -6147,9 +5412,6 @@ exports.Session = {
6147
5412
  lastTradePrice
6148
5413
  changeToday
6149
5414
  assetMarginable
6150
- alpacaAccount {
6151
- id
6152
- }
6153
5415
  alpacaAccountId
6154
5416
  }
6155
5417
  newsMentions {
@@ -6174,24 +5436,12 @@ exports.Session = {
6174
5436
  logo
6175
5437
  createdAt
6176
5438
  updatedAt
6177
- assets {
6178
- id
6179
- }
6180
- }
6181
- asset {
6182
- id
6183
5439
  }
6184
5440
  relevancyScore
6185
5441
  sentimentScore
6186
5442
  sentimentLabel
6187
5443
  }
6188
5444
  }
6189
- actions {
6190
- id
6191
- }
6192
- }
6193
- order {
6194
- id
6195
5445
  }
6196
5446
  }
6197
5447
  asset {
@@ -6268,12 +5518,6 @@ exports.Session = {
6268
5518
  createdAt
6269
5519
  updatedAt
6270
5520
  status
6271
- alpacaAccount {
6272
- id
6273
- }
6274
- asset {
6275
- id
6276
- }
6277
5521
  actions {
6278
5522
  id
6279
5523
  sequence
@@ -6282,23 +5526,11 @@ exports.Session = {
6282
5526
  note
6283
5527
  status
6284
5528
  fee
6285
- trade {
6286
- id
6287
- }
6288
- order {
6289
- id
6290
- }
6291
5529
  }
6292
5530
  }
6293
- orders {
6294
- id
6295
- }
6296
5531
  positions {
6297
5532
  id
6298
5533
  assetId
6299
- asset {
6300
- id
6301
- }
6302
5534
  averageEntryPrice
6303
5535
  qty
6304
5536
  qtyAvailable
@@ -6312,9 +5544,6 @@ exports.Session = {
6312
5544
  lastTradePrice
6313
5545
  changeToday
6314
5546
  assetMarginable
6315
- alpacaAccount {
6316
- id
6317
- }
6318
5547
  alpacaAccountId
6319
5548
  }
6320
5549
  newsMentions {
@@ -6339,12 +5568,6 @@ exports.Session = {
6339
5568
  logo
6340
5569
  createdAt
6341
5570
  updatedAt
6342
- assets {
6343
- id
6344
- }
6345
- }
6346
- asset {
6347
- id
6348
5571
  }
6349
5572
  relevancyScore
6350
5573
  sentimentScore
@@ -6435,12 +5658,6 @@ exports.Session = {
6435
5658
  createdAt
6436
5659
  updatedAt
6437
5660
  status
6438
- alpacaAccount {
6439
- id
6440
- }
6441
- asset {
6442
- id
6443
- }
6444
5661
  actions {
6445
5662
  id
6446
5663
  sequence
@@ -6449,9 +5666,6 @@ exports.Session = {
6449
5666
  note
6450
5667
  status
6451
5668
  fee
6452
- trade {
6453
- id
6454
- }
6455
5669
  order {
6456
5670
  id
6457
5671
  clientOrderId
@@ -6472,9 +5686,6 @@ exports.Session = {
6472
5686
  createdAt
6473
5687
  updatedAt
6474
5688
  orderId
6475
- Order {
6476
- id
6477
- }
6478
5689
  }
6479
5690
  takeProfit {
6480
5691
  id
@@ -6483,9 +5694,6 @@ exports.Session = {
6483
5694
  createdAt
6484
5695
  updatedAt
6485
5696
  orderId
6486
- Order {
6487
- id
6488
- }
6489
5697
  }
6490
5698
  trailPrice
6491
5699
  trailPercent
@@ -6497,15 +5705,6 @@ exports.Session = {
6497
5705
  filledAt
6498
5706
  filledAvgPrice
6499
5707
  actionId
6500
- alpacaAccount {
6501
- id
6502
- }
6503
- action {
6504
- id
6505
- }
6506
- asset {
6507
- id
6508
- }
6509
5708
  fee
6510
5709
  strikePrice
6511
5710
  expirationDate
@@ -6535,9 +5734,6 @@ exports.Session = {
6535
5734
  createdAt
6536
5735
  updatedAt
6537
5736
  orderId
6538
- Order {
6539
- id
6540
- }
6541
5737
  }
6542
5738
  takeProfit {
6543
5739
  id
@@ -6546,9 +5742,6 @@ exports.Session = {
6546
5742
  createdAt
6547
5743
  updatedAt
6548
5744
  orderId
6549
- Order {
6550
- id
6551
- }
6552
5745
  }
6553
5746
  trailPrice
6554
5747
  trailPercent
@@ -6560,9 +5753,6 @@ exports.Session = {
6560
5753
  filledAt
6561
5754
  filledAvgPrice
6562
5755
  actionId
6563
- alpacaAccount {
6564
- id
6565
- }
6566
5756
  action {
6567
5757
  id
6568
5758
  sequence
@@ -6586,23 +5776,8 @@ exports.Session = {
6586
5776
  createdAt
6587
5777
  updatedAt
6588
5778
  status
6589
- alpacaAccount {
6590
- id
6591
- }
6592
- asset {
6593
- id
6594
- }
6595
- actions {
6596
- id
6597
- }
6598
- }
6599
- order {
6600
- id
6601
5779
  }
6602
5780
  }
6603
- asset {
6604
- id
6605
- }
6606
5781
  fee
6607
5782
  strikePrice
6608
5783
  expirationDate
@@ -6610,9 +5785,6 @@ exports.Session = {
6610
5785
  stopLossId
6611
5786
  takeProfitId
6612
5787
  }
6613
- positions {
6614
- id
6615
- }
6616
5788
  newsMentions {
6617
5789
  id
6618
5790
  assetId
@@ -6635,12 +5807,6 @@ exports.Session = {
6635
5807
  logo
6636
5808
  createdAt
6637
5809
  updatedAt
6638
- assets {
6639
- id
6640
- }
6641
- }
6642
- asset {
6643
- id
6644
5810
  }
6645
5811
  relevancyScore
6646
5812
  sentimentScore
@@ -6660,9 +5826,6 @@ exports.Session = {
6660
5826
  lastTradePrice
6661
5827
  changeToday
6662
5828
  assetMarginable
6663
- alpacaAccount {
6664
- id
6665
- }
6666
5829
  alpacaAccountId
6667
5830
  }
6668
5831
  alerts {
@@ -6673,9 +5836,6 @@ exports.Session = {
6673
5836
  isRead
6674
5837
  createdAt
6675
5838
  updatedAt
6676
- alpacaAccount {
6677
- id
6678
- }
6679
5839
  }
6680
5840
  }
6681
5841
  }
@@ -6742,9 +5902,6 @@ exports.Session = {
6742
5902
  stripeCurrentPeriodEnd
6743
5903
  createdAt
6744
5904
  updatedAt
6745
- users {
6746
- id
6747
- }
6748
5905
  }
6749
5906
  customerId
6750
5907
  accounts {
@@ -6762,12 +5919,6 @@ exports.Session = {
6762
5919
  session_state
6763
5920
  createdAt
6764
5921
  updatedAt
6765
- user {
6766
- id
6767
- }
6768
- }
6769
- sessions {
6770
- id
6771
5922
  }
6772
5923
  authenticators {
6773
5924
  id
@@ -6775,9 +5926,6 @@ exports.Session = {
6775
5926
  credentialID
6776
5927
  publicKey
6777
5928
  counter
6778
- user {
6779
- id
6780
- }
6781
5929
  createdAt
6782
5930
  updatedAt
6783
5931
  }
@@ -6791,9 +5939,6 @@ exports.Session = {
6791
5939
  marketOpen
6792
5940
  minOrderSize
6793
5941
  maxOrderSize
6794
- user {
6795
- id
6796
- }
6797
5942
  userId
6798
5943
  createdAt
6799
5944
  updatedAt
@@ -6812,9 +5957,6 @@ exports.Session = {
6812
5957
  createdAt
6813
5958
  updatedAt
6814
5959
  status
6815
- alpacaAccount {
6816
- id
6817
- }
6818
5960
  asset {
6819
5961
  id
6820
5962
  symbol
@@ -6874,9 +6016,6 @@ exports.Session = {
6874
6016
  buyPrice
6875
6017
  createdAt
6876
6018
  updatedAt
6877
- trades {
6878
- id
6879
- }
6880
6019
  orders {
6881
6020
  id
6882
6021
  clientOrderId
@@ -6897,9 +6036,6 @@ exports.Session = {
6897
6036
  createdAt
6898
6037
  updatedAt
6899
6038
  orderId
6900
- Order {
6901
- id
6902
- }
6903
6039
  }
6904
6040
  takeProfit {
6905
6041
  id
@@ -6908,9 +6044,6 @@ exports.Session = {
6908
6044
  createdAt
6909
6045
  updatedAt
6910
6046
  orderId
6911
- Order {
6912
- id
6913
- }
6914
6047
  }
6915
6048
  trailPrice
6916
6049
  trailPercent
@@ -6922,9 +6055,6 @@ exports.Session = {
6922
6055
  filledAt
6923
6056
  filledAvgPrice
6924
6057
  actionId
6925
- alpacaAccount {
6926
- id
6927
- }
6928
6058
  action {
6929
6059
  id
6930
6060
  sequence
@@ -6933,15 +6063,6 @@ exports.Session = {
6933
6063
  note
6934
6064
  status
6935
6065
  fee
6936
- trade {
6937
- id
6938
- }
6939
- order {
6940
- id
6941
- }
6942
- }
6943
- asset {
6944
- id
6945
6066
  }
6946
6067
  fee
6947
6068
  strikePrice
@@ -6953,9 +6074,6 @@ exports.Session = {
6953
6074
  positions {
6954
6075
  id
6955
6076
  assetId
6956
- asset {
6957
- id
6958
- }
6959
6077
  averageEntryPrice
6960
6078
  qty
6961
6079
  qtyAvailable
@@ -6969,9 +6087,6 @@ exports.Session = {
6969
6087
  lastTradePrice
6970
6088
  changeToday
6971
6089
  assetMarginable
6972
- alpacaAccount {
6973
- id
6974
- }
6975
6090
  alpacaAccountId
6976
6091
  }
6977
6092
  newsMentions {
@@ -6996,12 +6111,6 @@ exports.Session = {
6996
6111
  logo
6997
6112
  createdAt
6998
6113
  updatedAt
6999
- assets {
7000
- id
7001
- }
7002
- }
7003
- asset {
7004
- id
7005
6114
  }
7006
6115
  relevancyScore
7007
6116
  sentimentScore
@@ -7016,9 +6125,6 @@ exports.Session = {
7016
6125
  note
7017
6126
  status
7018
6127
  fee
7019
- trade {
7020
- id
7021
- }
7022
6128
  order {
7023
6129
  id
7024
6130
  clientOrderId
@@ -7039,9 +6145,6 @@ exports.Session = {
7039
6145
  createdAt
7040
6146
  updatedAt
7041
6147
  orderId
7042
- Order {
7043
- id
7044
- }
7045
6148
  }
7046
6149
  takeProfit {
7047
6150
  id
@@ -7050,9 +6153,6 @@ exports.Session = {
7050
6153
  createdAt
7051
6154
  updatedAt
7052
6155
  orderId
7053
- Order {
7054
- id
7055
- }
7056
6156
  }
7057
6157
  trailPrice
7058
6158
  trailPercent
@@ -7064,12 +6164,6 @@ exports.Session = {
7064
6164
  filledAt
7065
6165
  filledAvgPrice
7066
6166
  actionId
7067
- alpacaAccount {
7068
- id
7069
- }
7070
- action {
7071
- id
7072
- }
7073
6167
  asset {
7074
6168
  id
7075
6169
  symbol
@@ -7129,18 +6223,9 @@ exports.Session = {
7129
6223
  buyPrice
7130
6224
  createdAt
7131
6225
  updatedAt
7132
- trades {
7133
- id
7134
- }
7135
- orders {
7136
- id
7137
- }
7138
6226
  positions {
7139
6227
  id
7140
6228
  assetId
7141
- asset {
7142
- id
7143
- }
7144
6229
  averageEntryPrice
7145
6230
  qty
7146
6231
  qtyAvailable
@@ -7154,9 +6239,6 @@ exports.Session = {
7154
6239
  lastTradePrice
7155
6240
  changeToday
7156
6241
  assetMarginable
7157
- alpacaAccount {
7158
- id
7159
- }
7160
6242
  alpacaAccountId
7161
6243
  }
7162
6244
  newsMentions {
@@ -7181,12 +6263,6 @@ exports.Session = {
7181
6263
  logo
7182
6264
  createdAt
7183
6265
  updatedAt
7184
- assets {
7185
- id
7186
- }
7187
- }
7188
- asset {
7189
- id
7190
6266
  }
7191
6267
  relevancyScore
7192
6268
  sentimentScore
@@ -7222,9 +6298,6 @@ exports.Session = {
7222
6298
  createdAt
7223
6299
  updatedAt
7224
6300
  orderId
7225
- Order {
7226
- id
7227
- }
7228
6301
  }
7229
6302
  takeProfit {
7230
6303
  id
@@ -7233,9 +6306,6 @@ exports.Session = {
7233
6306
  createdAt
7234
6307
  updatedAt
7235
6308
  orderId
7236
- Order {
7237
- id
7238
- }
7239
6309
  }
7240
6310
  trailPrice
7241
6311
  trailPercent
@@ -7247,9 +6317,6 @@ exports.Session = {
7247
6317
  filledAt
7248
6318
  filledAvgPrice
7249
6319
  actionId
7250
- alpacaAccount {
7251
- id
7252
- }
7253
6320
  action {
7254
6321
  id
7255
6322
  sequence
@@ -7273,9 +6340,6 @@ exports.Session = {
7273
6340
  createdAt
7274
6341
  updatedAt
7275
6342
  status
7276
- alpacaAccount {
7277
- id
7278
- }
7279
6343
  asset {
7280
6344
  id
7281
6345
  symbol
@@ -7335,18 +6399,9 @@ exports.Session = {
7335
6399
  buyPrice
7336
6400
  createdAt
7337
6401
  updatedAt
7338
- trades {
7339
- id
7340
- }
7341
- orders {
7342
- id
7343
- }
7344
6402
  positions {
7345
6403
  id
7346
6404
  assetId
7347
- asset {
7348
- id
7349
- }
7350
6405
  averageEntryPrice
7351
6406
  qty
7352
6407
  qtyAvailable
@@ -7360,9 +6415,6 @@ exports.Session = {
7360
6415
  lastTradePrice
7361
6416
  changeToday
7362
6417
  assetMarginable
7363
- alpacaAccount {
7364
- id
7365
- }
7366
6418
  alpacaAccountId
7367
6419
  }
7368
6420
  newsMentions {
@@ -7387,24 +6439,12 @@ exports.Session = {
7387
6439
  logo
7388
6440
  createdAt
7389
6441
  updatedAt
7390
- assets {
7391
- id
7392
- }
7393
- }
7394
- asset {
7395
- id
7396
6442
  }
7397
6443
  relevancyScore
7398
6444
  sentimentScore
7399
6445
  sentimentLabel
7400
6446
  }
7401
6447
  }
7402
- actions {
7403
- id
7404
- }
7405
- }
7406
- order {
7407
- id
7408
6448
  }
7409
6449
  }
7410
6450
  asset {
@@ -7481,12 +6521,6 @@ exports.Session = {
7481
6521
  createdAt
7482
6522
  updatedAt
7483
6523
  status
7484
- alpacaAccount {
7485
- id
7486
- }
7487
- asset {
7488
- id
7489
- }
7490
6524
  actions {
7491
6525
  id
7492
6526
  sequence
@@ -7495,23 +6529,11 @@ exports.Session = {
7495
6529
  note
7496
6530
  status
7497
6531
  fee
7498
- trade {
7499
- id
7500
- }
7501
- order {
7502
- id
7503
- }
7504
6532
  }
7505
6533
  }
7506
- orders {
7507
- id
7508
- }
7509
6534
  positions {
7510
6535
  id
7511
6536
  assetId
7512
- asset {
7513
- id
7514
- }
7515
6537
  averageEntryPrice
7516
6538
  qty
7517
6539
  qtyAvailable
@@ -7525,9 +6547,6 @@ exports.Session = {
7525
6547
  lastTradePrice
7526
6548
  changeToday
7527
6549
  assetMarginable
7528
- alpacaAccount {
7529
- id
7530
- }
7531
6550
  alpacaAccountId
7532
6551
  }
7533
6552
  newsMentions {
@@ -7552,12 +6571,6 @@ exports.Session = {
7552
6571
  logo
7553
6572
  createdAt
7554
6573
  updatedAt
7555
- assets {
7556
- id
7557
- }
7558
- }
7559
- asset {
7560
- id
7561
6574
  }
7562
6575
  relevancyScore
7563
6576
  sentimentScore
@@ -7648,12 +6661,6 @@ exports.Session = {
7648
6661
  createdAt
7649
6662
  updatedAt
7650
6663
  status
7651
- alpacaAccount {
7652
- id
7653
- }
7654
- asset {
7655
- id
7656
- }
7657
6664
  actions {
7658
6665
  id
7659
6666
  sequence
@@ -7662,9 +6669,6 @@ exports.Session = {
7662
6669
  note
7663
6670
  status
7664
6671
  fee
7665
- trade {
7666
- id
7667
- }
7668
6672
  order {
7669
6673
  id
7670
6674
  clientOrderId
@@ -7685,9 +6689,6 @@ exports.Session = {
7685
6689
  createdAt
7686
6690
  updatedAt
7687
6691
  orderId
7688
- Order {
7689
- id
7690
- }
7691
6692
  }
7692
6693
  takeProfit {
7693
6694
  id
@@ -7696,9 +6697,6 @@ exports.Session = {
7696
6697
  createdAt
7697
6698
  updatedAt
7698
6699
  orderId
7699
- Order {
7700
- id
7701
- }
7702
6700
  }
7703
6701
  trailPrice
7704
6702
  trailPercent
@@ -7710,15 +6708,6 @@ exports.Session = {
7710
6708
  filledAt
7711
6709
  filledAvgPrice
7712
6710
  actionId
7713
- alpacaAccount {
7714
- id
7715
- }
7716
- action {
7717
- id
7718
- }
7719
- asset {
7720
- id
7721
- }
7722
6711
  fee
7723
6712
  strikePrice
7724
6713
  expirationDate
@@ -7748,9 +6737,6 @@ exports.Session = {
7748
6737
  createdAt
7749
6738
  updatedAt
7750
6739
  orderId
7751
- Order {
7752
- id
7753
- }
7754
6740
  }
7755
6741
  takeProfit {
7756
6742
  id
@@ -7759,9 +6745,6 @@ exports.Session = {
7759
6745
  createdAt
7760
6746
  updatedAt
7761
6747
  orderId
7762
- Order {
7763
- id
7764
- }
7765
6748
  }
7766
6749
  trailPrice
7767
6750
  trailPercent
@@ -7773,9 +6756,6 @@ exports.Session = {
7773
6756
  filledAt
7774
6757
  filledAvgPrice
7775
6758
  actionId
7776
- alpacaAccount {
7777
- id
7778
- }
7779
6759
  action {
7780
6760
  id
7781
6761
  sequence
@@ -7799,23 +6779,8 @@ exports.Session = {
7799
6779
  createdAt
7800
6780
  updatedAt
7801
6781
  status
7802
- alpacaAccount {
7803
- id
7804
- }
7805
- asset {
7806
- id
7807
- }
7808
- actions {
7809
- id
7810
- }
7811
- }
7812
- order {
7813
- id
7814
6782
  }
7815
6783
  }
7816
- asset {
7817
- id
7818
- }
7819
6784
  fee
7820
6785
  strikePrice
7821
6786
  expirationDate
@@ -7823,9 +6788,6 @@ exports.Session = {
7823
6788
  stopLossId
7824
6789
  takeProfitId
7825
6790
  }
7826
- positions {
7827
- id
7828
- }
7829
6791
  newsMentions {
7830
6792
  id
7831
6793
  assetId
@@ -7848,12 +6810,6 @@ exports.Session = {
7848
6810
  logo
7849
6811
  createdAt
7850
6812
  updatedAt
7851
- assets {
7852
- id
7853
- }
7854
- }
7855
- asset {
7856
- id
7857
6813
  }
7858
6814
  relevancyScore
7859
6815
  sentimentScore
@@ -7873,9 +6829,6 @@ exports.Session = {
7873
6829
  lastTradePrice
7874
6830
  changeToday
7875
6831
  assetMarginable
7876
- alpacaAccount {
7877
- id
7878
- }
7879
6832
  alpacaAccountId
7880
6833
  }
7881
6834
  alerts {
@@ -7886,9 +6839,6 @@ exports.Session = {
7886
6839
  isRead
7887
6840
  createdAt
7888
6841
  updatedAt
7889
- alpacaAccount {
7890
- id
7891
- }
7892
6842
  }
7893
6843
  }
7894
6844
  }
@@ -7949,9 +6899,6 @@ exports.Session = {
7949
6899
  stripeCurrentPeriodEnd
7950
6900
  createdAt
7951
6901
  updatedAt
7952
- users {
7953
- id
7954
- }
7955
6902
  }
7956
6903
  customerId
7957
6904
  accounts {
@@ -7969,12 +6916,6 @@ exports.Session = {
7969
6916
  session_state
7970
6917
  createdAt
7971
6918
  updatedAt
7972
- user {
7973
- id
7974
- }
7975
- }
7976
- sessions {
7977
- id
7978
6919
  }
7979
6920
  authenticators {
7980
6921
  id
@@ -7982,9 +6923,6 @@ exports.Session = {
7982
6923
  credentialID
7983
6924
  publicKey
7984
6925
  counter
7985
- user {
7986
- id
7987
- }
7988
6926
  createdAt
7989
6927
  updatedAt
7990
6928
  }
@@ -7998,9 +6936,6 @@ exports.Session = {
7998
6936
  marketOpen
7999
6937
  minOrderSize
8000
6938
  maxOrderSize
8001
- user {
8002
- id
8003
- }
8004
6939
  userId
8005
6940
  createdAt
8006
6941
  updatedAt
@@ -8019,9 +6954,6 @@ exports.Session = {
8019
6954
  createdAt
8020
6955
  updatedAt
8021
6956
  status
8022
- alpacaAccount {
8023
- id
8024
- }
8025
6957
  asset {
8026
6958
  id
8027
6959
  symbol
@@ -8081,9 +7013,6 @@ exports.Session = {
8081
7013
  buyPrice
8082
7014
  createdAt
8083
7015
  updatedAt
8084
- trades {
8085
- id
8086
- }
8087
7016
  orders {
8088
7017
  id
8089
7018
  clientOrderId
@@ -8104,9 +7033,6 @@ exports.Session = {
8104
7033
  createdAt
8105
7034
  updatedAt
8106
7035
  orderId
8107
- Order {
8108
- id
8109
- }
8110
7036
  }
8111
7037
  takeProfit {
8112
7038
  id
@@ -8115,9 +7041,6 @@ exports.Session = {
8115
7041
  createdAt
8116
7042
  updatedAt
8117
7043
  orderId
8118
- Order {
8119
- id
8120
- }
8121
7044
  }
8122
7045
  trailPrice
8123
7046
  trailPercent
@@ -8129,9 +7052,6 @@ exports.Session = {
8129
7052
  filledAt
8130
7053
  filledAvgPrice
8131
7054
  actionId
8132
- alpacaAccount {
8133
- id
8134
- }
8135
7055
  action {
8136
7056
  id
8137
7057
  sequence
@@ -8140,15 +7060,6 @@ exports.Session = {
8140
7060
  note
8141
7061
  status
8142
7062
  fee
8143
- trade {
8144
- id
8145
- }
8146
- order {
8147
- id
8148
- }
8149
- }
8150
- asset {
8151
- id
8152
7063
  }
8153
7064
  fee
8154
7065
  strikePrice
@@ -8160,9 +7071,6 @@ exports.Session = {
8160
7071
  positions {
8161
7072
  id
8162
7073
  assetId
8163
- asset {
8164
- id
8165
- }
8166
7074
  averageEntryPrice
8167
7075
  qty
8168
7076
  qtyAvailable
@@ -8176,9 +7084,6 @@ exports.Session = {
8176
7084
  lastTradePrice
8177
7085
  changeToday
8178
7086
  assetMarginable
8179
- alpacaAccount {
8180
- id
8181
- }
8182
7087
  alpacaAccountId
8183
7088
  }
8184
7089
  newsMentions {
@@ -8203,12 +7108,6 @@ exports.Session = {
8203
7108
  logo
8204
7109
  createdAt
8205
7110
  updatedAt
8206
- assets {
8207
- id
8208
- }
8209
- }
8210
- asset {
8211
- id
8212
7111
  }
8213
7112
  relevancyScore
8214
7113
  sentimentScore
@@ -8223,9 +7122,6 @@ exports.Session = {
8223
7122
  note
8224
7123
  status
8225
7124
  fee
8226
- trade {
8227
- id
8228
- }
8229
7125
  order {
8230
7126
  id
8231
7127
  clientOrderId
@@ -8246,9 +7142,6 @@ exports.Session = {
8246
7142
  createdAt
8247
7143
  updatedAt
8248
7144
  orderId
8249
- Order {
8250
- id
8251
- }
8252
7145
  }
8253
7146
  takeProfit {
8254
7147
  id
@@ -8257,9 +7150,6 @@ exports.Session = {
8257
7150
  createdAt
8258
7151
  updatedAt
8259
7152
  orderId
8260
- Order {
8261
- id
8262
- }
8263
7153
  }
8264
7154
  trailPrice
8265
7155
  trailPercent
@@ -8271,12 +7161,6 @@ exports.Session = {
8271
7161
  filledAt
8272
7162
  filledAvgPrice
8273
7163
  actionId
8274
- alpacaAccount {
8275
- id
8276
- }
8277
- action {
8278
- id
8279
- }
8280
7164
  asset {
8281
7165
  id
8282
7166
  symbol
@@ -8336,18 +7220,9 @@ exports.Session = {
8336
7220
  buyPrice
8337
7221
  createdAt
8338
7222
  updatedAt
8339
- trades {
8340
- id
8341
- }
8342
- orders {
8343
- id
8344
- }
8345
7223
  positions {
8346
7224
  id
8347
7225
  assetId
8348
- asset {
8349
- id
8350
- }
8351
7226
  averageEntryPrice
8352
7227
  qty
8353
7228
  qtyAvailable
@@ -8361,9 +7236,6 @@ exports.Session = {
8361
7236
  lastTradePrice
8362
7237
  changeToday
8363
7238
  assetMarginable
8364
- alpacaAccount {
8365
- id
8366
- }
8367
7239
  alpacaAccountId
8368
7240
  }
8369
7241
  newsMentions {
@@ -8388,12 +7260,6 @@ exports.Session = {
8388
7260
  logo
8389
7261
  createdAt
8390
7262
  updatedAt
8391
- assets {
8392
- id
8393
- }
8394
- }
8395
- asset {
8396
- id
8397
7263
  }
8398
7264
  relevancyScore
8399
7265
  sentimentScore
@@ -8429,9 +7295,6 @@ exports.Session = {
8429
7295
  createdAt
8430
7296
  updatedAt
8431
7297
  orderId
8432
- Order {
8433
- id
8434
- }
8435
7298
  }
8436
7299
  takeProfit {
8437
7300
  id
@@ -8440,9 +7303,6 @@ exports.Session = {
8440
7303
  createdAt
8441
7304
  updatedAt
8442
7305
  orderId
8443
- Order {
8444
- id
8445
- }
8446
7306
  }
8447
7307
  trailPrice
8448
7308
  trailPercent
@@ -8454,9 +7314,6 @@ exports.Session = {
8454
7314
  filledAt
8455
7315
  filledAvgPrice
8456
7316
  actionId
8457
- alpacaAccount {
8458
- id
8459
- }
8460
7317
  action {
8461
7318
  id
8462
7319
  sequence
@@ -8480,9 +7337,6 @@ exports.Session = {
8480
7337
  createdAt
8481
7338
  updatedAt
8482
7339
  status
8483
- alpacaAccount {
8484
- id
8485
- }
8486
7340
  asset {
8487
7341
  id
8488
7342
  symbol
@@ -8542,18 +7396,9 @@ exports.Session = {
8542
7396
  buyPrice
8543
7397
  createdAt
8544
7398
  updatedAt
8545
- trades {
8546
- id
8547
- }
8548
- orders {
8549
- id
8550
- }
8551
7399
  positions {
8552
7400
  id
8553
7401
  assetId
8554
- asset {
8555
- id
8556
- }
8557
7402
  averageEntryPrice
8558
7403
  qty
8559
7404
  qtyAvailable
@@ -8567,9 +7412,6 @@ exports.Session = {
8567
7412
  lastTradePrice
8568
7413
  changeToday
8569
7414
  assetMarginable
8570
- alpacaAccount {
8571
- id
8572
- }
8573
7415
  alpacaAccountId
8574
7416
  }
8575
7417
  newsMentions {
@@ -8594,24 +7436,12 @@ exports.Session = {
8594
7436
  logo
8595
7437
  createdAt
8596
7438
  updatedAt
8597
- assets {
8598
- id
8599
- }
8600
- }
8601
- asset {
8602
- id
8603
7439
  }
8604
7440
  relevancyScore
8605
7441
  sentimentScore
8606
7442
  sentimentLabel
8607
7443
  }
8608
7444
  }
8609
- actions {
8610
- id
8611
- }
8612
- }
8613
- order {
8614
- id
8615
7445
  }
8616
7446
  }
8617
7447
  asset {
@@ -8688,12 +7518,6 @@ exports.Session = {
8688
7518
  createdAt
8689
7519
  updatedAt
8690
7520
  status
8691
- alpacaAccount {
8692
- id
8693
- }
8694
- asset {
8695
- id
8696
- }
8697
7521
  actions {
8698
7522
  id
8699
7523
  sequence
@@ -8702,23 +7526,11 @@ exports.Session = {
8702
7526
  note
8703
7527
  status
8704
7528
  fee
8705
- trade {
8706
- id
8707
- }
8708
- order {
8709
- id
8710
- }
8711
7529
  }
8712
7530
  }
8713
- orders {
8714
- id
8715
- }
8716
7531
  positions {
8717
7532
  id
8718
7533
  assetId
8719
- asset {
8720
- id
8721
- }
8722
7534
  averageEntryPrice
8723
7535
  qty
8724
7536
  qtyAvailable
@@ -8732,9 +7544,6 @@ exports.Session = {
8732
7544
  lastTradePrice
8733
7545
  changeToday
8734
7546
  assetMarginable
8735
- alpacaAccount {
8736
- id
8737
- }
8738
7547
  alpacaAccountId
8739
7548
  }
8740
7549
  newsMentions {
@@ -8759,12 +7568,6 @@ exports.Session = {
8759
7568
  logo
8760
7569
  createdAt
8761
7570
  updatedAt
8762
- assets {
8763
- id
8764
- }
8765
- }
8766
- asset {
8767
- id
8768
7571
  }
8769
7572
  relevancyScore
8770
7573
  sentimentScore
@@ -8855,12 +7658,6 @@ exports.Session = {
8855
7658
  createdAt
8856
7659
  updatedAt
8857
7660
  status
8858
- alpacaAccount {
8859
- id
8860
- }
8861
- asset {
8862
- id
8863
- }
8864
7661
  actions {
8865
7662
  id
8866
7663
  sequence
@@ -8869,9 +7666,6 @@ exports.Session = {
8869
7666
  note
8870
7667
  status
8871
7668
  fee
8872
- trade {
8873
- id
8874
- }
8875
7669
  order {
8876
7670
  id
8877
7671
  clientOrderId
@@ -8892,9 +7686,6 @@ exports.Session = {
8892
7686
  createdAt
8893
7687
  updatedAt
8894
7688
  orderId
8895
- Order {
8896
- id
8897
- }
8898
7689
  }
8899
7690
  takeProfit {
8900
7691
  id
@@ -8903,9 +7694,6 @@ exports.Session = {
8903
7694
  createdAt
8904
7695
  updatedAt
8905
7696
  orderId
8906
- Order {
8907
- id
8908
- }
8909
7697
  }
8910
7698
  trailPrice
8911
7699
  trailPercent
@@ -8917,15 +7705,6 @@ exports.Session = {
8917
7705
  filledAt
8918
7706
  filledAvgPrice
8919
7707
  actionId
8920
- alpacaAccount {
8921
- id
8922
- }
8923
- action {
8924
- id
8925
- }
8926
- asset {
8927
- id
8928
- }
8929
7708
  fee
8930
7709
  strikePrice
8931
7710
  expirationDate
@@ -8955,9 +7734,6 @@ exports.Session = {
8955
7734
  createdAt
8956
7735
  updatedAt
8957
7736
  orderId
8958
- Order {
8959
- id
8960
- }
8961
7737
  }
8962
7738
  takeProfit {
8963
7739
  id
@@ -8966,9 +7742,6 @@ exports.Session = {
8966
7742
  createdAt
8967
7743
  updatedAt
8968
7744
  orderId
8969
- Order {
8970
- id
8971
- }
8972
7745
  }
8973
7746
  trailPrice
8974
7747
  trailPercent
@@ -8980,9 +7753,6 @@ exports.Session = {
8980
7753
  filledAt
8981
7754
  filledAvgPrice
8982
7755
  actionId
8983
- alpacaAccount {
8984
- id
8985
- }
8986
7756
  action {
8987
7757
  id
8988
7758
  sequence
@@ -9006,22 +7776,7 @@ exports.Session = {
9006
7776
  createdAt
9007
7777
  updatedAt
9008
7778
  status
9009
- alpacaAccount {
9010
- id
9011
- }
9012
- asset {
9013
- id
9014
- }
9015
- actions {
9016
- id
9017
- }
9018
7779
  }
9019
- order {
9020
- id
9021
- }
9022
- }
9023
- asset {
9024
- id
9025
7780
  }
9026
7781
  fee
9027
7782
  strikePrice
@@ -9030,9 +7785,6 @@ exports.Session = {
9030
7785
  stopLossId
9031
7786
  takeProfitId
9032
7787
  }
9033
- positions {
9034
- id
9035
- }
9036
7788
  newsMentions {
9037
7789
  id
9038
7790
  assetId
@@ -9055,12 +7807,6 @@ exports.Session = {
9055
7807
  logo
9056
7808
  createdAt
9057
7809
  updatedAt
9058
- assets {
9059
- id
9060
- }
9061
- }
9062
- asset {
9063
- id
9064
7810
  }
9065
7811
  relevancyScore
9066
7812
  sentimentScore
@@ -9080,9 +7826,6 @@ exports.Session = {
9080
7826
  lastTradePrice
9081
7827
  changeToday
9082
7828
  assetMarginable
9083
- alpacaAccount {
9084
- id
9085
- }
9086
7829
  alpacaAccountId
9087
7830
  }
9088
7831
  alerts {
@@ -9093,9 +7836,6 @@ exports.Session = {
9093
7836
  isRead
9094
7837
  createdAt
9095
7838
  updatedAt
9096
- alpacaAccount {
9097
- id
9098
- }
9099
7839
  }
9100
7840
  }
9101
7841
  }