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
@@ -258,8 +258,12 @@ export const Position = {
258
258
  note: item.note !== undefined ? item.note : undefined,
259
259
  status: item.status !== undefined ? item.status : undefined,
260
260
  fee: item.fee !== undefined ? item.fee : undefined,
261
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
262
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
261
+ dependsOn: item.dependsOn !== undefined ? {
262
+ set: item.dependsOn
263
+ } : undefined,
264
+ dependedOnBy: item.dependedOnBy !== undefined ? {
265
+ set: item.dependedOnBy
266
+ } : undefined,
263
267
  },
264
268
  }))
265
269
  } : undefined,
@@ -389,8 +393,12 @@ export const Position = {
389
393
  note: item.action.note !== undefined ? item.action.note : undefined,
390
394
  status: item.action.status !== undefined ? item.action.status : undefined,
391
395
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
392
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
393
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
396
+ dependsOn: item.action.dependsOn !== undefined ? {
397
+ set: item.action.dependsOn
398
+ } : undefined,
399
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
400
+ set: item.action.dependedOnBy
401
+ } : undefined,
394
402
  },
395
403
  }
396
404
  } : undefined,
@@ -479,12 +487,16 @@ export const Position = {
479
487
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
480
488
  url: item.news.url !== undefined ? item.news.url : undefined,
481
489
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
482
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
490
+ authors: item.news.authors !== undefined ? {
491
+ set: item.news.authors
492
+ } : undefined,
483
493
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
484
494
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
485
495
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
486
496
  category: item.news.category !== undefined ? item.news.category : undefined,
487
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
497
+ topics: item.news.topics !== undefined ? {
498
+ set: item.news.topics
499
+ } : undefined,
488
500
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
489
501
  },
490
502
  }
@@ -880,8 +892,12 @@ export const Position = {
880
892
  note: item.note !== undefined ? item.note : undefined,
881
893
  status: item.status !== undefined ? item.status : undefined,
882
894
  fee: item.fee !== undefined ? item.fee : undefined,
883
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
884
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
895
+ dependsOn: item.dependsOn !== undefined ? {
896
+ set: item.dependsOn
897
+ } : undefined,
898
+ dependedOnBy: item.dependedOnBy !== undefined ? {
899
+ set: item.dependedOnBy
900
+ } : undefined,
885
901
  },
886
902
  }))
887
903
  } : undefined,
@@ -984,8 +1000,12 @@ export const Position = {
984
1000
  note: item.action.note !== undefined ? item.action.note : undefined,
985
1001
  status: item.action.status !== undefined ? item.action.status : undefined,
986
1002
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
987
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
988
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
1003
+ dependsOn: item.action.dependsOn !== undefined ? {
1004
+ set: item.action.dependsOn
1005
+ } : undefined,
1006
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
1007
+ set: item.action.dependedOnBy
1008
+ } : undefined,
989
1009
  },
990
1010
  }
991
1011
  } : undefined,
@@ -1618,8 +1638,12 @@ export const Position = {
1618
1638
  note: item.note !== undefined ? item.note : undefined,
1619
1639
  status: item.status !== undefined ? item.status : undefined,
1620
1640
  fee: item.fee !== undefined ? item.fee : undefined,
1621
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
1622
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
1641
+ dependsOn: item.dependsOn !== undefined ? {
1642
+ set: item.dependsOn
1643
+ } : undefined,
1644
+ dependedOnBy: item.dependedOnBy !== undefined ? {
1645
+ set: item.dependedOnBy
1646
+ } : undefined,
1623
1647
  },
1624
1648
  }))
1625
1649
  } : undefined,
@@ -1682,8 +1706,12 @@ export const Position = {
1682
1706
  note: item.note !== undefined ? item.note : undefined,
1683
1707
  status: item.status !== undefined ? item.status : undefined,
1684
1708
  fee: item.fee !== undefined ? item.fee : undefined,
1685
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
1686
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
1709
+ dependsOn: item.dependsOn !== undefined ? {
1710
+ set: item.dependsOn
1711
+ } : undefined,
1712
+ dependedOnBy: item.dependedOnBy !== undefined ? {
1713
+ set: item.dependedOnBy
1714
+ } : undefined,
1687
1715
  },
1688
1716
  }))
1689
1717
  } : undefined,
