adaptic-backend 1.0.243 → 1.0.245

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 (57) hide show
  1. package/Action.cjs +36 -6
  2. package/Alert.cjs +132 -44
  3. package/AlpacaAccount.cjs +96 -32
  4. package/Asset.cjs +210 -70
  5. package/Contract.cjs +246 -82
  6. package/Deliverable.cjs +66 -22
  7. package/NewsArticle.cjs +36 -6
  8. package/NewsArticleAssetSentiment.cjs +162 -54
  9. package/Order.cjs +228 -76
  10. package/Position.cjs +330 -110
  11. package/StopLoss.cjs +48 -16
  12. package/TakeProfit.cjs +48 -16
  13. package/Trade.cjs +228 -76
  14. package/User.cjs +132 -44
  15. package/package.json +1 -1
  16. package/server/Action.d.ts.map +1 -1
  17. package/server/Action.js.map +1 -1
  18. package/server/Action.mjs +36 -6
  19. package/server/Alert.d.ts.map +1 -1
  20. package/server/Alert.js.map +1 -1
  21. package/server/Alert.mjs +132 -44
  22. package/server/AlpacaAccount.d.ts.map +1 -1
  23. package/server/AlpacaAccount.js.map +1 -1
  24. package/server/AlpacaAccount.mjs +96 -32
  25. package/server/Asset.d.ts.map +1 -1
  26. package/server/Asset.js.map +1 -1
  27. package/server/Asset.mjs +210 -70
  28. package/server/Contract.d.ts.map +1 -1
  29. package/server/Contract.js.map +1 -1
  30. package/server/Contract.mjs +246 -82
  31. package/server/Deliverable.d.ts.map +1 -1
  32. package/server/Deliverable.js.map +1 -1
  33. package/server/Deliverable.mjs +66 -22
  34. package/server/NewsArticle.d.ts.map +1 -1
  35. package/server/NewsArticle.js.map +1 -1
  36. package/server/NewsArticle.mjs +36 -6
  37. package/server/NewsArticleAssetSentiment.d.ts.map +1 -1
  38. package/server/NewsArticleAssetSentiment.js.map +1 -1
  39. package/server/NewsArticleAssetSentiment.mjs +162 -54
  40. package/server/Order.d.ts.map +1 -1
  41. package/server/Order.js.map +1 -1
  42. package/server/Order.mjs +228 -76
  43. package/server/Position.d.ts.map +1 -1
  44. package/server/Position.js.map +1 -1
  45. package/server/Position.mjs +330 -110
  46. package/server/StopLoss.d.ts.map +1 -1
  47. package/server/StopLoss.js.map +1 -1
  48. package/server/StopLoss.mjs +48 -16
  49. package/server/TakeProfit.d.ts.map +1 -1
  50. package/server/TakeProfit.js.map +1 -1
  51. package/server/TakeProfit.mjs +48 -16
  52. package/server/Trade.d.ts.map +1 -1
  53. package/server/Trade.js.map +1 -1
  54. package/server/Trade.mjs +228 -76
  55. package/server/User.d.ts.map +1 -1
  56. package/server/User.js.map +1 -1
  57. package/server/User.mjs +132 -44
package/Position.cjs CHANGED
@@ -260,8 +260,12 @@ exports.Position = {
260
260
  note: item.note !== undefined ? item.note : undefined,
261
261
  status: item.status !== undefined ? item.status : undefined,
262
262
  fee: item.fee !== undefined ? item.fee : undefined,
263
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
264
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
263
+ dependsOn: item.dependsOn !== undefined ? {
264
+ set: item.dependsOn
265
+ } : undefined,
266
+ dependedOnBy: item.dependedOnBy !== undefined ? {
267
+ set: item.dependedOnBy
268
+ } : undefined,
265
269
  },
266
270
  }))
267
271
  } : undefined,
@@ -391,8 +395,12 @@ exports.Position = {
391
395
  note: item.action.note !== undefined ? item.action.note : undefined,
392
396
  status: item.action.status !== undefined ? item.action.status : undefined,
393
397
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
394
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
395
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
398
+ dependsOn: item.action.dependsOn !== undefined ? {
399
+ set: item.action.dependsOn
400
+ } : undefined,
401
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
402
+ set: item.action.dependedOnBy
403
+ } : undefined,
396
404
  },
397
405
  }
398
406
  } : undefined,
@@ -481,12 +489,16 @@ exports.Position = {
481
489
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
482
490
  url: item.news.url !== undefined ? item.news.url : undefined,
483
491
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
484
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
492
+ authors: item.news.authors !== undefined ? {
493
+ set: item.news.authors
494
+ } : undefined,
485
495
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
486
496
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
487
497
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
488
498
  category: item.news.category !== undefined ? item.news.category : undefined,
489
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
499
+ topics: item.news.topics !== undefined ? {
500
+ set: item.news.topics
501
+ } : undefined,
490
502
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
491
503
  },
