adaptic-backend 1.0.82 → 1.0.83

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 (61) hide show
  1. package/Account.cjs +6031 -1519
  2. package/Action.cjs +9996 -1752
  3. package/Alert.cjs +5972 -1460
  4. package/AlpacaAccount.cjs +6006 -1494
  5. package/Asset.cjs +6318 -1686
  6. package/Authenticator.cjs +5946 -1434
  7. package/Customer.cjs +6001 -1489
  8. package/EconomicEvent.cjs +42 -42
  9. package/NewsArticle.cjs +6645 -2013
  10. package/NewsArticleAssetSentiment.cjs +6266 -1634
  11. package/Order.cjs +7713 -1371
  12. package/Position.cjs +8376 -1410
  13. package/Session.cjs +5946 -1434
  14. package/Trade.cjs +8005 -1495
  15. package/User.cjs +6029 -1517
  16. package/VerificationToken.cjs +24 -24
  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 +6029 -1517
  21. package/server/Action.d.ts.map +1 -1
  22. package/server/Action.js.map +1 -1
  23. package/server/Action.mjs +9994 -1750
  24. package/server/Alert.d.ts.map +1 -1
  25. package/server/Alert.js.map +1 -1
  26. package/server/Alert.mjs +5971 -1459
  27. package/server/AlpacaAccount.d.ts.map +1 -1
  28. package/server/AlpacaAccount.js.map +1 -1
  29. package/server/AlpacaAccount.mjs +6005 -1493
  30. package/server/Asset.d.ts.map +1 -1
  31. package/server/Asset.js.map +1 -1
  32. package/server/Asset.mjs +6318 -1686
  33. package/server/Authenticator.d.ts.map +1 -1
  34. package/server/Authenticator.js.map +1 -1
  35. package/server/Authenticator.mjs +5946 -1434
  36. package/server/Customer.d.ts.map +1 -1
  37. package/server/Customer.js.map +1 -1
  38. package/server/Customer.mjs +6001 -1489
  39. package/server/EconomicEvent.mjs +42 -42
  40. package/server/NewsArticle.d.ts.map +1 -1
  41. package/server/NewsArticle.js.map +1 -1
  42. package/server/NewsArticle.mjs +6642 -2010
  43. package/server/NewsArticleAssetSentiment.d.ts.map +1 -1
  44. package/server/NewsArticleAssetSentiment.js.map +1 -1
  45. package/server/NewsArticleAssetSentiment.mjs +6266 -1634
  46. package/server/Order.d.ts.map +1 -1
  47. package/server/Order.js.map +1 -1
  48. package/server/Order.mjs +7665 -1323
  49. package/server/Position.d.ts.map +1 -1
  50. package/server/Position.js.map +1 -1
  51. package/server/Position.mjs +8375 -1409
  52. package/server/Session.d.ts.map +1 -1
  53. package/server/Session.js.map +1 -1
  54. package/server/Session.mjs +5946 -1434
  55. package/server/Trade.d.ts.map +1 -1
  56. package/server/Trade.js.map +1 -1
  57. package/server/Trade.mjs +8004 -1494
  58. package/server/User.d.ts.map +1 -1
  59. package/server/User.js.map +1 -1
  60. package/server/User.mjs +6027 -1515
  61. package/server/VerificationToken.mjs +24 -24