@@ -1966,8 +1994,12 @@ export const Position = {
1966
1994
  note: item.action.note !== undefined ? item.action.note : undefined,
1967
1995
  status: item.action.status !== undefined ? item.action.status : undefined,
1968
1996
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
1969
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
1970
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
1997
+ dependsOn: item.action.dependsOn !== undefined ? {
1998
+ set: item.action.dependsOn
1999
+ } : undefined,
2000
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
2001
+ set: item.action.dependedOnBy
2002
+ } : undefined,
1971
2003
  },
1972
2004
  }
1973
2005
  } : undefined,
@@ -2197,8 +2229,12 @@ export const Position = {
2197
2229
  note: item.action.note !== undefined ? item.action.note : undefined,
2198
2230
  status: item.action.status !== undefined ? item.action.status : undefined,
2199
2231
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
2200
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
2201
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
2232
+ dependsOn: item.action.dependsOn !== undefined ? {
2233
+ set: item.action.dependsOn
2234
+ } : undefined,
2235
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
2236
+ set: item.action.dependedOnBy
2237
+ } : undefined,
2202
2238
  },
2203
2239
  }
2204
2240
  } : undefined,
@@ -2348,12 +2384,16 @@ export const Position = {
2348
2384
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
2349
2385
  url: item.news.url !== undefined ? item.news.url : undefined,
2350
2386
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
2351
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
2387
+ authors: item.news.authors !== undefined ? {
2388
+ set: item.news.authors
2389
+ } : undefined,
2352
2390
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
2353
2391
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
2354
2392
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
2355
2393
  category: item.news.category !== undefined ? item.news.category : undefined,
2356
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
2394
+ topics: item.news.topics !== undefined ? {
2395
+ set: item.news.topics
2396
+ } : undefined,
2357
2397
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
2358
2398
  },
2359
2399
  }
@@ -2385,12 +2425,16 @@ export const Position = {
2385
2425
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
2386
2426
  url: item.news.url !== undefined ? item.news.url : undefined,
2387
2427
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
2388
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
2428
+ authors: item.news.authors !== undefined ? {
2429
+ set: item.news.authors
2430
+ } : undefined,
2389
2431
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
2390
2432
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
2391
2433
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
2392
2434
  category: item.news.category !== undefined ? item.news.category : undefined,
2393
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
2435
+ topics: item.news.topics !== undefined ? {
2436
+ set: item.news.topics
2437
+ } : undefined,
2394
2438
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
2395
2439
  },
2396
2440
  }
@@ -2913,8 +2957,12 @@ export const Position = {
2913
2957
  note: item.note !== undefined ? item.note : undefined,
2914
2958
  status: item.status !== undefined ? item.status : undefined,
2915
2959
  fee: item.fee !== undefined ? item.fee : undefined,
2916
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
2917
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
2960
+ dependsOn: item.dependsOn !== undefined ? {
2961
+ set: item.dependsOn
2962
+ } : undefined,
2963
+ dependedOnBy: item.dependedOnBy !== undefined ? {
2964
+ set: item.dependedOnBy
2965
+ } : undefined,
2918
2966
  },
2919
2967
  }))
2920
2968
  } : undefined,
@@ -3044,8 +3092,12 @@ export const Position = {
3044
3092
  note: item.action.note !== undefined ? item.action.note : undefined,
3045
3093
  status: item.action.status !== undefined ? item.action.status : undefined,
3046
3094
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
3047
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
3048
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
3095
+ dependsOn: item.action.dependsOn !== undefined ? {
3096
+ set: item.action.dependsOn
3097
+ } : undefined,
3098
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
3099
+ set: item.action.dependedOnBy
3100
+ } : undefined,
3049
3101
  },
3050
3102
  }
3051
3103
  } : undefined,
@@ -3134,12 +3186,16 @@ export const Position = {
3134
3186
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
3135
3187
  url: item.news.url !== undefined ? item.news.url : undefined,
3136
3188
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
3137
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
3189
+ authors: item.news.authors !== undefined ? {
3190
+ set: item.news.authors
3191
+ } : undefined,
3138
3192
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
3139
3193
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
3140
3194
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
3141
3195
  category: item.news.category !== undefined ? item.news.category : undefined,
3142
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
3196
+ topics: item.news.topics !== undefined ? {
3197
+ set: item.news.topics
3198
+ } : undefined,
3143
3199
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
3144
3200
  },
3145
3201
  }