492
504
  }
@@ -882,8 +894,12 @@ exports.Position = {
882
894
  note: item.note !== undefined ? item.note : undefined,
883
895
  status: item.status !== undefined ? item.status : undefined,
884
896
  fee: item.fee !== undefined ? item.fee : undefined,
885
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
886
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
897
+ dependsOn: item.dependsOn !== undefined ? {
898
+ set: item.dependsOn
899
+ } : undefined,
900
+ dependedOnBy: item.dependedOnBy !== undefined ? {
901
+ set: item.dependedOnBy
902
+ } : undefined,
887
903
  },
888
904
  }))
889
905
  } : undefined,
@@ -986,8 +1002,12 @@ exports.Position = {
986
1002
  note: item.action.note !== undefined ? item.action.note : undefined,
987
1003
  status: item.action.status !== undefined ? item.action.status : undefined,
988
1004
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
989
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
990
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
1005
+ dependsOn: item.action.dependsOn !== undefined ? {
1006
+ set: item.action.dependsOn
1007
+ } : undefined,
1008
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
1009
+ set: item.action.dependedOnBy
1010
+ } : undefined,
991
1011
  },
992
1012
  }
993
1013
  } : undefined,
@@ -1620,8 +1640,12 @@ exports.Position = {
1620
1640
  note: item.note !== undefined ? item.note : undefined,
1621
1641
  status: item.status !== undefined ? item.status : undefined,
1622
1642
  fee: item.fee !== undefined ? item.fee : undefined,
1623
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
1624
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
1643
+ dependsOn: item.dependsOn !== undefined ? {
1644
+ set: item.dependsOn
1645
+ } : undefined,
1646
+ dependedOnBy: item.dependedOnBy !== undefined ? {
1647
+ set: item.dependedOnBy
1648
+ } : undefined,
1625
1649
  },
1626
1650
  }))
1627
1651
  } : undefined,
@@ -1684,8 +1708,12 @@ exports.Position = {
1684
1708
  note: item.note !== undefined ? item.note : undefined,
1685
1709
  status: item.status !== undefined ? item.status : undefined,
1686
1710
  fee: item.fee !== undefined ? item.fee : undefined,
1687
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
1688
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
1711
+ dependsOn: item.dependsOn !== undefined ? {
1712
+ set: item.dependsOn
1713
+ } : undefined,
1714
+ dependedOnBy: item.dependedOnBy !== undefined ? {
1715
+ set: item.dependedOnBy
1716
+ } : undefined,
1689
1717
  },
1690
1718
  }))
1691
1719
  } : undefined,
@@ -1968,8 +1996,12 @@ exports.Position = {
1968
1996
  note: item.action.note !== undefined ? item.action.note : undefined,
1969
1997
  status: item.action.status !== undefined ? item.action.status : undefined,
1970
1998
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
1971
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
1972
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
1999
+ dependsOn: item.action.dependsOn !== undefined ? {
2000
+ set: item.action.dependsOn
2001
+ } : undefined,
2002
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
2003
+ set: item.action.dependedOnBy
2004
+ } : undefined,
1973
2005
  },
1974
2006
  }
1975
2007
  } : undefined,
@@ -2199,8 +2231,12 @@ exports.Position = {
2199
2231
  note: item.action.note !== undefined ? item.action.note : undefined,
2200
2232
  status: item.action.status !== undefined ? item.action.status : undefined,
2201
2233
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
2202
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
2203
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
2234
+ dependsOn: item.action.dependsOn !== undefined ? {
2235
+ set: item.action.dependsOn
2236
+ } : undefined,
2237
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
2238
+ set: item.action.dependedOnBy
2239
+ } : undefined,
2204
2240
  },
2205
2241
  }
2206
2242
  } : undefined,
@@ -2350,12 +2386,16 @@ exports.Position = {
2350
2386
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
2351
2387
  url: item.news.url !== undefined ? item.news.url : undefined,
2352
2388
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
2353
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
2389
+ authors: item.news.authors !== undefined ? {
2390
+ set: item.news.authors
2391
+ } : undefined,
2354
2392
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
2355
2393
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
2356
2394
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
2357
2395
  category: item.news.category !== undefined ? item.news.category : undefined,
2358
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
2396
+ topics: item.news.topics !== undefined ? {
2397
+ set: item.news.topics
2398
+ } : undefined,
2359
2399
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
2360
2400
  },
2361
2401
  }
