@elyx-code/project-logic-tree 0.0.1
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/README.md +2 -0
- package/dist/definitions/built-in-base-entities/conditions/comparison/index.d.ts +6 -0
- package/dist/definitions/built-in-base-entities/conditions/comparison/more-than-or-equal.d.ts +7 -0
- package/dist/definitions/built-in-base-entities/conditions/index.d.ts +7 -0
- package/dist/definitions/built-in-base-entities/conditions/standalone/index.d.ts +6 -0
- package/dist/definitions/built-in-base-entities/conditions/standalone/not-empty.d.ts +5 -0
- package/dist/definitions/built-in-base-entities/entities/cron/entity.d.ts +7 -0
- package/dist/definitions/built-in-base-entities/entities/cron/index.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/entities/cron/trigger.d.ts +4 -0
- package/dist/definitions/built-in-base-entities/entities/endpoint.d.ts +52 -0
- package/dist/definitions/built-in-base-entities/entities/execution/index.d.ts +5 -0
- package/dist/definitions/built-in-base-entities/entities/index.d.ts +6 -0
- package/dist/definitions/built-in-base-entities/entities/other/index.d.ts +1 -0
- package/dist/definitions/built-in-base-entities/entities/other/key-value-param.d.ts +11 -0
- package/dist/definitions/built-in-base-entities/entities/persisted/entity.d.ts +3 -0
- package/dist/definitions/built-in-base-entities/entities/persisted/index.d.ts +3 -0
- package/dist/definitions/built-in-base-entities/entities/persisted/methods/delete.d.ts +4 -0
- package/dist/definitions/built-in-base-entities/entities/persisted/methods/index.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/entities/persisted/methods/soft-delete.d.ts +4 -0
- package/dist/definitions/built-in-base-entities/entities/persisted/properties.d.ts +25 -0
- package/dist/definitions/built-in-base-entities/entities/relational-database/entity.d.ts +19 -0
- package/dist/definitions/built-in-base-entities/entities/relational-database/index.d.ts +1 -0
- package/dist/definitions/built-in-base-entities/global-events/index.d.ts +6 -0
- package/dist/definitions/built-in-base-entities/global-events/project-published.d.ts +3 -0
- package/dist/definitions/built-in-base-entities/ids.d.ts +118 -0
- package/dist/definitions/built-in-base-entities/index.d.ts +8 -0
- package/dist/definitions/built-in-base-entities/loops/index.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/loops/list.d.ts +9 -0
- package/dist/definitions/built-in-base-entities/loops/manual-flow.d.ts +7 -0
- package/dist/definitions/built-in-base-entities/operations/custom-entity/create-new.d.ts +17 -0
- package/dist/definitions/built-in-base-entities/operations/custom-entity/index.d.ts +7 -0
- package/dist/definitions/built-in-base-entities/operations/custom-entity/validate-data.d.ts +23 -0
- package/dist/definitions/built-in-base-entities/operations/function-execution/index.d.ts +8 -0
- package/dist/definitions/built-in-base-entities/operations/function-execution/parallel.d.ts +21 -0
- package/dist/definitions/built-in-base-entities/operations/function-execution/sequential.d.ts +21 -0
- package/dist/definitions/built-in-base-entities/operations/function-execution/wait.d.ts +15 -0
- package/dist/definitions/built-in-base-entities/operations/http-request/http-request.d.ts +45 -0
- package/dist/definitions/built-in-base-entities/operations/http-request/index.d.ts +6 -0
- package/dist/definitions/built-in-base-entities/operations/index.d.ts +11 -0
- package/dist/definitions/built-in-base-entities/operations/list/append.d.ts +25 -0
- package/dist/definitions/built-in-base-entities/operations/list/get-last.d.ts +20 -0
- package/dist/definitions/built-in-base-entities/operations/list/index.d.ts +9 -0
- package/dist/definitions/built-in-base-entities/operations/list/join-lists.d.ts +25 -0
- package/dist/definitions/built-in-base-entities/operations/list/split-list.d.ts +29 -0
- package/dist/definitions/built-in-base-entities/operations/number/index.d.ts +6 -0
- package/dist/definitions/built-in-base-entities/operations/number/number-addition.d.ts +25 -0
- package/dist/definitions/built-in-base-entities/operations/string/index.d.ts +6 -0
- package/dist/definitions/built-in-base-entities/operations/string/join-string.d.ts +25 -0
- package/dist/definitions/built-in-base-entities/primitive-entities.d.ts +15 -0
- package/dist/definitions/built-in-base-entities/value-descriptors/index.d.ts +1 -0
- package/dist/definitions/built-in-base-entities/value-descriptors/process-output.d.ts +5 -0
- package/dist/definitions/index.d.ts +4 -0
- package/dist/definitions/logic/custom-entity-to-zod-schema.d.ts +4 -0
- package/dist/definitions/logic/index.d.ts +2 -0
- package/dist/definitions/logic/value-autogeneration/boolean.d.ts +3 -0
- package/dist/definitions/logic/value-autogeneration/date.d.ts +6 -0
- package/dist/definitions/logic/value-autogeneration/index.d.ts +6 -0
- package/dist/definitions/logic/value-autogeneration/number.d.ts +6 -0
- package/dist/definitions/logic/value-autogeneration/text.d.ts +6 -0
- package/dist/definitions/logic/value-autogeneration/uuid.d.ts +1 -0
- package/dist/definitions/logic/value-autogeneration/value-autogeneration.d.ts +3 -0
- package/dist/definitions/mock/default-mock/entities/alt-relational-database/entity.d.ts +4 -0
- package/dist/definitions/mock/default-mock/entities/alt-relational-database/properties.d.ts +15 -0
- package/dist/definitions/mock/default-mock/entities/animal.d.ts +12 -0
- package/dist/definitions/mock/default-mock/entities/back-account/account-owner-event.d.ts +26 -0
- package/dist/definitions/mock/default-mock/entities/back-account/change-owner-of-account.d.ts +16 -0
- package/dist/definitions/mock/default-mock/entities/back-account/entity.d.ts +4 -0
- package/dist/definitions/mock/default-mock/entities/back-account/properties.d.ts +10 -0
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/currency/entity.d.ts +4 -0
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/currency/properties.d.ts +22 -0
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/entity.d.ts +4 -0
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/properties.d.ts +14 -0
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/entity.d.ts +4 -0
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/ids.d.ts +15 -0
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/properties.d.ts +18 -0
- package/dist/definitions/mock/default-mock/entities/company/change-owner-of-company.d.ts +16 -0
- package/dist/definitions/mock/default-mock/entities/company/company-changed-event/company-name-exists-condition.d.ts +8 -0
- package/dist/definitions/mock/default-mock/entities/company/company-changed-event/gov-registry-func-call.d.ts +16 -0
- package/dist/definitions/mock/default-mock/entities/company/company-changed-event/index.d.ts +18 -0
- package/dist/definitions/mock/default-mock/entities/company/entity.d.ts +4 -0
- package/dist/definitions/mock/default-mock/entities/company/properties.d.ts +18 -0
- package/dist/definitions/mock/default-mock/entities/cron-job/entity.d.ts +13 -0
- package/dist/definitions/mock/default-mock/entities/default-relational-database/entity.d.ts +4 -0
- package/dist/definitions/mock/default-mock/entities/default-relational-database/properties.d.ts +15 -0
- package/dist/definitions/mock/default-mock/entities/employee.d.ts +17 -0
- package/dist/definitions/mock/default-mock/entities/get-all-bank-accounts-endpoint/entity.d.ts +4 -0
- package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/endpoint-reached-event.d.ts +39 -0
- package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/entity.d.ts +4 -0
- package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/ids.d.ts +1 -0
- package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/properties.d.ts +12 -0
- package/dist/definitions/mock/default-mock/entities/person.d.ts +12 -0
- package/dist/definitions/mock/default-mock/entities/product.d.ts +12 -0
- package/dist/definitions/mock/default-mock/entities/user.d.ts +8 -0
- package/dist/definitions/mock/default-mock/events/project-loaded/get-bitcoin-price/get-bitcoin-price-http-call.d.ts +20 -0
- package/dist/definitions/mock/default-mock/events/project-loaded/get-bitcoin-price/validate-bitcoin-price-response.d.ts +13 -0
- package/dist/definitions/mock/default-mock/events/project-loaded/ids.d.ts +4 -0
- package/dist/definitions/mock/default-mock/events/project-loaded/index.d.ts +7 -0
- package/dist/definitions/mock/default-mock/function-calls/call-execution-abort.d.ts +4 -0
- package/dist/definitions/mock/default-mock/function-calls/call-hello-world-loop.d.ts +4 -0
- package/dist/definitions/mock/default-mock/functions/abort-execution/execution-abort-call-var.d.ts +9 -0
- package/dist/definitions/mock/default-mock/functions/abort-execution/execution-var-declaration.d.ts +8 -0
- package/dist/definitions/mock/default-mock/functions/abort-execution/execution-var-instance-write.d.ts +8 -0
- package/dist/definitions/mock/default-mock/functions/abort-execution/function.d.ts +4 -0
- package/dist/definitions/mock/default-mock/functions/abort-execution/ids.d.ts +11 -0
- package/dist/definitions/mock/default-mock/functions/abort-execution/long-wait-return-statement.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/abort-execution/long-wait.d.ts +9 -0
- package/dist/definitions/mock/default-mock/functions/abort-execution/second-wait.d.ts +8 -0
- package/dist/definitions/mock/default-mock/functions/abort-execution/small-wait-return-statement.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/abort-execution/small-wait.d.ts +8 -0
- package/dist/definitions/mock/default-mock/functions/check-gov-registry/gov-http-call.d.ts +35 -0
- package/dist/definitions/mock/default-mock/functions/check-gov-registry/index.d.ts +8 -0
- package/dist/definitions/mock/default-mock/functions/check-gov-registry/join-query-string-operation.d.ts +19 -0
- package/dist/definitions/mock/default-mock/functions/check-gov-registry/return-statement.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/check-gov-registry/shared-arg-map.d.ts +5 -0
- package/dist/definitions/mock/default-mock/functions/company-dto/employee-dto-map-loop/body.d.ts +24 -0
- package/dist/definitions/mock/default-mock/functions/company-dto/employee-dto-map-loop/loop.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/company-dto/function.d.ts +8 -0
- package/dist/definitions/mock/default-mock/functions/company-dto/ids.d.ts +28 -0
- package/dist/definitions/mock/default-mock/functions/company-dto/return-statement.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping/bank-account-variable.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping/company/outputs.d.ts +12 -0
- package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping/company/variable.d.ts +8 -0
- package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping/company-dto/inputs.d.ts +17 -0
- package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping/company-dto/variable.d.ts +7 -0
- package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping/owner-variable.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping.d.ts +0 -0
- package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/company-dto/mapping-func-call.d.ts +8 -0
- package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/company-dto/var-chain.d.ts +15 -0
- package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/exec-in-parallel-call/operation.d.ts +13 -0
- package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/exec-sequentially-call/operation.d.ts +13 -0
- package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/function-list-variable.d.ts +12 -0
- package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/function.d.ts +4 -0
- package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/ids.d.ts +14 -0
- package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/return-statement.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/return-variables-chain.d.ts +0 -0
- package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/wait.d.ts +9 -0
- package/dist/definitions/mock/default-mock/functions/create-new-company/index.d.ts +4 -0
- package/dist/definitions/mock/default-mock/functions/create-new-company/return-statement.d.ts +9 -0
- package/dist/definitions/mock/default-mock/functions/current-time.d.ts +16 -0
- package/dist/definitions/mock/default-mock/functions/do-math/ids.d.ts +2 -0
- package/dist/definitions/mock/default-mock/functions/do-math/index.d.ts +18 -0
- package/dist/definitions/mock/default-mock/functions/do-math/op-output-variables.d.ts +8 -0
- package/dist/definitions/mock/default-mock/functions/do-math/return-statement.d.ts +9 -0
- package/dist/definitions/mock/default-mock/functions/do-math/sum-operation.d.ts +12 -0
- package/dist/definitions/mock/default-mock/functions/do-math/var-to-return-statement.d.ts +7 -0
- package/dist/definitions/mock/default-mock/functions/employee-dto/function.d.ts +8 -0
- package/dist/definitions/mock/default-mock/functions/employee-dto/ids.d.ts +16 -0
- package/dist/definitions/mock/default-mock/functions/employee-dto/return-statement.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/employee-dto/variable-mapping/employee/outputs.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/employee-dto/variable-mapping/employee/variable.d.ts +8 -0
- package/dist/definitions/mock/default-mock/functions/employee-dto/variable-mapping/employee-dto/inputs.d.ts +14 -0
- package/dist/definitions/mock/default-mock/functions/employee-dto/variable-mapping/employee-dto/variable.d.ts +5 -0
- package/dist/definitions/mock/default-mock/functions/employee-dto/variable-mapping/manager-variable.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/function.d.ts +4 -0
- package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/ids.d.ts +13 -0
- package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/add-latest-text-to-final-list.d.ts +14 -0
- package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/break-statement.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/continue-statement.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/iteration-smaller-than-ten-condition.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/join-texts.d.ts +13 -0
- package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/loop-body.d.ts +12 -0
- package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/loop.d.ts +7 -0
- package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/return-statement.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/company-variable-declaration.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/company-variable-instance.d.ts +9 -0
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/create-new-bank-account.d.ts +15 -0
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/ids.d.ts +15 -0
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/index.d.ts +19 -0
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/old-bank-account-variable.d.ts +11 -0
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/person-not-empty-condition.d.ts +8 -0
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/person-not-found-return-error.d.ts +10 -0
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/search-person-by-id/found-person-output.d.ts +8 -0
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/search-person-by-id/index.d.ts +5 -0
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/search-person-by-id/person-id-input.d.ts +9 -0
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/search-person-by-id/search-query.d.ts +3 -0
- package/dist/definitions/mock/default-mock/functions/show-popup/index.d.ts +4 -0
- package/dist/definitions/mock/default-mock/ids.d.ts +3 -0
- package/dist/definitions/mock/default-mock/index.d.ts +4 -0
- package/dist/definitions/mock/default-mock/installed-projects/mock-third-party-project.d.ts +7 -0
- package/dist/definitions/mock/default-mock/loops/iterate-over-list/body.d.ts +8 -0
- package/dist/definitions/mock/default-mock/loops/iterate-over-list/ids.d.ts +3 -0
- package/dist/definitions/mock/default-mock/loops/iterate-over-list/loop.d.ts +6 -0
- package/dist/definitions/mock/default-mock/operations/random-wait.d.ts +7 -0
- package/dist/definitions/mock/default-mock/searches/find-companies-with-multiple-employees-and-bank-account.d.ts +10 -0
- package/dist/definitions/mock/default-mock/variables/global-data-mapping/company-employee/company-employee.d.ts +6 -0
- package/dist/definitions/mock/default-mock/variables/global-data-mapping/company-employee/outputs.d.ts +10 -0
- package/dist/definitions/mock/default-mock/variables/global-data-mapping/employee-dto/company-employee-mapped-DTO.d.ts +4 -0
- package/dist/definitions/mock/default-mock/variables/global-data-mapping/employee-dto/inputs.d.ts +17 -0
- package/dist/definitions/mock/default-mock/variables/global-data-mapping/global-user-instance.d.ts +6 -0
- package/dist/definitions/mock/default-mock/variables/global-data-mapping/ids.d.ts +15 -0
- package/dist/definitions/mock/default-mock/variables/global-data-mapping/manager-variable.d.ts +9 -0
- package/dist/definitions/mock/default-mock/variables/isTestEnv.d.ts +9 -0
- package/dist/definitions/mock/default-mock/variables/lastTimestamp.d.ts +7 -0
- package/dist/definitions/mock/default-mock/variables/user.d.ts +6 -0
- package/dist/definitions/mock/index.d.ts +3 -0
- package/dist/definitions/types/autogeneration.d.ts +101 -0
- package/dist/definitions/types/base-entity.d.ts +79 -0
- package/dist/definitions/types/base.d.ts +177 -0
- package/dist/definitions/types/condition.d.ts +61 -0
- package/dist/definitions/types/custom-entity.d.ts +31 -0
- package/dist/definitions/types/data-type.d.ts +50 -0
- package/dist/definitions/types/event.d.ts +49 -0
- package/dist/definitions/types/function.d.ts +180 -0
- package/dist/definitions/types/generic-reference.d.ts +95 -0
- package/dist/definitions/types/index.d.ts +201 -0
- package/dist/definitions/types/input-output-map.d.ts +135 -0
- package/dist/definitions/types/loop.d.ts +41 -0
- package/dist/definitions/types/operation.d.ts +92 -0
- package/dist/definitions/types/primitives.d.ts +199 -0
- package/dist/definitions/types/project.d.ts +84 -0
- package/dist/definitions/types/property.d.ts +35 -0
- package/dist/definitions/types/return.d.ts +109 -0
- package/dist/definitions/types/search.d.ts +62 -0
- package/dist/definitions/types/variable.d.ts +128 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +38622 -0
- package/dist/index.umd.cjs +299 -0
- package/dist/tree/built-in/built-in-base-entities/index.d.ts +1 -0
- package/dist/tree/built-in/built-in-base-entities/persisted/entity.d.ts +22 -0
- package/dist/tree/built-in/built-in-base-entities/persisted/index.d.ts +1 -0
- package/dist/tree/built-in/index.d.ts +3 -0
- package/dist/tree/built-in/operations/function-execution/index.d.ts +3 -0
- package/dist/tree/built-in/operations/function-execution/parallel.d.ts +20 -0
- package/dist/tree/built-in/operations/function-execution/sequential.d.ts +22 -0
- package/dist/tree/built-in/operations/function-execution/wait.d.ts +20 -0
- package/dist/tree/built-in/operations/index.d.ts +1 -0
- package/dist/tree/built-in/operations/init.d.ts +4 -0
- package/dist/tree/built-in/primitive-entities/index.d.ts +1 -0
- package/dist/tree/index.d.ts +3 -0
- package/dist/tree/state/action-descriptor/action-descriptor.d.ts +113 -0
- package/dist/tree/state/action-descriptor/index.d.ts +1 -0
- package/dist/tree/state/action-descriptor/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/action-descriptor/validation/validation-schema.d.ts +438 -0
- package/dist/tree/state/argument-declaration/argument-declaration.d.ts +98 -0
- package/dist/tree/state/argument-declaration/index.d.ts +1 -0
- package/dist/tree/state/argument-declaration/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/argument-declaration/validation/validation-schema.d.ts +489 -0
- package/dist/tree/state/autogeneration.d.ts +823 -0
- package/dist/tree/state/base.d.ts +111 -0
- package/dist/tree/state/break-statement/break-statement.d.ts +99 -0
- package/dist/tree/state/break-statement/index.d.ts +1 -0
- package/dist/tree/state/break-statement/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/break-statement/validation/validation-schema.d.ts +1117 -0
- package/dist/tree/state/built-in-base-entity/built-in-base-entity.d.ts +82 -0
- package/dist/tree/state/built-in-base-entity/index.d.ts +1 -0
- package/dist/tree/state/built-in-base-entity/init.d.ts +4 -0
- package/dist/tree/state/built-in-base-entity/logic-validation.d.ts +4 -0
- package/dist/tree/state/built-in-base-entity/validation-schema.d.ts +256 -0
- package/dist/tree/state/condition/condition.d.ts +105 -0
- package/dist/tree/state/condition/index.d.ts +1 -0
- package/dist/tree/state/condition/init.d.ts +4 -0
- package/dist/tree/state/condition/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/condition/validation/validation-schema.d.ts +2386 -0
- package/dist/tree/state/continue-statement/continue-statement.d.ts +99 -0
- package/dist/tree/state/continue-statement/index.d.ts +1 -0
- package/dist/tree/state/continue-statement/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/continue-statement/validation/validation-schema.d.ts +1117 -0
- package/dist/tree/state/create.d.ts +8 -0
- package/dist/tree/state/custom-entity/custom-entity.d.ts +129 -0
- package/dist/tree/state/custom-entity/index.d.ts +1 -0
- package/dist/tree/state/custom-entity/validation/logic-validation.d.ts +9 -0
- package/dist/tree/state/custom-entity/validation/references.d.ts +5 -0
- package/dist/tree/state/custom-entity/validation/validation-schema.d.ts +472 -0
- package/dist/tree/state/data-type/data-type.d.ts +108 -0
- package/dist/tree/state/data-type/index.d.ts +1 -0
- package/dist/tree/state/data-type/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/data-type/validation/references.d.ts +5 -0
- package/dist/tree/state/data-type/validation/validation-schema.d.ts +12115 -0
- package/dist/tree/state/error.d.ts +133 -0
- package/dist/tree/state/function-call/function-call.d.ts +111 -0
- package/dist/tree/state/function-call/index.d.ts +1 -0
- package/dist/tree/state/function-call/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/function-call/validation/validation-schema.d.ts +2517 -0
- package/dist/tree/state/function-declaration/function-declaration.d.ts +115 -0
- package/dist/tree/state/function-declaration/index.d.ts +1 -0
- package/dist/tree/state/function-declaration/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/function-declaration/validation/validation-schema.d.ts +505 -0
- package/dist/tree/state/global-event/global-event.d.ts +105 -0
- package/dist/tree/state/global-event/index.d.ts +1 -0
- package/dist/tree/state/global-event/init.d.ts +4 -0
- package/dist/tree/state/global-event/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/global-event/validation/validation-schema.d.ts +1379 -0
- package/dist/tree/state/index.d.ts +28 -0
- package/dist/tree/state/input-map/index.d.ts +1 -0
- package/dist/tree/state/input-map/input-map.d.ts +124 -0
- package/dist/tree/state/input-map/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/input-map/validation/validation-schema.d.ts +36161 -0
- package/dist/tree/state/installed-project/index.d.ts +1 -0
- package/dist/tree/state/installed-project/installed-project.d.ts +90 -0
- package/dist/tree/state/installed-project/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/installed-project/validation/validation-schema.d.ts +238 -0
- package/dist/tree/state/internal-call/index.d.ts +1 -0
- package/dist/tree/state/internal-call/internal-call.d.ts +109 -0
- package/dist/tree/state/internal-call/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/internal-call/validation/validation-schema.d.ts +2433 -0
- package/dist/tree/state/loop/index.d.ts +1 -0
- package/dist/tree/state/loop/init.d.ts +4 -0
- package/dist/tree/state/loop/loop.d.ts +127 -0
- package/dist/tree/state/loop/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/loop/validation/validation-schema.d.ts +2523 -0
- package/dist/tree/state/operation/index.d.ts +1 -0
- package/dist/tree/state/operation/operation.d.ts +111 -0
- package/dist/tree/state/operation/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/operation/validation/validation-schema.d.ts +2553 -0
- package/dist/tree/state/output-map/index.d.ts +1 -0
- package/dist/tree/state/output-map/output-map.d.ts +111 -0
- package/dist/tree/state/output-map/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/output-map/validation/validation-schema.d.ts +1543 -0
- package/dist/tree/state/primitive-entity/index.d.ts +1 -0
- package/dist/tree/state/primitive-entity/init.d.ts +4 -0
- package/dist/tree/state/primitive-entity/primitive-entity.d.ts +62 -0
- package/dist/tree/state/primitive-entity/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/primitive-entity/validation/validation-schema.d.ts +251 -0
- package/dist/tree/state/primitive-value/index.d.ts +1 -0
- package/dist/tree/state/primitive-value/primitive-value.d.ts +91 -0
- package/dist/tree/state/primitive-value/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/primitive-value/validation/references.d.ts +5 -0
- package/dist/tree/state/primitive-value/validation/validation-schema.d.ts +11410 -0
- package/dist/tree/state/project/index.d.ts +1 -0
- package/dist/tree/state/project/project.d.ts +180 -0
- package/dist/tree/state/project/validation/validation-schema.d.ts +389 -0
- package/dist/tree/state/property/index.d.ts +1 -0
- package/dist/tree/state/property/property.d.ts +100 -0
- package/dist/tree/state/property/validation/logic-validation.d.ts +5 -0
- package/dist/tree/state/property/validation/references.d.ts +5 -0
- package/dist/tree/state/property/validation/validation-schema.d.ts +365 -0
- package/dist/tree/state/return-declaration/index.d.ts +1 -0
- package/dist/tree/state/return-declaration/return-declaration.d.ts +100 -0
- package/dist/tree/state/return-declaration/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/return-declaration/validation/validation-schema.d.ts +579 -0
- package/dist/tree/state/return-statement/index.d.ts +1 -0
- package/dist/tree/state/return-statement/return-statement.d.ts +98 -0
- package/dist/tree/state/return-statement/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/return-statement/validation/references.d.ts +8 -0
- package/dist/tree/state/return-statement/validation/validation-schema.d.ts +1217 -0
- package/dist/tree/state/search/index.d.ts +1 -0
- package/dist/tree/state/search/search.d.ts +116 -0
- package/dist/tree/state/search/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/search/validation/validation-schema.d.ts +2493 -0
- package/dist/tree/state/state.test.d.ts +1 -0
- package/dist/tree/state/store.d.ts +10 -0
- package/dist/tree/state/types/index.d.ts +7 -0
- package/dist/tree/state/types/state.d.ts +52 -0
- package/dist/tree/state/types/validation.d.ts +3591 -0
- package/dist/tree/state/validate.d.ts +122 -0
- package/dist/tree/state/validate.test.d.ts +1 -0
- package/dist/tree/state/value-descriptor/index.d.ts +1 -0
- package/dist/tree/state/value-descriptor/init.d.ts +4 -0
- package/dist/tree/state/value-descriptor/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/value-descriptor/validation/validation-schema.d.ts +191 -0
- package/dist/tree/state/value-descriptor/value-descriptor.d.ts +91 -0
- package/dist/tree/state/variable-declaration/index.d.ts +1 -0
- package/dist/tree/state/variable-declaration/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/variable-declaration/validation/validation-schema.d.ts +2687 -0
- package/dist/tree/state/variable-declaration/variable-declaration.d.ts +129 -0
- package/dist/tree/state/variable-instance/index.d.ts +1 -0
- package/dist/tree/state/variable-instance/validation/logic-validation.d.ts +4 -0
- package/dist/tree/state/variable-instance/validation/validation-schema.d.ts +2689 -0
- package/dist/tree/state/variable-instance/variable-instance.d.ts +125 -0
- package/dist/tree/utils/data-type.d.ts +51 -0
- package/dist/tree/utils/index.d.ts +158 -0
- package/dist/tree/utils/names.d.ts +32 -0
- package/dist/tree/utils/references.d.ts +4 -0
- package/dist/tree/utils/shared-data-structure-entity.d.ts +26 -0
- package/dist/tree/utils/string.d.ts +2 -0
- package/dist/tree/utils/uuid.d.ts +7 -0
- package/dist/tree/utils/variables.d.ts +5 -0
- package/package.json +65 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { CallerEntityReference, IArgumentDeclarationReference, IArgumentDeclarationTransfer, IBuiltInBaseEntityReference, IDataTypeReference, IDataTypeTransfer, IFunctionDeclarationReference, IFunctionDeclarationTransfer, IReturnDeclarationReference, IReturnDeclarationTransfer, IReturnStatementReference, IReturnStatementTransfer } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const getCompanyByIdEndpointPathParamsVariableDataTypeRef: IDataTypeReference;
|
|
4
|
+
export declare const getCompanyByIdEndpointPathParamsArgumentDeclarationRef: IArgumentDeclarationReference;
|
|
5
|
+
export declare const getCompanyByIdEndpointPathParamsVariableDataType: IDataTypeTransfer;
|
|
6
|
+
export declare const getCompanyByIdEndpointReachedEntityEventRef: IFunctionDeclarationReference;
|
|
7
|
+
export declare const getCompanyByIdEndpointRequestHeadersVariableDataTypeRef: IDataTypeReference;
|
|
8
|
+
export declare const getCompanyByIdEndpointRequestHeadersArgumentDeclarationRef: IArgumentDeclarationReference;
|
|
9
|
+
export declare const getCompanyByIdEndpointRequestHeadersVariableDataType: IDataTypeTransfer;
|
|
10
|
+
export declare const getCompanyByIdEndpointRequestHeadersArgumentDeclaration: IArgumentDeclarationTransfer;
|
|
11
|
+
export declare const getCompanyByIdEndpointReachedEntityEventRefTwo: IFunctionDeclarationReference;
|
|
12
|
+
export declare const getCompanyByIdEndpointPathParamsArgumentDeclaration: IArgumentDeclarationTransfer;
|
|
13
|
+
export declare const getCompanyByIdEndpointReachedEntityEventRefThree: IFunctionDeclarationReference;
|
|
14
|
+
export declare const getCompanyByIdEndpointRequestQueryParamsVariableDataTypeRef: IDataTypeReference;
|
|
15
|
+
export declare const getCompanyByIdEndpointRequestQueryParamsArgumentDeclarationRef: IArgumentDeclarationReference;
|
|
16
|
+
export declare const getCompanyByIdEndpointRequestQueryParamsVariableDataType: IDataTypeTransfer;
|
|
17
|
+
export declare const getCompanyByIdEndpointRequestQueryParamsArgumentDeclaration: IArgumentDeclarationTransfer;
|
|
18
|
+
export declare const getCompanyByIdEndpointReachedEntityEventRefFour: IFunctionDeclarationReference;
|
|
19
|
+
export declare const getCompanyByIdEndpointRequestBodyArgumentDeclarationRef: IArgumentDeclarationReference;
|
|
20
|
+
export declare const getCompanyByIdEndpointRequestBodyVariableDataType: IDataTypeTransfer;
|
|
21
|
+
export declare const getCompanyByIdEndpointRequestBodyArgumentDeclaration: IArgumentDeclarationTransfer;
|
|
22
|
+
export declare const getCompanyByIdEndpointResponseCodeReturnDeclarationRef: IReturnDeclarationReference;
|
|
23
|
+
export declare const getCompanyByIdEndpointResponseCodeDataType: IDataTypeTransfer;
|
|
24
|
+
export declare const getCompanyByIdEndpointReturnStatementRef: IReturnStatementReference;
|
|
25
|
+
export declare const getCompanyByIdEndpointResponseCodeReturnDeclaration: IReturnDeclarationTransfer;
|
|
26
|
+
export declare const getCompanyByIdEndpointResponseHeadersDataTypeRef: IDataTypeReference;
|
|
27
|
+
export declare const getCompanyByIdEndpointResponseHeadersReturnDeclarationRef: IReturnDeclarationReference;
|
|
28
|
+
export declare const getCompanyByIdEndpointResponseHeadersDataType: IDataTypeTransfer;
|
|
29
|
+
export declare const getCompanyByIdEndpointReturnStatementRefTwo: IReturnStatementReference;
|
|
30
|
+
export declare const getCompanyByIdEndpointResponseHeadersReturnDeclaration: IReturnDeclarationTransfer;
|
|
31
|
+
export declare const getCompanyByIdEndpointResponseBodyReturnDeclarationRef: IReturnDeclarationReference;
|
|
32
|
+
export declare const getCompanyByIdEndpointResponseBodyDataType: IDataTypeTransfer;
|
|
33
|
+
export declare const getCompanyByIdEndpointReturnStatementRefThree: IReturnStatementReference;
|
|
34
|
+
export declare const getCompanyByIdEndpointResponseBodyReturnDeclaration: IReturnDeclarationTransfer;
|
|
35
|
+
export declare const getCompanyByIdEndpointReturnStatementCallerRef: CallerEntityReference;
|
|
36
|
+
export declare const getCompanyByIdEndpointReachedEntityEventRefFive: IFunctionDeclarationReference;
|
|
37
|
+
export declare const getCompanyByIdEndpointReturnStatement: IReturnStatementTransfer;
|
|
38
|
+
export declare const endpointBuiltInBaseEntityRefFour: IBuiltInBaseEntityReference;
|
|
39
|
+
export declare const getCompanyByIdEndpointReachedEntityEvent: IFunctionDeclarationTransfer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const GET_COMPANY_BY_ID_ENDPOINT_ID = "f558fbf8-67de-4545-9804-6ae621e0b2d4";
|
package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/properties.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IBuiltInBaseEntityReference, IDataTypeReference, IDataTypeTransfer, IPropertyReference, IPropertyTransfer } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const getCompanyByIdEndpointPathPropertyDataTypeRef: IDataTypeReference;
|
|
4
|
+
export declare const getCompanyByIdEndpointPathPropertyRef: IPropertyReference;
|
|
5
|
+
export declare const getCompanyByIdEndpointPathPropertyDataType: IDataTypeTransfer;
|
|
6
|
+
export declare const getCompanyByIdEndpointBaseEntityRefTwo: IBuiltInBaseEntityReference;
|
|
7
|
+
export declare const getCompanyByIdEndpointPathProperty: IPropertyTransfer;
|
|
8
|
+
export declare const getCompanyByIdEndpointMethodPropertyDataTypeRef: IDataTypeReference;
|
|
9
|
+
export declare const getCompanyByIdEndpointMethodPropertyRef: IPropertyReference;
|
|
10
|
+
export declare const getCompanyByIdEndpointMethodPropertyDataType: IDataTypeTransfer;
|
|
11
|
+
export declare const getCompanyByIdEndpointBaseEntityRefThree: IBuiltInBaseEntityReference;
|
|
12
|
+
export declare const getCompanyByIdEndpointMethodProperty: IPropertyTransfer;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ICustomEntityReference, ICustomEntityTransfer, IDataTypeTransfer, IProjectReference, IPropertyReference, IPropertyTransfer } from '../../..';
|
|
2
|
+
|
|
3
|
+
export declare const personDateOfBirthPropertyDataTypeParentRef: IPropertyReference;
|
|
4
|
+
export declare const personDateOfBirthPropertyDataType: IDataTypeTransfer;
|
|
5
|
+
export declare const personDateOfBirthPropertyParentRef: ICustomEntityReference;
|
|
6
|
+
export declare const personDateOfBirthProperty: IPropertyTransfer;
|
|
7
|
+
export declare const personNamePropertyRef: IPropertyReference;
|
|
8
|
+
export declare const personNamePropertyDataType: IDataTypeTransfer;
|
|
9
|
+
export declare const personPrototypeRef: ICustomEntityReference;
|
|
10
|
+
export declare const personNameProperty: IPropertyTransfer;
|
|
11
|
+
export declare const mainProjectRefSix: IProjectReference;
|
|
12
|
+
export declare const personPrototype: ICustomEntityTransfer;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ICustomEntityReference, ICustomEntityTransfer, IDataTypeTransfer, IProjectReference, IPropertyReference, IPropertyTransfer, IDataTypeReference } from '../../..';
|
|
2
|
+
|
|
3
|
+
export declare const productPrototypeDatabasePropertyRef: IPropertyReference;
|
|
4
|
+
export declare const productPrototypeDatabasePropertyDataTypeDefaultValueParentRef: IDataTypeReference;
|
|
5
|
+
export declare const productPrototypeDatabasePropertyParentRef: ICustomEntityReference;
|
|
6
|
+
export declare const productPrototypeDatabaseProperty: IPropertyTransfer;
|
|
7
|
+
export declare const productNamePropertyRef: IPropertyReference;
|
|
8
|
+
export declare const productNamePropertyDataType: IDataTypeTransfer;
|
|
9
|
+
export declare const productPrototypeRef: ICustomEntityReference;
|
|
10
|
+
export declare const productNameProperty: IPropertyTransfer;
|
|
11
|
+
export declare const mainProjectRefNine: IProjectReference;
|
|
12
|
+
export declare const productPrototype: ICustomEntityTransfer;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ICustomEntityReference, ICustomEntityTransfer, IDataTypeReference, IProjectReference, IPropertyReference, IPropertyTransfer } from '../../..';
|
|
2
|
+
|
|
3
|
+
export declare const userPrototypeDatabasePropertyDataTypeRef: IDataTypeReference;
|
|
4
|
+
export declare const userPrototypeDatabasePropertyRef: IPropertyReference;
|
|
5
|
+
export declare const userPrototypeDatabasePropertyParentRef: ICustomEntityReference;
|
|
6
|
+
export declare const userPrototypeDatabaseProperty: IPropertyTransfer;
|
|
7
|
+
export declare const userPrototypeParentRef: IProjectReference;
|
|
8
|
+
export declare const userPrototype: ICustomEntityTransfer;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { IFunctionCallReference, IFunctionDeclarationReference, IGlobalEventReference, IActionOutputMapTransfer, IInputMapReference, IActionInputMapTransfer, IOperationTransfer } from '../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const getBitcoinPriceHTTPCallRefTwo: IFunctionCallReference;
|
|
4
|
+
export declare const getBitcoinPriceRequestMethodArgument: IActionInputMapTransfer;
|
|
5
|
+
export declare const getBitcoinPriceHTTPCallRefThree: IFunctionCallReference;
|
|
6
|
+
export declare const getBitcoinPriceHttpRequestURLArgumentRef: IInputMapReference;
|
|
7
|
+
export declare const getBitcoinPriceHttpRequestURLArgument: IActionInputMapTransfer;
|
|
8
|
+
export declare const getBitcoinPriceHTTPCallRefFour: IFunctionCallReference;
|
|
9
|
+
export declare const getBitcoinPriceRequestHeadersArgument: IActionInputMapTransfer;
|
|
10
|
+
export declare const getBitcoinPriceHTTPCallRefFive: IFunctionCallReference;
|
|
11
|
+
export declare const getBitcoinPriceRequestBodyArgument: IActionInputMapTransfer;
|
|
12
|
+
export declare const getBitcoinPriceHTTPCallRefSix: IFunctionCallReference;
|
|
13
|
+
export declare const getBitcoinPriceCallHeadersReturn: IActionOutputMapTransfer;
|
|
14
|
+
export declare const getBitcoinPriceHTTPCallRefSeven: IFunctionCallReference;
|
|
15
|
+
export declare const getBitcoinPriceCallCodeReturn: IActionOutputMapTransfer;
|
|
16
|
+
export declare const getBitcoinPriceHTTPCallRefEight: IFunctionCallReference;
|
|
17
|
+
export declare const getBitcoinPriceHttpCallResponseReturn: IActionOutputMapTransfer;
|
|
18
|
+
export declare const getBitcoinPriceHTTPCallRef: IFunctionDeclarationReference;
|
|
19
|
+
export declare const globalProjectEventRefTwo: IGlobalEventReference;
|
|
20
|
+
export declare const getBitcoinPriceHTTPCall: IOperationTransfer;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IActionInputMapTransfer, IActionOutputMapTransfer, IGlobalEventReference, IInputMapReference, IOperationReference, IOperationTransfer, IOutputMapReference } from '../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const validateBitcoinDataToValidateInputMapReadsValueRef: IOutputMapReference;
|
|
4
|
+
export declare const validateBitcoinDataToValidateInputMapParentRef: IOperationReference;
|
|
5
|
+
export declare const validateBitcoinDataToValidateInputMap: IActionInputMapTransfer;
|
|
6
|
+
export declare const validateBitcoinTypeToMatchInputMapDefaultValueParentRef: IInputMapReference;
|
|
7
|
+
export declare const validateBitcoinTypeToMatchInputMapParentRef: IOperationReference;
|
|
8
|
+
export declare const validateBitcoinTypeToMatchInputMap: IActionInputMapTransfer;
|
|
9
|
+
export declare const validateBitcoinValidatedEntityOutputMapParentRef: IOperationReference;
|
|
10
|
+
export declare const validateBitcoinValidatedEntityOutputMap: IActionOutputMapTransfer;
|
|
11
|
+
export declare const validateBitcoinPriceResponseOperationParentRef: IGlobalEventReference;
|
|
12
|
+
export declare const validateBitcoinPriceResponseOperationCalledByRef: IOperationReference;
|
|
13
|
+
export declare const validateBitcoinPriceResponseOperation: IOperationTransfer;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const PROJECT_LOADED_EVENT_ID = "project-loaded-event-id";
|
|
2
|
+
export declare const GET_BITCOIN_PRICE_HTTP_CALL_OPERATION_ID = "get-bitcoin-price-http-call-operation-id";
|
|
3
|
+
export declare const GET_BITCOIN_PRICE_HTTP_CALL_RESPONSE_BODY_ID = "get-bitcoin-price-http-call-response-body-id";
|
|
4
|
+
export declare const VALIDATE_BITCOIN_PRICE_RESPONSE_OPERATION_ID = "validate-bitcoin-price-response-operation-ids";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IFunctionCallTransfer, IGlobalEventReference, IGlobalEventTransfer, IProjectReference } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const globalProjectEventRef: IGlobalEventReference;
|
|
4
|
+
export declare const globalProjectEventRefThree: IGlobalEventReference;
|
|
5
|
+
export declare const eventSideEffectFunctionCall: IFunctionCallTransfer;
|
|
6
|
+
export declare const mainProjectRefFour: IProjectReference;
|
|
7
|
+
export declare const globalProjectEvent: IGlobalEventTransfer;
|
package/dist/definitions/mock/default-mock/functions/abort-execution/execution-abort-call-var.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IFunctionDeclarationReference, IInternalCallReference, IInternalCallTransfer, IOperationReference, IVariableDeclarationReference, IVariableInstanceReference, IVariableInstanceTransfer } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const abortExecFuncAbortCallVarInstanceAbortInternalCallCalledByRefOne: IVariableInstanceReference;
|
|
4
|
+
export declare const abortExecFuncAbortCallVarInstanceAbortInternalCallCalledByRefTwo: IOperationReference;
|
|
5
|
+
export declare const abortExecFuncAbortCallVarInstanceParentRef: IFunctionDeclarationReference;
|
|
6
|
+
export declare const abortExecFuncAbortCallVarInstanceDeclarationRef: IVariableDeclarationReference;
|
|
7
|
+
export declare const abortExecFuncAbortCallVarInstanceInternalCallRefOne: IInternalCallReference;
|
|
8
|
+
export declare const abortExecFuncAbortCallVarInstance: IVariableInstanceTransfer;
|
|
9
|
+
export declare const abortExecFuncAbortCallVarInstanceAbortInternalCall: IInternalCallTransfer;
|
package/dist/definitions/mock/default-mock/functions/abort-execution/execution-var-declaration.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IDataTypeReference, IDataTypeTransfer, IFunctionDeclarationReference, IVariableDeclarationReference, IVariableDeclarationTransfer } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const abortExecFuncExecVarDeclDatatypeParentRef: IVariableDeclarationReference;
|
|
4
|
+
export declare const abortExecFuncExecVarDeclDefaultValueParentRef: IDataTypeReference;
|
|
5
|
+
export declare const abortExecFuncExecVarDeclDatatype: IDataTypeTransfer;
|
|
6
|
+
export declare const abortExecFuncExecVarDeclParentRef: IFunctionDeclarationReference;
|
|
7
|
+
export declare const abortExecFuncExecVarDeclCalledByRefOne: IFunctionDeclarationReference;
|
|
8
|
+
export declare const abortExecFuncExecVarDecl: IVariableDeclarationTransfer;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IFunctionDeclarationReference, IOutputMapReference, IVariableDeclarationReference, IVariableInstanceTransfer } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const abortExecFuncExecVarWriteInstanceParentRef: IFunctionDeclarationReference;
|
|
4
|
+
export declare const abortExecFuncExecVarWriteInstanceCalledByRefOne: IVariableDeclarationReference;
|
|
5
|
+
export declare const abortExecFuncExecVarWriteInstanceCalledByRefTwo: IFunctionDeclarationReference;
|
|
6
|
+
export declare const abortExecFuncExecVarWriteInstanceDeclarationRef: IVariableDeclarationReference;
|
|
7
|
+
export declare const abortExecFuncExecVarWriteInstanceReadsValueRef: IOutputMapReference;
|
|
8
|
+
export declare const abortExecFuncExecVarWriteInstance: IVariableInstanceTransfer;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const ABORT_EXECUTION_FUNC_DECL_ID = "abort-execution-func-declaration-id";
|
|
2
|
+
export declare const ABORT_EXECUTION_FUNC_EXEC_VAR_DECL_ID = "abort-execution-func-exec-var-declaration-id";
|
|
3
|
+
export declare const ABORT_EXECUTION_FUNC_SMALL_WAIT_OP_ID = "abort-execution-func-small-wait-op-id";
|
|
4
|
+
export declare const ABORT_EXECUTION_FUNC_LONG_WAIT_OP_ID = "abort-execution-func-long-wait-op-id";
|
|
5
|
+
export declare const ABORT_EXECUTION_FUNC_LONG_WAIT_PROCESS_OUTPUT_ID = "abort-execution-func-long-wait-process-output-id";
|
|
6
|
+
export declare const ABORT_EXECUTION_FUNC_EXEC_VAR_INSTANCE_WRITE_ID = "abort-execution-func-exec-var-instance-write-id";
|
|
7
|
+
export declare const ABORT_EXECUTION_FUNC_LONG_WAIT_RETURN_STMT_ID = "abort-execution-func-long-wait-return-stmt-id";
|
|
8
|
+
export declare const ABORT_EXECUTION_FUNC_SMALL_WAIT_RETURN_STMT_ID = "abort-execution-func-small-wait-return-stmt-id";
|
|
9
|
+
export declare const ABORT_EXECUTION_FUNC_EXEC_VAR_INSTANCE_ABORT_CALL_ID = "abort-execution-func-exec-var-instance-abort-call-id";
|
|
10
|
+
export declare const ABORT_EXECUTION_FUNC_EXEC_VAR_INSTANCE_ABORT_INTERNAL_CALL_ID = "abort-execution-func-exec-var-instance-abort-internal-call-id";
|
|
11
|
+
export declare const ABORT_EXECUTION_FUNC_EXEC_SECOND_WAIT_OP_ID = "abort-execution-func-exec-second-wait-op-id";
|
package/dist/definitions/mock/default-mock/functions/abort-execution/long-wait-return-statement.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDataTypeReference, IDataTypeTransfer, IFunctionDeclarationReference, IOperationReference, IReturnDeclarationReference, IReturnDeclarationTransfer, IReturnStatementReference, IReturnStatementTransfer } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const longWaitReturnStatementReturnedHelloStringDataTypeParentRef: IReturnDeclarationReference;
|
|
4
|
+
export declare const longWaitReturnStatementReturnedHelloStringDataTypeDefaultValueParentRef: IDataTypeReference;
|
|
5
|
+
export declare const longWaitReturnStatementReturnedHelloStringDataType: IDataTypeTransfer;
|
|
6
|
+
export declare const longWaitReturnStatementReturnedHelloStringParentRef: IReturnStatementReference;
|
|
7
|
+
export declare const longWaitReturnStatementReturnedHelloString: IReturnDeclarationTransfer;
|
|
8
|
+
export declare const longWaitReturnStatementCalledByRef: IOperationReference;
|
|
9
|
+
export declare const longWaitReturnStatementParentRef: IFunctionDeclarationReference;
|
|
10
|
+
export declare const longWaitReturnStatement: IReturnStatementTransfer;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IFunctionDeclarationReference, IOperationReference, IOperationTransfer, IInputMapReference, IActionInputMapTransfer, IActionOutputMapTransfer } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const longWaitArgumentDefaultValueParentRef: IInputMapReference;
|
|
4
|
+
export declare const longWaitArgumentMapParentRef: IOperationReference;
|
|
5
|
+
export declare const longWaitArgumentMap: IActionInputMapTransfer;
|
|
6
|
+
export declare const longWaitParentRef: IFunctionDeclarationReference;
|
|
7
|
+
export declare const longWaitCalledByRefOne: IFunctionDeclarationReference;
|
|
8
|
+
export declare const longWaitProcess: IActionOutputMapTransfer;
|
|
9
|
+
export declare const longWait: IOperationTransfer;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IFunctionDeclarationReference, IOperationReference, IOperationTransfer, IInputMapReference, IActionInputMapTransfer, IInternalCallReference } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const secondWaitArgumentDefaultValueParentRef: IInputMapReference;
|
|
4
|
+
export declare const secondWaitArgumentMapParentRef: IOperationReference;
|
|
5
|
+
export declare const secondWaitArgumentMap: IActionInputMapTransfer;
|
|
6
|
+
export declare const secondWaitParentRef: IFunctionDeclarationReference;
|
|
7
|
+
export declare const secondWaitCalledByRefOne: IInternalCallReference;
|
|
8
|
+
export declare const secondWait: IOperationTransfer;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDataTypeReference, IDataTypeTransfer, IFunctionDeclarationReference, IOperationReference, IReturnDeclarationReference, IReturnDeclarationTransfer, IReturnStatementReference, IReturnStatementTransfer } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const shortWaitReturnStatementReturnedHelloStringDataTypeParentRef: IReturnDeclarationReference;
|
|
4
|
+
export declare const shortWaitReturnStatementReturnedHelloStringDataTypeDefaultValueParentRef: IDataTypeReference;
|
|
5
|
+
export declare const shortWaitReturnStatementReturnedHelloStringDataType: IDataTypeTransfer;
|
|
6
|
+
export declare const shortWaitReturnStatementReturnedHelloStringParentRef: IReturnStatementReference;
|
|
7
|
+
export declare const shortWaitReturnStatementReturnedHelloString: IReturnDeclarationTransfer;
|
|
8
|
+
export declare const shortWaitReturnStatementCalledByRef: IOperationReference;
|
|
9
|
+
export declare const shortWaitReturnStatementParentRef: IFunctionDeclarationReference;
|
|
10
|
+
export declare const shortWaitReturnStatement: IReturnStatementTransfer;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IFunctionDeclarationReference, IOperationReference, IOperationTransfer, IInputMapReference, IActionInputMapTransfer } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const smallWaitArgumentDefaultValueParentRef: IInputMapReference;
|
|
4
|
+
export declare const smallWaitArgumentMapParentRef: IOperationReference;
|
|
5
|
+
export declare const smallWaitArgumentMap: IActionInputMapTransfer;
|
|
6
|
+
export declare const smallWaitParentRef: IFunctionDeclarationReference;
|
|
7
|
+
export declare const smallWaitCalledByRefOne: IFunctionDeclarationReference;
|
|
8
|
+
export declare const smallWait: IOperationTransfer;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { IDataTypeTransfer, IFunctionCallReference, IFunctionDeclarationReference, IReturnDeclarationReference, IReturnDeclarationTransfer, IReturnStatementReference, IReturnStatementTransfer, IOutputMapReference, IActionOutputMapTransfer, IInputMapReference, IActionInputMapTransfer, IVariableDeclarationReference, IVariableDeclarationTransfer, IOperationTransfer, IOperationReference } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const isCompanyNameRegisteredVarRef: IVariableDeclarationReference;
|
|
4
|
+
export declare const isCompanyNameRegisteredVarDataType: IDataTypeTransfer;
|
|
5
|
+
export declare const httpRequestToGovCompanyRegistryRefFour: IFunctionDeclarationReference;
|
|
6
|
+
export declare const govHttpCallResponseBodyReturnRef: IOutputMapReference;
|
|
7
|
+
export declare const isCompanyNameRegisteredVarCalledByRef: IOperationReference;
|
|
8
|
+
export declare const isCompanyNameRegisteredVar: IVariableDeclarationTransfer;
|
|
9
|
+
export declare const govHttpRequestURLArgumentRef: IInputMapReference;
|
|
10
|
+
export declare const govHttpCallRefTwo: IFunctionCallReference;
|
|
11
|
+
export declare const govHttpRequestURLArgument: IActionInputMapTransfer;
|
|
12
|
+
export declare const govHttpCallRefFour: IFunctionCallReference;
|
|
13
|
+
export declare const govHttpCallResponseBodyReturn: IActionOutputMapTransfer;
|
|
14
|
+
export declare const govHttpCallRefFive: IFunctionCallReference;
|
|
15
|
+
export declare const govHttpRequestMethodArgument: IActionInputMapTransfer;
|
|
16
|
+
export declare const govHttpCallRefSix: IFunctionCallReference;
|
|
17
|
+
export declare const govHttpRequestHeadersArgument: IActionInputMapTransfer;
|
|
18
|
+
export declare const govHttpCallRefSeven: IFunctionCallReference;
|
|
19
|
+
export declare const govHttpRequestBodyArgument: IActionInputMapTransfer;
|
|
20
|
+
export declare const govHttpCallRefEight: IFunctionCallReference;
|
|
21
|
+
export declare const govHttpCallResponseHeadersReturn: IActionOutputMapTransfer;
|
|
22
|
+
export declare const govHttpCallRefNine: IFunctionCallReference;
|
|
23
|
+
export declare const govHttpCallResponseCodeReturn: IActionOutputMapTransfer;
|
|
24
|
+
export declare const httpRequestToGovCompanyRegistryRefTwo: IFunctionDeclarationReference;
|
|
25
|
+
export declare const httpRequestToGovCompanyRegistryRefSeven: IFunctionDeclarationReference;
|
|
26
|
+
export declare const httpRequestToGovCompanyRegistryRefNine: IFunctionDeclarationReference;
|
|
27
|
+
export declare const govHttpCallRefTen: IFunctionCallReference;
|
|
28
|
+
export declare const govHttpCallForwardErrorReturnDeclarationRef: IReturnDeclarationReference;
|
|
29
|
+
export declare const govHttpCallForwardErrorReturnDeclarationDataType: IDataTypeTransfer;
|
|
30
|
+
export declare const govHttpCallForwardErrorReturnStatementRef: IReturnStatementReference;
|
|
31
|
+
export declare const govHttpCallForwardErrorReturnDeclaration: IReturnDeclarationTransfer;
|
|
32
|
+
export declare const govHttpCallForwardErrorReturnStatement: IReturnStatementTransfer;
|
|
33
|
+
export declare const govHttpCallRefEleven: IFunctionCallReference;
|
|
34
|
+
export declare const govHttpCallErrorMap: IActionOutputMapTransfer;
|
|
35
|
+
export declare const govHttpCall: IOperationTransfer;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IArgumentDeclarationReference, IArgumentDeclarationTransfer, IDataTypeTransfer, IFunctionDeclarationReference, IFunctionDeclarationTransfer, IProjectReference } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const newCompanyNameVarDecl2DefRef: IArgumentDeclarationReference;
|
|
4
|
+
export declare const newCompanyNameVarDecl2DataType: IDataTypeTransfer;
|
|
5
|
+
export declare const httpRequestToGovCompanyRegistryRefThree: IFunctionDeclarationReference;
|
|
6
|
+
export declare const newCompanyNameVarDecl2Def: IArgumentDeclarationTransfer;
|
|
7
|
+
export declare const mainProjectRefEleven: IProjectReference;
|
|
8
|
+
export declare const httpRequestToGovCompanyRegistry: IFunctionDeclarationTransfer;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { IArgumentDeclarationReference, IDataTypeTransfer, IFunctionDeclarationReference, IOperationReference, IOperationTransfer, IOutputMapReference, IActionOutputMapTransfer, IInputMapReference, IActionInputMapTransfer, IVariableDeclarationReference, IVariableDeclarationTransfer } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const baseQueryStringMapRef: IInputMapReference;
|
|
4
|
+
export declare const joinQueryStringRefTwo: IOperationReference;
|
|
5
|
+
export declare const baseQueryStringMap: IActionInputMapTransfer;
|
|
6
|
+
export declare const joinQueryStringRefThree: IOperationReference;
|
|
7
|
+
export declare const httpRequestToGovCompanyRegistryRefFive: IFunctionDeclarationReference;
|
|
8
|
+
export declare const assembledQueryStringRef: IVariableDeclarationReference;
|
|
9
|
+
export declare const assembledQueryStringDataType: IDataTypeTransfer;
|
|
10
|
+
export declare const assembledQueryStringMapRef: IOutputMapReference;
|
|
11
|
+
export declare const assembledQueryStringCalledByRef: IOperationReference;
|
|
12
|
+
export declare const assembledQueryString: IVariableDeclarationTransfer;
|
|
13
|
+
export declare const assembledQueryStringMap: IActionOutputMapTransfer;
|
|
14
|
+
export declare const httpRequestToGovCompanyRegistryRefOne: IFunctionDeclarationReference;
|
|
15
|
+
export declare const httpRequestToGovCompanyRegistryRefSix: IFunctionDeclarationReference;
|
|
16
|
+
export declare const newCompanyNameVarDecl2DefRefTwo: IArgumentDeclarationReference;
|
|
17
|
+
export declare const joinQueryStringRef: IOperationReference;
|
|
18
|
+
export declare const newCompanyNameVarDecl2Map: IActionInputMapTransfer;
|
|
19
|
+
export declare const joinQueryString: IOperationTransfer;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDataTypeTransfer, IFunctionCallReference, IFunctionDeclarationReference, IReturnDeclarationReference, IReturnDeclarationTransfer, IReturnStatementReference, IReturnStatementTransfer, IVariableDeclarationReference } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const govHttpCallRef: IFunctionCallReference;
|
|
4
|
+
export declare const httpRequestToGovCompanyRegistryRefEight: IFunctionDeclarationReference;
|
|
5
|
+
export declare const govCompanyRegistryReturnStatementRef: IReturnStatementReference;
|
|
6
|
+
export declare const govCompanyRegistryReturnDclRefTwo: IVariableDeclarationReference;
|
|
7
|
+
export declare const govCompanyRegistryReturnDclRef: IReturnDeclarationReference;
|
|
8
|
+
export declare const govCompanyRegistryReturnDclDataType: IDataTypeTransfer;
|
|
9
|
+
export declare const govCompanyRegistryReturnDcl: IReturnDeclarationTransfer;
|
|
10
|
+
export declare const govCompanyRegistryReturnStatement: IReturnStatementTransfer;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { IFunctionCallReference, IActionInputMapTransfer, IVariableDeclarationReference } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const govHttpCallRefThree: IFunctionCallReference;
|
|
4
|
+
export declare const assembledQueryStringRefTwo: IVariableDeclarationReference;
|
|
5
|
+
export declare const govHttpRequestURLParamsMap: IActionInputMapTransfer;
|
package/dist/definitions/mock/default-mock/functions/company-dto/employee-dto-map-loop/body.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { IActionInputMapTransfer, IActionOutputMapTransfer, IArgumentDeclarationReference, IArgumentDeclarationTransfer, IContinueStatementReference, IContinueStatementTransfer, IDataTypeTransfer, IFunctionCallReference, IFunctionCallTransfer, IFunctionDeclarationReference, IFunctionDeclarationTransfer, ILoopReference, IOutputMapReference, IReturnDeclarationReference, IReturnDeclarationTransfer } from '../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const iterateOverEmployeeListContinueStatementEmployeeDTOOutputDeclDataTypeParentRef: IReturnDeclarationReference;
|
|
4
|
+
export declare const iterateOverEmployeeListContinueStatementEmployeeDTOOutputDeclDataType: IDataTypeTransfer;
|
|
5
|
+
export declare const iterateOverEmployeeListContinueStatementEmployeeDTOOutputDeclReadsValueRef: IOutputMapReference;
|
|
6
|
+
export declare const iterateOverEmployeeListContinueStatementEmployeeDTOOutputDeclParentRef: IContinueStatementReference;
|
|
7
|
+
export declare const iterateOverEmployeeListContinueStatementEmployeeDTOOutputDecl: IReturnDeclarationTransfer;
|
|
8
|
+
export declare const iterateOverEmployeeListContinueStatementCalledByRef: IFunctionCallReference;
|
|
9
|
+
export declare const iterateOverEmployeeListContinueStatementParentRef: ILoopReference;
|
|
10
|
+
export declare const iterateOverEmployeeListContinueStatement: IContinueStatementTransfer;
|
|
11
|
+
export declare const iterateOverEmployeeListLoopBodyMapEmployeeDTOFunctionCallEmployeeDTOOutputMapParentRef: IFunctionCallReference;
|
|
12
|
+
export declare const iterateOverEmployeeListLoopBodyMapEmployeeDTOFunctionCallEmployeeDTOOutputMap: IActionOutputMapTransfer;
|
|
13
|
+
export declare const iterateOverEmployeeListLoopBodyMapEmployeeDTOFunctionCallEmployeeInputMapReadsValueRef: IArgumentDeclarationReference;
|
|
14
|
+
export declare const iterateOverEmployeeListLoopBodyMapEmployeeDTOFunctionCallEmployeeInputMapParentRef: IFunctionCallReference;
|
|
15
|
+
export declare const iterateOverEmployeeListLoopBodyMapEmployeeDTOFunctionCallEmployeeInputMap: IActionInputMapTransfer;
|
|
16
|
+
export declare const iterateOverEmployeeListLoopBodyMapEmployeeDTOFunctionCallCalledByRef: IFunctionDeclarationReference;
|
|
17
|
+
export declare const iterateOverEmployeeListLoopBodyMapEmployeeDTOFunctionCallParentRef: IFunctionDeclarationReference;
|
|
18
|
+
export declare const iterateOverEmployeeListLoopBodyMapEmployeeDTOFunctionCall: IFunctionCallTransfer;
|
|
19
|
+
export declare const iterateOverEmployeeListLoopBodyCurrentEmployeeArgumentDeclarationDataTypeParentRef: IArgumentDeclarationReference;
|
|
20
|
+
export declare const iterateOverEmployeeListLoopBodyCurrentEmployeeArgumentDeclarationDataType: IDataTypeTransfer;
|
|
21
|
+
export declare const iterateOverEmployeeListLoopBodyCurrentEmployeeArgumentDeclarationParentRef: IFunctionDeclarationReference;
|
|
22
|
+
export declare const iterateOverEmployeeListLoopBodyCurrentEmployeeArgumentDeclaration: IArgumentDeclarationTransfer;
|
|
23
|
+
export declare const iterateOverEmployeeListLoopBodyParentRef: ILoopReference;
|
|
24
|
+
export declare const iterateOverEmployeeListLoopBody: IFunctionDeclarationTransfer;
|
package/dist/definitions/mock/default-mock/functions/company-dto/employee-dto-map-loop/loop.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IActionInputMapTransfer, IActionOutputMapTransfer, ILoopReference, ILoopTransfer, IOutputMapReference, IVariableDeclarationReference, IFunctionDeclarationReference } from '../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const iterateOverEmployeeListLoopIterationListInputMapParentRef: ILoopReference;
|
|
4
|
+
export declare const iterateOverEmployeeListLoopIterationListInputMapReadsValueRef: IOutputMapReference;
|
|
5
|
+
export declare const iterateOverEmployeeListLoopIterationListInputMap: IActionInputMapTransfer;
|
|
6
|
+
export declare const iterateOverEmployeeListLoopParentRef: IFunctionDeclarationReference;
|
|
7
|
+
export declare const iterateOverEmployeeListLoopEmployeeDTOOutputMapParentRef: ILoopReference;
|
|
8
|
+
export declare const iterateOverEmployeeListLoopEmployeeDTOOutputMap: IActionOutputMapTransfer;
|
|
9
|
+
export declare const iterateOverEmployeeListLoopCalledByRef: IVariableDeclarationReference;
|
|
10
|
+
export declare const iterateOverEmployeeListLoop: ILoopTransfer;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IArgumentDeclarationReference, IArgumentDeclarationTransfer, IDataTypeTransfer, IFunctionDeclarationReference, IFunctionDeclarationTransfer, IProjectReference } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const companyDtoFunctionDeclarationCompanyInputDeclarationDataTypeParentRef: IArgumentDeclarationReference;
|
|
4
|
+
export declare const companyDtoFunctionDeclarationCompanyInputDeclarationDataType: IDataTypeTransfer;
|
|
5
|
+
export declare const companyDtoFunctionDeclarationCompanyInputDeclarationParentRef: IFunctionDeclarationReference;
|
|
6
|
+
export declare const companyDtoFunctionDeclarationCompanyInputDeclaration: IArgumentDeclarationTransfer;
|
|
7
|
+
export declare const companyDtoFunctionDeclarationParentRef: IProjectReference;
|
|
8
|
+
export declare const companyDtoFunctionDeclaration: IFunctionDeclarationTransfer;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const COMPANY_DTO_FUNC_DECLARATION_ID = "company-dto-function-declaration-id";
|
|
2
|
+
export declare const COMPANY_DTO_FUNC_DECLARATION_ARGUMENT_DCL_ID = "company-dto-func-declaration-argument-dcl-id";
|
|
3
|
+
export declare const COMPANY_DTO_FUNC_COMPANY_VARIABLE_ID = "company-dto-function-company-variable-id";
|
|
4
|
+
export declare const COMPANY_DTO_FUNC_COMPANY_DTO_VARIABLE_ID = "company-dto-function-company-dto-variable-id";
|
|
5
|
+
export declare const ITERATE_OVER_EMPLOYEE_LIST_LOOP_ID = "iterate-over-employee-list-loop-id";
|
|
6
|
+
export declare const ITERATE_OVER_EMPLOYEE_LIST_LOOP_EMPLOYEE_DTO_OUTPUT_MAP_ID = "iterate-over-employee-list-loop-employee-dto-output-map-id";
|
|
7
|
+
export declare const ITERATE_OVER_EMPLOYEE_LIST_LOOP_CURRENT_EMPLOYEE_ARGUMENT_DECLARATION_ID = "iterate-over-employee-list-loop-body-current-employee-argument-declaration-id";
|
|
8
|
+
export declare const ITERATE_OVER_EMPLOYEE_LIST_LOOP_BODY_MAP_EMPLOYEE_DTO_FUNCTION_CALL_ID = "iterate-over-employee-list-loop-body-map-employee-dto-function-call-id";
|
|
9
|
+
export declare const ITERATE_OVER_EMPLOYEE_LIST_CONTINUE_STATEMENT_EMPLOYEE_DTO_OUTPUT_DECL_ID = "iterate-over-employee-list-continue-statement-employee-dto-output-decl-id";
|
|
10
|
+
export declare const ITERATE_OVER_EMPLOYEE_LIST_LOOP_BODY_MAP_EMPLOYEE_DTO_FUNCTION_CALL_EMPLOYEE_DTO_OUTPUT_MAP_ID = "iterate-over-employee-list-loop-body-map-employee-dto-function-call-employee-dto-output-map-id";
|
|
11
|
+
export declare const ITERATE_OVER_EMPLOYEE_LIST_CONTINUE_STATEMENT_ID = "iterate-over-employee-list-continue-statement-id";
|
|
12
|
+
export declare const ITERATE_OVER_EMPLOYEE_LIST_LOOP_BODY_ID = "iterate-over-employee-list-loop-body-id";
|
|
13
|
+
export declare const COMPANY_DTO_FUNC_DECLARATION_RETURN_STATEMENT_ID = "company-dto-func-declaration-return-statement-id";
|
|
14
|
+
export declare const COMPANY_DTO_FUNC_DECLARATION_RETURN_DECL_ID = "company-dto-func-declaration-return-decl-id";
|
|
15
|
+
export declare const COMPANY_DTO_FUNC_COMPANY_VARIABLE_ID_OUTPUT_MAP_ID = "company-dto-func-declaration-company-variable-id-output-map-id";
|
|
16
|
+
export declare const COMPANY_DTO_FUNC_COMPANY_VARIABLE_EMPLOYEES_OUTPUT_MAP_ID = "company-dto-func-declaration-company-variable-employess-output-map-id";
|
|
17
|
+
export declare const COMPANY_DTO_FUNC_COMPANY_VARIABLE_NAME_OUTPUT_MAP_ID = "company-dto-func-declaration-company-variable-name-output-map-id";
|
|
18
|
+
export declare const COMPANY_DTO_FUNC_COMPANY_DTO_VARIABLE_ID_INPUT_MAP_ID = "company-dto-func-declaration-company-dto-variable-input-map-id";
|
|
19
|
+
export declare const COMPANY_DTO_FUNC_COMPANY_DTO_VARIABLE_EMPLOYEES_INPUT_MAP_ID = "company-dto-func-declaration-company-dto-variable-employess-input-map-id";
|
|
20
|
+
export declare const COMPANY_DTO_FUNC_COMPANY_DTO_VARIABLE_NAME_INPUT_MAP_ID = "company-dto-func-declaration-company-dto-variable-name-input-map-id";
|
|
21
|
+
export declare const COMPANY_DTO_FUNC_OWNER_VARIABLE_ID = "company-dto-func-declaration-owner-variable-id";
|
|
22
|
+
export declare const COMPANY_DTO_FUNC_COMPANY_DTO_VARIABLE_OWNER_INPUT_MAP_ID = "company-dto-func-declaration-company-dto-variable-owner-input-map-id";
|
|
23
|
+
export declare const COMPANY_DTO_FUNC_COMPANY_VARIABLE_OWNER_OUTPUT_MAP_ID = "company-dto-func-declaration-company-variable-owner-output-map-id";
|
|
24
|
+
export declare const COMPANY_DTO_FUNC_OWNER_VARIABLE_ID_OUTPUT_MAP_ID = "company-dto-func-declaration-owner-variable-id-output-map-id";
|
|
25
|
+
export declare const COMPANY_DTO_FUNC_BANK_ACCOUNT_VARIABLE_ID = "company-dto-func-declaration-bank-account-variable-id";
|
|
26
|
+
export declare const COMPANY_DTO_FUNC_COMPANY_DTO_VARIABLE_BANK_ACCOUNT_INPUT_MAP_ID = "company-dto-func-declaration-company-dto-variable-bank-account-input-map-id";
|
|
27
|
+
export declare const COMPANY_DTO_FUNC_COMPANY_VARIABLE_BANK_ACCOUNT_OUTPUT_MAP_ID = "company-dto-func-declaration-company-variable-bank-account-output-map-id";
|
|
28
|
+
export declare const COMPANY_DTO_FUNC_BANK_ACCOUNT_VARIABLE_ID_OUTPUT_MAP_ID = "company-dto-func-declaration-bank-account-variable-id-output-map-id";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDataTypeTransfer, IFunctionDeclarationReference, IOperationReference, IReturnDeclarationReference, IReturnDeclarationTransfer, IReturnStatementReference, IReturnStatementTransfer, IVariableDeclarationReference } from '../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const companyDTOFuncReturnedCompanyDTODataTypeParentRef: IReturnDeclarationReference;
|
|
4
|
+
export declare const companyDTOFuncReturnedCompanyDTODataType: IDataTypeTransfer;
|
|
5
|
+
export declare const companyDTOFuncReturnedCompanyDTOParentRef: IReturnStatementReference;
|
|
6
|
+
export declare const companyDTOFuncReturnedCompanyDTOReadsValueRef: IVariableDeclarationReference;
|
|
7
|
+
export declare const companyDTOFuncReturnedCompanyDTO: IReturnDeclarationTransfer;
|
|
8
|
+
export declare const companyDTOFuncReturnStatementCalledByRef: IOperationReference;
|
|
9
|
+
export declare const companyDTOFuncReturnStatementParentRef: IFunctionDeclarationReference;
|
|
10
|
+
export declare const companyDTOFuncReturnStatement: IReturnStatementTransfer;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDataTypeTransfer, IFunctionDeclarationReference, IOutputMapReference, IVariableDeclarationReference, IVariableDeclarationTransfer, IVariableOutputMapTransfer } from '../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const companyDTOFuncBankAccountVariableIDOuputMapParentRef: IVariableDeclarationReference;
|
|
4
|
+
export declare const companyDTOFuncBankAccountVariableIDOuputMap: IVariableOutputMapTransfer;
|
|
5
|
+
export declare const companyDTOFuncBankAccountVariableDataTypeParentRef: IVariableDeclarationReference;
|
|
6
|
+
export declare const companyDTOFuncBankAccountVariableDataType: IDataTypeTransfer;
|
|
7
|
+
export declare const companyDTOFuncBankAccountVariableReadsValueRef: IOutputMapReference;
|
|
8
|
+
export declare const companyDTOFuncBankAccountVariableParentRef: IFunctionDeclarationReference;
|
|
9
|
+
export declare const companyDTOFuncBankAccountVariableCalledByRef: IVariableDeclarationReference;
|
|
10
|
+
export declare const companyDTOFuncBankAccountVariable: IVariableDeclarationTransfer;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IVariableDeclarationReference, IVariableOutputMapTransfer } from '../../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const companyDTOFuncCompanyVariableOwnerOutputMapParentRef: IVariableDeclarationReference;
|
|
4
|
+
export declare const companyDTOFuncCompanyVariableOwnerOutputMap: IVariableOutputMapTransfer;
|
|
5
|
+
export declare const companyDTOFuncCompanyVariableBankAccountOutputMapParentRef: IVariableDeclarationReference;
|
|
6
|
+
export declare const companyDTOFuncCompanyVariableBankAccountOutputMap: IVariableOutputMapTransfer;
|
|
7
|
+
export declare const companyDTOFuncCompanyVariableNameOutputMapParentRef: IVariableDeclarationReference;
|
|
8
|
+
export declare const companyDTOFuncCompanyVariableNameOutputMap: IVariableOutputMapTransfer;
|
|
9
|
+
export declare const companyDTOFuncCompanyVariableEmployeesOutputMapParentRef: IVariableDeclarationReference;
|
|
10
|
+
export declare const companyDTOFuncCompanyVariableEmployeesOutputMap: IVariableOutputMapTransfer;
|
|
11
|
+
export declare const companyDTOFuncCompanyVariableIDOuputMapParentRef: IVariableDeclarationReference;
|
|
12
|
+
export declare const companyDTOFuncCompanyVariableIDOuputMap: IVariableOutputMapTransfer;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IArgumentDeclarationReference, IDataTypeTransfer, IFunctionDeclarationReference, IVariableDeclarationReference, IVariableDeclarationTransfer } from '../../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const companyDTOFuncCompanyVariableDataTypeParentRef: IVariableDeclarationReference;
|
|
4
|
+
export declare const companyDTOFuncCompanyVariableDataType: IDataTypeTransfer;
|
|
5
|
+
export declare const companyDTOFuncCompanyVariableParentRef: IFunctionDeclarationReference;
|
|
6
|
+
export declare const companyDTOFuncCompanyVariableReadsValueRef: IArgumentDeclarationReference;
|
|
7
|
+
export declare const companyDTOFuncCompanyVariableCalledBy: IFunctionDeclarationReference;
|
|
8
|
+
export declare const companyDTOFuncCompanyVariable: IVariableDeclarationTransfer;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IOutputMapReference, IVariableDeclarationReference, IVariableInputMapTransfer } from '../../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const companyDTOFuncCompanyDTOVariableOwnerInputMapReadsValueRef: IOutputMapReference;
|
|
4
|
+
export declare const companyDTOFuncCompanyDTOVariableOwnerInputMapParentRef: IVariableDeclarationReference;
|
|
5
|
+
export declare const companyDTOFuncCompanyDTOVariableOwnerInputMap: IVariableInputMapTransfer;
|
|
6
|
+
export declare const companyDTOFuncCompanyDTOVariableBankAccountInputMapReadsValueRef: IOutputMapReference;
|
|
7
|
+
export declare const companyDTOFuncCompanyDTOVariableBankAccountInputMapParentRef: IVariableDeclarationReference;
|
|
8
|
+
export declare const companyDTOFuncCompanyDTOVariableBankAccountInputMap: IVariableInputMapTransfer;
|
|
9
|
+
export declare const companyDTOFuncCompanyDTOVariableNameInputMapReadsValueRef: IOutputMapReference;
|
|
10
|
+
export declare const companyDTOFuncCompanyDTOVariableNameInputMapParentRef: IVariableDeclarationReference;
|
|
11
|
+
export declare const companyDTOFuncCompanyDTOVariableNameInputMap: IVariableInputMapTransfer;
|
|
12
|
+
export declare const companyDTOFuncCompanyDTOVariableEmployeesInputMapReadsValueRef: IOutputMapReference;
|
|
13
|
+
export declare const companyDTOFuncCompanyDTOVariableEmployeesInputMapParentRef: IVariableDeclarationReference;
|
|
14
|
+
export declare const companyDTOFuncCompanyDTOVariableEmployeesInputMap: IVariableInputMapTransfer;
|
|
15
|
+
export declare const companyDTOFuncCompanyDTOVariableIDOuputMapReadsValueRef: IOutputMapReference;
|
|
16
|
+
export declare const companyDTOFuncCompanyDTOVariableIDOuputMapParentRef: IVariableDeclarationReference;
|
|
17
|
+
export declare const companyDTOFuncCompanyDTOVariableIDOuputMap: IVariableInputMapTransfer;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IFunctionDeclarationReference, IVariableDeclarationReference, IVariableDeclarationTransfer } from '../../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const companyDTOFuncCompanyDTOVariableParentRef: IFunctionDeclarationReference;
|
|
4
|
+
export declare const companyDTOFuncCompanyDTOVariableCalledByRefOne: IVariableDeclarationReference;
|
|
5
|
+
export declare const companyDTOFuncCompanyDTOVariableCalledByRefTwo: IVariableDeclarationReference;
|
|
6
|
+
export declare const companyDTOFuncCompanyDTOVariableCalledByRefThree: IVariableDeclarationReference;
|
|
7
|
+
export declare const companyDTOFuncCompanyDTOVariable: IVariableDeclarationTransfer;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDataTypeTransfer, IFunctionDeclarationReference, IOutputMapReference, IVariableDeclarationReference, IVariableDeclarationTransfer, IVariableOutputMapTransfer } from '../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const companyDTOFuncOwnerVariableIDOuputMapParentRef: IVariableDeclarationReference;
|
|
4
|
+
export declare const companyDTOFuncOwnerVariableIDOuputMap: IVariableOutputMapTransfer;
|
|
5
|
+
export declare const companyDTOFuncOwnerVariableDataTypeParentRef: IVariableDeclarationReference;
|
|
6
|
+
export declare const companyDTOFuncOwnerVariableDataType: IDataTypeTransfer;
|
|
7
|
+
export declare const companyDTOFuncOwnerVariableReadsValueRef: IOutputMapReference;
|
|
8
|
+
export declare const companyDTOFuncOwnerVariableParentRef: IFunctionDeclarationReference;
|
|
9
|
+
export declare const companyDTOFuncOwnerVariableCalledByRef: IVariableDeclarationReference;
|
|
10
|
+
export declare const companyDTOFuncOwnerVariable: IVariableDeclarationTransfer;
|
|
File without changes
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IActionInputMapTransfer, IActionOutputMapTransfer, IFunctionCallReference, IFunctionCallTransfer, IFunctionDeclarationReference } from '../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const mapCompanyDTOFunctionCallCompanyInputMapParentRef: IFunctionCallReference;
|
|
4
|
+
export declare const mapCompanyDTOFunctionCallCompanyInputMap: IActionInputMapTransfer;
|
|
5
|
+
export declare const mapCompanyDTOFunctionCallCompanyDTOOutputMap: IActionOutputMapTransfer;
|
|
6
|
+
export declare const mapCompanyDTOFunctionCallCalledByRef: IFunctionDeclarationReference;
|
|
7
|
+
export declare const mapCompanyDTOFunctionCallParentRef: IFunctionDeclarationReference;
|
|
8
|
+
export declare const mapCompanyDTOFunctionCall: IFunctionCallTransfer;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IFunctionCallReference, IFunctionDeclarationReference, IOutputMapReference, IVariableDeclarationReference, IVariableDeclarationTransfer, IVariableInstanceReference, IVariableInstanceTransfer } from '../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const companyDTOVariableTwoCalledByRef: IVariableInstanceReference;
|
|
4
|
+
export declare const companyDTOVariableTwoReadsValueRef: IVariableInstanceReference;
|
|
5
|
+
export declare const companyDTOVariableTwoParentRef: IFunctionDeclarationReference;
|
|
6
|
+
export declare const companyDTOVariableTwo: IVariableDeclarationTransfer;
|
|
7
|
+
export declare const companyDTOVariableOneInstanceCalledByRef: IVariableDeclarationReference;
|
|
8
|
+
export declare const companyDTOVariableOneInstanceReadsValueRef: IVariableDeclarationReference;
|
|
9
|
+
export declare const companyDTOVariableOneInstanceParentRef: IFunctionDeclarationReference;
|
|
10
|
+
export declare const companyDTOVariableOneInstanceDeclarationRef: IVariableDeclarationReference;
|
|
11
|
+
export declare const companyDTOVariableOneInstance: IVariableInstanceTransfer;
|
|
12
|
+
export declare const companyDTOVariableOneCalledByRef: IFunctionCallReference;
|
|
13
|
+
export declare const companyDTOVariableOneReadsValueRef: IOutputMapReference;
|
|
14
|
+
export declare const companyDTOVariableOneParentRef: IFunctionDeclarationReference;
|
|
15
|
+
export declare const companyDTOVariableOne: IVariableDeclarationTransfer;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IFunctionDeclarationReference, IOperationReference, IOperationTransfer, IOutputMapReference, IActionOutputMapTransfer, IActionInputMapTransfer, IVariableInstanceTransfer } from '../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const execInParallelReturnMapParentRef: IOperationReference;
|
|
4
|
+
export declare const execInParallelResultVariableParentRef: IFunctionDeclarationReference;
|
|
5
|
+
export declare const execInParallelResultVariableReadsValueRef: IOutputMapReference;
|
|
6
|
+
export declare const execInParallelResultVariableCalledByRef: IOperationReference;
|
|
7
|
+
export declare const execInParallelResultVariable: IVariableInstanceTransfer;
|
|
8
|
+
export declare const execInParallelReturnMap: IActionOutputMapTransfer;
|
|
9
|
+
export declare const execInParallelArgumentMapParentRef: IOperationReference;
|
|
10
|
+
export declare const execInParallelArgumentMap: IActionInputMapTransfer;
|
|
11
|
+
export declare const execInParallelParentRef: IFunctionDeclarationReference;
|
|
12
|
+
export declare const execInParallelCalledByRef: IFunctionDeclarationReference;
|
|
13
|
+
export declare const execInParallel: IOperationTransfer;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IFunctionDeclarationReference, IOperationReference, IOperationTransfer, IOutputMapReference, IActionOutputMapTransfer, IActionInputMapTransfer, IVariableInstanceTransfer } from '../../../../..';
|
|
2
|
+
|
|
3
|
+
export declare const execSequentiallyReturnMapParentRef: IOperationReference;
|
|
4
|
+
export declare const execSequentiallyResultVariableParentRef: IFunctionDeclarationReference;
|
|
5
|
+
export declare const execSequentiallyResultVariableReadsValueRef: IOutputMapReference;
|
|
6
|
+
export declare const execSequentiallyResultVariableCalledByRef: IOperationReference;
|
|
7
|
+
export declare const execSequentiallyResultVariable: IVariableInstanceTransfer;
|
|
8
|
+
export declare const execSequentiallyReturnMap: IActionOutputMapTransfer;
|
|
9
|
+
export declare const execSequentiallyArgumentMapParentRef: IOperationReference;
|
|
10
|
+
export declare const execSequentiallyArgumentMap: IActionInputMapTransfer;
|
|
11
|
+
export declare const execSequentiallyParentRef: IFunctionDeclarationReference;
|
|
12
|
+
export declare const execSequentiallyCalledByRef: IFunctionDeclarationReference;
|
|
13
|
+
export declare const execSequentially: IOperationTransfer;
|