@@ -4020,8 +4076,12 @@ export const Position = {
4020
4076
  note: item.note !== undefined ? item.note : undefined,
4021
4077
  status: item.status !== undefined ? item.status : undefined,
4022
4078
  fee: item.fee !== undefined ? item.fee : undefined,
4023
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
4024
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
4079
+ dependsOn: item.dependsOn !== undefined ? {
4080
+ set: item.dependsOn
4081
+ } : undefined,
4082
+ dependedOnBy: item.dependedOnBy !== undefined ? {
4083
+ set: item.dependedOnBy
4084
+ } : undefined,
4025
4085
  },
4026
4086
  }))
4027
4087
  } : undefined,
@@ -4128,8 +4188,12 @@ export const Position = {
4128
4188
  note: item.note !== undefined ? item.note : undefined,
4129
4189
  status: item.status !== undefined ? item.status : undefined,
4130
4190
  fee: item.fee !== undefined ? item.fee : undefined,
4131
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
4132
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
4191
+ dependsOn: item.dependsOn !== undefined ? {
4192
+ set: item.dependsOn
4193
+ } : undefined,
4194
+ dependedOnBy: item.dependedOnBy !== undefined ? {
4195
+ set: item.dependedOnBy
4196
+ } : undefined,
4133
4197
  },
4134
4198
  }))
4135
4199
  } : undefined,
@@ -4348,8 +4412,12 @@ export const Position = {
4348
4412
  note: item.action.note !== undefined ? item.action.note : undefined,
4349
4413
  status: item.action.status !== undefined ? item.action.status : undefined,
4350
4414
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
4351
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
4352
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
4415
+ dependsOn: item.action.dependsOn !== undefined ? {
4416
+ set: item.action.dependsOn
4417
+ } : undefined,
4418
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
4419
+ set: item.action.dependedOnBy
4420
+ } : undefined,
4353
4421
  },
4354
4422
  }
4355
4423
  } : undefined,
@@ -4799,8 +4867,12 @@ export const Position = {
4799
4867
  note: item.action.note !== undefined ? item.action.note : undefined,
4800
4868
  status: item.action.status !== undefined ? item.action.status : undefined,
4801
4869
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
4802
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
4803
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
4870
+ dependsOn: item.action.dependsOn !== undefined ? {
4871
+ set: item.action.dependsOn
4872
+ } : undefined,
4873
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
4874
+ set: item.action.dependedOnBy
4875
+ } : undefined,
4804
4876
  },
4805
4877
  }
4806
4878
  } : undefined,
@@ -5210,8 +5282,12 @@ export const Position = {
5210
5282
  note: item.note !== undefined ? item.note : undefined,
5211
5283
  status: item.status !== undefined ? item.status : undefined,
5212
5284
  fee: item.fee !== undefined ? item.fee : undefined,
5213
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
5214
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
5285
+ dependsOn: item.dependsOn !== undefined ? {
5286
+ set: item.dependsOn
5287
+ } : undefined,
5288
+ dependedOnBy: item.dependedOnBy !== undefined ? {
5289
+ set: item.dependedOnBy
5290
+ } : undefined,
5215
5291
  },
5216
5292
  }))
5217
5293
  } : undefined,
@@ -5314,8 +5390,12 @@ export const Position = {
5314
5390
  note: item.action.note !== undefined ? item.action.note : undefined,
5315
5391
  status: item.action.status !== undefined ? item.action.status : undefined,
5316
5392
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
5317
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
5318
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
5393
+ dependsOn: item.action.dependsOn !== undefined ? {
5394
+ set: item.action.dependsOn
5395
+ } : undefined,
5396
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
5397
+ set: item.action.dependedOnBy
5398
+ } : undefined,
5319
5399
  },
5320
5400
  }
5321
5401
  } : undefined,
@@ -5652,8 +5732,12 @@ export const Position = {
5652
5732
  note: item.note !== undefined ? item.note : undefined,
5653
5733
  status: item.status !== undefined ? item.status : undefined,
5654
5734
  fee: item.fee !== undefined ? item.fee : undefined,
5655
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
5656
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
5735
+ dependsOn: item.dependsOn !== undefined ? {
5736
+ set: item.dependsOn
5737
+ } : undefined,
5738
+ dependedOnBy: item.dependedOnBy !== undefined ? {
5739
+ set: item.dependedOnBy
5740
+ } : undefined,
5657
5741
  },
5658
5742
  }))
5659
5743
  } : undefined,
@@ -5783,8 +5867,12 @@ export const Position = {
5783
5867
  note: item.action.note !== undefined ? item.action.note : undefined,
5784
5868
  status: item.action.status !== undefined ? item.action.status : undefined,
5785
5869
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
5786
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
5787
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
5870
+ dependsOn: item.action.dependsOn !== undefined ? {
5871
+ set: item.action.dependsOn
5872
+ } : undefined,
5873
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
5874
+ set: item.action.dependedOnBy
5875
+ } : undefined,
5788
5876
  },