@@ -2387,12 +2427,16 @@ exports.Position = {
2387
2427
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
2388
2428
  url: item.news.url !== undefined ? item.news.url : undefined,
2389
2429
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
2390
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
2430
+ authors: item.news.authors !== undefined ? {
2431
+ set: item.news.authors
2432
+ } : undefined,
2391
2433
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
2392
2434
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
2393
2435
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
2394
2436
  category: item.news.category !== undefined ? item.news.category : undefined,
2395
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
2437
+ topics: item.news.topics !== undefined ? {
2438
+ set: item.news.topics
2439
+ } : undefined,
2396
2440
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
2397
2441
  },
2398
2442
  }
@@ -2915,8 +2959,12 @@ exports.Position = {
2915
2959
  note: item.note !== undefined ? item.note : undefined,
2916
2960
  status: item.status !== undefined ? item.status : undefined,
2917
2961
  fee: item.fee !== undefined ? item.fee : undefined,
2918
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
2919
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
2962
+ dependsOn: item.dependsOn !== undefined ? {
2963
+ set: item.dependsOn
2964
+ } : undefined,
2965
+ dependedOnBy: item.dependedOnBy !== undefined ? {
2966
+ set: item.dependedOnBy
2967
+ } : undefined,
2920
2968
  },
2921
2969
  }))
2922
2970
  } : undefined,
@@ -3046,8 +3094,12 @@ exports.Position = {
3046
3094
  note: item.action.note !== undefined ? item.action.note : undefined,
3047
3095
  status: item.action.status !== undefined ? item.action.status : undefined,
3048
3096
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
3049
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
3050
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
3097
+ dependsOn: item.action.dependsOn !== undefined ? {
3098
+ set: item.action.dependsOn
3099
+ } : undefined,
3100
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
3101
+ set: item.action.dependedOnBy
3102
+ } : undefined,
3051
3103
  },
3052
3104
  }
3053
3105
  } : undefined,
@@ -3136,12 +3188,16 @@ exports.Position = {
3136
3188
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
3137
3189
  url: item.news.url !== undefined ? item.news.url : undefined,
3138
3190
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
3139
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
3191
+ authors: item.news.authors !== undefined ? {
3192
+ set: item.news.authors
3193
+ } : undefined,
3140
3194
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
3141
3195
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
3142
3196
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
3143
3197
  category: item.news.category !== undefined ? item.news.category : undefined,
3144
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
3198
+ topics: item.news.topics !== undefined ? {
3199
+ set: item.news.topics
3200
+ } : undefined,
3145
3201
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
3146
3202
  },
3147
3203
  }
@@ -4022,8 +4078,12 @@ exports.Position = {
4022
4078
  note: item.note !== undefined ? item.note : undefined,
4023
4079
  status: item.status !== undefined ? item.status : undefined,
4024
4080
  fee: item.fee !== undefined ? item.fee : undefined,
4025
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
4026
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
4081
+ dependsOn: item.dependsOn !== undefined ? {
4082
+ set: item.dependsOn
4083
+ } : undefined,
4084
+ dependedOnBy: item.dependedOnBy !== undefined ? {
4085
+ set: item.dependedOnBy
4086
+ } : undefined,
4027
4087
  },
4028
4088
  }))
4029
4089
  } : undefined,
@@ -4130,8 +4190,12 @@ exports.Position = {
4130
4190
  note: item.note !== undefined ? item.note : undefined,
4131
4191
  status: item.status !== undefined ? item.status : undefined,
4132
4192
  fee: item.fee !== undefined ? item.fee : undefined,
4133
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
4134
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
4193
+ dependsOn: item.dependsOn !== undefined ? {
4194
+ set: item.dependsOn
4195
+ } : undefined,
4196
+ dependedOnBy: item.dependedOnBy !== undefined ? {
4197
+ set: item.dependedOnBy
4198
+ } : undefined,
4135
4199
  },
4136
4200
  }))
4137
4201
  } : undefined,
@@ -4350,8 +4414,12 @@ exports.Position = {
4350
4414
  note: item.action.note !== undefined ? item.action.note : undefined,
4351
4415
  status: item.action.status !== undefined ? item.action.status : undefined,
4352
4416
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
4353
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
4354
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
4417
+ dependsOn: item.action.dependsOn !== undefined ? {
4418
+ set: item.action.dependsOn
4419
+ } : undefined,
4420
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
4421
+ set: item.action.dependedOnBy
4422
+ } : undefined,
4355
4423
  },
4356
4424
  }
4357
4425
  } : undefined,
@@ -4801,8 +4869,12 @@ exports.Position = {
4801
4869
  note: item.action.note !== undefined ? item.action.note : undefined,
4802
4870
  status: item.action.status !== undefined ? item.action.status : undefined,
4803
4871
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
4804
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
4805
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
4872
+ dependsOn: item.action.dependsOn !== undefined ? {
4873
+ set: item.action.dependsOn
4874
+ } : undefined,
4875
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
4876
+ set: item.action.dependedOnBy
4877
+ } : undefined,
4806
4878
  },
