├── .dockerignore ├── .github └── workflows │ └── release.yml ├── .gitignore ├── CONTRIBUTING.md ├── DCO ├── Dockerfile ├── LICENSE ├── Makefile ├── README.adoc ├── antora-playbook-local.yml ├── antora-playbook.yml ├── antora └── ui │ ├── css │ ├── poppins.css │ ├── site-extra.css │ └── vendor │ │ ├── docsearch.css │ │ └── docsearch.min.css │ ├── font │ └── poppins │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-BlackItalic.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-BoldItalic.ttf │ │ ├── Poppins-ExtraBold.ttf │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ ├── Poppins-ExtraLight.ttf │ │ ├── Poppins-ExtraLightItalic.ttf │ │ ├── Poppins-Italic.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-LightItalic.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-MediumItalic.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-SemiBold.ttf │ │ ├── Poppins-SemiBoldItalic.ttf │ │ ├── Poppins-Thin.ttf │ │ └── Poppins-ThinItalic.ttf │ ├── icon.svg │ ├── js │ ├── medium-zoom.min.js │ └── vendor │ │ └── docsearch.min.js │ ├── partials │ ├── body.hbs │ ├── footer-content.hbs │ ├── head-meta.hbs │ ├── head-styles.hbs │ ├── header-content.hbs │ ├── main.hbs │ ├── nav-explore.hbs │ └── toolbar.hbs │ ├── search-solid.svg │ └── ui.yml ├── dev-docker-entryfile.sh ├── drafts ├── developer-guide │ ├── images │ │ └── automation-system-dig.png │ ├── nav.adoc │ └── pages │ │ ├── envoy │ │ ├── data-shaping.adoc │ │ ├── decoder.adoc │ │ ├── dependency-graph.adoc │ │ ├── diagrams │ │ │ └── architecture.adoc │ │ ├── encoder.adoc │ │ ├── index.adoc │ │ └── resources.adoc │ │ ├── extensions │ │ ├── corredor-client.adoc │ │ ├── corredor-server.adoc │ │ ├── index.adoc │ │ ├── overview.adoc │ │ └── server.adoc │ │ ├── impersonation.adoc │ │ ├── index.adoc │ │ ├── pagination.adoc │ │ └── record-list-filtering │ │ ├── images │ │ ├── image1.png │ │ ├── image2.png │ │ ├── image3.png │ │ └── image4.png │ │ └── recordlist-filtering-integrator.adoc └── extensions │ ├── automation-iterators.adoc │ ├── nav.adoc │ ├── pages │ ├── crm │ │ ├── config.adoc │ │ └── index.adoc │ ├── docusign │ │ ├── about.adoc │ │ ├── config.adoc │ │ └── index.adoc │ ├── pexels │ │ ├── about.adoc │ │ ├── config.adoc │ │ ├── index.adoc │ │ └── usage.adoc │ ├── phone-burner │ │ ├── about.adoc │ │ ├── config.adoc │ │ ├── index.adoc │ │ └── usage.adoc │ ├── renderer │ │ ├── about.adoc │ │ ├── index.adoc │ │ └── usage.adoc │ ├── service-solution │ │ ├── config.adoc │ │ └── index.adoc │ └── unsplash │ │ ├── about.adoc │ │ ├── config.adoc │ │ ├── index.adoc │ │ └── usage.adoc │ ├── record-validation.adoc │ └── sink-scripts.adoc ├── lib ├── annotation-preprocessor │ ├── README.adoc │ ├── anni-box.js │ ├── annotate.js │ ├── index.js │ ├── proc.js │ └── styleguide.js ├── changelogenator │ ├── decoders │ │ ├── fs.js │ │ ├── index.js │ │ └── wrap.js │ ├── encode │ │ ├── added.js │ │ ├── changed.js │ │ ├── deprecated.js │ │ ├── development.js │ │ ├── fixed.js │ │ ├── important.js │ │ ├── index.js │ │ ├── ref.js │ │ ├── removed.js │ │ ├── security.js │ │ └── utils.js │ └── index.js └── collapsible-block-tree-processor.js ├── package.json ├── security.md ├── src ├── antora.yml └── modules │ ├── ROOT │ ├── images │ │ ├── discovery │ │ │ ├── map-marked-alt-solid.svg │ │ │ └── search-location-solid.svg │ │ ├── i18n │ │ │ └── language-solid.svg │ │ └── workflows │ │ │ ├── break.svg │ │ │ ├── cog.svg │ │ │ ├── continue.svg │ │ │ ├── debug.svg │ │ │ ├── delay.svg │ │ │ ├── error-handler.svg │ │ │ ├── error.svg │ │ │ ├── exec-workflow.svg │ │ │ ├── expressions.svg │ │ │ ├── function.svg │ │ │ ├── gatewayExclusive.svg │ │ │ ├── gatewayInclusive.svg │ │ │ ├── gatewayParallel.svg │ │ │ ├── gateway_parallel.svg │ │ │ ├── iterator.svg │ │ │ ├── play.svg │ │ │ ├── prompt.svg │ │ │ ├── swimlane copy.svg │ │ │ ├── swimlane.svg │ │ │ ├── termination copy.svg │ │ │ ├── termination.svg │ │ │ ├── trigger copy.svg │ │ │ └── trigger.svg │ ├── nav.adoc │ ├── pages │ │ ├── changelog │ │ │ ├── 202109 │ │ │ │ ├── 00.adoc │ │ │ │ ├── 01.adoc │ │ │ │ ├── 02.adoc │ │ │ │ ├── 03.adoc │ │ │ │ ├── 04.adoc │ │ │ │ ├── 05.adoc │ │ │ │ ├── 06.adoc │ │ │ │ ├── 07.adoc │ │ │ │ ├── 08.adoc │ │ │ │ ├── 09.adoc │ │ │ │ ├── 10.adoc │ │ │ │ ├── 11.adoc │ │ │ │ ├── 12.adoc │ │ │ │ └── index.adoc │ │ │ ├── 202203 │ │ │ │ ├── 00.adoc │ │ │ │ ├── 01.adoc │ │ │ │ ├── 02.adoc │ │ │ │ ├── 03.adoc │ │ │ │ ├── 04.adoc │ │ │ │ ├── 06.gen.adoc │ │ │ │ ├── 06.json │ │ │ │ └── index.adoc │ │ │ ├── 202209 │ │ │ │ ├── 01.adoc │ │ │ │ ├── 02.gen.adoc │ │ │ │ ├── 02.json │ │ │ │ ├── 03.gen.adoc │ │ │ │ ├── 03.json │ │ │ │ ├── 04.adoc │ │ │ │ ├── 05.adoc │ │ │ │ ├── 06.gen.adoc │ │ │ │ ├── 06.json │ │ │ │ ├── 07.gen.adoc │ │ │ │ ├── 08.adoc │ │ │ │ ├── 08.gen.adoc │ │ │ │ ├── 08.json │ │ │ │ ├── 09.gen.adoc │ │ │ │ ├── 09.json │ │ │ │ └── index.adoc │ │ │ ├── 202303 │ │ │ │ ├── 00.gen.adoc │ │ │ │ ├── 00.json │ │ │ │ ├── 01.gen.adoc │ │ │ │ ├── 01.json │ │ │ │ ├── 02.gen.adoc │ │ │ │ ├── 02.json │ │ │ │ ├── 03.gen.adoc │ │ │ │ ├── 03.json │ │ │ │ ├── 04.gen.adoc │ │ │ │ ├── 04.json │ │ │ │ ├── 05.gen.adoc │ │ │ │ ├── 05.json │ │ │ │ ├── 06.gen.adoc │ │ │ │ ├── 06.json │ │ │ │ ├── 07.gen.adoc │ │ │ │ ├── 07.json │ │ │ │ ├── 08.gen.adoc │ │ │ │ ├── 08.json │ │ │ │ └── index.adoc │ │ │ ├── 202309 │ │ │ │ ├── 00.gen.adoc │ │ │ │ ├── 00.json │ │ │ │ ├── 01.gen.adoc │ │ │ │ ├── 01.json │ │ │ │ ├── 02.gen.adoc │ │ │ │ ├── 02.json │ │ │ │ ├── 03.gen.adoc │ │ │ │ ├── 03.json │ │ │ │ ├── 04.gen.adoc │ │ │ │ ├── 04.json │ │ │ │ ├── 05.gen.adoc │ │ │ │ ├── 05.json │ │ │ │ ├── 06.gen.adoc │ │ │ │ ├── 06.json │ │ │ │ ├── 07.gen.adoc │ │ │ │ ├── 07.json │ │ │ │ ├── 08.gen.adoc │ │ │ │ ├── 08.json │ │ │ │ └── index.adoc │ │ │ ├── 202409 │ │ │ │ ├── 00.gen.adoc │ │ │ │ ├── 00.json │ │ │ │ ├── 01.gen.adoc │ │ │ │ ├── 01.json │ │ │ │ ├── 02.gen.adoc │ │ │ │ ├── 02.json │ │ │ │ ├── 03.gen.adoc │ │ │ │ ├── 03.json │ │ │ │ ├── 04.gen.adoc │ │ │ │ ├── 04.json │ │ │ │ ├── 05.gen.adoc │ │ │ │ ├── 05.json │ │ │ │ ├── 06.gen.adoc │ │ │ │ ├── 06.json │ │ │ │ ├── 07.gen.adoc │ │ │ │ ├── 07.json │ │ │ │ └── index.adoc │ │ │ ├── 202103.adoc │ │ │ ├── archive │ │ │ │ ├── 202006.adoc │ │ │ │ ├── 202009.adoc │ │ │ │ ├── 202012.adoc │ │ │ │ └── index.adoc │ │ │ └── index.adoc │ │ └── index.adoc │ └── partials │ │ ├── icons.adoc │ │ ├── setup │ │ └── containerized-db.adoc │ │ └── variables.adoc │ ├── developer-guide │ ├── images │ │ ├── build-pipelines.png │ │ ├── documentation │ │ │ ├── annotation-canvas.png │ │ │ ├── annotation-canvas.svg │ │ │ ├── annotation-edit-browser.png │ │ │ ├── example-blank.png │ │ │ ├── example-crop-base.png │ │ │ ├── example-focus.png │ │ │ ├── ruler-extension-example.png │ │ │ ├── screenshot-brave.png │ │ │ └── screenshot-firefox.png │ │ └── web-applications │ │ │ └── c3-example-submit-button.png │ ├── nav.adoc │ ├── pages │ │ ├── corteza-js │ │ │ ├── index.adoc │ │ │ └── structure.adoc │ │ ├── corteza-server │ │ │ ├── access-control │ │ │ │ └── index.adoc │ │ │ ├── api.adoc │ │ │ ├── auth.adoc │ │ │ ├── codegen.adoc │ │ │ ├── expressions │ │ │ │ └── types.adoc │ │ │ ├── federation │ │ │ │ ├── api │ │ │ │ │ ├── data_sync__exposed_records.adoc │ │ │ │ │ ├── index.adoc │ │ │ │ │ ├── node_create_a.adoc │ │ │ │ │ ├── node_create_b.adoc │ │ │ │ │ ├── node_handshake_complete.adoc │ │ │ │ │ ├── node_handshake_confirm.adoc │ │ │ │ │ ├── node_handshake_init.adoc │ │ │ │ │ ├── node_handshake_request.adoc │ │ │ │ │ ├── structure_sync__add_module_to_federation.adoc │ │ │ │ │ ├── structure_sync__change_sharing_fields.adoc │ │ │ │ │ ├── structure_sync__get_module_federation_mapping.adoc │ │ │ │ │ ├── structure_sync__list_exposed_module.adoc │ │ │ │ │ ├── structure_sync__list_shared_module.adoc │ │ │ │ │ ├── structure_sync__list_shared_modules.adoc │ │ │ │ │ ├── structure_sync__origin_changes.adoc │ │ │ │ │ ├── structure_sync__remove_module_federation.adoc │ │ │ │ │ ├── structure_sync__remove_module_federation_mapping.adoc │ │ │ │ │ ├── structure_sync__set_module_federation_mapping.adoc │ │ │ │ │ └── structure_sync__sync_shared_module.adoc │ │ │ │ ├── dev-notes.adoc │ │ │ │ ├── diagrams │ │ │ │ │ ├── data-sync-destination.adoc │ │ │ │ │ ├── data-sync-origin.adoc │ │ │ │ │ ├── node-pairing-full.adoc │ │ │ │ │ ├── node-pairing-handshake.adoc │ │ │ │ │ └── node-pairing-identification.adoc │ │ │ │ ├── glossary.adoc │ │ │ │ ├── index.adoc │ │ │ │ ├── node-pair.adoc │ │ │ │ ├── node-sync.adoc │ │ │ │ └── security-logging.adoc │ │ │ ├── i18n.adoc │ │ │ ├── index.adoc │ │ │ ├── messagebus.adoc │ │ │ ├── resource-labels.adoc │ │ │ ├── sink.adoc │ │ │ ├── store.adoc │ │ │ ├── structure.adoc │ │ │ └── workflows │ │ │ │ └── index.adoc │ │ ├── corteza-vue │ │ │ ├── authentication.adoc │ │ │ ├── index.adoc │ │ │ └── structure.adoc │ │ ├── documentation │ │ │ ├── annotations.adoc │ │ │ ├── changelog.adoc │ │ │ ├── codegen.adoc │ │ │ ├── conventions.adoc │ │ │ ├── dev.adoc │ │ │ ├── examples │ │ │ │ ├── getting-started.adoc │ │ │ │ ├── index.adoc │ │ │ │ ├── no-jank.adoc │ │ │ │ └── sample-feature.adoc │ │ │ ├── index.adoc │ │ │ └── writing-guidelines.adoc │ │ ├── index.adoc │ │ ├── release-cycle │ │ │ ├── core-repos.adoc │ │ │ ├── docs.adoc │ │ │ └── index.adoc │ │ └── web-applications │ │ │ ├── c3.adoc │ │ │ ├── i18n.adoc │ │ │ ├── index.adoc │ │ │ ├── record-list-filtering.adoc │ │ │ └── structure.adoc │ └── partials │ │ └── documentation │ │ ├── annotation-cropped.adoc │ │ ├── annotation-danger.adoc │ │ ├── annotation-note.adoc │ │ ├── annotation-padding.adoc │ │ ├── annotation-success.adoc │ │ ├── focus-annotation.adoc │ │ └── focus.adoc │ ├── devops-guide │ ├── examples │ │ └── deploy │ │ │ ├── .gitignore │ │ │ ├── local-in-mem │ │ │ ├── docker-compose.yaml │ │ │ └── output-ps.txt │ │ │ ├── local-mysql │ │ │ ├── docker-compose.yaml │ │ │ ├── env-example.txt │ │ │ └── output-ps.txt │ │ │ ├── local-pgsql │ │ │ ├── docker-compose.yaml │ │ │ ├── env-example.txt │ │ │ └── output-ps.txt │ │ │ ├── prod-discovery-pgsql │ │ │ ├── docker-compose.yaml │ │ │ └── env-example.txt │ │ │ ├── prod-mysql │ │ │ ├── docker-compose.yaml │ │ │ ├── env-example.txt │ │ │ └── output-ps.txt │ │ │ ├── prod-pgsql │ │ │ ├── docker-compose.yaml │ │ │ ├── env-example.txt │ │ │ └── output-ps.txt │ │ │ └── prod-proxy-nginx │ │ │ ├── .gitignore │ │ │ ├── custom.conf │ │ │ ├── docker-compose.yaml │ │ │ └── output-ps.txt │ ├── images │ │ ├── arch-overview.png │ │ ├── discovery │ │ │ ├── auth-client.png │ │ │ ├── role.png │ │ │ ├── user-membership.png │ │ │ └── user.png │ │ ├── template-preview-pdf-enabled.png │ │ ├── troubleshooting │ │ │ └── health-check │ │ │ │ └── http.png │ │ ├── web-console-home.png │ │ └── web-console-logs.png │ ├── nav.adoc │ ├── pages │ │ ├── access-control │ │ │ ├── index.adoc │ │ │ └── optimize-rbac-system-resource-usage.adoc │ │ ├── discovery │ │ │ └── index.adoc │ │ ├── email-relay.adoc │ │ ├── examples │ │ │ ├── cli │ │ │ │ ├── record-import.adoc │ │ │ │ └── resource-translation-import.adoc │ │ │ ├── deploy-offline │ │ │ │ ├── index.adoc │ │ │ │ ├── multi-mysql.adoc │ │ │ │ └── single-sqlite-inmem.adoc │ │ │ └── deploy-online │ │ │ │ ├── index.adoc │ │ │ │ ├── multi-discovery-pgsql.adoc │ │ │ │ ├── multi-mysql.adoc │ │ │ │ ├── multi-pgsql.adoc │ │ │ │ ├── single-mysql.adoc │ │ │ │ └── single-pgsql.adoc │ │ ├── i18n │ │ │ └── index.adoc │ │ ├── index.adoc │ │ ├── installing-sass │ │ │ └── index.adoc │ │ ├── maintenance │ │ │ ├── backups.adoc │ │ │ ├── database-password.adoc │ │ │ └── sql-snippets.adoc │ │ ├── miscellaneous │ │ │ ├── benchmark-classic.adoc │ │ │ ├── benchmark-dedicated.adoc │ │ │ └── containerized-storage.adoc │ │ ├── pdf-renderer.adoc │ │ ├── references │ │ │ ├── cli-reference.adoc │ │ │ └── configuration │ │ │ │ ├── corredor.adoc │ │ │ │ └── server.adoc │ │ ├── server-plugins │ │ │ └── index.adoc │ │ ├── sink-route.adoc │ │ ├── system-requirements.adoc │ │ ├── troubleshooting │ │ │ ├── health-check.adoc │ │ │ ├── index.adoc │ │ │ ├── logging.adoc │ │ │ └── web-console.adoc │ │ └── upgrade │ │ │ ├── 202003.adoc │ │ │ ├── 202009.adoc │ │ │ ├── 202012.adoc │ │ │ ├── 202103.adoc │ │ │ ├── 202109.adoc │ │ │ ├── 202209.adoc │ │ │ ├── 202303.adoc │ │ │ ├── 2024096.adoc │ │ │ └── index.adoc │ └── partials │ │ └── warnings │ │ └── sqlite.adoc │ ├── end-user-guide │ ├── images │ │ └── data-privacy │ │ │ ├── correction-request.png │ │ │ ├── corteza-application.png │ │ │ ├── data-deletion-request.png │ │ │ ├── data-export-request.png │ │ │ ├── data-privacy-console.png │ │ │ ├── delete-request.png │ │ │ ├── dpo-console.png │ │ │ ├── export-request.png │ │ │ ├── incoming-privacy.png │ │ │ ├── manage-request-lists.png │ │ │ ├── pending-export-request.png │ │ │ ├── privacy-request-list.png │ │ │ ├── privacy-requests-list.png │ │ │ └── sensitive-modules.png │ ├── nav.adoc │ └── pages │ │ ├── case-management │ │ ├── accounts.adoc │ │ ├── cases.adoc │ │ ├── contacts.adoc │ │ ├── dashboards.adoc │ │ ├── departments.adoc │ │ ├── entitlement-templates.adoc │ │ ├── entitlements.adoc │ │ ├── home.adoc │ │ ├── index.adoc │ │ ├── knowledge-base.adoc │ │ ├── products.adoc │ │ └── settings.adoc │ │ ├── crm │ │ ├── accounts.adoc │ │ ├── campaigns.adoc │ │ ├── cases.adoc │ │ ├── dashboards.adoc │ │ ├── events.adoc │ │ ├── home.adoc │ │ ├── index.adoc │ │ ├── leads.adoc │ │ ├── opportunities.adoc │ │ ├── products.adoc │ │ ├── quotes.adoc │ │ ├── settings.adoc │ │ └── tasks.adoc │ │ ├── data-privacy │ │ ├── data-privacy-console.adoc │ │ ├── data-privacy-officer.adoc │ │ └── index.adoc │ │ ├── getting-started.adoc │ │ └── index.adoc │ ├── external │ └── nav.adoc │ ├── generated │ └── partials │ │ ├── access-control │ │ ├── automation │ │ │ ├── component.gen.adoc │ │ │ ├── index.gen.adoc │ │ │ └── resource.workflow.gen.adoc │ │ ├── compose │ │ │ ├── component.gen.adoc │ │ │ ├── index.gen.adoc │ │ │ ├── resource.chart.gen.adoc │ │ │ ├── resource.module-field.gen.adoc │ │ │ ├── resource.module.gen.adoc │ │ │ ├── resource.namespace.gen.adoc │ │ │ ├── resource.page-layout.gen.adoc │ │ │ ├── resource.page.gen.adoc │ │ │ └── resource.record.gen.adoc │ │ ├── federation │ │ │ ├── component.gen.adoc │ │ │ ├── index.gen.adoc │ │ │ ├── resource.exposed-module.gen.adoc │ │ │ ├── resource.node.gen.adoc │ │ │ └── resource.shared-module.gen.adoc │ │ └── system │ │ │ ├── component.gen.adoc │ │ │ ├── index.gen.adoc │ │ │ ├── resource.apigw-route.gen.adoc │ │ │ ├── resource.application.gen.adoc │ │ │ ├── resource.auth-client.gen.adoc │ │ │ ├── resource.dal-connection.gen.adoc │ │ │ ├── resource.data-privacy-request.gen.adoc │ │ │ ├── resource.queue.gen.adoc │ │ │ ├── resource.report.gen.adoc │ │ │ ├── resource.role.gen.adoc │ │ │ ├── resource.template.gen.adoc │ │ │ └── resource.user.gen.adoc │ │ ├── afunc.gen.adoc │ │ ├── benchmarks │ │ ├── bench-classic-benchmark-intro.adoc │ │ ├── bench-classic-crud-operations-crud-create-footnote.adoc │ │ ├── bench-classic-crud-operations-crud-create-intro.adoc │ │ ├── bench-classic-crud-operations-crud-delete-footnote.adoc │ │ ├── bench-classic-crud-operations-crud-delete-intro.adoc │ │ ├── bench-classic-crud-operations-crud-lookup-footnote.adoc │ │ ├── bench-classic-crud-operations-crud-lookup-intro.adoc │ │ ├── bench-classic-crud-operations-crud-update-footnote.adoc │ │ ├── bench-classic-crud-operations-crud-update-intro.adoc │ │ ├── bench-classic-list-filter---sort-search-footnote.adoc │ │ ├── bench-classic-list-filter---sort-search-intro.adoc │ │ ├── bench-classic-list-filter-search-footnote.adoc │ │ ├── bench-classic-list-filter-search-intro.adoc │ │ ├── bench-classic-list-plain-search-footnote.adoc │ │ ├── bench-classic-list-plain-search-intro.adoc │ │ ├── bench-classic-list-sort-search-footnote.adoc │ │ ├── bench-classic-list-sort-search-intro.adoc │ │ ├── bench-classic.gen.adoc │ │ ├── bench-dedicated-benchmark-intro.adoc │ │ ├── bench-dedicated-crud-operations-crud-create-footnote.adoc │ │ ├── bench-dedicated-crud-operations-crud-create-intro.adoc │ │ ├── bench-dedicated-crud-operations-crud-delete-footnote.adoc │ │ ├── bench-dedicated-crud-operations-crud-delete-intro.adoc │ │ ├── bench-dedicated-crud-operations-crud-lookup-footnote.adoc │ │ ├── bench-dedicated-crud-operations-crud-lookup-intro.adoc │ │ ├── bench-dedicated-crud-operations-crud-update-footnote.adoc │ │ ├── bench-dedicated-crud-operations-crud-update-intro.adoc │ │ ├── bench-dedicated-list-filter---sort-search-footnote.adoc │ │ ├── bench-dedicated-list-filter---sort-search-intro.adoc │ │ ├── bench-dedicated-list-filter-search-footnote.adoc │ │ ├── bench-dedicated-list-filter-search-intro.adoc │ │ ├── bench-dedicated-list-plain-search-footnote.adoc │ │ ├── bench-dedicated-list-plain-search-intro.adoc │ │ ├── bench-dedicated-list-sort-search-footnote.adoc │ │ ├── bench-dedicated-list-sort-search-intro.adoc │ │ ├── bench-dedicated.gen.adoc │ │ └── variables.adoc │ │ ├── env-options.gen.adoc │ │ ├── expr-types.gen.adoc │ │ └── resource-events.gen.adoc │ └── integrator-guide │ ├── attachments │ ├── api-gw │ │ └── workflow-processing │ │ │ ├── wf-request-read-fn.json │ │ │ └── wf-request-read-js.json │ └── automation │ │ └── workflows │ │ ├── email_attachment_send.json │ │ ├── email_builder_send.json │ │ ├── email_direct_send.json │ │ ├── examples │ │ ├── dynamic-config │ │ │ └── example-workflow.json │ │ ├── missing-value-default.json │ │ ├── module.json │ │ ├── notifications │ │ │ ├── send-record-notification.json │ │ │ └── send-simple-notification.json │ │ ├── page-button.json │ │ ├── parallelism │ │ │ ├── conditional-segment.json │ │ │ ├── conditional.json │ │ │ ├── unconditional-segment.json │ │ │ └── unconditional.json │ │ ├── record │ │ │ ├── create-update.json │ │ │ ├── existence-a.json │ │ │ └── existence-b.json │ │ ├── records-age-filter.json │ │ ├── records-iterator-nested.json │ │ ├── records-iterator-regular.json │ │ ├── records-no-filter.json │ │ ├── records-range-filter.json │ │ ├── records-simple-filter.json │ │ └── remove-value.json │ │ ├── queue-add.json │ │ ├── queue-read.json │ │ ├── request_process.json │ │ ├── scaling │ │ ├── main-wf-example.json │ │ └── sub-wf-example.json │ │ ├── template_rendering_html.json │ │ └── template_rendering_pdf.json │ ├── examples │ ├── client-script-sample │ │ ├── before-form-record.js │ │ ├── button-generic.js │ │ └── button-record.js │ ├── server-script-sample │ │ ├── after-record.js │ │ ├── before-record.js │ │ ├── button-generic.js │ │ ├── button-record.js │ │ ├── implicit-generic.js │ │ └── sink-generic.js │ └── testing-setup │ │ ├── doteslintrc.js │ │ ├── dotgitignore.txt │ │ ├── dotmocharc.js │ │ ├── package.json │ │ └── server-scripts │ │ └── example │ │ ├── Sample.js │ │ └── Sample.test.js │ ├── images │ ├── api-gw │ │ ├── app-selector.png │ │ ├── javascript-processing │ │ │ ├── define.png │ │ │ └── editor.png │ │ ├── profiler │ │ │ ├── prefilter-cofigure.png │ │ │ ├── prefilter-select.png │ │ │ ├── preflter-added.png │ │ │ ├── profiler-general-route.png │ │ │ ├── profiler-general.png │ │ │ ├── request-details-bottom.png │ │ │ ├── request-details-top.png │ │ │ ├── route-list.png │ │ │ └── route-profiler.png │ │ ├── route-create.png │ │ ├── route-filters.png │ │ ├── route-list.png │ │ ├── route-wf-modal.png │ │ ├── route-wf.png │ │ ├── wf-request-read-fn.png │ │ └── wf-request-read-js.png │ ├── app-selector-discovery.png │ ├── app-selector.png │ ├── application │ │ ├── application-button.png │ │ ├── application-checkbox.png │ │ ├── application-list.png │ │ ├── application-submit-button.png │ │ ├── c-application.png │ │ ├── c-applications.png │ │ ├── create-application.png │ │ ├── edit-application.png │ │ ├── edit-applications.png │ │ ├── new-application.png │ │ └── new-edit-application.png │ ├── authentication │ │ ├── auth-client-authorization-code.png │ │ ├── auth-client-client-credentials.png │ │ ├── auth-client-create.png │ │ ├── auth-client-delete.png │ │ ├── auth-client-edit.png │ │ ├── auth-client-list.png │ │ ├── auth-login.png │ │ ├── config-basic.png │ │ ├── external │ │ │ ├── roles.png │ │ │ ├── saml │ │ │ │ ├── admin-settings.png │ │ │ │ ├── azure │ │ │ │ │ ├── activate-certificate-warning.png │ │ │ │ │ ├── activate-certificate.png │ │ │ │ │ ├── app-overview.png │ │ │ │ │ ├── auth-settings.png │ │ │ │ │ ├── browse-microsoft-entra-gallery.png │ │ │ │ │ ├── certificate-active.png │ │ │ │ │ ├── confirm-modal.png │ │ │ │ │ ├── corteza-homepage.png │ │ │ │ │ ├── create-new-app.png │ │ │ │ │ ├── enterprise-applications.png │ │ │ │ │ ├── homepage.png │ │ │ │ │ ├── login-screen.png │ │ │ │ │ ├── saml-params-bottom.png │ │ │ │ │ ├── saml-params-top.png │ │ │ │ │ ├── sso-config-basic-saml-configuration.png │ │ │ │ │ ├── sso-config-certificate-import.png │ │ │ │ │ ├── sso-config-certificates.png │ │ │ │ │ ├── sso-config-home.png │ │ │ │ │ └── sso-type-select.png │ │ │ │ ├── login-screen.png │ │ │ │ └── okta │ │ │ │ │ ├── corteza-saml-details.png │ │ │ │ │ ├── corteza-saml-details2.png │ │ │ │ │ ├── corteza-select-saml.png │ │ │ │ │ ├── okta-application-preview.png │ │ │ │ │ ├── okta-application-screen2.png │ │ │ │ │ ├── okta-application-screen3.png │ │ │ │ │ ├── okta-application-screen4.png │ │ │ │ │ ├── okta-application-screen5.png │ │ │ │ │ └── okta-application.png │ │ │ ├── settings.png │ │ │ └── with-corteza │ │ │ │ ├── auth-client.png │ │ │ │ ├── logged-in.png │ │ │ │ ├── login-oidc.png │ │ │ │ ├── login.png │ │ │ │ ├── provider-added.png │ │ │ │ ├── provider-configure.png │ │ │ │ └── provider-list.png │ │ ├── mfa │ │ │ ├── mfa-enable.png │ │ │ ├── mfa-login-confirm.png │ │ │ ├── mfa-settings-admin-configure.png │ │ │ ├── mfa-settings-auth-authenticator-add.png │ │ │ ├── mfa-settings-auth-authenticator-enabled.png │ │ │ ├── mfa-settings-auth-email-enabled.png │ │ │ └── mfa-settings-auth.png │ │ ├── password-constraints.png │ │ └── password-security-disabled.png │ ├── automation │ │ └── workflows │ │ │ ├── best-practices │ │ │ ├── compact-no.png │ │ │ ├── compact-yes.png │ │ │ ├── constraints-no.png │ │ │ └── constraints-yes.png │ │ │ ├── delay-example.png │ │ │ ├── delay-example.svg │ │ │ ├── edit.png │ │ │ ├── editor.png │ │ │ ├── editor.svg │ │ │ ├── email-send │ │ │ ├── email-builder-ex-1.png │ │ │ └── email-direct-ex-1.png │ │ │ ├── error-handler.png │ │ │ ├── error.png │ │ │ ├── examples │ │ │ ├── attaching-files │ │ │ │ ├── add-reference.png │ │ │ │ ├── make-record.png │ │ │ │ ├── record-list.png │ │ │ │ ├── save-record.png │ │ │ │ ├── upload-attachment.png │ │ │ │ └── workflow-base.png │ │ │ ├── drafts │ │ │ │ ├── iterator-nested-wf.png │ │ │ │ ├── iterator-wf.png │ │ │ │ ├── manual-wf.png │ │ │ │ ├── module.png │ │ │ │ ├── pageblock-automation-add.png │ │ │ │ ├── pageblock-automation-pressed.png │ │ │ │ ├── records.png │ │ │ │ └── wf.png │ │ │ ├── dynamic-config │ │ │ │ ├── example-workflow.png │ │ │ │ └── settings-module.png │ │ │ ├── email-attachment │ │ │ │ ├── email-mime-contents.png │ │ │ │ ├── template-base-content.png │ │ │ │ ├── template-base-quote.png │ │ │ │ └── workflow.png │ │ │ ├── gateway-file-upload │ │ │ │ ├── postfilter.png │ │ │ │ ├── prefilter.png │ │ │ │ ├── processing.png │ │ │ │ ├── step-config.png │ │ │ │ └── workflow.png │ │ │ ├── manual-timeout.png │ │ │ ├── notifications │ │ │ │ ├── notifications-record-workflow.png │ │ │ │ ├── notifications-record.png │ │ │ │ ├── notifications-settings.png │ │ │ │ ├── notifications-simple-workflow.png │ │ │ │ ├── notifications-simple.png │ │ │ │ └── notifications-topbar.png │ │ │ ├── parallelism │ │ │ │ ├── conditional-segment.png │ │ │ │ ├── conditional.png │ │ │ │ ├── unconditional-segment.png │ │ │ │ └── unconditional.png │ │ │ ├── parse-gateway-payload.png │ │ │ ├── queue-create.png │ │ │ ├── queue-endpoint.png │ │ │ ├── queue-profiler-1.png │ │ │ ├── queue-profiler-2.png │ │ │ ├── queue-wf-add.png │ │ │ ├── queue-wf-read.png │ │ │ ├── record │ │ │ │ ├── create-update.png │ │ │ │ ├── existence-a.png │ │ │ │ ├── existence-b.png │ │ │ │ ├── missing-value-default.png │ │ │ │ └── remove-value.png │ │ │ ├── template-rendering │ │ │ │ ├── html-workflow.png │ │ │ │ └── pdf-workflow.png │ │ │ ├── workflow-example-interval.png │ │ │ └── workflow-example-timestamp.png │ │ │ ├── execution-lifecycle │ │ │ └── sessions-list.png │ │ │ ├── expressions-example.png │ │ │ ├── functions-example-args.png │ │ │ ├── functions-example-cfg.png │ │ │ ├── functions-example-type.png │ │ │ ├── gateway-exclusive.png │ │ │ ├── gateway-inclusive-inf.png │ │ │ ├── gateway-inclusive.png │ │ │ ├── interval-example.png │ │ │ ├── interval-example.svg │ │ │ ├── iterator-body-do.png │ │ │ ├── iterator-body-dont.png │ │ │ ├── iterator-break.png │ │ │ ├── iterator-continue.png │ │ │ ├── list.png │ │ │ ├── multi-terminator.png │ │ │ ├── multi-trigger.png │ │ │ ├── save.png │ │ │ ├── scaling │ │ │ ├── main-wf-args.png │ │ │ ├── main-wf-example.png │ │ │ ├── sub-wf-create.png │ │ │ ├── sub-wf-example.png │ │ │ └── sub-wf-list.png │ │ │ ├── schedule-example.png │ │ │ ├── schedule-example.svg │ │ │ ├── scope-in-depth │ │ │ ├── gateway_scope.svg │ │ │ ├── gateway_scope_base.png │ │ │ ├── loop_scope.svg │ │ │ ├── loop_scope_base.png │ │ │ └── object_pointers.svg │ │ │ ├── step-add.svg │ │ │ ├── step-config.png │ │ │ ├── step-config.svg │ │ │ ├── step-connect-move-from.svg │ │ │ ├── step-connect-move-to.svg │ │ │ ├── step-connect.svg │ │ │ ├── styleguide │ │ │ ├── connector-anchors.png │ │ │ ├── connectors-nok.png │ │ │ ├── connectors-ok.png │ │ │ ├── label-function.png │ │ │ ├── label-gateway.png │ │ │ ├── label-trigger.png │ │ │ ├── simple-expression.png │ │ │ ├── simple-gateway.png │ │ │ └── swimlane.png │ │ │ ├── terminator-long-tasks.png │ │ │ └── testing-debugging │ │ │ ├── debug-example-simple.png │ │ │ ├── debug-stepctx-nok.png │ │ │ ├── debug-stepctx-ok.png │ │ │ ├── debug-stepctx.png │ │ │ ├── manual-test-configure-resources.png │ │ │ ├── manual-test-example-base.png │ │ │ ├── manual-test-load-resources.png │ │ │ ├── manual-test-play.png │ │ │ ├── manual-test-run-nok.png │ │ │ ├── manual-test-run-ok.png │ │ │ ├── manual-test-special-ok.png │ │ │ └── manual-test-special.png │ ├── compose-configuration │ │ ├── chart-create.png │ │ ├── cond_fields_config.png │ │ ├── cond_fields_firstname.png │ │ ├── cond_fields_lastname.png │ │ ├── copied-page.png │ │ ├── create-record-page-1.png │ │ ├── create-record-page-2.png │ │ ├── dal-module │ │ │ ├── config-base.png │ │ │ ├── config-system.png │ │ │ ├── schema-alterations-base.png │ │ │ └── troubleshooting-issues.png │ │ ├── displaying-record-in-modal.png │ │ ├── enable-magnification.png │ │ ├── enabling-record-in-modal.png │ │ ├── field-validation.png │ │ ├── field-value-expr.png │ │ ├── magnification-fullscreen.png │ │ ├── magnification-icon.png │ │ ├── magnification-modal.png │ │ ├── module-create.png │ │ ├── multi-page-views │ │ │ ├── page_layout_actions.png │ │ │ ├── page_layout_config.png │ │ │ ├── page_layout_new.png │ │ │ ├── page_new.png │ │ │ └── page_tree.png │ │ ├── ns-access.png │ │ ├── ns-create.png │ │ ├── ns-edit.png │ │ ├── ns-empty.png │ │ ├── ns-list.png │ │ ├── page-block-clone.png │ │ ├── page-block-copy.png │ │ ├── page-block-dup.png │ │ ├── page-block-general.png │ │ ├── page-block-paste.png │ │ ├── page-block-reference │ │ │ ├── added-comments.png │ │ │ ├── added-map.png │ │ │ ├── added-navigation-center.png │ │ │ ├── added-navigation-justify-none.png │ │ │ ├── added-navigation-left.png │ │ │ ├── added-navigation-pills.png │ │ │ ├── added-navigation-right.png │ │ │ ├── added-navigation-small.png │ │ │ ├── added-navigation-tabs.png │ │ │ ├── added-navigation.png │ │ │ ├── added-report.png │ │ │ ├── config-automation.png │ │ │ ├── config-calendar-base.png │ │ │ ├── config-calendar-es.png │ │ │ ├── config-chart.png │ │ │ ├── config-comments.png │ │ │ ├── config-content.png │ │ │ ├── config-file.png │ │ │ ├── config-iframe.png │ │ │ ├── config-map.png │ │ │ ├── config-metric.png │ │ │ ├── config-navigation.png │ │ │ ├── config-record-list-automation.png │ │ │ ├── config-record-list-ext1.png │ │ │ ├── config-record-list.png │ │ │ ├── config-record-revisions-on-demand.png │ │ │ ├── config-record-revisions.png │ │ │ ├── config-record.png │ │ │ ├── config-report.png │ │ │ ├── config-ro.png │ │ │ └── config-sf.png │ │ ├── page-builder-block-base.png │ │ ├── page-builder-block-picker.png │ │ ├── page-builder-block-repos.png │ │ ├── page-builder-block-resize.png │ │ ├── page-builder-empty.png │ │ ├── page-builder-example.png │ │ ├── page-edit-configure-icon.png │ │ ├── page-edit-configure-set-icon.png │ │ ├── page-edit-module-cases.png │ │ ├── page-edit.png │ │ ├── page-resize-config.png │ │ ├── page-resize-view.png │ │ ├── page-save-as-copy-button.png │ │ ├── page-tree-base.png │ │ ├── page-tree-nest-view.png │ │ ├── page-tree-nest.png │ │ ├── page-tree-reorder-view.png │ │ ├── page-tree-reorder.png │ │ ├── pageblock-refreshicon.png │ │ ├── public-page-case-expanded-sub-pages.png │ │ └── record-revisions │ │ │ ├── admin-module-edit-open-record-page.png │ │ │ ├── admin-module-edit-revisions-enable.png │ │ │ ├── admin-module-edit.png │ │ │ ├── admin-modules.png │ │ │ ├── admin-record-page-add-block-configure.png │ │ │ ├── admin-record-page-add-block-place.png │ │ │ ├── admin-record-page-add-block-select.png │ │ │ ├── admin-record-page-base.png │ │ │ ├── ns-home-with-revisions.png │ │ │ ├── ns-home.png │ │ │ ├── view-record-revision-details.png │ │ │ └── view-record-revision-overview.png │ ├── corteza-studio │ │ ├── branding-section.png │ │ ├── choose-color.png │ │ └── custom-css.png │ ├── dal-connections │ │ ├── base-list.png │ │ ├── config-basic.png │ │ ├── config-connection.png │ │ ├── config-properties.png │ │ ├── list.png │ │ ├── management │ │ │ ├── delete.png │ │ │ └── interface.png │ │ └── troubleshooting-connection-issues.png │ ├── data-privacy │ │ └── sensitivity-levels │ │ │ ├── dal-connections-edit.png │ │ │ ├── dal-connections-ui.png │ │ │ ├── module-field-privacy.png │ │ │ ├── module-privacy.png │ │ │ ├── sensitivity-level-create.png │ │ │ └── sensitivity-level-ui.png │ ├── discovery │ │ ├── discovery-settings.png │ │ ├── examples │ │ │ └── limit-namespace │ │ │ │ ├── namespace-edit.png │ │ │ │ ├── namespace-manage.png │ │ │ │ ├── namespace-rbac-global.png │ │ │ │ ├── namespace-rbac.png │ │ │ │ └── search-results-limited.png │ │ ├── module-discovery.png │ │ ├── search-results-mapped.png │ │ └── search-results.png │ ├── duplication-detection │ │ ├── duplicate-detection-availablefields.png │ │ ├── duplicate-detection-selectedfields.png │ │ ├── duplicate-detection-validation.png │ │ ├── error.png │ │ └── warning.png │ ├── email-settings │ │ └── form.png │ ├── federation │ │ ├── expose-module.png │ │ └── map-module.png │ ├── i18n │ │ └── resource │ │ │ ├── editor.png │ │ │ ├── language-added.png │ │ │ ├── language-dd.png │ │ │ └── namespace-edit.png │ ├── miscellaneous │ │ ├── compose-settings.png │ │ ├── corteza-one-app-selector.png │ │ ├── email-settings.png │ │ ├── system-settings.png │ │ ├── ui-settings.png │ │ ├── webapp-admin-dashboard.png │ │ ├── webapp-compose-app-admin-panel.png │ │ ├── webapp-compose-app-homepage.png │ │ └── webapp-compose-homepage.png │ ├── personalization │ │ └── devtool.png │ ├── reporter │ │ ├── app-selector.png │ │ ├── chart-configuration.png │ │ ├── group.png │ │ ├── join.png │ │ ├── load.png │ │ ├── metric-configuration.png │ │ ├── prefilter-default.png │ │ ├── prefilter-expression.png │ │ ├── presort.png │ │ ├── report-builder-base.png │ │ ├── report-builder-block-base.png │ │ ├── report-builder-block-config.png │ │ ├── report-builder-block-el.png │ │ ├── report-builder-delete.png │ │ ├── report-builder-elements.png │ │ ├── report-builder-repos-base.png │ │ ├── report-builder-repos.png │ │ ├── report-builder-resize-base.png │ │ ├── report-builder-resize.png │ │ ├── report-create.png │ │ ├── report-list.png │ │ ├── table-configuration.png │ │ ├── text-configuration.png │ │ └── text-usage-1.png │ ├── security-model │ │ ├── access-control │ │ │ ├── add-role.png │ │ │ ├── eval-permission.png │ │ │ ├── evaluate-permissions.png │ │ │ ├── general-permissions-button.png │ │ │ ├── permission-button-page.png │ │ │ ├── save-eval-permission.png │ │ │ ├── save-evaluation-permission.png │ │ │ ├── save-evaluation.png │ │ │ ├── system-evaluated-permissions.png │ │ │ ├── system-permissions-add-button.png │ │ │ └── system-permissions-button.png │ │ ├── general-permissions-button.png │ │ ├── roles │ │ │ ├── clone-permissions-button.png │ │ │ ├── clone-permissions.png │ │ │ ├── create.png │ │ │ ├── edit.png │ │ │ └── list.png │ │ ├── user-create.png │ │ ├── user-edit-membership.png │ │ ├── user-edit.png │ │ ├── user-groups │ │ │ ├── auth-client-default-user-group.png │ │ │ ├── user-edit.png │ │ │ ├── user-group-basic-filled.png │ │ │ ├── user-group-bottom.png │ │ │ └── user-groups-list.png │ │ └── user-list.png │ └── troubleshooting │ │ ├── logging │ │ ├── action-log-inspect.png │ │ └── action-log.png │ │ ├── stale-data-workflow-fix.png │ │ └── stale-data-workflow.png │ ├── nav.adoc │ ├── pages │ ├── accessing-corteza │ │ ├── api-clients.adoc │ │ ├── examples │ │ │ ├── compose-attachments.adoc │ │ │ ├── compose-records-bulk.adoc │ │ │ ├── compose-records.adoc │ │ │ └── system │ │ │ │ ├── index.adoc │ │ │ │ └── sending-emails.adoc │ │ ├── index.adoc │ │ ├── pagination.adoc │ │ └── ql.adoc │ ├── api-gw │ │ ├── index.adoc │ │ ├── javascript-processing.adoc │ │ ├── profiler.adoc │ │ └── workflow-processing.adoc │ ├── authentication │ │ ├── authenticate-external │ │ │ ├── index.adoc │ │ │ └── with-corteza.adoc │ │ ├── external │ │ │ ├── facebook.adoc │ │ │ ├── github.adoc │ │ │ ├── google.adoc │ │ │ ├── index.adoc │ │ │ ├── linkedin.adoc │ │ │ └── saml │ │ │ │ ├── azure.adoc │ │ │ │ ├── index.adoc │ │ │ │ └── okta.adoc │ │ ├── index.adoc │ │ ├── mfa.adoc │ │ ├── personalization.adoc │ │ └── session-duration.adoc │ ├── automation │ │ ├── automation-scripts │ │ │ ├── corredor-helpers.adoc │ │ │ ├── debugging.adoc │ │ │ ├── deploying.adoc │ │ │ ├── edit-built-in-scripts.adoc │ │ │ ├── examples │ │ │ │ ├── explicit-server-script.adoc │ │ │ │ └── local-setup.adoc │ │ │ ├── index.adoc │ │ │ ├── node-modules.adoc │ │ │ ├── references │ │ │ │ ├── resource-constraints │ │ │ │ │ ├── compose │ │ │ │ │ │ ├── module.adoc │ │ │ │ │ │ ├── namespace.adoc │ │ │ │ │ │ ├── page.adoc │ │ │ │ │ │ └── record.adoc │ │ │ │ │ ├── index.adoc │ │ │ │ │ ├── messaging │ │ │ │ │ │ ├── channel-member.adoc │ │ │ │ │ │ ├── channel.adoc │ │ │ │ │ │ ├── command.adoc │ │ │ │ │ │ └── message.adoc │ │ │ │ │ └── system │ │ │ │ │ │ ├── application.adoc │ │ │ │ │ │ ├── mail.adoc │ │ │ │ │ │ ├── role.adoc │ │ │ │ │ │ ├── sink.adoc │ │ │ │ │ │ └── user.adoc │ │ │ │ └── resource-events.adoc │ │ │ ├── samples │ │ │ │ ├── client-scripts │ │ │ │ │ ├── explicit-notify.adoc │ │ │ │ │ ├── implicit-prefill.adoc │ │ │ │ │ └── index.adoc │ │ │ │ ├── server-scripts │ │ │ │ │ ├── explicit-send-email.adoc │ │ │ │ │ ├── implicit-send-email.adoc │ │ │ │ │ ├── implicit-value-update.adoc │ │ │ │ │ └── index.adoc │ │ │ │ └── triggers │ │ │ │ │ └── index.adoc │ │ │ └── testing.adoc │ │ ├── execution-flow-details.adoc │ │ ├── index.adoc │ │ └── workflows │ │ │ ├── automation-scripts.adoc │ │ │ ├── best-practices.adoc │ │ │ ├── email-send.adoc │ │ │ ├── examples │ │ │ ├── attaching-files.adoc │ │ │ ├── draft-examples.adoc │ │ │ ├── dynamic-config.adoc │ │ │ ├── email-attachment.adoc │ │ │ ├── execution-timeout.adoc │ │ │ ├── gw-parse-payload.adoc │ │ │ ├── index.adoc │ │ │ ├── integration-gateway-file-upload.adoc │ │ │ ├── interval.adoc │ │ │ ├── messagebus-read-write.adoc │ │ │ ├── notifications.adoc │ │ │ ├── parallelism.adoc │ │ │ ├── record.adoc │ │ │ ├── template-rendering.adoc │ │ │ └── timestamp.adoc │ │ │ ├── execution-lifecycle.adoc │ │ │ ├── func-reference.adoc │ │ │ ├── index.adoc │ │ │ ├── record-selection.adoc │ │ │ ├── scaling │ │ │ └── sub-workflows.adoc │ │ │ ├── scope-in-depth.adoc │ │ │ ├── style-guide.adoc │ │ │ ├── testing-debugging.adoc │ │ │ └── types.adoc │ ├── compose-configuration │ │ ├── duplication-detection.adoc │ │ ├── examples │ │ │ ├── index.adoc │ │ │ └── record-filtering-nested.adoc │ │ ├── field-expr.adoc │ │ ├── field-types.adoc │ │ ├── import-export.adoc │ │ ├── index.adoc │ │ ├── page-blocks.adoc │ │ ├── page-layouts.adoc │ │ ├── record-modal.adoc │ │ ├── record-revisions.adoc │ │ ├── record-storage.adoc │ │ └── samples │ │ │ └── page-blocks │ │ │ ├── index.adoc │ │ │ ├── metrics.adoc │ │ │ └── record-lists.adoc │ ├── corteza-studio │ │ └── index.adoc │ ├── create-application.adoc │ ├── dal-connections │ │ ├── connection-management.adoc │ │ ├── index.adoc │ │ └── troubleshooting.adoc │ ├── data-privacy │ │ └── sensitivity-levels.adoc │ ├── discovery │ │ ├── examples │ │ │ ├── index.adoc │ │ │ └── limit-namespace.adoc │ │ └── index.adoc │ ├── expr │ │ ├── datetime-formatting.adoc │ │ ├── fnc-reference.adoc │ │ ├── index.adoc │ │ ├── string-formatting.adoc │ │ └── type-reference.adoc │ ├── federation │ │ ├── index.adoc │ │ ├── nodes.adoc │ │ └── share-data.adoc │ ├── i18n │ │ ├── index.adoc │ │ ├── resource.adoc │ │ └── static.adoc │ ├── index.adoc │ ├── miscellaneous.adoc │ ├── provisioning │ │ └── index.adoc │ ├── reporting │ │ ├── expr-reference.adoc │ │ ├── index.adoc │ │ ├── prefilter.adoc │ │ └── presort.adoc │ ├── security-model │ │ ├── examples │ │ │ ├── examples-contextual.adoc │ │ │ └── index.adoc │ │ ├── index.adoc │ │ ├── permissions-evaluation.adoc │ │ ├── references │ │ │ ├── contextual-role-parameters.adoc │ │ │ └── operations.adoc │ │ ├── roles.adoc │ │ ├── user-groups.adoc │ │ └── users.adoc │ ├── server-plugins │ │ └── index.adoc │ ├── templates │ │ ├── index.adoc │ │ └── variables.adoc │ ├── terminology.adoc │ └── troubleshooting │ │ ├── logging.adoc │ │ └── stale-data.adoc │ └── partials │ ├── api-example-note.adoc │ ├── dal-model-ident-placeholders.adoc │ ├── expr │ ├── fnc-ac.adoc │ ├── fnc-array.adoc │ ├── fnc-datetime.adoc │ ├── fnc-kv.adoc │ ├── fnc-num.adoc │ ├── fnc-string.adoc │ ├── fnc-type.adoc │ └── type-reference.adoc │ ├── fs-client.adoc │ ├── fs-server.adoc │ ├── generated │ └── resource-events.gen.adoc │ ├── handle-constraints.adoc │ ├── security.adoc │ ├── system-overview.adoc │ └── terminology.adoc ├── tools ├── cli-commands.txt └── gen-cli-examples.sh └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | /*.iml 2 | /dist 3 | /build 4 | /.cache 5 | /src 6 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/DCO -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/README.adoc -------------------------------------------------------------------------------- /antora-playbook-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora-playbook-local.yml -------------------------------------------------------------------------------- /antora-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora-playbook.yml -------------------------------------------------------------------------------- /antora/ui/css/poppins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/css/poppins.css -------------------------------------------------------------------------------- /antora/ui/css/site-extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/css/site-extra.css -------------------------------------------------------------------------------- /antora/ui/css/vendor/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/css/vendor/docsearch.css -------------------------------------------------------------------------------- /antora/ui/css/vendor/docsearch.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/css/vendor/docsearch.min.css -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-Black.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-Italic.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-Thin.ttf -------------------------------------------------------------------------------- /antora/ui/font/poppins/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/font/poppins/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /antora/ui/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/icon.svg -------------------------------------------------------------------------------- /antora/ui/js/medium-zoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/js/medium-zoom.min.js -------------------------------------------------------------------------------- /antora/ui/js/vendor/docsearch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/js/vendor/docsearch.min.js -------------------------------------------------------------------------------- /antora/ui/partials/body.hbs: -------------------------------------------------------------------------------- 1 |
2 | {{> main}} 3 |
4 | -------------------------------------------------------------------------------- /antora/ui/partials/footer-content.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/partials/footer-content.hbs -------------------------------------------------------------------------------- /antora/ui/partials/head-meta.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/partials/head-meta.hbs -------------------------------------------------------------------------------- /antora/ui/partials/head-styles.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/partials/head-styles.hbs -------------------------------------------------------------------------------- /antora/ui/partials/header-content.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/partials/header-content.hbs -------------------------------------------------------------------------------- /antora/ui/partials/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/partials/main.hbs -------------------------------------------------------------------------------- /antora/ui/partials/nav-explore.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/partials/nav-explore.hbs -------------------------------------------------------------------------------- /antora/ui/partials/toolbar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/partials/toolbar.hbs -------------------------------------------------------------------------------- /antora/ui/search-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/search-solid.svg -------------------------------------------------------------------------------- /antora/ui/ui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/antora/ui/ui.yml -------------------------------------------------------------------------------- /dev-docker-entryfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/dev-docker-entryfile.sh -------------------------------------------------------------------------------- /drafts/developer-guide/images/automation-system-dig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/images/automation-system-dig.png -------------------------------------------------------------------------------- /drafts/developer-guide/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/nav.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/envoy/data-shaping.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/envoy/data-shaping.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/envoy/decoder.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/envoy/decoder.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/envoy/dependency-graph.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/envoy/dependency-graph.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/envoy/diagrams/architecture.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/envoy/diagrams/architecture.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/envoy/encoder.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/envoy/encoder.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/envoy/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/envoy/index.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/envoy/resources.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/envoy/resources.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/extensions/corredor-client.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/extensions/corredor-client.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/extensions/corredor-server.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/extensions/corredor-server.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/extensions/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/extensions/index.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/extensions/overview.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/extensions/overview.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/extensions/server.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/extensions/server.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/impersonation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/impersonation.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/index.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/pagination.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/pagination.adoc -------------------------------------------------------------------------------- /drafts/developer-guide/pages/record-list-filtering/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/record-list-filtering/images/image1.png -------------------------------------------------------------------------------- /drafts/developer-guide/pages/record-list-filtering/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/record-list-filtering/images/image2.png -------------------------------------------------------------------------------- /drafts/developer-guide/pages/record-list-filtering/images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/record-list-filtering/images/image3.png -------------------------------------------------------------------------------- /drafts/developer-guide/pages/record-list-filtering/images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/developer-guide/pages/record-list-filtering/images/image4.png -------------------------------------------------------------------------------- /drafts/extensions/automation-iterators.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/automation-iterators.adoc -------------------------------------------------------------------------------- /drafts/extensions/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/nav.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/crm/config.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/crm/config.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/crm/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/crm/index.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/docusign/about.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/docusign/about.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/docusign/config.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/docusign/config.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/docusign/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/docusign/index.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/pexels/about.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/pexels/about.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/pexels/config.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/pexels/config.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/pexels/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/pexels/index.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/pexels/usage.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/pexels/usage.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/phone-burner/about.adoc: -------------------------------------------------------------------------------- 1 | include::ROOT:partial$variables.adoc[] 2 | 3 | = About 4 | 5 | TODO 6 | -------------------------------------------------------------------------------- /drafts/extensions/pages/phone-burner/config.adoc: -------------------------------------------------------------------------------- 1 | include::ROOT:partial$variables.adoc[] 2 | 3 | = Configuration 4 | 5 | TODO 6 | -------------------------------------------------------------------------------- /drafts/extensions/pages/phone-burner/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/phone-burner/index.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/phone-burner/usage.adoc: -------------------------------------------------------------------------------- 1 | include::ROOT:partial$variables.adoc[] 2 | 3 | = Usage 4 | 5 | TODO 6 | -------------------------------------------------------------------------------- /drafts/extensions/pages/renderer/about.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/renderer/about.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/renderer/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/renderer/index.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/renderer/usage.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/renderer/usage.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/service-solution/config.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/service-solution/config.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/service-solution/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/service-solution/index.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/unsplash/about.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/unsplash/about.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/unsplash/config.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/unsplash/config.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/unsplash/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/unsplash/index.adoc -------------------------------------------------------------------------------- /drafts/extensions/pages/unsplash/usage.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/pages/unsplash/usage.adoc -------------------------------------------------------------------------------- /drafts/extensions/record-validation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/record-validation.adoc -------------------------------------------------------------------------------- /drafts/extensions/sink-scripts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/drafts/extensions/sink-scripts.adoc -------------------------------------------------------------------------------- /lib/annotation-preprocessor/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/annotation-preprocessor/README.adoc -------------------------------------------------------------------------------- /lib/annotation-preprocessor/anni-box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/annotation-preprocessor/anni-box.js -------------------------------------------------------------------------------- /lib/annotation-preprocessor/annotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/annotation-preprocessor/annotate.js -------------------------------------------------------------------------------- /lib/annotation-preprocessor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/annotation-preprocessor/index.js -------------------------------------------------------------------------------- /lib/annotation-preprocessor/proc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/annotation-preprocessor/proc.js -------------------------------------------------------------------------------- /lib/annotation-preprocessor/styleguide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/annotation-preprocessor/styleguide.js -------------------------------------------------------------------------------- /lib/changelogenator/decoders/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/decoders/fs.js -------------------------------------------------------------------------------- /lib/changelogenator/decoders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/decoders/index.js -------------------------------------------------------------------------------- /lib/changelogenator/decoders/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/decoders/wrap.js -------------------------------------------------------------------------------- /lib/changelogenator/encode/added.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/encode/added.js -------------------------------------------------------------------------------- /lib/changelogenator/encode/changed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/encode/changed.js -------------------------------------------------------------------------------- /lib/changelogenator/encode/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/encode/deprecated.js -------------------------------------------------------------------------------- /lib/changelogenator/encode/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/encode/development.js -------------------------------------------------------------------------------- /lib/changelogenator/encode/fixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/encode/fixed.js -------------------------------------------------------------------------------- /lib/changelogenator/encode/important.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/encode/important.js -------------------------------------------------------------------------------- /lib/changelogenator/encode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/encode/index.js -------------------------------------------------------------------------------- /lib/changelogenator/encode/ref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/encode/ref.js -------------------------------------------------------------------------------- /lib/changelogenator/encode/removed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/encode/removed.js -------------------------------------------------------------------------------- /lib/changelogenator/encode/security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/encode/security.js -------------------------------------------------------------------------------- /lib/changelogenator/encode/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/encode/utils.js -------------------------------------------------------------------------------- /lib/changelogenator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/changelogenator/index.js -------------------------------------------------------------------------------- /lib/collapsible-block-tree-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/lib/collapsible-block-tree-processor.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/package.json -------------------------------------------------------------------------------- /security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/security.md -------------------------------------------------------------------------------- /src/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/antora.yml -------------------------------------------------------------------------------- /src/modules/ROOT/images/discovery/map-marked-alt-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/discovery/map-marked-alt-solid.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/discovery/search-location-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/discovery/search-location-solid.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/i18n/language-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/i18n/language-solid.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/break.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/break.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/cog.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/continue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/continue.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/debug.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/delay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/delay.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/error-handler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/error-handler.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/error.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/exec-workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/exec-workflow.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/expressions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/expressions.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/function.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/gatewayExclusive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/gatewayExclusive.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/gatewayInclusive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/gatewayInclusive.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/gatewayParallel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/gatewayParallel.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/gateway_parallel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/gateway_parallel.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/iterator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/iterator.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/play.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/prompt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/prompt.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/swimlane copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/swimlane copy.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/swimlane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/swimlane.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/termination copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/termination copy.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/termination.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/termination.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/trigger copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/trigger copy.svg -------------------------------------------------------------------------------- /src/modules/ROOT/images/workflows/trigger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/images/workflows/trigger.svg -------------------------------------------------------------------------------- /src/modules/ROOT/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/nav.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202103.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202103.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/00.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/00.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/01.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/01.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/02.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/02.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/03.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/03.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/04.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/04.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/05.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/05.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/06.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/06.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/07.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/07.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/08.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/08.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/09.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/09.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/10.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/10.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/11.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/11.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/12.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/12.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202109/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202109/index.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202203/00.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202203/00.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202203/01.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202203/01.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202203/02.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202203/02.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202203/03.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202203/03.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202203/04.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202203/04.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202203/06.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202203/06.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202203/06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202203/06.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202203/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202203/index.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/01.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/01.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/02.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/02.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/02.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/03.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/03.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/03.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/04.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/04.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/05.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/05.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/06.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/06.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/06.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/07.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/07.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/08.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/08.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/08.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/08.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/08.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/09.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/09.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/09.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202209/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202209/index.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/00.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/00.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/00.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/01.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/01.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/01.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/02.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/02.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/02.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/03.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/03.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/03.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/04.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/04.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/04.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/05.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/05.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/05.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/06.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/06.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/06.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/07.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/07.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/07.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/08.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/08.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/08.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202303/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202303/index.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/00.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/00.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/00.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/01.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/01.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/01.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/02.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/02.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/02.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/03.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/03.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/03.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/04.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/04.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/04.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/05.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/05.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/05.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/06.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/06.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/06.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/07.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/07.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/07.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/08.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/08.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/08.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202309/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202309/index.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/00.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/00.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/00.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/01.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/01.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/01.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/02.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/02.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/02.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/03.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/03.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/03.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/04.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/04.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/04.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/05.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/05.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/05.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/06.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/06.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/06.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/07.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/07.gen.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/07.json -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/202409/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/202409/index.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/archive/202006.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/archive/202006.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/archive/202009.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/archive/202009.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/archive/202012.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/archive/202012.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/archive/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/archive/index.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/changelog/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/changelog/index.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/pages/index.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/partials/icons.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/partials/icons.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/partials/setup/containerized-db.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/partials/setup/containerized-db.adoc -------------------------------------------------------------------------------- /src/modules/ROOT/partials/variables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/ROOT/partials/variables.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/images/build-pipelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/images/build-pipelines.png -------------------------------------------------------------------------------- /src/modules/developer-guide/images/documentation/annotation-canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/images/documentation/annotation-canvas.png -------------------------------------------------------------------------------- /src/modules/developer-guide/images/documentation/annotation-canvas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/images/documentation/annotation-canvas.svg -------------------------------------------------------------------------------- /src/modules/developer-guide/images/documentation/annotation-edit-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/images/documentation/annotation-edit-browser.png -------------------------------------------------------------------------------- /src/modules/developer-guide/images/documentation/example-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/images/documentation/example-blank.png -------------------------------------------------------------------------------- /src/modules/developer-guide/images/documentation/example-crop-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/images/documentation/example-crop-base.png -------------------------------------------------------------------------------- /src/modules/developer-guide/images/documentation/example-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/images/documentation/example-focus.png -------------------------------------------------------------------------------- /src/modules/developer-guide/images/documentation/ruler-extension-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/images/documentation/ruler-extension-example.png -------------------------------------------------------------------------------- /src/modules/developer-guide/images/documentation/screenshot-brave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/images/documentation/screenshot-brave.png -------------------------------------------------------------------------------- /src/modules/developer-guide/images/documentation/screenshot-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/images/documentation/screenshot-firefox.png -------------------------------------------------------------------------------- /src/modules/developer-guide/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/nav.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-js/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-js/index.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-js/structure.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-js/structure.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/access-control/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/access-control/index.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/api.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/api.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/auth.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/auth.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/codegen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/codegen.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/expressions/types.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/expressions/types.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/federation/api/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/federation/api/index.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/federation/dev-notes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/federation/dev-notes.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/federation/glossary.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/federation/glossary.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/federation/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/federation/index.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/federation/node-pair.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/federation/node-pair.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/federation/node-sync.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/federation/node-sync.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/i18n.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/i18n.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/index.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/messagebus.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/messagebus.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/resource-labels.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/resource-labels.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/sink.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/sink.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/store.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/store.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/structure.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/structure.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-server/workflows/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-server/workflows/index.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-vue/authentication.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-vue/authentication.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-vue/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-vue/index.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/corteza-vue/structure.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/corteza-vue/structure.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/documentation/annotations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/documentation/annotations.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/documentation/changelog.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/documentation/changelog.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/documentation/codegen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/documentation/codegen.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/documentation/conventions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/documentation/conventions.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/documentation/dev.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/documentation/dev.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/documentation/examples/getting-started.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/documentation/examples/getting-started.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/documentation/examples/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/documentation/examples/index.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/documentation/examples/no-jank.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/documentation/examples/no-jank.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/documentation/examples/sample-feature.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/documentation/examples/sample-feature.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/documentation/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/documentation/index.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/documentation/writing-guidelines.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/documentation/writing-guidelines.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/index.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/release-cycle/core-repos.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/release-cycle/core-repos.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/release-cycle/docs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/release-cycle/docs.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/release-cycle/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/release-cycle/index.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/web-applications/c3.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/web-applications/c3.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/web-applications/i18n.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/web-applications/i18n.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/web-applications/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/web-applications/index.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/web-applications/record-list-filtering.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/web-applications/record-list-filtering.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/pages/web-applications/structure.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/pages/web-applications/structure.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/partials/documentation/annotation-cropped.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/partials/documentation/annotation-cropped.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/partials/documentation/annotation-danger.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/partials/documentation/annotation-danger.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/partials/documentation/annotation-note.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/partials/documentation/annotation-note.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/partials/documentation/annotation-padding.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/partials/documentation/annotation-padding.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/partials/documentation/annotation-success.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/partials/documentation/annotation-success.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/partials/documentation/focus-annotation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/partials/documentation/focus-annotation.adoc -------------------------------------------------------------------------------- /src/modules/developer-guide/partials/documentation/focus.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/developer-guide/partials/documentation/focus.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/local-in-mem/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/local-in-mem/docker-compose.yaml -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/local-in-mem/output-ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/local-in-mem/output-ps.txt -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/local-mysql/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/local-mysql/docker-compose.yaml -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/local-mysql/env-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/local-mysql/env-example.txt -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/local-mysql/output-ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/local-mysql/output-ps.txt -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/local-pgsql/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/local-pgsql/docker-compose.yaml -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/local-pgsql/env-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/local-pgsql/env-example.txt -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/local-pgsql/output-ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/local-pgsql/output-ps.txt -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/prod-discovery-pgsql/env-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/prod-discovery-pgsql/env-example.txt -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/prod-mysql/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/prod-mysql/docker-compose.yaml -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/prod-mysql/env-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/prod-mysql/env-example.txt -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/prod-mysql/output-ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/prod-mysql/output-ps.txt -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/prod-pgsql/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/prod-pgsql/docker-compose.yaml -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/prod-pgsql/env-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/prod-pgsql/env-example.txt -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/prod-pgsql/output-ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/prod-pgsql/output-ps.txt -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/prod-proxy-nginx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/prod-proxy-nginx/.gitignore -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/prod-proxy-nginx/custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/prod-proxy-nginx/custom.conf -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/prod-proxy-nginx/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/prod-proxy-nginx/docker-compose.yaml -------------------------------------------------------------------------------- /src/modules/devops-guide/examples/deploy/prod-proxy-nginx/output-ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/examples/deploy/prod-proxy-nginx/output-ps.txt -------------------------------------------------------------------------------- /src/modules/devops-guide/images/arch-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/images/arch-overview.png -------------------------------------------------------------------------------- /src/modules/devops-guide/images/discovery/auth-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/images/discovery/auth-client.png -------------------------------------------------------------------------------- /src/modules/devops-guide/images/discovery/role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/images/discovery/role.png -------------------------------------------------------------------------------- /src/modules/devops-guide/images/discovery/user-membership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/images/discovery/user-membership.png -------------------------------------------------------------------------------- /src/modules/devops-guide/images/discovery/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/images/discovery/user.png -------------------------------------------------------------------------------- /src/modules/devops-guide/images/template-preview-pdf-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/images/template-preview-pdf-enabled.png -------------------------------------------------------------------------------- /src/modules/devops-guide/images/troubleshooting/health-check/http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/images/troubleshooting/health-check/http.png -------------------------------------------------------------------------------- /src/modules/devops-guide/images/web-console-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/images/web-console-home.png -------------------------------------------------------------------------------- /src/modules/devops-guide/images/web-console-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/images/web-console-logs.png -------------------------------------------------------------------------------- /src/modules/devops-guide/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/nav.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/access-control/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/access-control/index.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/discovery/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/discovery/index.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/email-relay.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/email-relay.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/examples/cli/record-import.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/examples/cli/record-import.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/examples/cli/resource-translation-import.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/examples/cli/resource-translation-import.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/examples/deploy-offline/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/examples/deploy-offline/index.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/examples/deploy-offline/multi-mysql.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/examples/deploy-offline/multi-mysql.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/examples/deploy-online/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/examples/deploy-online/index.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/examples/deploy-online/multi-mysql.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/examples/deploy-online/multi-mysql.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/examples/deploy-online/multi-pgsql.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/examples/deploy-online/multi-pgsql.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/examples/deploy-online/single-mysql.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/examples/deploy-online/single-mysql.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/examples/deploy-online/single-pgsql.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/examples/deploy-online/single-pgsql.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/i18n/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/i18n/index.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/index.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/installing-sass/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/installing-sass/index.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/maintenance/backups.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/maintenance/backups.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/maintenance/database-password.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/maintenance/database-password.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/maintenance/sql-snippets.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/maintenance/sql-snippets.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/miscellaneous/benchmark-classic.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/miscellaneous/benchmark-classic.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/miscellaneous/benchmark-dedicated.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/miscellaneous/benchmark-dedicated.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/miscellaneous/containerized-storage.adoc: -------------------------------------------------------------------------------- 1 | include::ROOT:partial$setup/containerized-db.adoc[] 2 | -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/pdf-renderer.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/pdf-renderer.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/references/cli-reference.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/references/cli-reference.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/references/configuration/corredor.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/references/configuration/corredor.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/references/configuration/server.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/references/configuration/server.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/server-plugins/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/server-plugins/index.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/sink-route.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/sink-route.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/system-requirements.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/system-requirements.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/troubleshooting/health-check.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/troubleshooting/health-check.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/troubleshooting/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/troubleshooting/index.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/troubleshooting/logging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/troubleshooting/logging.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/troubleshooting/web-console.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/troubleshooting/web-console.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/upgrade/202003.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/upgrade/202003.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/upgrade/202009.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/upgrade/202009.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/upgrade/202012.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/upgrade/202012.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/upgrade/202103.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/upgrade/202103.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/upgrade/202109.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/upgrade/202109.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/upgrade/202209.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/upgrade/202209.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/upgrade/202303.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/upgrade/202303.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/upgrade/2024096.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/upgrade/2024096.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/pages/upgrade/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/pages/upgrade/index.adoc -------------------------------------------------------------------------------- /src/modules/devops-guide/partials/warnings/sqlite.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/devops-guide/partials/warnings/sqlite.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/correction-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/correction-request.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/corteza-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/corteza-application.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/data-deletion-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/data-deletion-request.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/data-export-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/data-export-request.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/data-privacy-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/data-privacy-console.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/delete-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/delete-request.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/dpo-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/dpo-console.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/export-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/export-request.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/incoming-privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/incoming-privacy.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/manage-request-lists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/manage-request-lists.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/pending-export-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/pending-export-request.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/privacy-request-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/privacy-request-list.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/privacy-requests-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/privacy-requests-list.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/images/data-privacy/sensitive-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/images/data-privacy/sensitive-modules.png -------------------------------------------------------------------------------- /src/modules/end-user-guide/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/nav.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/case-management/accounts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/case-management/accounts.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/case-management/cases.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/case-management/cases.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/case-management/contacts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/case-management/contacts.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/case-management/dashboards.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/case-management/dashboards.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/case-management/departments.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/case-management/departments.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/case-management/entitlement-templates.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/case-management/entitlement-templates.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/case-management/entitlements.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/case-management/entitlements.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/case-management/home.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/case-management/home.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/case-management/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/case-management/index.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/case-management/knowledge-base.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/case-management/knowledge-base.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/case-management/products.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/case-management/products.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/case-management/settings.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/case-management/settings.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/crm/accounts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/crm/accounts.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/crm/campaigns.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/crm/campaigns.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/crm/cases.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/crm/cases.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/crm/dashboards.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/crm/dashboards.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/crm/events.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/crm/events.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/crm/home.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/crm/home.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/crm/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/crm/index.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/crm/leads.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/crm/leads.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/crm/opportunities.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/crm/opportunities.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/crm/products.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/crm/products.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/crm/quotes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/crm/quotes.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/crm/settings.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/crm/settings.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/crm/tasks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/crm/tasks.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/data-privacy/data-privacy-console.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/data-privacy/data-privacy-console.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/data-privacy/data-privacy-officer.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/data-privacy/data-privacy-officer.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/data-privacy/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/data-privacy/index.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/getting-started.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/getting-started.adoc -------------------------------------------------------------------------------- /src/modules/end-user-guide/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/end-user-guide/pages/index.adoc -------------------------------------------------------------------------------- /src/modules/external/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/external/nav.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/automation/component.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/automation/component.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/automation/index.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/automation/index.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/compose/component.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/compose/component.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/compose/index.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/compose/index.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/compose/resource.chart.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/compose/resource.chart.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/compose/resource.page.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/compose/resource.page.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/federation/component.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/federation/component.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/federation/index.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/federation/index.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/system/component.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/system/component.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/system/index.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/system/index.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/system/resource.queue.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/system/resource.queue.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/system/resource.report.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/system/resource.report.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/system/resource.role.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/system/resource.role.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/access-control/system/resource.user.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/access-control/system/resource.user.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/afunc.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/afunc.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-classic-benchmark-intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/benchmarks/bench-classic-benchmark-intro.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-classic-crud-operations-crud-create-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-classic-crud-operations-crud-delete-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-classic-crud-operations-crud-lookup-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-classic-crud-operations-crud-update-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-classic-list-filter---sort-search-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-classic-list-filter-search-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-classic-list-plain-search-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-classic-list-sort-search-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-classic.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/benchmarks/bench-classic.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-dedicated-crud-operations-crud-create-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-dedicated-crud-operations-crud-delete-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-dedicated-crud-operations-crud-lookup-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-dedicated-crud-operations-crud-update-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-dedicated-list-filter---sort-search-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-dedicated-list-filter-search-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-dedicated-list-plain-search-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-dedicated-list-sort-search-footnote.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/bench-dedicated.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/benchmarks/bench-dedicated.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/benchmarks/variables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/benchmarks/variables.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/env-options.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/env-options.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/expr-types.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/expr-types.gen.adoc -------------------------------------------------------------------------------- /src/modules/generated/partials/resource-events.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/generated/partials/resource-events.gen.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/attachments/automation/workflows/queue-add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/attachments/automation/workflows/queue-add.json -------------------------------------------------------------------------------- /src/modules/integrator-guide/attachments/automation/workflows/queue-read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/attachments/automation/workflows/queue-read.json -------------------------------------------------------------------------------- /src/modules/integrator-guide/attachments/automation/workflows/scaling/sub-wf-example.json: -------------------------------------------------------------------------------- 1 | { 2 | "workflows": [] 3 | } -------------------------------------------------------------------------------- /src/modules/integrator-guide/examples/client-script-sample/button-generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/examples/client-script-sample/button-generic.js -------------------------------------------------------------------------------- /src/modules/integrator-guide/examples/client-script-sample/button-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/examples/client-script-sample/button-record.js -------------------------------------------------------------------------------- /src/modules/integrator-guide/examples/server-script-sample/after-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/examples/server-script-sample/after-record.js -------------------------------------------------------------------------------- /src/modules/integrator-guide/examples/server-script-sample/before-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/examples/server-script-sample/before-record.js -------------------------------------------------------------------------------- /src/modules/integrator-guide/examples/server-script-sample/button-generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/examples/server-script-sample/button-generic.js -------------------------------------------------------------------------------- /src/modules/integrator-guide/examples/server-script-sample/button-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/examples/server-script-sample/button-record.js -------------------------------------------------------------------------------- /src/modules/integrator-guide/examples/server-script-sample/sink-generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/examples/server-script-sample/sink-generic.js -------------------------------------------------------------------------------- /src/modules/integrator-guide/examples/testing-setup/doteslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/examples/testing-setup/doteslintrc.js -------------------------------------------------------------------------------- /src/modules/integrator-guide/examples/testing-setup/dotgitignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/examples/testing-setup/dotgitignore.txt -------------------------------------------------------------------------------- /src/modules/integrator-guide/examples/testing-setup/dotmocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/examples/testing-setup/dotmocharc.js -------------------------------------------------------------------------------- /src/modules/integrator-guide/examples/testing-setup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/examples/testing-setup/package.json -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/app-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/app-selector.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/javascript-processing/define.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/javascript-processing/define.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/javascript-processing/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/javascript-processing/editor.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/profiler/prefilter-cofigure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/profiler/prefilter-cofigure.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/profiler/prefilter-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/profiler/prefilter-select.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/profiler/preflter-added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/profiler/preflter-added.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/profiler/profiler-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/profiler/profiler-general.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/profiler/request-details-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/profiler/request-details-top.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/profiler/route-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/profiler/route-list.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/profiler/route-profiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/profiler/route-profiler.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/route-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/route-create.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/route-filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/route-filters.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/route-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/route-list.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/route-wf-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/route-wf-modal.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/route-wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/route-wf.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/wf-request-read-fn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/wf-request-read-fn.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/api-gw/wf-request-read-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/api-gw/wf-request-read-js.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/app-selector-discovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/app-selector-discovery.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/app-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/app-selector.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/application/application-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/application/application-button.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/application/application-checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/application/application-checkbox.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/application/application-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/application/application-list.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/application/application-submit-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/application/application-submit-button.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/application/c-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/application/c-application.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/application/c-applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/application/c-applications.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/application/create-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/application/create-application.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/application/edit-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/application/edit-application.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/application/edit-applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/application/edit-applications.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/application/new-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/application/new-application.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/application/new-edit-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/application/new-edit-application.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/authentication/auth-client-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/authentication/auth-client-create.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/authentication/auth-client-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/authentication/auth-client-delete.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/authentication/auth-client-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/authentication/auth-client-edit.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/authentication/auth-client-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/authentication/auth-client-list.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/authentication/auth-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/authentication/auth-login.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/authentication/config-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/authentication/config-basic.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/authentication/external/roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/authentication/external/roles.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/authentication/external/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/authentication/external/settings.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/authentication/mfa/mfa-enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/authentication/mfa/mfa-enable.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/authentication/mfa/mfa-login-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/authentication/mfa/mfa-login-confirm.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/authentication/mfa/mfa-settings-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/authentication/mfa/mfa-settings-auth.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/authentication/password-constraints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/authentication/password-constraints.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/delay-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/delay-example.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/delay-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/delay-example.svg -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/edit.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/editor.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/editor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/editor.svg -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/error-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/error-handler.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/error.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/interval-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/interval-example.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/interval-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/interval-example.svg -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/iterator-body-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/iterator-body-do.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/iterator-break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/iterator-break.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/list.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/multi-terminator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/multi-terminator.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/multi-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/multi-trigger.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/save.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/schedule-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/schedule-example.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/schedule-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/schedule-example.svg -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/step-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/step-add.svg -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/step-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/step-config.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/step-config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/step-config.svg -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/automation/workflows/step-connect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/automation/workflows/step-connect.svg -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/compose-configuration/chart-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/compose-configuration/chart-create.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/compose-configuration/copied-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/compose-configuration/copied-page.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/compose-configuration/module-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/compose-configuration/module-create.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/compose-configuration/ns-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/compose-configuration/ns-access.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/compose-configuration/ns-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/compose-configuration/ns-create.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/compose-configuration/ns-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/compose-configuration/ns-edit.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/compose-configuration/ns-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/compose-configuration/ns-empty.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/compose-configuration/ns-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/compose-configuration/ns-list.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/compose-configuration/page-block-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/compose-configuration/page-block-copy.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/compose-configuration/page-block-dup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/compose-configuration/page-block-dup.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/compose-configuration/page-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/compose-configuration/page-edit.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/compose-configuration/page-tree-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/compose-configuration/page-tree-base.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/compose-configuration/page-tree-nest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/compose-configuration/page-tree-nest.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/corteza-studio/branding-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/corteza-studio/branding-section.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/corteza-studio/choose-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/corteza-studio/choose-color.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/corteza-studio/custom-css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/corteza-studio/custom-css.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/dal-connections/base-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/dal-connections/base-list.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/dal-connections/config-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/dal-connections/config-basic.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/dal-connections/config-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/dal-connections/config-connection.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/dal-connections/config-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/dal-connections/config-properties.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/dal-connections/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/dal-connections/list.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/dal-connections/management/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/dal-connections/management/delete.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/dal-connections/management/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/dal-connections/management/interface.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/discovery/discovery-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/discovery/discovery-settings.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/discovery/module-discovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/discovery/module-discovery.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/discovery/search-results-mapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/discovery/search-results-mapped.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/discovery/search-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/discovery/search-results.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/duplication-detection/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/duplication-detection/error.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/duplication-detection/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/duplication-detection/warning.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/email-settings/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/email-settings/form.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/federation/expose-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/federation/expose-module.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/federation/map-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/federation/map-module.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/i18n/resource/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/i18n/resource/editor.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/i18n/resource/language-added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/i18n/resource/language-added.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/i18n/resource/language-dd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/i18n/resource/language-dd.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/i18n/resource/namespace-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/i18n/resource/namespace-edit.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/miscellaneous/compose-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/miscellaneous/compose-settings.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/miscellaneous/email-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/miscellaneous/email-settings.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/miscellaneous/system-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/miscellaneous/system-settings.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/miscellaneous/ui-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/miscellaneous/ui-settings.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/miscellaneous/webapp-admin-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/miscellaneous/webapp-admin-dashboard.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/miscellaneous/webapp-compose-homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/miscellaneous/webapp-compose-homepage.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/personalization/devtool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/personalization/devtool.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/app-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/app-selector.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/chart-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/chart-configuration.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/group.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/join.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/load.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/metric-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/metric-configuration.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/prefilter-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/prefilter-default.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/prefilter-expression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/prefilter-expression.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/presort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/presort.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/report-builder-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/report-builder-base.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/report-builder-block-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/report-builder-block-base.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/report-builder-block-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/report-builder-block-config.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/report-builder-block-el.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/report-builder-block-el.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/report-builder-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/report-builder-delete.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/report-builder-elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/report-builder-elements.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/report-builder-repos-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/report-builder-repos-base.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/report-builder-repos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/report-builder-repos.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/report-builder-resize-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/report-builder-resize-base.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/report-builder-resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/report-builder-resize.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/report-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/report-create.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/report-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/report-list.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/table-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/table-configuration.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/text-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/text-configuration.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/reporter/text-usage-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/reporter/text-usage-1.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/security-model/roles/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/security-model/roles/create.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/security-model/roles/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/security-model/roles/edit.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/security-model/roles/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/security-model/roles/list.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/security-model/user-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/security-model/user-create.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/security-model/user-edit-membership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/security-model/user-edit-membership.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/security-model/user-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/security-model/user-edit.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/security-model/user-groups/user-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/security-model/user-groups/user-edit.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/security-model/user-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/security-model/user-list.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/troubleshooting/logging/action-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/troubleshooting/logging/action-log.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/images/troubleshooting/stale-data-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/images/troubleshooting/stale-data-workflow.png -------------------------------------------------------------------------------- /src/modules/integrator-guide/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/nav.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/accessing-corteza/api-clients.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/accessing-corteza/api-clients.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/accessing-corteza/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/accessing-corteza/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/accessing-corteza/pagination.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/accessing-corteza/pagination.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/accessing-corteza/ql.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/accessing-corteza/ql.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/api-gw/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/api-gw/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/api-gw/javascript-processing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/api-gw/javascript-processing.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/api-gw/profiler.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/api-gw/profiler.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/api-gw/workflow-processing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/api-gw/workflow-processing.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/authentication/external/facebook.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/authentication/external/facebook.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/authentication/external/github.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/authentication/external/github.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/authentication/external/google.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/authentication/external/google.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/authentication/external/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/authentication/external/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/authentication/external/linkedin.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/authentication/external/linkedin.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/authentication/external/saml/azure.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/authentication/external/saml/azure.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/authentication/external/saml/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/authentication/external/saml/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/authentication/external/saml/okta.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/authentication/external/saml/okta.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/authentication/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/authentication/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/authentication/mfa.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/authentication/mfa.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/authentication/personalization.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/authentication/personalization.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/authentication/session-duration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/authentication/session-duration.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/automation/automation-scripts/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/automation/automation-scripts/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/automation/execution-flow-details.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/automation/execution-flow-details.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/automation/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/automation/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/automation/workflows/best-practices.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/automation/workflows/best-practices.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/automation/workflows/email-send.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/automation/workflows/email-send.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/automation/workflows/examples/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/automation/workflows/examples/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/automation/workflows/func-reference.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/automation/workflows/func-reference.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/automation/workflows/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/automation/workflows/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/automation/workflows/scope-in-depth.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/automation/workflows/scope-in-depth.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/automation/workflows/style-guide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/automation/workflows/style-guide.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/automation/workflows/types.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/automation/workflows/types.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/compose-configuration/field-expr.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/compose-configuration/field-expr.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/compose-configuration/field-types.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/compose-configuration/field-types.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/compose-configuration/import-export.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/compose-configuration/import-export.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/compose-configuration/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/compose-configuration/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/compose-configuration/page-blocks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/compose-configuration/page-blocks.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/compose-configuration/page-layouts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/compose-configuration/page-layouts.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/compose-configuration/record-modal.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/compose-configuration/record-modal.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/corteza-studio/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/corteza-studio/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/create-application.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/create-application.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/dal-connections/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/dal-connections/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/dal-connections/troubleshooting.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/dal-connections/troubleshooting.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/data-privacy/sensitivity-levels.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/data-privacy/sensitivity-levels.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/discovery/examples/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/discovery/examples/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/discovery/examples/limit-namespace.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/discovery/examples/limit-namespace.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/discovery/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/discovery/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/expr/datetime-formatting.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/expr/datetime-formatting.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/expr/fnc-reference.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/expr/fnc-reference.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/expr/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/expr/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/expr/string-formatting.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/expr/string-formatting.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/expr/type-reference.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/expr/type-reference.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/federation/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/federation/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/federation/nodes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/federation/nodes.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/federation/share-data.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/federation/share-data.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/i18n/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/i18n/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/i18n/resource.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/i18n/resource.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/i18n/static.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/i18n/static.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/miscellaneous.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/miscellaneous.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/provisioning/index.adoc: -------------------------------------------------------------------------------- 1 | include::ROOT:partial$variables.adoc[] 2 | 3 | = Provisioning 4 | 5 | *DevNote* todo 6 | -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/reporting/expr-reference.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/reporting/expr-reference.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/reporting/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/reporting/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/reporting/prefilter.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/reporting/prefilter.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/reporting/presort.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/reporting/presort.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/security-model/examples/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/security-model/examples/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/security-model/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/security-model/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/security-model/roles.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/security-model/roles.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/security-model/user-groups.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/security-model/user-groups.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/security-model/users.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/security-model/users.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/server-plugins/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/server-plugins/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/templates/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/templates/index.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/templates/variables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/templates/variables.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/terminology.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/terminology.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/troubleshooting/logging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/troubleshooting/logging.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/pages/troubleshooting/stale-data.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/pages/troubleshooting/stale-data.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/api-example-note.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/api-example-note.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/dal-model-ident-placeholders.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/dal-model-ident-placeholders.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/expr/fnc-ac.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/expr/fnc-ac.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/expr/fnc-array.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/expr/fnc-array.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/expr/fnc-datetime.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/expr/fnc-datetime.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/expr/fnc-kv.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/expr/fnc-kv.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/expr/fnc-num.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/expr/fnc-num.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/expr/fnc-string.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/expr/fnc-string.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/expr/fnc-type.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/expr/fnc-type.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/expr/type-reference.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/expr/type-reference.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/fs-client.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/fs-client.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/fs-server.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/fs-server.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/generated/resource-events.gen.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/generated/resource-events.gen.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/handle-constraints.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/handle-constraints.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/security.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/system-overview.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/system-overview.adoc -------------------------------------------------------------------------------- /src/modules/integrator-guide/partials/terminology.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/src/modules/integrator-guide/partials/terminology.adoc -------------------------------------------------------------------------------- /tools/cli-commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/tools/cli-commands.txt -------------------------------------------------------------------------------- /tools/gen-cli-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/tools/gen-cli-examples.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cortezaproject/corteza-docs/HEAD/yarn.lock --------------------------------------------------------------------------------