5789
5877
  }
5790
5878
  } : undefined,
@@ -5873,12 +5961,16 @@ export const Position = {
5873
5961
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
5874
5962
  url: item.news.url !== undefined ? item.news.url : undefined,
5875
5963
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
5876
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
5964
+ authors: item.news.authors !== undefined ? {
5965
+ set: item.news.authors
5966
+ } : undefined,
5877
5967
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
5878
5968
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
5879
5969
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
5880
5970
  category: item.news.category !== undefined ? item.news.category : undefined,
5881
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
5971
+ topics: item.news.topics !== undefined ? {
5972
+ set: item.news.topics
5973
+ } : undefined,
5882
5974
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
5883
5975
  },
5884
5976
  }
@@ -6274,8 +6366,12 @@ export const Position = {
6274
6366
  note: item.note !== undefined ? item.note : undefined,
6275
6367
  status: item.status !== undefined ? item.status : undefined,
6276
6368
  fee: item.fee !== undefined ? item.fee : undefined,
6277
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
6278
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
6369
+ dependsOn: item.dependsOn !== undefined ? {
6370
+ set: item.dependsOn
6371
+ } : undefined,
6372
+ dependedOnBy: item.dependedOnBy !== undefined ? {
6373
+ set: item.dependedOnBy
6374
+ } : undefined,
6279
6375
  },
6280
6376
  }))
6281
6377
  } : undefined,
@@ -6378,8 +6474,12 @@ export const Position = {
6378
6474
  note: item.action.note !== undefined ? item.action.note : undefined,
6379
6475
  status: item.action.status !== undefined ? item.action.status : undefined,
6380
6476
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
6381
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
6382
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
6477
+ dependsOn: item.action.dependsOn !== undefined ? {
6478
+ set: item.action.dependsOn
6479
+ } : undefined,
6480
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
6481
+ set: item.action.dependedOnBy
6482
+ } : undefined,
6383
6483
  },
6384
6484
  }
6385
6485
  } : undefined,
@@ -6913,8 +7013,12 @@ export const Position = {
6913
7013
  note: item.note !== undefined ? item.note : undefined,
6914
7014
  status: item.status !== undefined ? item.status : undefined,
6915
7015
  fee: item.fee !== undefined ? item.fee : undefined,
6916
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
6917
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
7016
+ dependsOn: item.dependsOn !== undefined ? {
7017
+ set: item.dependsOn
7018
+ } : undefined,
7019
+ dependedOnBy: item.dependedOnBy !== undefined ? {
7020
+ set: item.dependedOnBy
7021
+ } : undefined,
6918
7022
  },
6919
7023
  }))
6920
7024
  } : undefined,
@@ -6977,8 +7081,12 @@ export const Position = {
6977
7081
  note: item.note !== undefined ? item.note : undefined,
6978
7082
  status: item.status !== undefined ? item.status : undefined,
6979
7083
  fee: item.fee !== undefined ? item.fee : undefined,
6980
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
6981
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
7084
+ dependsOn: item.dependsOn !== undefined ? {
7085
+ set: item.dependsOn
7086
+ } : undefined,
7087
+ dependedOnBy: item.dependedOnBy !== undefined ? {
7088
+ set: item.dependedOnBy
7089
+ } : undefined,
6982
7090
  },
6983
7091
  }))
6984
7092
  } : undefined,
@@ -7261,8 +7369,12 @@ export const Position = {
7261
7369
  note: item.action.note !== undefined ? item.action.note : undefined,
7262
7370
  status: item.action.status !== undefined ? item.action.status : undefined,
7263
7371
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
7264
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
7265
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
7372
+ dependsOn: item.action.dependsOn !== undefined ? {
7373
+ set: item.action.dependsOn
7374
+ } : undefined,
7375
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
7376
+ set: item.action.dependedOnBy
7377
+ } : undefined,
7266
7378
  },
7267
7379
  }
7268
7380
  } : undefined,
@@ -7492,8 +7604,12 @@ export const Position = {
7492
7604
  note: item.action.note !== undefined ? item.action.note : undefined,
7493
7605
  status: item.action.status !== undefined ? item.action.status : undefined,
7494
7606
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
7495
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
7496
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
7607
+ dependsOn: item.action.dependsOn !== undefined ? {
7608
+ set: item.action.dependsOn
7609
+ } : undefined,
7610
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
7611
+ set: item.action.dependedOnBy
7612
+ } : undefined,
7497
7613
  },