4807
4879
  }
4808
4880
  } : undefined,
@@ -5212,8 +5284,12 @@ exports.Position = {
5212
5284
  note: item.note !== undefined ? item.note : undefined,
5213
5285
  status: item.status !== undefined ? item.status : undefined,
5214
5286
  fee: item.fee !== undefined ? item.fee : undefined,
5215
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
5216
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
5287
+ dependsOn: item.dependsOn !== undefined ? {
5288
+ set: item.dependsOn
5289
+ } : undefined,
5290
+ dependedOnBy: item.dependedOnBy !== undefined ? {
5291
+ set: item.dependedOnBy
5292
+ } : undefined,
5217
5293
  },
5218
5294
  }))
5219
5295
  } : undefined,
@@ -5316,8 +5392,12 @@ exports.Position = {
5316
5392
  note: item.action.note !== undefined ? item.action.note : undefined,
5317
5393
  status: item.action.status !== undefined ? item.action.status : undefined,
5318
5394
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
5319
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
5320
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
5395
+ dependsOn: item.action.dependsOn !== undefined ? {
5396
+ set: item.action.dependsOn
5397
+ } : undefined,
5398
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
5399
+ set: item.action.dependedOnBy
5400
+ } : undefined,
5321
5401
  },
5322
5402
  }
5323
5403
  } : undefined,
@@ -5654,8 +5734,12 @@ exports.Position = {
5654
5734
  note: item.note !== undefined ? item.note : undefined,
5655
5735
  status: item.status !== undefined ? item.status : undefined,
5656
5736
  fee: item.fee !== undefined ? item.fee : undefined,
5657
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
5658
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
5737
+ dependsOn: item.dependsOn !== undefined ? {
5738
+ set: item.dependsOn
5739
+ } : undefined,
5740
+ dependedOnBy: item.dependedOnBy !== undefined ? {
5741
+ set: item.dependedOnBy
5742
+ } : undefined,
5659
5743
  },
5660
5744
  }))
5661
5745
  } : undefined,
@@ -5785,8 +5869,12 @@ exports.Position = {
5785
5869
  note: item.action.note !== undefined ? item.action.note : undefined,
5786
5870
  status: item.action.status !== undefined ? item.action.status : undefined,
5787
5871
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
5788
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
5789
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
5872
+ dependsOn: item.action.dependsOn !== undefined ? {
5873
+ set: item.action.dependsOn
5874
+ } : undefined,
5875
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
5876
+ set: item.action.dependedOnBy
5877
+ } : undefined,
5790
5878
  },
5791
5879
  }
5792
5880
  } : undefined,
@@ -5875,12 +5963,16 @@ exports.Position = {
5875
5963
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
5876
5964
  url: item.news.url !== undefined ? item.news.url : undefined,
5877
5965
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
5878
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
5966
+ authors: item.news.authors !== undefined ? {
5967
+ set: item.news.authors
5968
+ } : undefined,
5879
5969
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
5880
5970
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
5881
5971
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
5882
5972
  category: item.news.category !== undefined ? item.news.category : undefined,
5883
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
5973
+ topics: item.news.topics !== undefined ? {
5974
+ set: item.news.topics
5975
+ } : undefined,
5884
5976
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
5885
5977
  },
5886
5978
  }
@@ -6276,8 +6368,12 @@ exports.Position = {
6276
6368
  note: item.note !== undefined ? item.note : undefined,
6277
6369
  status: item.status !== undefined ? item.status : undefined,
6278
6370
  fee: item.fee !== undefined ? item.fee : undefined,
6279
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
6280
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
6371
+ dependsOn: item.dependsOn !== undefined ? {
6372
+ set: item.dependsOn
6373
+ } : undefined,
6374
+ dependedOnBy: item.dependedOnBy !== undefined ? {
6375
+ set: item.dependedOnBy
6376
+ } : undefined,
6281
6377
  },
6282
6378
  }))
6283
6379
  } : undefined,
@@ -6380,8 +6476,12 @@ exports.Position = {
6380
6476
  note: item.action.note !== undefined ? item.action.note : undefined,
6381
6477
  status: item.action.status !== undefined ? item.action.status : undefined,
6382
6478
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
6383
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
6384
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
6479
+ dependsOn: item.action.dependsOn !== undefined ? {
6480
+ set: item.action.dependsOn
6481
+ } : undefined,
6482
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
6483
+ set: item.action.dependedOnBy
6484
+ } : undefined,
6385
6485
  },
6386
6486
  }
6387
6487
  } : undefined,
