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.
- package/dist/bundle.js +46185 -0
- package/dist/types/examples/Core/authorizations.d.ts +1 -0
- package/dist/types/examples/Core/create-action.d.ts +1 -0
- package/dist/types/examples/Core/create-condition.d.ts +1 -0
- package/dist/types/examples/Core/create-trigger-list.d.ts +1 -0
- package/dist/types/examples/Core/create-trigger.d.ts +1 -0
- package/dist/types/examples/Core/delete-edge.d.ts +1 -0
- package/dist/types/examples/Core/login.d.ts +1 -0
- package/dist/types/examples/Core/rpcServices.d.ts +1 -0
- package/dist/types/examples/Core/sessionKeyPermissions.d.ts +1 -0
- package/dist/types/examples/Core/update-action.d.ts +1 -0
- package/dist/types/examples/Core/version.d.ts +1 -0
- package/dist/types/examples/DeFi/AAVE/aave-trigger-borrow-action-borrow.d.ts +1 -0
- package/dist/types/examples/DeFi/AAVE/aave-trigger-supply-action-supply.d.ts +1 -0
- package/dist/types/examples/DeFi/Compound/compound-supply-trigger-and-supply-action.d.ts +1 -0
- package/dist/types/examples/DeFi/Compound/compound-withdraw-trigger-and-withdraw-action.d.ts +1 -0
- package/dist/types/examples/DeFi/Ionic/ionic-base-supply.d.ts +1 -0
- package/dist/types/examples/DeFi/Ionic/ionic-base-withdraw.d.ts +1 -0
- package/dist/types/examples/DeFi/Ionic/ionic-trigger-lending.d.ts +1 -0
- package/dist/types/examples/DeFi/Ionic/ionic-trigger-withdraw.d.ts +1 -0
- package/dist/types/examples/DeFi/Ironclad/ironclad-trigger-borrow-action-withdraw.d.ts +1 -0
- package/dist/types/examples/DeFi/Ironclad/ironclad-trigger-supply-action-supply.d.ts +1 -0
- package/dist/types/examples/DeFi/Moonwell/moonwell-borrow-trigger-deposit-action.d.ts +1 -0
- package/dist/types/examples/DeFi/Moonwell/moonwell-borrow.d.ts +1 -0
- package/dist/types/examples/DeFi/Moonwell/moonwell-repay.d.ts +1 -0
- package/dist/types/examples/DeFi/Moonwell/moonwell-supply-trigger-withdraw-action.d.ts +1 -0
- package/dist/types/examples/DeFi/Odos/create-odos-swap.d.ts +1 -0
- package/dist/types/examples/UseCases/FearAndGreedDCA/fear-and-greed-dca.d.ts +4 -0
- package/dist/types/examples/UseCases/LendingAggregator/deprecated/lending-aggregator-base.d.ts +1 -0
- package/dist/types/examples/UseCases/LendingAggregator/deprecated/lending-aggregator-mode.d.ts +1 -0
- package/dist/types/examples/UseCases/LendingAggregator/deprecated/lending-aggregator-v2-mode-usdc.d.ts +4 -0
- package/dist/types/examples/UseCases/LendingAggregator/deprecated/stop-lending-aggregator-mode-usdc.d.ts +7 -0
- package/dist/types/examples/UseCases/LendingAggregator/instances/lending-aggregator-2-protocols-base.d.ts +4 -0
- package/dist/types/examples/UseCases/LendingAggregator/lending-aggregator-2-protocols.d.ts +4 -0
- package/dist/types/examples/UseCases/LendingAggregator/lending-aggregator-3-protocols.d.ts +4 -0
- package/dist/types/examples/UseCases/LendingAggregator/stop-lending-aggregator-2-protocols.d.ts +7 -0
- package/dist/types/examples/Workflow/create-workflow-with-condition-and-split.d.ts +1 -0
- package/dist/types/examples/Workflow/create-workflow-with-condition.d.ts +1 -0
- package/dist/types/examples/Workflow/create-workflow-with-external-variable-condition.d.ts +1 -0
- package/dist/types/examples/Workflow/create-workflow-with-notes.d.ts +1 -0
- package/dist/types/examples/Workflow/create-workflow-with-split.d.ts +1 -0
- package/dist/types/examples/Workflow/create-workflow-with-variables.d.ts +1 -0
- package/dist/types/examples/Workflow/create-workflow.d.ts +1 -0
- package/dist/types/examples/Workflow/delete-workflow.d.ts +1 -0
- package/dist/types/examples/Workflow/get-all-workflows-from-user.d.ts +1 -0
- package/dist/types/examples/Workflow/load-workflow.d.ts +1 -0
- package/dist/types/examples/Workflow/workflow-templates.d.ts +1 -0
- package/dist/types/examples/test.d.ts +7 -0
- package/dist/types/src/constants/Blocks.d.ts +2006 -0
- package/dist/types/src/constants/WorkflowTemplates.d.ts +43 -0
- package/dist/types/src/constants/chains.d.ts +6 -0
- package/dist/types/src/constants/logicOperators.d.ts +4 -0
- package/dist/types/src/constants/tokens.d.ts +26 -0
- package/dist/types/src/constants/version.d.ts +2 -0
- package/dist/types/src/index.d.ts +23 -0
- package/dist/types/src/models/Action.d.ts +26 -0
- package/dist/types/src/models/Authorization.d.ts +15 -0
- package/dist/types/src/models/Edge.d.ts +25 -0
- package/dist/types/src/models/Node.d.ts +82 -0
- package/dist/types/src/models/Note.d.ts +18 -0
- package/dist/types/src/models/Parameter.d.ts +9 -0
- package/dist/types/src/models/SessionKeyPermission.d.ts +6 -0
- package/dist/types/src/models/Trigger.d.ts +41 -0
- package/dist/types/src/models/Workflow.d.ts +116 -0
- package/dist/types/src/models/conditions/ConditionCheck.d.ts +11 -0
- package/dist/types/src/models/conditions/ConditionGroup.d.ts +15 -0
- package/dist/types/src/services/ApiService.d.ts +19 -0
- package/dist/types/src/services/RpcServices.d.ts +14 -0
- package/dist/types/src/utils/WorkflowNodePositioner.d.ts +34 -0
- package/dist/types/src/utils/addressBalance.d.ts +21 -0
- package/dist/types/src/utils/externalVariables.d.ts +14 -0
- package/dist/types/src/utils/helpers.d.ts +25 -0
- package/dist/types/src/utils/typeValidator.d.ts +18 -0
- package/dist/types/test/action.spec.d.ts +1 -0
- package/dist/types/test/addressBalance.spec.d.ts +1 -0
- package/dist/types/test/e2e/e2e.spec.d.ts +1 -0
- package/dist/types/test/edge.spec.d.ts +1 -0
- package/dist/types/test/externalVariables.spec.d.ts +1 -0
- package/dist/types/test/helpers.spec.d.ts +1 -0
- package/dist/types/test/node.spec.d.ts +1 -0
- package/dist/types/test/rpcServices.spec.d.ts +1 -0
- package/dist/types/test/trigger.spec.d.ts +1 -0
- package/dist/types/test/typeValidator.spec.d.ts +1 -0
- package/dist/types/test/workflow.spec.d.ts +1 -0
- 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.