7498
7614
  }
7499
7615
  } : undefined,
@@ -7643,12 +7759,16 @@ export const Position = {
7643
7759
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
7644
7760
  url: item.news.url !== undefined ? item.news.url : undefined,
7645
7761
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
7646
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
7762
+ authors: item.news.authors !== undefined ? {
7763
+ set: item.news.authors
7764
+ } : undefined,
7647
7765
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
7648
7766
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
7649
7767
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
7650
7768
  category: item.news.category !== undefined ? item.news.category : undefined,
7651
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
7769
+ topics: item.news.topics !== undefined ? {
7770
+ set: item.news.topics
7771
+ } : undefined,
7652
7772
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
7653
7773
  },
7654
7774
  }
@@ -7680,12 +7800,16 @@ export const Position = {
7680
7800
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
7681
7801
  url: item.news.url !== undefined ? item.news.url : undefined,
7682
7802
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
7683
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
7803
+ authors: item.news.authors !== undefined ? {
7804
+ set: item.news.authors
7805
+ } : undefined,
7684
7806
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
7685
7807
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
7686
7808
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
7687
7809
  category: item.news.category !== undefined ? item.news.category : undefined,
7688
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
7810
+ topics: item.news.topics !== undefined ? {
7811
+ set: item.news.topics
7812
+ } : undefined,
7689
7813
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
7690
7814
  },
7691
7815
  }
@@ -8208,8 +8332,12 @@ export const Position = {
8208
8332
  note: item.note !== undefined ? item.note : undefined,
8209
8333
  status: item.status !== undefined ? item.status : undefined,
8210
8334
  fee: item.fee !== undefined ? item.fee : undefined,
8211
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
8212
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
8335
+ dependsOn: item.dependsOn !== undefined ? {
8336
+ set: item.dependsOn
8337
+ } : undefined,
8338
+ dependedOnBy: item.dependedOnBy !== undefined ? {
8339
+ set: item.dependedOnBy
8340
+ } : undefined,
8213
8341
  },
8214
8342
  }))
8215
8343
  } : undefined,
@@ -8339,8 +8467,12 @@ export const Position = {
8339
8467
  note: item.action.note !== undefined ? item.action.note : undefined,
8340
8468
  status: item.action.status !== undefined ? item.action.status : undefined,
8341
8469
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
8342
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
8343
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
8470
+ dependsOn: item.action.dependsOn !== undefined ? {
8471
+ set: item.action.dependsOn
8472
+ } : undefined,
8473
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
8474
+ set: item.action.dependedOnBy
8475
+ } : undefined,
8344
8476
  },
8345
8477
  }
8346
8478
  } : undefined,
@@ -8429,12 +8561,16 @@ export const Position = {
8429
8561
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
8430
8562
  url: item.news.url !== undefined ? item.news.url : undefined,
8431
8563
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
8432
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
8564
+ authors: item.news.authors !== undefined ? {
8565
+ set: item.news.authors
8566
+ } : undefined,
8433
8567
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
8434
8568
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
8435
8569
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
8436
8570
  category: item.news.category !== undefined ? item.news.category : undefined,
8437
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
8571
+ topics: item.news.topics !== undefined ? {
8572
+ set: item.news.topics
8573
+ } : undefined,
8438
8574
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
8439
8575
  },
8440
8576
  }
@@ -9315,8 +9451,12 @@ export const Position = {
9315
9451
  note: item.note !== undefined ? item.note : undefined,
9316
9452
  status: item.status !== undefined ? item.status : undefined,
9317
9453
  fee: item.fee !== undefined ? item.fee : undefined,
9318
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
9319
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
9454
+ dependsOn: item.dependsOn !== undefined ? {
9455
+ set: item.dependsOn
9456
+ } : undefined,
9457
+ dependedOnBy: item.dependedOnBy !== undefined ? {
9458
+ set: item.dependedOnBy
9459
+ } : undefined,
9320
9460
  },
9321
9461
  }))
9322
9462
  } : undefined,
@@ -9423,8 +9563,12 @@ export const Position = {
9423
9563
  note: item.note !== undefined ? item.note : undefined,
9424
9564
  status: item.status !== undefined ? item.status : undefined,
9425
9565
  fee: item.fee !== undefined ? item.fee : undefined,
9426
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
9427
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
9566
+ dependsOn: item.dependsOn !== undefined ? {
9567
+ set: item.dependsOn
9568
+ } : undefined,
9569
+ dependedOnBy: item.dependedOnBy !== undefined ? {
9570
+ set: item.dependedOnBy
9571
+ } : undefined,
9428
9572
  },