@@ -6915,8 +7015,12 @@ exports.Position = {
6915
7015
  note: item.note !== undefined ? item.note : undefined,
6916
7016
  status: item.status !== undefined ? item.status : undefined,
6917
7017
  fee: item.fee !== undefined ? item.fee : undefined,
6918
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
6919
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
7018
+ dependsOn: item.dependsOn !== undefined ? {
7019
+ set: item.dependsOn
7020
+ } : undefined,
7021
+ dependedOnBy: item.dependedOnBy !== undefined ? {
7022
+ set: item.dependedOnBy
7023
+ } : undefined,
6920
7024
  },
6921
7025
  }))
6922
7026
  } : undefined,
@@ -6979,8 +7083,12 @@ exports.Position = {
6979
7083
  note: item.note !== undefined ? item.note : undefined,
6980
7084
  status: item.status !== undefined ? item.status : undefined,
6981
7085
  fee: item.fee !== undefined ? item.fee : undefined,
6982
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
6983
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
7086
+ dependsOn: item.dependsOn !== undefined ? {
7087
+ set: item.dependsOn
7088
+ } : undefined,
7089
+ dependedOnBy: item.dependedOnBy !== undefined ? {
7090
+ set: item.dependedOnBy
7091
+ } : undefined,
6984
7092
  },
6985
7093
  }))
6986
7094
  } : undefined,
@@ -7263,8 +7371,12 @@ exports.Position = {
7263
7371
  note: item.action.note !== undefined ? item.action.note : undefined,
7264
7372
  status: item.action.status !== undefined ? item.action.status : undefined,
7265
7373
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
7266
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
7267
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
7374
+ dependsOn: item.action.dependsOn !== undefined ? {
7375
+ set: item.action.dependsOn
7376
+ } : undefined,
7377
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
7378
+ set: item.action.dependedOnBy
7379
+ } : undefined,
7268
7380
  },
7269
7381
  }
7270
7382
  } : undefined,
@@ -7494,8 +7606,12 @@ exports.Position = {
7494
7606
  note: item.action.note !== undefined ? item.action.note : undefined,
7495
7607
  status: item.action.status !== undefined ? item.action.status : undefined,
7496
7608
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
7497
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
7498
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
7609
+ dependsOn: item.action.dependsOn !== undefined ? {
7610
+ set: item.action.dependsOn
7611
+ } : undefined,
7612
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
7613
+ set: item.action.dependedOnBy
7614
+ } : undefined,
7499
7615
  },
7500
7616
  }
7501
7617
  } : undefined,
@@ -7645,12 +7761,16 @@ exports.Position = {
7645
7761
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
7646
7762
  url: item.news.url !== undefined ? item.news.url : undefined,
7647
7763
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
7648
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
7764
+ authors: item.news.authors !== undefined ? {
7765
+ set: item.news.authors
7766
+ } : undefined,
7649
7767
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
7650
7768
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
7651
7769
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
7652
7770
  category: item.news.category !== undefined ? item.news.category : undefined,
7653
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
7771
+ topics: item.news.topics !== undefined ? {
7772
+ set: item.news.topics
7773
+ } : undefined,
7654
7774
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
7655
7775
  },
7656
7776
  }
@@ -7682,12 +7802,16 @@ exports.Position = {
7682
7802
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
7683
7803
  url: item.news.url !== undefined ? item.news.url : undefined,
7684
7804
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
7685
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
7805
+ authors: item.news.authors !== undefined ? {
7806
+ set: item.news.authors
7807
+ } : undefined,
7686
7808
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
7687
7809
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
7688
7810
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
7689
7811
  category: item.news.category !== undefined ? item.news.category : undefined,
7690
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
7812
+ topics: item.news.topics !== undefined ? {
7813
+ set: item.news.topics
7814
+ } : undefined,
7691
7815
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
7692
7816
  },
7693
7817
  }
@@ -8210,8 +8334,12 @@ exports.Position = {
8210
8334
  note: item.note !== undefined ? item.note : undefined,
8211
8335
  status: item.status !== undefined ? item.status : undefined,
8212
8336
  fee: item.fee !== undefined ? item.fee : undefined,
8213
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
8214
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
8337
+ dependsOn: item.dependsOn !== undefined ? {
8338
+ set: item.dependsOn
8339
+ } : undefined,
8340
+ dependedOnBy: item.dependedOnBy !== undefined ? {
8341
+ set: item.dependedOnBy
8342
+ } : undefined,
8215
8343
  },
8216
8344
  }))
8217
8345
  } : undefined,
@@ -8341,8 +8469,12 @@ exports.Position = {
8341
8469
  note: item.action.note !== undefined ? item.action.note : undefined,
8342
8470
  status: item.action.status !== undefined ? item.action.status : undefined,
8343
8471
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
8344
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
8345
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
8472
+ dependsOn: item.action.dependsOn !== undefined ? {
8473
+ set: item.action.dependsOn
8474
+ } : undefined,
8475
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
8476
+ set: item.action.dependedOnBy
8477
+ } : undefined,
8346
8478
  },