@@ -16,13 +16,13 @@ export const EconomicEvent = {
16
16
  const CREATE_ONE_ECONOMICEVENT = gql `
17
17
  mutation createOneEconomicEvent($data: EconomicEventCreateInput!) {
18
18
  createOneEconomicEvent(data: $data) {
19
- id
20
- title
21
- description
22
- date
23
- importance
24
- createdAt
25
- updatedAt
19
+ id
20
+ title
21
+ description
22
+ date
23
+ importance
24
+ createdAt
25
+ updatedAt
26
26
  }
27
27
  }
28
28
  `;
@@ -99,13 +99,13 @@ export const EconomicEvent = {
99
99
  const UPDATE_ONE_ECONOMICEVENT = gql `
100
100
  mutation updateOneEconomicEvent($data: EconomicEventUpdateInput!, $where: EconomicEventWhereUniqueInput!) {
101
101
  updateOneEconomicEvent(data: $data, where: $where) {
102
- id
103
- title
104
- description
105
- date
106
- importance
107
- createdAt
108
- updatedAt
102
+ id
103
+ title
104
+ description
105
+ date
106
+ importance
107
+ createdAt
108
+ updatedAt
109
109
  }
110
110
  }`;
111
111
  const variables = {
@@ -227,13 +227,13 @@ export const EconomicEvent = {
227
227
  const DELETE_ONE_ECONOMICEVENT = gql `
228
228
  mutation deleteOneEconomicEvent($where: EconomicEventWhereUniqueInput!) {
229
229
  deleteOneEconomicEvent(where: $where) {
230
- id
231
- title
232
- description
233
- date
234
- importance
235
- createdAt
236
- updatedAt
230
+ id
231
+ title
232
+ description
233
+ date
234
+ importance
235
+ createdAt
236
+ updatedAt
237
237
  }
238
238
  }`;
239
239
  const variables = {
@@ -268,13 +268,13 @@ export const EconomicEvent = {
268
268
  const GET_ECONOMICEVENT = gql `
269
269
  query getEconomicEvent($where: EconomicEventWhereUniqueInput!) {
270
270
  getEconomicEvent(where: $where) {
271
- id
272
- title
273
- description
274
- date
275
- importance
276
- createdAt
277
- updatedAt
271
+ id
272
+ title
273
+ description
274
+ date
275
+ importance
276
+ createdAt
277
+ updatedAt
278
278
  }
279
279
  }`;
280
280
  const variables = {
@@ -311,13 +311,13 @@ export const EconomicEvent = {
311
311
  const GET_ALL_ECONOMICEVENT = gql `
312
312
  query getAllEconomicEvent {
313
313
  economicEvents {
314
- id
315
- title
316
- description
317
- date
318
- importance
319
- createdAt
320
- updatedAt
314
+ id
315
+ title
316
+ description
317
+ date
318
+ importance
319
+ createdAt
320
+ updatedAt
321
321
  }
322
322
  }`;
323
323
  try {
@@ -346,13 +346,13 @@ export const EconomicEvent = {
346
346
  const FIND_MANY_ECONOMICEVENT = gql `
347
347
  query findManyEconomicEvent($where: EconomicEventWhereInput!) {
348
348
  economicEvents(where: $where) {
349
- id
350
- title
351
- description
352
- date
353
- importance
354
- createdAt
355
- updatedAt
349
+ id
350
+ title
351
+ description
352
+ date
353
+ importance
354
+ createdAt
355
+ updatedAt
356
356
  }
357
357
  }`;
358
358
  const variables = {
@@ -1 +1 @@
1
- {"version":3,"file":"NewsArticle.d.ts","sourceRoot":"","sources":["../../src/NewsArticle.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,IAAI,eAAe,EAAE,MAAM,mDAAmD,CAAC;AAKnG;;GAEG;AAEH,eAAO,MAAM,WAAW;IAEtB;;;;OAIG;kBAEiB,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IA2f9D;;;;OAIG;sBACqB,eAAe,EAAE,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IA6C7E;;;;OAIG;kBACiB,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAkjC9D;;;;OAIG;sBACqB,eAAe,EAAE,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAoxB7E;;;;OAIG;kBACiB,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAkU9D;;;;OAIG;eACc,eAAe,GAAG,OAAO,CAAC,eAAe,GAAG,IAAI,CAAC;IAqUlE;;;OAGG;cACa,OAAO,CAAC,eAAe,EAAE,GAAG,IAAI,CAAC;IA0TjD;;;;OAIG;oBACmB,eAAe,GAAG,OAAO,CAAC,eAAe,EAAE,GAAG,IAAI,CAAC;CA6U1E,CAAC"}
1
+ {"version":3,"file":"NewsArticle.d.ts","sourceRoot":"","sources":["../../src/NewsArticle.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,IAAI,eAAe,EAAE,MAAM,mDAAmD,CAAC;AAKnG;;GAEG;AAEH,eAAO,MAAM,WAAW;IAEtB;;;;OAIG;kBAEiB,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IA+vC9D;;;;OAIG;sBACqB,eAAe,EAAE,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IA6C7E;;;;OAIG;kBACiB,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAszD9D;;;;OAIG;sBACqB,eAAe,EAAE,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAoxB7E;;;;OAIG;kBACiB,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAskC9D;;;;OAIG;eACc,eAAe,GAAG,OAAO,CAAC,eAAe,GAAG,IAAI,CAAC;IAykClE;;;OAGG;cACa,OAAO,CAAC,eAAe,EAAE,GAAG,IAAI,CAAC;IA8jCjD;;;;OAIG;oBACmB,eAAe,GAAG,OAAO,CAAC,eAAe,EAAE,GAAG,IAAI,CAAC;CAilC1E,CAAC"}