otomato-sdk 2.0.43 → 2.0.45

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 (85) hide show
  1. package/dist/bundle.js +46185 -0
  2. package/dist/types/examples/Core/authorizations.d.ts +1 -0
  3. package/dist/types/examples/Core/create-action.d.ts +1 -0
  4. package/dist/types/examples/Core/create-condition.d.ts +1 -0
  5. package/dist/types/examples/Core/create-trigger-list.d.ts +1 -0
  6. package/dist/types/examples/Core/create-trigger.d.ts +1 -0
  7. package/dist/types/examples/Core/delete-edge.d.ts +1 -0
  8. package/dist/types/examples/Core/login.d.ts +1 -0
  9. package/dist/types/examples/Core/rpcServices.d.ts +1 -0
  10. package/dist/types/examples/Core/sessionKeyPermissions.d.ts +1 -0
  11. package/dist/types/examples/Core/update-action.d.ts +1 -0
  12. package/dist/types/examples/Core/version.d.ts +1 -0
  13. package/dist/types/examples/DeFi/AAVE/aave-trigger-borrow-action-borrow.d.ts +1 -0
  14. package/dist/types/examples/DeFi/AAVE/aave-trigger-supply-action-supply.d.ts +1 -0
  15. package/dist/types/examples/DeFi/Compound/compound-supply-trigger-and-supply-action.d.ts +1 -0
  16. package/dist/types/examples/DeFi/Compound/compound-withdraw-trigger-and-withdraw-action.d.ts +1 -0
  17. package/dist/types/examples/DeFi/Ionic/ionic-base-supply.d.ts +1 -0
  18. package/dist/types/examples/DeFi/Ionic/ionic-base-withdraw.d.ts +1 -0
  19. package/dist/types/examples/DeFi/Ionic/ionic-trigger-lending.d.ts +1 -0
  20. package/dist/types/examples/DeFi/Ionic/ionic-trigger-withdraw.d.ts +1 -0
  21. package/dist/types/examples/DeFi/Ironclad/ironclad-trigger-borrow-action-withdraw.d.ts +1 -0
  22. package/dist/types/examples/DeFi/Ironclad/ironclad-trigger-supply-action-supply.d.ts +1 -0
  23. package/dist/types/examples/DeFi/Moonwell/moonwell-borrow-trigger-deposit-action.d.ts +1 -0
  24. package/dist/types/examples/DeFi/Moonwell/moonwell-borrow.d.ts +1 -0
  25. package/dist/types/examples/DeFi/Moonwell/moonwell-repay.d.ts +1 -0
  26. package/dist/types/examples/DeFi/Moonwell/moonwell-supply-trigger-withdraw-action.d.ts +1 -0
  27. package/dist/types/examples/DeFi/Odos/create-odos-swap.d.ts +1 -0
  28. package/dist/types/examples/UseCases/FearAndGreedDCA/fear-and-greed-dca.d.ts +4 -0
  29. package/dist/types/examples/UseCases/LendingAggregator/deprecated/lending-aggregator-base.d.ts +1 -0
  30. package/dist/types/examples/UseCases/LendingAggregator/deprecated/lending-aggregator-mode.d.ts +1 -0
  31. package/dist/types/examples/UseCases/LendingAggregator/deprecated/lending-aggregator-v2-mode-usdc.d.ts +4 -0
  32. package/dist/types/examples/UseCases/LendingAggregator/deprecated/stop-lending-aggregator-mode-usdc.d.ts +7 -0
  33. package/dist/types/examples/UseCases/LendingAggregator/instances/lending-aggregator-2-protocols-base.d.ts +4 -0
  34. package/dist/types/examples/UseCases/LendingAggregator/lending-aggregator-2-protocols.d.ts +4 -0
  35. package/dist/types/examples/UseCases/LendingAggregator/lending-aggregator-3-protocols.d.ts +4 -0
  36. package/dist/types/examples/UseCases/LendingAggregator/stop-lending-aggregator-2-protocols.d.ts +7 -0
  37. package/dist/types/examples/Workflow/create-workflow-with-condition-and-split.d.ts +1 -0
  38. package/dist/types/examples/Workflow/create-workflow-with-condition.d.ts +1 -0
  39. package/dist/types/examples/Workflow/create-workflow-with-external-variable-condition.d.ts +1 -0
  40. package/dist/types/examples/Workflow/create-workflow-with-notes.d.ts +1 -0
  41. package/dist/types/examples/Workflow/create-workflow-with-split.d.ts +1 -0
  42. package/dist/types/examples/Workflow/create-workflow-with-variables.d.ts +1 -0
  43. package/dist/types/examples/Workflow/create-workflow.d.ts +1 -0
  44. package/dist/types/examples/Workflow/delete-workflow.d.ts +1 -0
  45. package/dist/types/examples/Workflow/get-all-workflows-from-user.d.ts +1 -0
  46. package/dist/types/examples/Workflow/load-workflow.d.ts +1 -0
  47. package/dist/types/examples/Workflow/workflow-templates.d.ts +1 -0
  48. package/dist/types/examples/test.d.ts +7 -0
  49. package/dist/types/src/constants/Blocks.d.ts +2006 -0
  50. package/dist/types/src/constants/WorkflowTemplates.d.ts +43 -0
  51. package/dist/types/src/constants/chains.d.ts +6 -0
  52. package/dist/types/src/constants/logicOperators.d.ts +4 -0
  53. package/dist/types/src/constants/tokens.d.ts +26 -0
  54. package/dist/types/src/constants/version.d.ts +2 -0
  55. package/dist/types/src/index.d.ts +23 -0
  56. package/dist/types/src/models/Action.d.ts +26 -0
  57. package/dist/types/src/models/Authorization.d.ts +15 -0
  58. package/dist/types/src/models/Edge.d.ts +25 -0
  59. package/dist/types/src/models/Node.d.ts +82 -0
  60. package/dist/types/src/models/Note.d.ts +18 -0
  61. package/dist/types/src/models/Parameter.d.ts +9 -0
  62. package/dist/types/src/models/SessionKeyPermission.d.ts +6 -0
  63. package/dist/types/src/models/Trigger.d.ts +41 -0
  64. package/dist/types/src/models/Workflow.d.ts +116 -0
  65. package/dist/types/src/models/conditions/ConditionCheck.d.ts +11 -0
  66. package/dist/types/src/models/conditions/ConditionGroup.d.ts +15 -0
  67. package/dist/types/src/services/ApiService.d.ts +19 -0
  68. package/dist/types/src/services/RpcServices.d.ts +14 -0
  69. package/dist/types/src/utils/WorkflowNodePositioner.d.ts +34 -0
  70. package/dist/types/src/utils/addressBalance.d.ts +21 -0
  71. package/dist/types/src/utils/externalVariables.d.ts +14 -0
  72. package/dist/types/src/utils/helpers.d.ts +25 -0
  73. package/dist/types/src/utils/typeValidator.d.ts +18 -0
  74. package/dist/types/test/action.spec.d.ts +1 -0
  75. package/dist/types/test/addressBalance.spec.d.ts +1 -0
  76. package/dist/types/test/e2e/e2e.spec.d.ts +1 -0
  77. package/dist/types/test/edge.spec.d.ts +1 -0
  78. package/dist/types/test/externalVariables.spec.d.ts +1 -0
  79. package/dist/types/test/helpers.spec.d.ts +1 -0
  80. package/dist/types/test/node.spec.d.ts +1 -0
  81. package/dist/types/test/rpcServices.spec.d.ts +1 -0
  82. package/dist/types/test/trigger.spec.d.ts +1 -0
  83. package/dist/types/test/typeValidator.spec.d.ts +1 -0
  84. package/dist/types/test/workflow.spec.d.ts +1 -0
  85. package/package.json +2 -2

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.