8347
8479
  }
8348
8480
  } : undefined,
@@ -8431,12 +8563,16 @@ exports.Position = {
8431
8563
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
8432
8564
  url: item.news.url !== undefined ? item.news.url : undefined,
8433
8565
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
8434
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
8566
+ authors: item.news.authors !== undefined ? {
8567
+ set: item.news.authors
8568
+ } : undefined,
8435
8569
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
8436
8570
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
8437
8571
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
8438
8572
  category: item.news.category !== undefined ? item.news.category : undefined,
8439
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
8573
+ topics: item.news.topics !== undefined ? {
8574
+ set: item.news.topics
8575
+ } : undefined,
8440
8576
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
8441
8577
  },
8442
8578
  }
@@ -9317,8 +9453,12 @@ exports.Position = {
9317
9453
  note: item.note !== undefined ? item.note : undefined,
9318
9454
  status: item.status !== undefined ? item.status : undefined,
9319
9455
  fee: item.fee !== undefined ? item.fee : undefined,
9320
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
9321
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
9456
+ dependsOn: item.dependsOn !== undefined ? {
9457
+ set: item.dependsOn
9458
+ } : undefined,
9459
+ dependedOnBy: item.dependedOnBy !== undefined ? {
9460
+ set: item.dependedOnBy
9461
+ } : undefined,
9322
9462
  },
9323
9463
  }))
9324
9464
  } : undefined,
@@ -9425,8 +9565,12 @@ exports.Position = {
9425
9565
  note: item.note !== undefined ? item.note : undefined,
9426
9566
  status: item.status !== undefined ? item.status : undefined,
9427
9567
  fee: item.fee !== undefined ? item.fee : undefined,
9428
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
9429
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
9568
+ dependsOn: item.dependsOn !== undefined ? {
9569
+ set: item.dependsOn
9570
+ } : undefined,
9571
+ dependedOnBy: item.dependedOnBy !== undefined ? {
9572
+ set: item.dependedOnBy
9573
+ } : undefined,
9430
9574
  },
9431
9575
  }))
9432
9576
  } : undefined,
@@ -9645,8 +9789,12 @@ exports.Position = {
9645
9789
  note: item.action.note !== undefined ? item.action.note : undefined,
9646
9790
  status: item.action.status !== undefined ? item.action.status : undefined,
9647
9791
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
9648
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
9649
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
9792
+ dependsOn: item.action.dependsOn !== undefined ? {
9793
+ set: item.action.dependsOn
9794
+ } : undefined,
9795
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
9796
+ set: item.action.dependedOnBy
9797
+ } : undefined,
9650
9798
  },
9651
9799
  }
9652
9800
  } : undefined,
@@ -10096,8 +10244,12 @@ exports.Position = {
10096
10244
  note: item.action.note !== undefined ? item.action.note : undefined,
10097
10245
  status: item.action.status !== undefined ? item.action.status : undefined,
10098
10246
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
10099
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
10100
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
10247
+ dependsOn: item.action.dependsOn !== undefined ? {
10248
+ set: item.action.dependsOn
10249
+ } : undefined,
10250
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
10251
+ set: item.action.dependedOnBy
10252
+ } : undefined,
10101
10253
  },
10102
10254
  }
10103
10255
  } : undefined,
@@ -10507,8 +10659,12 @@ exports.Position = {
10507
10659
  note: item.note !== undefined ? item.note : undefined,
10508
10660
  status: item.status !== undefined ? item.status : undefined,
10509
10661
  fee: item.fee !== undefined ? item.fee : undefined,
10510
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
10511
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
10662
+ dependsOn: item.dependsOn !== undefined ? {
10663
+ set: item.dependsOn
10664
+ } : undefined,
10665
+ dependedOnBy: item.dependedOnBy !== undefined ? {
10666
+ set: item.dependedOnBy
10667
+ } : undefined,
10512
10668
  },
10513
10669
  }))
10514
10670
  } : undefined,
@@ -10611,8 +10767,12 @@ exports.Position = {
10611
10767
  note: item.action.note !== undefined ? item.action.note : undefined,
10612
10768
  status: item.action.status !== undefined ? item.action.status : undefined,
10613
10769
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
10614
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
10615
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
10770
+ dependsOn: item.action.dependsOn !== undefined ? {
10771
+ set: item.action.dependsOn
10772
+ } : undefined,
10773
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
10774
+ set: item.action.dependedOnBy
10775
+ } : undefined,
10616
10776
  },
10617
10777
  }
10618
10778
  } : undefined,