9429
9573
  }))
9430
9574
  } : undefined,
@@ -9643,8 +9787,12 @@ export const Position = {
9643
9787
  note: item.action.note !== undefined ? item.action.note : undefined,
9644
9788
  status: item.action.status !== undefined ? item.action.status : undefined,
9645
9789
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
9646
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
9647
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
9790
+ dependsOn: item.action.dependsOn !== undefined ? {
9791
+ set: item.action.dependsOn
9792
+ } : undefined,
9793
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
9794
+ set: item.action.dependedOnBy
9795
+ } : undefined,
9648
9796
  },
9649
9797
  }
9650
9798
  } : undefined,
@@ -10094,8 +10242,12 @@ export const Position = {
10094
10242
  note: item.action.note !== undefined ? item.action.note : undefined,
10095
10243
  status: item.action.status !== undefined ? item.action.status : undefined,
10096
10244
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
10097
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
10098
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
10245
+ dependsOn: item.action.dependsOn !== undefined ? {
10246
+ set: item.action.dependsOn
10247
+ } : undefined,
10248
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
10249
+ set: item.action.dependedOnBy
10250
+ } : undefined,
10099
10251
  },
10100
10252
  }
10101
10253
  } : undefined,
@@ -10505,8 +10657,12 @@ export const Position = {
10505
10657
  note: item.note !== undefined ? item.note : undefined,
10506
10658
  status: item.status !== undefined ? item.status : undefined,
10507
10659
  fee: item.fee !== undefined ? item.fee : undefined,
10508
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
10509
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
10660
+ dependsOn: item.dependsOn !== undefined ? {
10661
+ set: item.dependsOn
10662
+ } : undefined,
10663
+ dependedOnBy: item.dependedOnBy !== undefined ? {
10664
+ set: item.dependedOnBy
10665
+ } : undefined,
10510
10666
  },
10511
10667
  }))
10512
10668
  } : undefined,
@@ -10609,8 +10765,12 @@ export const Position = {
10609
10765
  note: item.action.note !== undefined ? item.action.note : undefined,
10610
10766
  status: item.action.status !== undefined ? item.action.status : undefined,
10611
10767
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
10612
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
10613
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
10768
+ dependsOn: item.action.dependsOn !== undefined ? {
10769
+ set: item.action.dependsOn
10770
+ } : undefined,
10771
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
10772
+ set: item.action.dependedOnBy
10773
+ } : undefined,
10614
10774
  },
10615
10775
  }
10616
10776
  } : undefined,
@@ -11192,8 +11352,12 @@ export const Position = {
11192
11352
  note: item.note !== undefined ? item.note : undefined,
11193
11353
  status: item.status !== undefined ? item.status : undefined,
11194
11354
  fee: item.fee !== undefined ? item.fee : undefined,
11195
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
11196
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
11355
+ dependsOn: item.dependsOn !== undefined ? {
11356
+ set: item.dependsOn
11357
+ } : undefined,
11358
+ dependedOnBy: item.dependedOnBy !== undefined ? {
11359
+ set: item.dependedOnBy
11360
+ } : undefined,
11197
11361
  },
11198
11362
  }))
11199
11363
  } : undefined,
@@ -11256,8 +11420,12 @@ export const Position = {
11256
11420
  note: item.note !== undefined ? item.note : undefined,
11257
11421
  status: item.status !== undefined ? item.status : undefined,
11258
11422
  fee: item.fee !== undefined ? item.fee : undefined,
11259
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
11260
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
11423
+ dependsOn: item.dependsOn !== undefined ? {
11424
+ set: item.dependsOn
11425
+ } : undefined,
11426
+ dependedOnBy: item.dependedOnBy !== undefined ? {
11427
+ set: item.dependedOnBy
11428
+ } : undefined,
11261
11429
  },
11262
11430
  }))
11263
11431
  } : undefined,
@@ -11540,8 +11708,12 @@ export const Position = {
11540
11708
  note: item.action.note !== undefined ? item.action.note : undefined,
11541
11709
  status: item.action.status !== undefined ? item.action.status : undefined,
11542
11710
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
11543
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
11544
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
11711
+ dependsOn: item.action.dependsOn !== undefined ? {
11712
+ set: item.action.dependsOn
11713
+ } : undefined,
11714
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
11715
+ set: item.action.dependedOnBy
11716
+ } : undefined,
11545
11717
  },
