├── .eslintrc.js ├── .github ├── assets │ ├── corteza_dashboard.png │ └── corteza_logo.svg └── workflows │ ├── checks.yml │ ├── release.yml │ └── snapshot.yml ├── .gitignore ├── .mocharc.js ├── CONTRIBUTING.md ├── DCO ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── security.md ├── src ├── api-clients │ ├── automation.ts │ ├── compose.ts │ ├── federation.ts │ ├── index.ts │ └── system.ts ├── automation │ ├── index.ts │ └── types │ │ ├── function.ts │ │ ├── param.ts │ │ ├── prompt.ts │ │ ├── values.ts │ │ └── workflow.ts ├── cast.test.ts ├── cast.ts ├── compose │ ├── events.ts │ ├── helpers │ │ └── index.ts │ ├── index.ts │ ├── types │ │ ├── chart │ │ │ ├── base.ts │ │ │ ├── chart.ts │ │ │ ├── chartjs │ │ │ │ └── plugins.ts │ │ │ ├── common.ts │ │ │ ├── funnel.ts │ │ │ ├── gauge.ts │ │ │ ├── index.ts │ │ │ └── util.ts │ │ ├── module-field │ │ │ ├── base.test.ts │ │ │ ├── base.ts │ │ │ ├── bool.ts │ │ │ ├── datetime.ts │ │ │ ├── email.ts │ │ │ ├── file.ts │ │ │ ├── geometry.ts │ │ │ ├── index.ts │ │ │ ├── number.ts │ │ │ ├── record.ts │ │ │ ├── select.ts │ │ │ ├── string.ts │ │ │ ├── url.ts │ │ │ └── user.ts │ │ ├── module.test.ts │ │ ├── module.ts │ │ ├── namespace.test.ts │ │ ├── namespace.ts │ │ ├── page-block │ │ │ ├── automation.ts │ │ │ ├── base.ts │ │ │ ├── calendar │ │ │ │ ├── README.md │ │ │ │ ├── feed-record.ts │ │ │ │ ├── feed-reminder.ts │ │ │ │ ├── feed.ts │ │ │ │ ├── index.ts │ │ │ │ ├── page-block.test.ts │ │ │ │ ├── page-block.ts │ │ │ │ ├── resources.ts │ │ │ │ └── shared.ts │ │ │ ├── chart.ts │ │ │ ├── comment.ts │ │ │ ├── content.ts │ │ │ ├── file.ts │ │ │ ├── iframe.ts │ │ │ ├── index.ts │ │ │ ├── metric.ts │ │ │ ├── record-list.ts │ │ │ ├── record-organizer.ts │ │ │ ├── record.ts │ │ │ ├── report.ts │ │ │ ├── social-feed.ts │ │ │ └── types.ts │ │ ├── page.test.ts │ │ ├── page.ts │ │ ├── record.test.ts │ │ └── record.ts │ └── validators │ │ ├── record.test.ts │ │ └── record.ts ├── corredor │ ├── args-corteza.ts │ ├── args.test.ts │ ├── args.ts │ ├── ctx.test.ts │ ├── ctx.ts │ ├── exec.test.ts │ ├── exec.ts │ ├── helpers │ │ ├── compose.test.ts │ │ ├── compose.ts │ │ ├── index.ts │ │ ├── shared.test.ts │ │ ├── shared.ts │ │ ├── system.test.ts │ │ └── system.ts │ ├── index.ts │ └── shared.ts ├── eventbus │ ├── constraints.test.ts │ ├── constraints.ts │ ├── eventbus.test.ts │ ├── eventbus.ts │ ├── handlers.test.ts │ ├── handlers.ts │ ├── index.ts │ └── shared.ts ├── formatting │ ├── datetime.ts │ ├── index.ts │ ├── locale.ts │ └── number.ts ├── guards.test.ts ├── guards.ts ├── index.ts ├── reporter │ ├── index.ts │ └── types │ │ ├── block.ts │ │ ├── display-elements │ │ ├── base.ts │ │ ├── chart │ │ │ ├── base.ts │ │ │ ├── basic.ts │ │ │ ├── funnel.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── metric.ts │ │ ├── table.ts │ │ └── text.ts │ │ ├── filter.ts │ │ ├── frame.ts │ │ └── step.ts ├── shared │ ├── index.ts │ └── types │ │ ├── README.adoc │ │ └── attachment.ts ├── system │ ├── events.ts │ ├── index.ts │ └── types │ │ ├── application.ts │ │ ├── reminder.ts │ │ ├── report.ts │ │ ├── role.ts │ │ ├── sink.ts │ │ ├── template.ts │ │ └── user.ts └── validator │ ├── index.ts │ ├── validator.test.ts │ └── validator.ts ├── tools └── codegen │ ├── corteza-api-client.js │ └── template.js ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/assets/corteza_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/.github/assets/corteza_dashboard.png -------------------------------------------------------------------------------- /.github/assets/corteza_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/.github/assets/corteza_logo.svg -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/.github/workflows/snapshot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/.mocharc.js -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/DCO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/rollup.config.js -------------------------------------------------------------------------------- /security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/security.md -------------------------------------------------------------------------------- /src/api-clients/automation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/api-clients/automation.ts -------------------------------------------------------------------------------- /src/api-clients/compose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/api-clients/compose.ts -------------------------------------------------------------------------------- /src/api-clients/federation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/api-clients/federation.ts -------------------------------------------------------------------------------- /src/api-clients/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/api-clients/index.ts -------------------------------------------------------------------------------- /src/api-clients/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/api-clients/system.ts -------------------------------------------------------------------------------- /src/automation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/automation/index.ts -------------------------------------------------------------------------------- /src/automation/types/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/automation/types/function.ts -------------------------------------------------------------------------------- /src/automation/types/param.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/automation/types/param.ts -------------------------------------------------------------------------------- /src/automation/types/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/automation/types/prompt.ts -------------------------------------------------------------------------------- /src/automation/types/values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/automation/types/values.ts -------------------------------------------------------------------------------- /src/automation/types/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/automation/types/workflow.ts -------------------------------------------------------------------------------- /src/cast.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/cast.test.ts -------------------------------------------------------------------------------- /src/cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/cast.ts -------------------------------------------------------------------------------- /src/compose/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/events.ts -------------------------------------------------------------------------------- /src/compose/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/helpers/index.ts -------------------------------------------------------------------------------- /src/compose/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/index.ts -------------------------------------------------------------------------------- /src/compose/types/chart/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/chart/base.ts -------------------------------------------------------------------------------- /src/compose/types/chart/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/chart/chart.ts -------------------------------------------------------------------------------- /src/compose/types/chart/chartjs/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/chart/chartjs/plugins.ts -------------------------------------------------------------------------------- /src/compose/types/chart/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/chart/common.ts -------------------------------------------------------------------------------- /src/compose/types/chart/funnel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/chart/funnel.ts -------------------------------------------------------------------------------- /src/compose/types/chart/gauge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/chart/gauge.ts -------------------------------------------------------------------------------- /src/compose/types/chart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/chart/index.ts -------------------------------------------------------------------------------- /src/compose/types/chart/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/chart/util.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/base.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/base.test.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/base.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/bool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/bool.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/datetime.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/email.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/file.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/geometry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/geometry.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/index.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/number.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/record.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/select.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/string.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/url.ts -------------------------------------------------------------------------------- /src/compose/types/module-field/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module-field/user.ts -------------------------------------------------------------------------------- /src/compose/types/module.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module.test.ts -------------------------------------------------------------------------------- /src/compose/types/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/module.ts -------------------------------------------------------------------------------- /src/compose/types/namespace.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/namespace.test.ts -------------------------------------------------------------------------------- /src/compose/types/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/namespace.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/automation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/automation.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/base.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/calendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/calendar/README.md -------------------------------------------------------------------------------- /src/compose/types/page-block/calendar/feed-record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/calendar/feed-record.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/calendar/feed-reminder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/calendar/feed-reminder.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/calendar/feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/calendar/feed.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/calendar/index.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/calendar/page-block.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/calendar/page-block.test.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/calendar/page-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/calendar/page-block.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/calendar/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/calendar/resources.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/calendar/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/calendar/shared.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/chart.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/comment.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/content.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/file.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/iframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/iframe.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/index.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/metric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/metric.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/record-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/record-list.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/record-organizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/record-organizer.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/record.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/report.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/social-feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/social-feed.ts -------------------------------------------------------------------------------- /src/compose/types/page-block/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page-block/types.ts -------------------------------------------------------------------------------- /src/compose/types/page.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page.test.ts -------------------------------------------------------------------------------- /src/compose/types/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/page.ts -------------------------------------------------------------------------------- /src/compose/types/record.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/record.test.ts -------------------------------------------------------------------------------- /src/compose/types/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/types/record.ts -------------------------------------------------------------------------------- /src/compose/validators/record.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/validators/record.test.ts -------------------------------------------------------------------------------- /src/compose/validators/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/compose/validators/record.ts -------------------------------------------------------------------------------- /src/corredor/args-corteza.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/args-corteza.ts -------------------------------------------------------------------------------- /src/corredor/args.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/args.test.ts -------------------------------------------------------------------------------- /src/corredor/args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/args.ts -------------------------------------------------------------------------------- /src/corredor/ctx.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/ctx.test.ts -------------------------------------------------------------------------------- /src/corredor/ctx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/ctx.ts -------------------------------------------------------------------------------- /src/corredor/exec.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/exec.test.ts -------------------------------------------------------------------------------- /src/corredor/exec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/exec.ts -------------------------------------------------------------------------------- /src/corredor/helpers/compose.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/helpers/compose.test.ts -------------------------------------------------------------------------------- /src/corredor/helpers/compose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/helpers/compose.ts -------------------------------------------------------------------------------- /src/corredor/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/helpers/index.ts -------------------------------------------------------------------------------- /src/corredor/helpers/shared.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/helpers/shared.test.ts -------------------------------------------------------------------------------- /src/corredor/helpers/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/helpers/shared.ts -------------------------------------------------------------------------------- /src/corredor/helpers/system.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/helpers/system.test.ts -------------------------------------------------------------------------------- /src/corredor/helpers/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/helpers/system.ts -------------------------------------------------------------------------------- /src/corredor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/index.ts -------------------------------------------------------------------------------- /src/corredor/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/corredor/shared.ts -------------------------------------------------------------------------------- /src/eventbus/constraints.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/eventbus/constraints.test.ts -------------------------------------------------------------------------------- /src/eventbus/constraints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/eventbus/constraints.ts -------------------------------------------------------------------------------- /src/eventbus/eventbus.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/eventbus/eventbus.test.ts -------------------------------------------------------------------------------- /src/eventbus/eventbus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/eventbus/eventbus.ts -------------------------------------------------------------------------------- /src/eventbus/handlers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/eventbus/handlers.test.ts -------------------------------------------------------------------------------- /src/eventbus/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/eventbus/handlers.ts -------------------------------------------------------------------------------- /src/eventbus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/eventbus/index.ts -------------------------------------------------------------------------------- /src/eventbus/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/eventbus/shared.ts -------------------------------------------------------------------------------- /src/formatting/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/formatting/datetime.ts -------------------------------------------------------------------------------- /src/formatting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/formatting/index.ts -------------------------------------------------------------------------------- /src/formatting/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/formatting/locale.ts -------------------------------------------------------------------------------- /src/formatting/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/formatting/number.ts -------------------------------------------------------------------------------- /src/guards.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/guards.test.ts -------------------------------------------------------------------------------- /src/guards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/guards.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/reporter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/index.ts -------------------------------------------------------------------------------- /src/reporter/types/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/types/block.ts -------------------------------------------------------------------------------- /src/reporter/types/display-elements/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/types/display-elements/base.ts -------------------------------------------------------------------------------- /src/reporter/types/display-elements/chart/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/types/display-elements/chart/base.ts -------------------------------------------------------------------------------- /src/reporter/types/display-elements/chart/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/types/display-elements/chart/basic.ts -------------------------------------------------------------------------------- /src/reporter/types/display-elements/chart/funnel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/types/display-elements/chart/funnel.ts -------------------------------------------------------------------------------- /src/reporter/types/display-elements/chart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/types/display-elements/chart/index.ts -------------------------------------------------------------------------------- /src/reporter/types/display-elements/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/types/display-elements/index.ts -------------------------------------------------------------------------------- /src/reporter/types/display-elements/metric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/types/display-elements/metric.ts -------------------------------------------------------------------------------- /src/reporter/types/display-elements/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/types/display-elements/table.ts -------------------------------------------------------------------------------- /src/reporter/types/display-elements/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/types/display-elements/text.ts -------------------------------------------------------------------------------- /src/reporter/types/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/types/filter.ts -------------------------------------------------------------------------------- /src/reporter/types/frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/types/frame.ts -------------------------------------------------------------------------------- /src/reporter/types/step.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/reporter/types/step.ts -------------------------------------------------------------------------------- /src/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/shared/index.ts -------------------------------------------------------------------------------- /src/shared/types/README.adoc: -------------------------------------------------------------------------------- 1 | Types that are used by all 3 subsystems 2 | -------------------------------------------------------------------------------- /src/shared/types/attachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/shared/types/attachment.ts -------------------------------------------------------------------------------- /src/system/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/system/events.ts -------------------------------------------------------------------------------- /src/system/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/system/index.ts -------------------------------------------------------------------------------- /src/system/types/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/system/types/application.ts -------------------------------------------------------------------------------- /src/system/types/reminder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/system/types/reminder.ts -------------------------------------------------------------------------------- /src/system/types/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/system/types/report.ts -------------------------------------------------------------------------------- /src/system/types/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/system/types/role.ts -------------------------------------------------------------------------------- /src/system/types/sink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/system/types/sink.ts -------------------------------------------------------------------------------- /src/system/types/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/system/types/template.ts -------------------------------------------------------------------------------- /src/system/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/system/types/user.ts -------------------------------------------------------------------------------- /src/validator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/validator/index.ts -------------------------------------------------------------------------------- /src/validator/validator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/validator/validator.test.ts -------------------------------------------------------------------------------- /src/validator/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/src/validator/validator.ts -------------------------------------------------------------------------------- /tools/codegen/corteza-api-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/tools/codegen/corteza-api-client.js -------------------------------------------------------------------------------- /tools/codegen/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/tools/codegen/template.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-js/HEAD/yarn.lock --------------------------------------------------------------------------------