@@ -11194,8 +11354,12 @@ exports.Position = {
11194
11354
  note: item.note !== undefined ? item.note : undefined,
11195
11355
  status: item.status !== undefined ? item.status : undefined,
11196
11356
  fee: item.fee !== undefined ? item.fee : undefined,
11197
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
11198
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
11357
+ dependsOn: item.dependsOn !== undefined ? {
11358
+ set: item.dependsOn
11359
+ } : undefined,
11360
+ dependedOnBy: item.dependedOnBy !== undefined ? {
11361
+ set: item.dependedOnBy
11362
+ } : undefined,
11199
11363
  },
11200
11364
  }))
11201
11365
  } : undefined,
@@ -11258,8 +11422,12 @@ exports.Position = {
11258
11422
  note: item.note !== undefined ? item.note : undefined,
11259
11423
  status: item.status !== undefined ? item.status : undefined,
11260
11424
  fee: item.fee !== undefined ? item.fee : undefined,
11261
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
11262
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
11425
+ dependsOn: item.dependsOn !== undefined ? {
11426
+ set: item.dependsOn
11427
+ } : undefined,
11428
+ dependedOnBy: item.dependedOnBy !== undefined ? {
11429
+ set: item.dependedOnBy
11430
+ } : undefined,
11263
11431
  },
11264
11432
  }))
11265
11433
  } : undefined,
@@ -11542,8 +11710,12 @@ exports.Position = {
11542
11710
  note: item.action.note !== undefined ? item.action.note : undefined,
11543
11711
  status: item.action.status !== undefined ? item.action.status : undefined,
11544
11712
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
11545
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
11546
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
11713
+ dependsOn: item.action.dependsOn !== undefined ? {
11714
+ set: item.action.dependsOn
11715
+ } : undefined,
11716
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
11717
+ set: item.action.dependedOnBy
11718
+ } : undefined,
11547
11719
  },
11548
11720
  }
11549
11721
  } : undefined,
@@ -11773,8 +11945,12 @@ exports.Position = {
11773
11945
  note: item.action.note !== undefined ? item.action.note : undefined,
11774
11946
  status: item.action.status !== undefined ? item.action.status : undefined,
11775
11947
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
11776
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
11777
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
11948
+ dependsOn: item.action.dependsOn !== undefined ? {
11949
+ set: item.action.dependsOn
11950
+ } : undefined,
11951
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
11952
+ set: item.action.dependedOnBy
11953
+ } : undefined,
11778
11954
  },
11779
11955
  }
11780
11956
  } : undefined,
@@ -11924,12 +12100,16 @@ exports.Position = {
11924
12100
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
11925
12101
  url: item.news.url !== undefined ? item.news.url : undefined,
11926
12102
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
11927
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
12103
+ authors: item.news.authors !== undefined ? {
12104
+ set: item.news.authors
12105
+ } : undefined,
11928
12106
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
11929
12107
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
11930
12108
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
11931
12109
  category: item.news.category !== undefined ? item.news.category : undefined,
11932
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
12110
+ topics: item.news.topics !== undefined ? {
12111
+ set: item.news.topics
12112
+ } : undefined,
11933
12113
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
11934
12114
  },
11935
12115
  }
@@ -11961,12 +12141,16 @@ exports.Position = {
11961
12141
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
11962
12142
  url: item.news.url !== undefined ? item.news.url : undefined,
11963
12143
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
11964
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
12144
+ authors: item.news.authors !== undefined ? {
12145
+ set: item.news.authors
12146
+ } : undefined,
11965
12147
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
11966
12148
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
11967
12149
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
11968
12150
  category: item.news.category !== undefined ? item.news.category : undefined,
11969
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
12151
+ topics: item.news.topics !== undefined ? {
12152
+ set: item.news.topics
12153
+ } : undefined,
11970
12154
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
11971
12155
  },
11972
12156
  }
@@ -12489,8 +12673,12 @@ exports.Position = {
12489
12673
  note: item.note !== undefined ? item.note : undefined,
12490
12674
  status: item.status !== undefined ? item.status : undefined,
12491
12675
  fee: item.fee !== undefined ? item.fee : undefined,
12492
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
12493
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
12676
+ dependsOn: item.dependsOn !== undefined ? {
12677
+ set: item.dependsOn
12678
+ } : undefined,
12679
+ dependedOnBy: item.dependedOnBy !== undefined ? {
12680
+ set: item.dependedOnBy
12681
+ } : undefined,
12494
12682
  },
12495
12683
  }))
12496
12684
  } : undefined,
@@ -12620,8 +12808,12 @@ exports.Position = {
12620
12808
  note: item.action.note !== undefined ? item.action.note : undefined,
12621
12809
  status: item.action.status !== undefined ? item.action.status : undefined,
12622
12810
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
12623
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
12624
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
12811
+ dependsOn: item.action.dependsOn !== undefined ? {
12812
+ set: item.action.dependsOn
12813
+ } : undefined,
12814
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
12815
+ set: item.action.dependedOnBy
12816
+ } : undefined,
12625
12817
  },
