├── .gitignore ├── .tool-versions ├── LICENSE ├── README.md ├── package.json ├── src ├── index.ts ├── lib │ ├── index.ts │ ├── shared │ │ ├── chip.ts │ │ ├── common.ts │ │ ├── configWizard.ts │ │ ├── customerConnections.ts │ │ ├── dataTable.ts │ │ ├── dateTime.ts │ │ ├── detail.ts │ │ ├── dialog.ts │ │ ├── executions.ts │ │ ├── filter.ts │ │ ├── header.ts │ │ ├── index.ts │ │ ├── input.ts │ │ ├── logSeverity.ts │ │ ├── noResults.ts │ │ ├── oauthConnection.ts │ │ ├── popover.ts │ │ ├── tab.ts │ │ ├── tooltip.ts │ │ ├── triggerDetails.ts │ │ └── user.ts │ └── unique │ │ ├── 404.ts │ │ ├── app.marketplace-not-found.ts │ │ ├── components.ts │ │ ├── dashboard.ts │ │ ├── index.ts │ │ ├── integration-marketplace.ts │ │ ├── integration.id.alert-monitors.ts │ │ ├── integration.id.configurations.ts │ │ ├── integration.id.executions.ts │ │ ├── integration.id.logs.ts │ │ ├── integration.id.test.ts │ │ ├── integration.id.ts │ │ └── integrations.ts ├── types.ts └── utils.ts ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | github-cli 2.42.1 2 | nodejs 18.18.2 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/shared/chip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/chip.ts -------------------------------------------------------------------------------- /src/lib/shared/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/common.ts -------------------------------------------------------------------------------- /src/lib/shared/configWizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/configWizard.ts -------------------------------------------------------------------------------- /src/lib/shared/customerConnections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/customerConnections.ts -------------------------------------------------------------------------------- /src/lib/shared/dataTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/dataTable.ts -------------------------------------------------------------------------------- /src/lib/shared/dateTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/dateTime.ts -------------------------------------------------------------------------------- /src/lib/shared/detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/detail.ts -------------------------------------------------------------------------------- /src/lib/shared/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/dialog.ts -------------------------------------------------------------------------------- /src/lib/shared/executions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/executions.ts -------------------------------------------------------------------------------- /src/lib/shared/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/filter.ts -------------------------------------------------------------------------------- /src/lib/shared/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/header.ts -------------------------------------------------------------------------------- /src/lib/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/index.ts -------------------------------------------------------------------------------- /src/lib/shared/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/input.ts -------------------------------------------------------------------------------- /src/lib/shared/logSeverity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/logSeverity.ts -------------------------------------------------------------------------------- /src/lib/shared/noResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/noResults.ts -------------------------------------------------------------------------------- /src/lib/shared/oauthConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/oauthConnection.ts -------------------------------------------------------------------------------- /src/lib/shared/popover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/popover.ts -------------------------------------------------------------------------------- /src/lib/shared/tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/tab.ts -------------------------------------------------------------------------------- /src/lib/shared/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/tooltip.ts -------------------------------------------------------------------------------- /src/lib/shared/triggerDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/triggerDetails.ts -------------------------------------------------------------------------------- /src/lib/shared/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/shared/user.ts -------------------------------------------------------------------------------- /src/lib/unique/404.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/unique/404.ts -------------------------------------------------------------------------------- /src/lib/unique/app.marketplace-not-found.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/unique/app.marketplace-not-found.ts -------------------------------------------------------------------------------- /src/lib/unique/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/unique/components.ts -------------------------------------------------------------------------------- /src/lib/unique/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/unique/dashboard.ts -------------------------------------------------------------------------------- /src/lib/unique/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/unique/index.ts -------------------------------------------------------------------------------- /src/lib/unique/integration-marketplace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/unique/integration-marketplace.ts -------------------------------------------------------------------------------- /src/lib/unique/integration.id.alert-monitors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/unique/integration.id.alert-monitors.ts -------------------------------------------------------------------------------- /src/lib/unique/integration.id.configurations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/unique/integration.id.configurations.ts -------------------------------------------------------------------------------- /src/lib/unique/integration.id.executions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/unique/integration.id.executions.ts -------------------------------------------------------------------------------- /src/lib/unique/integration.id.logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/unique/integration.id.logs.ts -------------------------------------------------------------------------------- /src/lib/unique/integration.id.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/unique/integration.id.test.ts -------------------------------------------------------------------------------- /src/lib/unique/integration.id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/unique/integration.id.ts -------------------------------------------------------------------------------- /src/lib/unique/integrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/lib/unique/integrations.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prismatic-io/translations/HEAD/webpack.config.js --------------------------------------------------------------------------------