11546
11718
  }
11547
11719
  } : undefined,
@@ -11771,8 +11943,12 @@ export const Position = {
11771
11943
  note: item.action.note !== undefined ? item.action.note : undefined,
11772
11944
  status: item.action.status !== undefined ? item.action.status : undefined,
11773
11945
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
11774
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
11775
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
11946
+ dependsOn: item.action.dependsOn !== undefined ? {
11947
+ set: item.action.dependsOn
11948
+ } : undefined,
11949
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
11950
+ set: item.action.dependedOnBy
11951
+ } : undefined,
11776
11952
  },
11777
11953
  }
11778
11954
  } : undefined,
@@ -11922,12 +12098,16 @@ export const Position = {
11922
12098
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
11923
12099
  url: item.news.url !== undefined ? item.news.url : undefined,
11924
12100
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
11925
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
12101
+ authors: item.news.authors !== undefined ? {
12102
+ set: item.news.authors
12103
+ } : undefined,
11926
12104
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
11927
12105
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
11928
12106
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
11929
12107
  category: item.news.category !== undefined ? item.news.category : undefined,
11930
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
12108
+ topics: item.news.topics !== undefined ? {
12109
+ set: item.news.topics
12110
+ } : undefined,
11931
12111
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
11932
12112
  },
11933
12113
  }
@@ -11959,12 +12139,16 @@ export const Position = {
11959
12139
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
11960
12140
  url: item.news.url !== undefined ? item.news.url : undefined,
11961
12141
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
11962
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
12142
+ authors: item.news.authors !== undefined ? {
12143
+ set: item.news.authors
12144
+ } : undefined,
11963
12145
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
11964
12146
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
11965
12147
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
11966
12148
  category: item.news.category !== undefined ? item.news.category : undefined,
11967
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
12149
+ topics: item.news.topics !== undefined ? {
12150
+ set: item.news.topics
12151
+ } : undefined,
11968
12152
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
11969
12153
  },
11970
12154
  }
@@ -12487,8 +12671,12 @@ export const Position = {
12487
12671
  note: item.note !== undefined ? item.note : undefined,
12488
12672
  status: item.status !== undefined ? item.status : undefined,
12489
12673
  fee: item.fee !== undefined ? item.fee : undefined,
12490
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
12491
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
12674
+ dependsOn: item.dependsOn !== undefined ? {
12675
+ set: item.dependsOn
12676
+ } : undefined,
12677
+ dependedOnBy: item.dependedOnBy !== undefined ? {
12678
+ set: item.dependedOnBy
12679
+ } : undefined,
12492
12680
  },
12493
12681
  }))
12494
12682
  } : undefined,
@@ -12618,8 +12806,12 @@ export const Position = {
12618
12806
  note: item.action.note !== undefined ? item.action.note : undefined,
12619
12807
  status: item.action.status !== undefined ? item.action.status : undefined,
12620
12808
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
12621
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
12622
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
12809
+ dependsOn: item.action.dependsOn !== undefined ? {
12810
+ set: item.action.dependsOn
12811
+ } : undefined,
12812
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
12813
+ set: item.action.dependedOnBy
12814
+ } : undefined,
12623
12815
  },
12624
12816
  }
12625
12817
  } : undefined,
@@ -12708,12 +12900,16 @@ export const Position = {
12708
12900
  sourceDomain: item.news.sourceDomain !== undefined ? item.news.sourceDomain : undefined,
12709
12901
  url: item.news.url !== undefined ? item.news.url : undefined,
12710
12902
  sentiment: item.news.sentiment !== undefined ? item.news.sentiment : undefined,
12711
- authors: item.news.authors !== undefined ? item.news.authors : undefined,
12903
+ authors: item.news.authors !== undefined ? {
12904
+ set: item.news.authors
12905
+ } : undefined,
12712
12906
  summary: item.news.summary !== undefined ? item.news.summary : undefined,
12713
12907
  bannerImage: item.news.bannerImage !== undefined ? item.news.bannerImage : undefined,
12714
12908
  timePublished: item.news.timePublished !== undefined ? item.news.timePublished : undefined,
12715
12909
  category: item.news.category !== undefined ? item.news.category : undefined,
12716
- topics: item.news.topics !== undefined ? item.news.topics : undefined,
12910
+ topics: item.news.topics !== undefined ? {
12911
+ set: item.news.topics
12912
+ } : undefined,
12717
12913
  logo: item.news.logo !== undefined ? item.news.logo : undefined,
12718
12914
  },