12626
12818
  }
12627
12819
  } : undefined,
@@ -12710,12 +12902,16 @@ exports.Position = {
12710
12902
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
12711
12903
  url: item.news.url !== undefined ? item.news.url : undefined,
12712
12904
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
12713
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
12905
+ authors: item.news.authors !== undefined ? {
12906
+ set: item.news.authors
12907
+ } : undefined,
12714
12908
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
12715
12909
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
12716
12910
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
12717
12911
  category: item.news.category !== undefined ? item.news.category : undefined,
12718
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
12912
+ topics: item.news.topics !== undefined ? {
12913
+ set: item.news.topics
12914
+ } : undefined,
12719
12915
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
12720
12916
  },
12721
12917
  }
@@ -13596,8 +13792,12 @@ exports.Position = {
13596
13792
  note: item.note !== undefined ? item.note : undefined,
13597
13793
  status: item.status !== undefined ? item.status : undefined,
13598
13794
  fee: item.fee !== undefined ? item.fee : undefined,
13599
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
13600
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
13795
+ dependsOn: item.dependsOn !== undefined ? {
13796
+ set: item.dependsOn
13797
+ } : undefined,
13798
+ dependedOnBy: item.dependedOnBy !== undefined ? {
13799
+ set: item.dependedOnBy
13800
+ } : undefined,
13601
13801
  },
13602
13802
  }))
13603
13803
  } : undefined,
@@ -13704,8 +13904,12 @@ exports.Position = {
13704
13904
  note: item.note !== undefined ? item.note : undefined,
13705
13905
  status: item.status !== undefined ? item.status : undefined,
13706
13906
  fee: item.fee !== undefined ? item.fee : undefined,
13707
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
13708
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
13907
+ dependsOn: item.dependsOn !== undefined ? {
13908
+ set: item.dependsOn
13909
+ } : undefined,
13910
+ dependedOnBy: item.dependedOnBy !== undefined ? {
13911
+ set: item.dependedOnBy
13912
+ } : undefined,
13709
13913
  },
13710
13914
  }))
13711
13915
  } : undefined,
@@ -13924,8 +14128,12 @@ exports.Position = {
13924
14128
  note: item.action.note !== undefined ? item.action.note : undefined,
13925
14129
  status: item.action.status !== undefined ? item.action.status : undefined,
13926
14130
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
13927
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
13928
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
14131
+ dependsOn: item.action.dependsOn !== undefined ? {
14132
+ set: item.action.dependsOn
14133
+ } : undefined,
14134
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
14135
+ set: item.action.dependedOnBy
14136
+ } : undefined,
13929
14137
  },
13930
14138
  }
13931
14139
  } : undefined,
@@ -14375,8 +14583,12 @@ exports.Position = {
14375
14583
  note: item.action.note !== undefined ? item.action.note : undefined,
14376
14584
  status: item.action.status !== undefined ? item.action.status : undefined,
14377
14585
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
14378
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
14379
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
14586
+ dependsOn: item.action.dependsOn !== undefined ? {
14587
+ set: item.action.dependsOn
14588
+ } : undefined,
14589
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
14590
+ set: item.action.dependedOnBy
14591
+ } : undefined,
14380
14592
  },
14381
14593
  }
14382
14594
  } : undefined,
@@ -14786,8 +14998,12 @@ exports.Position = {
14786
14998
  note: item.note !== undefined ? item.note : undefined,
14787
14999
  status: item.status !== undefined ? item.status : undefined,
14788
15000
  fee: item.fee !== undefined ? item.fee : undefined,
14789
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
14790
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
15001
+ dependsOn: item.dependsOn !== undefined ? {
15002
+ set: item.dependsOn
15003
+ } : undefined,
15004
+ dependedOnBy: item.dependedOnBy !== undefined ? {
15005
+ set: item.dependedOnBy
15006
+ } : undefined,
14791
15007
  },
14792
15008
  }))
14793
15009
  } : undefined,
@@ -14890,8 +15106,12 @@ exports.Position = {
14890
15106
  note: item.action.note !== undefined ? item.action.note : undefined,
14891
15107
  status: item.action.status !== undefined ? item.action.status : undefined,
14892
15108
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
14893
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
14894
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
15109
+ dependsOn: item.action.dependsOn !== undefined ? {
15110
+ set: item.action.dependsOn
15111
+ } : undefined,
15112
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
15113
+ set: item.action.dependedOnBy
15114
+ } : undefined,
14895
15115
  },
14896
15116
  }
14897
15117
  } : undefined,