adaptic-backend 1.0.81 → 1.0.82
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.
- package/Account.cjs +972 -306
- package/Action.cjs +990 -612
- package/Alert.cjs +558 -378
- package/AlpacaAccount.cjs +180 -72
- package/Asset.cjs +342 -72
- package/Authenticator.cjs +972 -306
- package/Customer.cjs +972 -306
- package/NewsArticle.cjs +1002 -306
- package/NewsArticleAssetSentiment.cjs +864 -378
- package/Order.cjs +306 -126
- package/Position.cjs +738 -252
- package/Session.cjs +972 -306
- package/Trade.cjs +306 -126
- package/User.cjs +558 -378
- package/package.json +1 -1
- package/server/Account.d.ts.map +1 -1
- package/server/Account.js.map +1 -1
- package/server/Account.mjs +972 -306
- package/server/Action.d.ts.map +1 -1
- package/server/Action.js.map +1 -1
- package/server/Action.mjs +990 -612
- package/server/Alert.d.ts.map +1 -1
- package/server/Alert.js.map +1 -1
- package/server/Alert.mjs +558 -378
- package/server/AlpacaAccount.d.ts.map +1 -1
- package/server/AlpacaAccount.js.map +1 -1
- package/server/AlpacaAccount.mjs +180 -72
- package/server/Asset.d.ts.map +1 -1
- package/server/Asset.js.map +1 -1
- package/server/Asset.mjs +342 -72
- package/server/Authenticator.d.ts.map +1 -1
- package/server/Authenticator.js.map +1 -1
- package/server/Authenticator.mjs +972 -306
- package/server/Customer.d.ts.map +1 -1
- package/server/Customer.js.map +1 -1
- package/server/Customer.mjs +972 -306
- package/server/NewsArticle.d.ts.map +1 -1
- package/server/NewsArticle.js.map +1 -1
- package/server/NewsArticle.mjs +1002 -306
- package/server/NewsArticleAssetSentiment.d.ts.map +1 -1
- package/server/NewsArticleAssetSentiment.js.map +1 -1
- package/server/NewsArticleAssetSentiment.mjs +864 -378
- package/server/Order.d.ts.map +1 -1
- package/server/Order.js.map +1 -1
- package/server/Order.mjs +306 -126
- package/server/Position.d.ts.map +1 -1
- package/server/Position.js.map +1 -1
- package/server/Position.mjs +738 -252
- package/server/Session.d.ts.map +1 -1
- package/server/Session.js.map +1 -1
- package/server/Session.mjs +972 -306
- package/server/Trade.d.ts.map +1 -1
- package/server/Trade.js.map +1 -1
- package/server/Trade.mjs +306 -126
- package/server/User.d.ts.map +1 -1
- package/server/User.js.map +1 -1
- package/server/User.mjs +558 -378
package/Asset.cjs
CHANGED
@@ -112,16 +112,61 @@ exports.Asset = {
|
|
112
112
|
currentAccount
|
113
113
|
customer {
|
114
114
|
id
|
115
|
+
authUserId
|
116
|
+
name
|
117
|
+
plan
|
118
|
+
stripeCustomerId
|
119
|
+
stripeSubscriptionId
|
120
|
+
stripePriceId
|
121
|
+
stripeCurrentPeriodEnd
|
122
|
+
createdAt
|
123
|
+
updatedAt
|
124
|
+
users {
|
125
|
+
id
|
126
|
+
}
|
115
127
|
}
|
116
128
|
customerId
|
117
129
|
accounts {
|
118
130
|
id
|
131
|
+
userId
|
132
|
+
type
|
133
|
+
provider
|
134
|
+
providerAccountId
|
135
|
+
refresh_token
|
136
|
+
access_token
|
137
|
+
expires_at
|
138
|
+
token_type
|
139
|
+
scope
|
140
|
+
id_token
|
141
|
+
session_state
|
142
|
+
createdAt
|
143
|
+
updatedAt
|
144
|
+
user {
|
145
|
+
id
|
146
|
+
}
|
119
147
|
}
|
120
148
|
sessions {
|
121
149
|
id
|
150
|
+
sessionToken
|
151
|
+
userId
|
152
|
+
expires
|
153
|
+
user {
|
154
|
+
id
|
155
|
+
}
|
156
|
+
createdAt
|
157
|
+
updatedAt
|
122
158
|
}
|
123
159
|
authenticators {
|
124
160
|
id
|
161
|
+
userId
|
162
|
+
credentialID
|
163
|
+
publicKey
|
164
|
+
counter
|
165
|
+
user {
|
166
|
+
id
|
167
|
+
}
|
168
|
+
createdAt
|
169
|
+
updatedAt
|
125
170
|
}
|
126
171
|
plan
|
127
172
|
alpacaAccounts {
|
@@ -161,6 +206,18 @@ exports.Asset = {
|
|
161
206
|
}
|
162
207
|
action {
|
163
208
|
id
|
209
|
+
sequence
|
210
|
+
tradeId
|
211
|
+
type
|
212
|
+
note
|
213
|
+
status
|
214
|
+
fee
|
215
|
+
trade {
|
216
|
+
id
|
217
|
+
}
|
218
|
+
order {
|
219
|
+
id
|
220
|
+
}
|
164
221
|
}
|
165
222
|
asset {
|
166
223
|
id
|
@@ -210,18 +267,6 @@ exports.Asset = {
|
|
210
267
|
optionContractType
|
211
268
|
actions {
|
212
269
|
id
|
213
|
-
sequence
|
214
|
-
tradeId
|
215
|
-
type
|
216
|
-
note
|
217
|
-
status
|
218
|
-
fee
|
219
|
-
trade {
|
220
|
-
id
|
221
|
-
}
|
222
|
-
order {
|
223
|
-
id
|
224
|
-
}
|
225
270
|
}
|
226
271
|
}
|
227
272
|
orders {
|
@@ -1109,16 +1154,61 @@ exports.Asset = {
|
|
1109
1154
|
currentAccount
|
1110
1155
|
customer {
|
1111
1156
|
id
|
1157
|
+
authUserId
|
1158
|
+
name
|
1159
|
+
plan
|
1160
|
+
stripeCustomerId
|
1161
|
+
stripeSubscriptionId
|
1162
|
+
stripePriceId
|
1163
|
+
stripeCurrentPeriodEnd
|
1164
|
+
createdAt
|
1165
|
+
updatedAt
|
1166
|
+
users {
|
1167
|
+
id
|
1168
|
+
}
|
1112
1169
|
}
|
1113
1170
|
customerId
|
1114
1171
|
accounts {
|
1115
1172
|
id
|
1173
|
+
userId
|
1174
|
+
type
|
1175
|
+
provider
|
1176
|
+
providerAccountId
|
1177
|
+
refresh_token
|
1178
|
+
access_token
|
1179
|
+
expires_at
|
1180
|
+
token_type
|
1181
|
+
scope
|
1182
|
+
id_token
|
1183
|
+
session_state
|
1184
|
+
createdAt
|
1185
|
+
updatedAt
|
1186
|
+
user {
|
1187
|
+
id
|
1188
|
+
}
|
1116
1189
|
}
|
1117
1190
|
sessions {
|
1118
1191
|
id
|
1192
|
+
sessionToken
|
1193
|
+
userId
|
1194
|
+
expires
|
1195
|
+
user {
|
1196
|
+
id
|
1197
|
+
}
|
1198
|
+
createdAt
|
1199
|
+
updatedAt
|
1119
1200
|
}
|
1120
1201
|
authenticators {
|
1121
1202
|
id
|
1203
|
+
userId
|
1204
|
+
credentialID
|
1205
|
+
publicKey
|
1206
|
+
counter
|
1207
|
+
user {
|
1208
|
+
id
|
1209
|
+
}
|
1210
|
+
createdAt
|
1211
|
+
updatedAt
|
1122
1212
|
}
|
1123
1213
|
plan
|
1124
1214
|
alpacaAccounts {
|
@@ -1158,6 +1248,18 @@ exports.Asset = {
|
|
1158
1248
|
}
|
1159
1249
|
action {
|
1160
1250
|
id
|
1251
|
+
sequence
|
1252
|
+
tradeId
|
1253
|
+
type
|
1254
|
+
note
|
1255
|
+
status
|
1256
|
+
fee
|
1257
|
+
trade {
|
1258
|
+
id
|
1259
|
+
}
|
1260
|
+
order {
|
1261
|
+
id
|
1262
|
+
}
|
1161
1263
|
}
|
1162
1264
|
asset {
|
1163
1265
|
id
|
@@ -1207,18 +1309,6 @@ exports.Asset = {
|
|
1207
1309
|
optionContractType
|
1208
1310
|
actions {
|
1209
1311
|
id
|
1210
|
-
sequence
|
1211
|
-
tradeId
|
1212
|
-
type
|
1213
|
-
note
|
1214
|
-
status
|
1215
|
-
fee
|
1216
|
-
trade {
|
1217
|
-
id
|
1218
|
-
}
|
1219
|
-
order {
|
1220
|
-
id
|
1221
|
-
}
|
1222
1312
|
}
|
1223
1313
|
}
|
1224
1314
|
orders {
|
@@ -5953,16 +6043,61 @@ exports.Asset = {
|
|
5953
6043
|
currentAccount
|
5954
6044
|
customer {
|
5955
6045
|
id
|
6046
|
+
authUserId
|
6047
|
+
name
|
6048
|
+
plan
|
6049
|
+
stripeCustomerId
|
6050
|
+
stripeSubscriptionId
|
6051
|
+
stripePriceId
|
6052
|
+
stripeCurrentPeriodEnd
|
6053
|
+
createdAt
|
6054
|
+
updatedAt
|
6055
|
+
users {
|
6056
|
+
id
|
6057
|
+
}
|
5956
6058
|
}
|
5957
6059
|
customerId
|
5958
6060
|
accounts {
|
5959
6061
|
id
|
6062
|
+
userId
|
6063
|
+
type
|
6064
|
+
provider
|
6065
|
+
providerAccountId
|
6066
|
+
refresh_token
|
6067
|
+
access_token
|
6068
|
+
expires_at
|
6069
|
+
token_type
|
6070
|
+
scope
|
6071
|
+
id_token
|
6072
|
+
session_state
|
6073
|
+
createdAt
|
6074
|
+
updatedAt
|
6075
|
+
user {
|
6076
|
+
id
|
6077
|
+
}
|
5960
6078
|
}
|
5961
6079
|
sessions {
|
5962
6080
|
id
|
6081
|
+
sessionToken
|
6082
|
+
userId
|
6083
|
+
expires
|
6084
|
+
user {
|
6085
|
+
id
|
6086
|
+
}
|
6087
|
+
createdAt
|
6088
|
+
updatedAt
|
5963
6089
|
}
|
5964
6090
|
authenticators {
|
5965
6091
|
id
|
6092
|
+
userId
|
6093
|
+
credentialID
|
6094
|
+
publicKey
|
6095
|
+
counter
|
6096
|
+
user {
|
6097
|
+
id
|
6098
|
+
}
|
6099
|
+
createdAt
|
6100
|
+
updatedAt
|
5966
6101
|
}
|
5967
6102
|
plan
|
5968
6103
|
alpacaAccounts {
|
@@ -6002,6 +6137,18 @@ exports.Asset = {
|
|
6002
6137
|
}
|
6003
6138
|
action {
|
6004
6139
|
id
|
6140
|
+
sequence
|
6141
|
+
tradeId
|
6142
|
+
type
|
6143
|
+
note
|
6144
|
+
status
|
6145
|
+
fee
|
6146
|
+
trade {
|
6147
|
+
id
|
6148
|
+
}
|
6149
|
+
order {
|
6150
|
+
id
|
6151
|
+
}
|
6005
6152
|
}
|
6006
6153
|
asset {
|
6007
6154
|
id
|
@@ -6051,18 +6198,6 @@ exports.Asset = {
|
|
6051
6198
|
optionContractType
|
6052
6199
|
actions {
|
6053
6200
|
id
|
6054
|
-
sequence
|
6055
|
-
tradeId
|
6056
|
-
type
|
6057
|
-
note
|
6058
|
-
status
|
6059
|
-
fee
|
6060
|
-
trade {
|
6061
|
-
id
|
6062
|
-
}
|
6063
|
-
order {
|
6064
|
-
id
|
6065
|
-
}
|
6066
6201
|
}
|
6067
6202
|
}
|
6068
6203
|
orders {
|
@@ -6233,16 +6368,61 @@ exports.Asset = {
|
|
6233
6368
|
currentAccount
|
6234
6369
|
customer {
|
6235
6370
|
id
|
6371
|
+
authUserId
|
6372
|
+
name
|
6373
|
+
plan
|
6374
|
+
stripeCustomerId
|
6375
|
+
stripeSubscriptionId
|
6376
|
+
stripePriceId
|
6377
|
+
stripeCurrentPeriodEnd
|
6378
|
+
createdAt
|
6379
|
+
updatedAt
|
6380
|
+
users {
|
6381
|
+
id
|
6382
|
+
}
|
6236
6383
|
}
|
6237
6384
|
customerId
|
6238
6385
|
accounts {
|
6239
6386
|
id
|
6387
|
+
userId
|
6388
|
+
type
|
6389
|
+
provider
|
6390
|
+
providerAccountId
|
6391
|
+
refresh_token
|
6392
|
+
access_token
|
6393
|
+
expires_at
|
6394
|
+
token_type
|
6395
|
+
scope
|
6396
|
+
id_token
|
6397
|
+
session_state
|
6398
|
+
createdAt
|
6399
|
+
updatedAt
|
6400
|
+
user {
|
6401
|
+
id
|
6402
|
+
}
|
6240
6403
|
}
|
6241
6404
|
sessions {
|
6242
6405
|
id
|
6406
|
+
sessionToken
|
6407
|
+
userId
|
6408
|
+
expires
|
6409
|
+
user {
|
6410
|
+
id
|
6411
|
+
}
|
6412
|
+
createdAt
|
6413
|
+
updatedAt
|
6243
6414
|
}
|
6244
6415
|
authenticators {
|
6245
6416
|
id
|
6417
|
+
userId
|
6418
|
+
credentialID
|
6419
|
+
publicKey
|
6420
|
+
counter
|
6421
|
+
user {
|
6422
|
+
id
|
6423
|
+
}
|
6424
|
+
createdAt
|
6425
|
+
updatedAt
|
6246
6426
|
}
|
6247
6427
|
plan
|
6248
6428
|
alpacaAccounts {
|
@@ -6282,6 +6462,18 @@ exports.Asset = {
|
|
6282
6462
|
}
|
6283
6463
|
action {
|
6284
6464
|
id
|
6465
|
+
sequence
|
6466
|
+
tradeId
|
6467
|
+
type
|
6468
|
+
note
|
6469
|
+
status
|
6470
|
+
fee
|
6471
|
+
trade {
|
6472
|
+
id
|
6473
|
+
}
|
6474
|
+
order {
|
6475
|
+
id
|
6476
|
+
}
|
6285
6477
|
}
|
6286
6478
|
asset {
|
6287
6479
|
id
|
@@ -6331,18 +6523,6 @@ exports.Asset = {
|
|
6331
6523
|
optionContractType
|
6332
6524
|
actions {
|
6333
6525
|
id
|
6334
|
-
sequence
|
6335
|
-
tradeId
|
6336
|
-
type
|
6337
|
-
note
|
6338
|
-
status
|
6339
|
-
fee
|
6340
|
-
trade {
|
6341
|
-
id
|
6342
|
-
}
|
6343
|
-
order {
|
6344
|
-
id
|
6345
|
-
}
|
6346
6526
|
}
|
6347
6527
|
}
|
6348
6528
|
orders {
|
@@ -6514,16 +6694,61 @@ exports.Asset = {
|
|
6514
6694
|
currentAccount
|
6515
6695
|
customer {
|
6516
6696
|
id
|
6697
|
+
authUserId
|
6698
|
+
name
|
6699
|
+
plan
|
6700
|
+
stripeCustomerId
|
6701
|
+
stripeSubscriptionId
|
6702
|
+
stripePriceId
|
6703
|
+
stripeCurrentPeriodEnd
|
6704
|
+
createdAt
|
6705
|
+
updatedAt
|
6706
|
+
users {
|
6707
|
+
id
|
6708
|
+
}
|
6517
6709
|
}
|
6518
6710
|
customerId
|
6519
6711
|
accounts {
|
6520
6712
|
id
|
6713
|
+
userId
|
6714
|
+
type
|
6715
|
+
provider
|
6716
|
+
providerAccountId
|
6717
|
+
refresh_token
|
6718
|
+
access_token
|
6719
|
+
expires_at
|
6720
|
+
token_type
|
6721
|
+
scope
|
6722
|
+
id_token
|
6723
|
+
session_state
|
6724
|
+
createdAt
|
6725
|
+
updatedAt
|
6726
|
+
user {
|
6727
|
+
id
|
6728
|
+
}
|
6521
6729
|
}
|
6522
6730
|
sessions {
|
6523
6731
|
id
|
6732
|
+
sessionToken
|
6733
|
+
userId
|
6734
|
+
expires
|
6735
|
+
user {
|
6736
|
+
id
|
6737
|
+
}
|
6738
|
+
createdAt
|
6739
|
+
updatedAt
|
6524
6740
|
}
|
6525
6741
|
authenticators {
|
6526
6742
|
id
|
6743
|
+
userId
|
6744
|
+
credentialID
|
6745
|
+
publicKey
|
6746
|
+
counter
|
6747
|
+
user {
|
6748
|
+
id
|
6749
|
+
}
|
6750
|
+
createdAt
|
6751
|
+
updatedAt
|
6527
6752
|
}
|
6528
6753
|
plan
|
6529
6754
|
alpacaAccounts {
|
@@ -6563,6 +6788,18 @@ exports.Asset = {
|
|
6563
6788
|
}
|
6564
6789
|
action {
|
6565
6790
|
id
|
6791
|
+
sequence
|
6792
|
+
tradeId
|
6793
|
+
type
|
6794
|
+
note
|
6795
|
+
status
|
6796
|
+
fee
|
6797
|
+
trade {
|
6798
|
+
id
|
6799
|
+
}
|
6800
|
+
order {
|
6801
|
+
id
|
6802
|
+
}
|
6566
6803
|
}
|
6567
6804
|
asset {
|
6568
6805
|
id
|
@@ -6612,18 +6849,6 @@ exports.Asset = {
|
|
6612
6849
|
optionContractType
|
6613
6850
|
actions {
|
6614
6851
|
id
|
6615
|
-
sequence
|
6616
|
-
tradeId
|
6617
|
-
type
|
6618
|
-
note
|
6619
|
-
status
|
6620
|
-
fee
|
6621
|
-
trade {
|
6622
|
-
id
|
6623
|
-
}
|
6624
|
-
order {
|
6625
|
-
id
|
6626
|
-
}
|
6627
6852
|
}
|
6628
6853
|
}
|
6629
6854
|
orders {
|
@@ -6787,16 +7012,61 @@ exports.Asset = {
|
|
6787
7012
|
currentAccount
|
6788
7013
|
customer {
|
6789
7014
|
id
|
7015
|
+
authUserId
|
7016
|
+
name
|
7017
|
+
plan
|
7018
|
+
stripeCustomerId
|
7019
|
+
stripeSubscriptionId
|
7020
|
+
stripePriceId
|
7021
|
+
stripeCurrentPeriodEnd
|
7022
|
+
createdAt
|
7023
|
+
updatedAt
|
7024
|
+
users {
|
7025
|
+
id
|
7026
|
+
}
|
6790
7027
|
}
|
6791
7028
|
customerId
|
6792
7029
|
accounts {
|
6793
7030
|
id
|
7031
|
+
userId
|
7032
|
+
type
|
7033
|
+
provider
|
7034
|
+
providerAccountId
|
7035
|
+
refresh_token
|
7036
|
+
access_token
|
7037
|
+
expires_at
|
7038
|
+
token_type
|
7039
|
+
scope
|
7040
|
+
id_token
|
7041
|
+
session_state
|
7042
|
+
createdAt
|
7043
|
+
updatedAt
|
7044
|
+
user {
|
7045
|
+
id
|
7046
|
+
}
|
6794
7047
|
}
|
6795
7048
|
sessions {
|
6796
7049
|
id
|
7050
|
+
sessionToken
|
7051
|
+
userId
|
7052
|
+
expires
|
7053
|
+
user {
|
7054
|
+
id
|
7055
|
+
}
|
7056
|
+
createdAt
|
7057
|
+
updatedAt
|
6797
7058
|
}
|
6798
7059
|
authenticators {
|
6799
7060
|
id
|
7061
|
+
userId
|
7062
|
+
credentialID
|
7063
|
+
publicKey
|
7064
|
+
counter
|
7065
|
+
user {
|
7066
|
+
id
|
7067
|
+
}
|
7068
|
+
createdAt
|
7069
|
+
updatedAt
|
6800
7070
|
}
|
6801
7071
|
plan
|
6802
7072
|
alpacaAccounts {
|
@@ -6836,6 +7106,18 @@ exports.Asset = {
|
|
6836
7106
|
}
|
6837
7107
|
action {
|
6838
7108
|
id
|
7109
|
+
sequence
|
7110
|
+
tradeId
|
7111
|
+
type
|
7112
|
+
note
|
7113
|
+
status
|
7114
|
+
fee
|
7115
|
+
trade {
|
7116
|
+
id
|
7117
|
+
}
|
7118
|
+
order {
|
7119
|
+
id
|
7120
|
+
}
|
6839
7121
|
}
|
6840
7122
|
asset {
|
6841
7123
|
id
|
@@ -6885,18 +7167,6 @@ exports.Asset = {
|
|
6885
7167
|
optionContractType
|
6886
7168
|
actions {
|
6887
7169
|
id
|
6888
|
-
sequence
|
6889
|
-
tradeId
|
6890
|
-
type
|
6891
|
-
note
|
6892
|
-
status
|
6893
|
-
fee
|
6894
|
-
trade {
|
6895
|
-
id
|
6896
|
-
}
|
6897
|
-
order {
|
6898
|
-
id
|
6899
|
-
}
|
6900
7170
|
}
|
6901
7171
|
}
|
6902
7172
|
orders {
|