12719
12915
  }
@@ -13594,8 +13790,12 @@ export const Position = {
13594
13790
  note: item.note !== undefined ? item.note : undefined,
13595
13791
  status: item.status !== undefined ? item.status : undefined,
13596
13792
  fee: item.fee !== undefined ? item.fee : undefined,
13597
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
13598
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
13793
+ dependsOn: item.dependsOn !== undefined ? {
13794
+ set: item.dependsOn
13795
+ } : undefined,
13796
+ dependedOnBy: item.dependedOnBy !== undefined ? {
13797
+ set: item.dependedOnBy
13798
+ } : undefined,
13599
13799
  },
13600
13800
  }))
13601
13801
  } : undefined,
@@ -13702,8 +13902,12 @@ export const Position = {
13702
13902
  note: item.note !== undefined ? item.note : undefined,
13703
13903
  status: item.status !== undefined ? item.status : undefined,
13704
13904
  fee: item.fee !== undefined ? item.fee : undefined,
13705
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
13706
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
13905
+ dependsOn: item.dependsOn !== undefined ? {
13906
+ set: item.dependsOn
13907
+ } : undefined,
13908
+ dependedOnBy: item.dependedOnBy !== undefined ? {
13909
+ set: item.dependedOnBy
13910
+ } : undefined,
13707
13911
  },
13708
13912
  }))
13709
13913
  } : undefined,
@@ -13922,8 +14126,12 @@ export const Position = {
13922
14126
  note: item.action.note !== undefined ? item.action.note : undefined,
13923
14127
  status: item.action.status !== undefined ? item.action.status : undefined,
13924
14128
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
13925
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
13926
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
14129
+ dependsOn: item.action.dependsOn !== undefined ? {
14130
+ set: item.action.dependsOn
14131
+ } : undefined,
14132
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
14133
+ set: item.action.dependedOnBy
14134
+ } : undefined,
13927
14135
  },
13928
14136
  }
13929
14137
  } : undefined,
@@ -14373,8 +14581,12 @@ export const Position = {
14373
14581
  note: item.action.note !== undefined ? item.action.note : undefined,
14374
14582
  status: item.action.status !== undefined ? item.action.status : undefined,
14375
14583
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
14376
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
14377
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
14584
+ dependsOn: item.action.dependsOn !== undefined ? {
14585
+ set: item.action.dependsOn
14586
+ } : undefined,
14587
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
14588
+ set: item.action.dependedOnBy
14589
+ } : undefined,
14378
14590
  },
14379
14591
  }
14380
14592
  } : undefined,
@@ -14784,8 +14996,12 @@ export const Position = {
14784
14996
  note: item.note !== undefined ? item.note : undefined,
14785
14997
  status: item.status !== undefined ? item.status : undefined,
14786
14998
  fee: item.fee !== undefined ? item.fee : undefined,
14787
- dependsOn: item.dependsOn !== undefined ? item.dependsOn : undefined,
14788
- dependedOnBy: item.dependedOnBy !== undefined ? item.dependedOnBy : undefined,
14999
+ dependsOn: item.dependsOn !== undefined ? {
15000
+ set: item.dependsOn
15001
+ } : undefined,
15002
+ dependedOnBy: item.dependedOnBy !== undefined ? {
15003
+ set: item.dependedOnBy
15004
+ } : undefined,
14789
15005
  },
14790
15006
  }))
14791
15007
  } : undefined,
@@ -14888,8 +15104,12 @@ export const Position = {
14888
15104
  note: item.action.note !== undefined ? item.action.note : undefined,
14889
15105
  status: item.action.status !== undefined ? item.action.status : undefined,
14890
15106
  fee: item.action.fee !== undefined ? item.action.fee : undefined,
14891
- dependsOn: item.action.dependsOn !== undefined ? item.action.dependsOn : undefined,
14892
- dependedOnBy: item.action.dependedOnBy !== undefined ? item.action.dependedOnBy : undefined,
15107
+ dependsOn: item.action.dependsOn !== undefined ? {
15108
+ set: item.action.dependsOn
15109
+ } : undefined,
15110
+ dependedOnBy: item.action.dependedOnBy !== undefined ? {
15111
+ set: item.action.dependedOnBy
15112
+ } : undefined,
14893
15113
  },
14894
15114
  }
14895
15115
  } : undefined,