├── .dockerignore ├── .editorconfig ├── .env.sample ├── .env.test.sample ├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── pr-labeler.yml └── workflows │ ├── cypress.yml │ ├── docker-publish.yml │ ├── docker-publish │ ├── docker-setup.mjs │ └── test-image.mjs │ ├── label-pr.yml │ ├── reviewdog.yml │ ├── stale.yml │ └── trigger-deploy.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.MD ├── README.md ├── components ├── AnalyticsScripts.tsx ├── AuthLayout.tsx ├── Authenticated.tsx ├── ColumnListItem.tsx ├── DashedCreateBox.tsx ├── DataSourcesSidebar.tsx ├── DragIcon.tsx ├── ErrorMessage.tsx ├── ErrorWrapper.tsx ├── FeedbackPanel.tsx ├── FeedbackSidebarItem.tsx ├── GoogleSheetsSetup.tsx ├── HeadSection.tsx ├── Layout.tsx ├── LoadingComponent.tsx ├── LoadingOverlay.tsx ├── OrganizationSidebar.tsx ├── PageWrapper.tsx ├── PublicLayout.tsx ├── Shimmer.tsx ├── ShimmerOrCount.tsx ├── ShowErrorMessages.tsx ├── Sidebar.tsx ├── SidebarItem.tsx ├── TinyLabel.tsx ├── UnauthenticatedView.tsx └── svg │ ├── AlignLeftIcon.tsx │ ├── BracketsCurlyIcon.tsx │ ├── QuestionIcon.tsx │ ├── Spinner.tsx │ └── TextIcon.tsx ├── cypress.env.json ├── cypress.json ├── cypress ├── fixtures │ └── user.json ├── integration │ ├── 0-auth │ │ ├── check_login.js │ │ └── login_spec.js │ └── 1-generic │ │ └── data_sources_spec.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── deploy └── docker │ ├── .env.sample │ └── docker-compose.yml ├── features ├── activity │ ├── components │ │ └── ActivityItem.tsx │ └── types.d.ts ├── api │ ├── ApiResponse.ts │ ├── ApiService.ts │ ├── cookies.ts │ ├── index.ts │ ├── middleware.ts │ ├── middlewares │ │ ├── BelongsToOrganization.ts │ │ ├── HasAccessToDashboard.ts │ │ ├── IsSignedIn.ts │ │ ├── OwnsDataSource.ts │ │ └── VerifyKeepAlive.ts │ ├── types.d.ts │ └── urls.ts ├── app │ ├── api-slice.ts │ └── state-slice.ts ├── auth │ ├── index.ts │ ├── signinSchema.ts │ └── signupSchema.ts ├── authorization │ └── hooks.ts ├── cache │ └── index.ts ├── code │ └── evaluator.ts ├── dashboards │ ├── api-slice.ts │ ├── components │ │ ├── DashboardEditDataSourceInfo.tsx │ │ ├── DashboardEditName.tsx │ │ ├── DashboardEditVisibility.tsx │ │ ├── DashboardEditWidgets.tsx │ │ ├── DashboardPage.tsx │ │ ├── DashboardsSidebarSection.tsx │ │ ├── Divider.tsx │ │ ├── GenericCodeOption.tsx │ │ ├── GenericTextOption.tsx │ │ ├── Widget.tsx │ │ └── WidgetEditor.tsx │ ├── hooks.ts │ ├── index.ts │ ├── schema.ts │ ├── server-helpers.ts │ └── types.d.ts ├── data-sources │ ├── api-slice.ts │ ├── components │ │ ├── DataSourceEditName.tsx │ │ ├── DataSourceTileCreate.tsx │ │ ├── DataSourcesBlock.tsx │ │ ├── DataSourcesEditLayout.tsx │ │ ├── DummyDataSources.tsx │ │ ├── NewDataSourceForm.tsx │ │ └── OptionWrapper.tsx │ ├── hooks.ts │ ├── index.ts │ └── types.d.ts ├── fields │ ├── api-slice.ts │ ├── components │ │ ├── BooleanCheck.tsx │ │ ├── DummyField.tsx │ │ ├── EmptyDash.tsx │ │ ├── FieldWrapper │ │ │ ├── EditFieldWrapper.tsx │ │ │ ├── IndexFieldWrapper.tsx │ │ │ └── ShowFieldWrapper.tsx │ │ ├── GoToRecordLink.tsx │ │ └── MenuItem.tsx │ ├── factory.ts │ ├── getColumns.ts │ ├── hooks.ts │ ├── index.ts │ └── types.d.ts ├── options │ └── index.ts ├── organizations │ ├── api-slice.ts │ ├── components │ │ └── OrganizationsBlock.tsx │ └── invitationsSchema.ts ├── records │ ├── api-slice.ts │ ├── clientHelpers.ts │ ├── components │ │ ├── BackButton.tsx │ │ ├── EditRecord.tsx │ │ ├── Form.tsx │ │ ├── NewRecord.tsx │ │ ├── RecordsIndexPage.tsx │ │ └── ShowRecord.tsx │ ├── convertToBaseFilters.ts │ ├── hooks.ts │ ├── index.ts │ ├── state-slice.ts │ └── types.d.ts ├── roles │ ├── AccessControlService.ts │ ├── api-slice.ts │ ├── index.ts │ └── schema.ts ├── tables │ ├── api-slice.ts │ ├── components │ │ ├── BooleanConditionComponent.tsx │ │ ├── BulkDeleteButton.tsx │ │ ├── Cell.tsx │ │ ├── CheckboxColumnCell.tsx │ │ ├── ConditionComponent.tsx │ │ ├── ConditionSelect.tsx │ │ ├── CursorPagination.tsx │ │ ├── DateConditionComponent.tsx │ │ ├── Filter.tsx │ │ ├── FilterTrashIcon.tsx │ │ ├── FiltersButton.tsx │ │ ├── FiltersPanel.tsx │ │ ├── GroupFiltersPanel.tsx │ │ ├── IntConditionComponent.tsx │ │ ├── ItemControls.tsx │ │ ├── ItemControlsCell.tsx │ │ ├── MobileRow.tsx │ │ ├── OffsetPagination.tsx │ │ ├── OffsetPaginationComponent.tsx │ │ ├── RecordRow.tsx │ │ ├── RecordsTable.tsx │ │ ├── SelectConditionComponent.tsx │ │ ├── StringConditionComponent.tsx │ │ ├── TablesSidebarSection.tsx │ │ └── VerbComponent.tsx │ ├── hooks.ts │ ├── index.ts │ └── types.d.ts └── views │ ├── api-slice.ts │ ├── components │ ├── CompactFiltersView.tsx │ ├── FieldEditor.tsx │ ├── FieldTypeOption.tsx │ ├── GenericBooleanOption.tsx │ ├── GenericCodeOption.tsx │ ├── GenericSelectOption.tsx │ ├── GenericTextOption.tsx │ ├── NullableOption.tsx │ ├── OptionWrapper.tsx │ ├── ViewEditColumns.tsx │ ├── ViewEditDataSourceInfo.tsx │ ├── ViewEditFilters.tsx │ ├── ViewEditName.tsx │ ├── ViewEditOrder.tsx │ ├── ViewEditVisibility.tsx │ ├── ViewsSidebarSection.tsx │ └── VisibilityOption.tsx │ ├── hooks.ts │ ├── schema.ts │ └── types.d.ts ├── hooks └── index.ts ├── lib ├── ItemTypes.ts ├── chakra.ts ├── colors.js ├── constants.ts ├── crypto.ts ├── email.ts ├── encoding.ts ├── environment.ts ├── errors.ts ├── fonts.css ├── globals.css ├── gtag.ts ├── helpers.ts ├── humanize.ts ├── logger.ts ├── messages.ts ├── redis.ts ├── services.ts ├── siteMeta.ts ├── store.ts ├── time.ts └── track.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── 404.tsx ├── _app.tsx ├── _error.tsx ├── api │ ├── auth │ │ ├── [...nextauth].ts │ │ └── register.ts │ ├── columns.ts │ ├── dashboards │ │ ├── [dashboardId].ts │ │ ├── [dashboardId] │ │ │ └── widgets │ │ │ │ ├── order.ts │ │ │ │ └── values.ts │ │ └── index.ts │ ├── data-sources │ │ ├── [dataSourceId].ts │ │ ├── [dataSourceId] │ │ │ ├── query.ts │ │ │ ├── tables.ts │ │ │ └── tables │ │ │ │ └── [tableName] │ │ │ │ ├── records.ts │ │ │ │ └── records │ │ │ │ ├── [recordId].ts │ │ │ │ └── bulk.ts │ │ ├── check-connection.ts │ │ ├── google-sheets │ │ │ ├── [dataSourceId] │ │ │ │ └── sheets.ts │ │ │ ├── auth-url.ts │ │ │ └── callback.ts │ │ └── index.ts │ ├── feedback.ts │ ├── hello.ts │ ├── organization-users │ │ └── [organizationUserId] │ │ │ └── roles.ts │ ├── organizations │ │ ├── [organizationId].ts │ │ ├── [organizationId] │ │ │ ├── activities.ts │ │ │ ├── invitations.ts │ │ │ ├── roles.ts │ │ │ ├── roles │ │ │ │ └── [roleId].ts │ │ │ └── users │ │ │ │ └── [organizationUserId].ts │ │ └── index.ts │ ├── profile.ts │ ├── records.ts │ ├── records │ │ └── [recordId].ts │ ├── test │ │ └── seed.ts │ ├── views │ │ ├── [viewId].ts │ │ ├── [viewId] │ │ │ ├── columns.ts │ │ │ └── columns │ │ │ │ ├── [columnName].ts │ │ │ │ └── order.ts │ │ └── index.ts │ └── widgets │ │ ├── [widgetId].ts │ │ ├── [widgetId] │ │ └── value.ts │ │ └── index.ts ├── auth │ ├── login.tsx │ └── register.tsx ├── beta.tsx ├── dashboards │ ├── [dashboardId].tsx │ └── [dashboardId] │ │ └── edit.tsx ├── data-sources │ ├── [dataSourceId].tsx │ ├── [dataSourceId] │ │ ├── edit.tsx │ │ └── tables │ │ │ ├── [tableName].tsx │ │ │ └── [tableName] │ │ │ ├── [recordId].tsx │ │ │ ├── [recordId] │ │ │ └── edit.tsx │ │ │ └── new.tsx │ ├── google-sheets │ │ └── new.tsx │ ├── maria_db │ │ └── new.tsx │ ├── mssql │ │ └── new.tsx │ ├── mysql │ │ └── new.tsx │ ├── new.tsx │ ├── postgresql │ │ └── new.tsx │ └── stripe │ │ └── new.tsx ├── index.tsx ├── organization-invitations │ └── [uuid].tsx ├── organizations │ ├── [organizationSlug].tsx │ └── [organizationSlug] │ │ ├── activity.tsx │ │ ├── members.tsx │ │ └── roles.tsx ├── profile.tsx └── views │ ├── [viewId].tsx │ ├── [viewId] │ ├── edit.tsx │ └── records │ │ ├── [recordId].tsx │ │ ├── [recordId] │ │ └── edit.tsx │ │ └── new.tsx │ └── new.tsx ├── plugins ├── data-sources │ ├── ConnectionPooler.ts │ ├── QueryServiceWrapper.ts │ ├── abstract-sql-query-service │ │ ├── AbstractQueryService.ts │ │ ├── doInitialScan.ts │ │ ├── getKnexClient.ts │ │ ├── index.ts │ │ └── types.d.ts │ ├── enums.ts │ ├── getDataSourceInfo.ts │ ├── getSchema.ts │ ├── google-sheets │ │ ├── GoogleDriveService.ts │ │ ├── QueryService.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ └── types.d.ts │ ├── index.ts │ ├── maria_db │ │ ├── index.ts │ │ └── schema.ts │ ├── mssql │ │ ├── QueryService.ts │ │ ├── index.ts │ │ └── schema.ts │ ├── mysql │ │ ├── QueryService.ts │ │ ├── index.ts │ │ ├── schema.ts │ │ └── types.d.ts │ ├── postgresql │ │ ├── QueryService.ts │ │ ├── index.ts │ │ ├── schema.ts │ │ └── types.d.ts │ ├── serverHelpers.ts │ ├── stripe │ │ ├── QueryService.ts │ │ ├── index.ts │ │ └── schema.ts │ └── types.d.ts └── fields │ ├── Association │ ├── Edit.tsx │ ├── Index.tsx │ ├── Inspector.tsx │ ├── Show.tsx │ ├── fieldOptions.ts │ └── schema.ts │ ├── Boolean │ ├── Edit.tsx │ ├── Index.tsx │ └── Show.tsx │ ├── DateTime │ ├── Edit.tsx │ ├── Index.tsx │ ├── Inspector.tsx │ ├── Show.tsx │ ├── fieldOptions.ts │ ├── parsedValue.ts │ ├── schema.ts │ └── types.d.ts │ ├── Gravatar │ ├── Index.tsx │ ├── Inspector.tsx │ ├── Show.tsx │ ├── fieldOptions.ts │ ├── schema.ts │ └── types.d.ts │ ├── Id │ ├── Edit.tsx │ ├── Index.tsx │ └── Show.tsx │ ├── Json │ ├── Edit.tsx │ ├── Index.tsx │ ├── Show.tsx │ └── schema.ts │ ├── LinkTo │ ├── Index.tsx │ ├── Inspector.tsx │ ├── Show.tsx │ ├── fieldOptions.ts │ ├── schema.ts │ └── types.d.ts │ ├── Number │ ├── Edit.tsx │ ├── Index.tsx │ ├── Show.tsx │ ├── options.ts │ └── schema.ts │ ├── ProgressBar │ ├── Edit.tsx │ ├── Index.tsx │ ├── Inspector.tsx │ ├── Show.tsx │ ├── fieldOptions.ts │ ├── schema.ts │ └── types.d.ts │ ├── Select │ ├── Edit.tsx │ ├── Index.tsx │ ├── Inspector.tsx │ ├── Show.tsx │ ├── fieldOptions.ts │ ├── schema.ts │ └── types.d.ts │ ├── Text │ ├── Edit.tsx │ ├── Index.tsx │ ├── Inspector.tsx │ ├── Show.tsx │ ├── fieldOptions.ts │ ├── schema.ts │ └── types.d.ts │ └── Textarea │ ├── Edit.tsx │ ├── Index.tsx │ ├── Inspector.tsx │ ├── Show.tsx │ ├── fieldOptions.ts │ ├── schema.ts │ └── types.d.ts ├── postcss.config.js ├── prisma ├── index.ts ├── migrations │ ├── 20210827073855_initial_migration │ │ └── migration.sql │ ├── 20210902112607_add_encrypted_credentials_to_data_sources │ │ └── migration.sql │ ├── 20210908205601_add_roles │ │ └── migration.sql │ ├── 20210909110755_add_options_to_roles │ │ └── migration.sql │ ├── 20210923094700_add_ogranization_membership_invite │ │ └── migration.sql │ ├── 20210923095550_refactor_invite_table │ │ └── migration.sql │ ├── 20210923111111_invitations_have_uuid_primary_keys │ │ └── migration.sql │ ├── 20210923132123_cascade_user_deletion_to_invites │ │ └── migration.sql │ ├── 20210924130927_add_last_logged_in_at_to_users │ │ └── migration.sql │ ├── 20211015102604_add_views │ │ └── migration.sql │ ├── 20211015103805_change_filters_and_order_rules_to_arrays_in_views │ │ └── migration.sql │ ├── 20211015104016_delete_order_rules_from_views │ │ └── migration.sql │ ├── 20211015150345_add_datasource_id_to_views │ │ └── migration.sql │ ├── 20211015152114_rename_datasource_views │ │ └── migration.sql │ ├── 20211020084717_split_indexes_for_view │ │ └── migration.sql │ ├── 20211020141810_add_encrypted_ssh_credentials │ │ └── migration.sql │ ├── 20211022134622_add_order_rule_to_views │ │ └── migration.sql │ ├── 20211025070704_chnage_name_of_order_rule_in_views │ │ └── migration.sql │ ├── 20211105155559_add_activities │ │ └── migration.sql │ ├── 20211107151703_add_columns_to_views │ │ └── migration.sql │ ├── 20211108135526_add_action_to_activity │ │ └── migration.sql │ ├── 20211108210747_change_user_id_to_user_email_in_activity │ │ └── migration.sql │ ├── 20211109092051_change_back_to_user_id_activity │ │ └── migration.sql │ ├── 20211109114014_changes_to_array_acitivity │ │ └── migration.sql │ ├── 20211109164431_add_index_user_id_activity │ │ └── migration.sql │ ├── 20211110105430_update_view_filters_to_array │ │ └── migration.sql │ ├── 20211110111825_add_last_known_timezone_to_users │ │ └── migration.sql │ ├── 20211111151715_view_columns_to_array │ │ └── migration.sql │ ├── 20211119102418_add_table_meta_data_to_datasource │ │ └── migration.sql │ ├── 20211209121519_add_dashboard │ │ └── migration.sql │ ├── 20211210093006_add_datasource_to_dashboard │ │ └── migration.sql │ ├── 20211210142704_add_dashboard_item │ │ └── migration.sql │ ├── 20211214134027_rename_dashboard_item_to_widget │ │ └── migration.sql │ └── migration_lock.toml ├── sample-seed.sql ├── schema.prisma ├── seed-script.ts └── seed.ts ├── public ├── favicon.ico ├── favicons │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── fonts │ ├── nunito-v16-latin-700.eot │ ├── nunito-v16-latin-700.svg │ ├── nunito-v16-latin-700.ttf │ ├── nunito-v16-latin-700.woff │ ├── nunito-v16-latin-700.woff2 │ ├── nunito-v16-latin-regular.eot │ ├── nunito-v16-latin-regular.svg │ ├── nunito-v16-latin-regular.ttf │ ├── nunito-v16-latin-regular.woff │ └── nunito-v16-latin-regular.woff2 └── img │ ├── 404_cat.jpg │ ├── bg.svg │ ├── cover.jpg │ ├── heading.png │ ├── illustration.svg │ ├── logo_text_black.png │ └── logos │ ├── airtable.png │ ├── amazon_redshift.png │ ├── github.png │ ├── google-sheets.png │ ├── intercom.png │ ├── maria_db.png │ ├── mssql.png │ ├── mysql.png │ ├── postgresql.png │ ├── redis.png │ ├── salesforce.png │ ├── shopify.png │ ├── stripe.png │ ├── swagger.png │ └── zendesk.png ├── scripts ├── docker-start.mjs ├── start-cypress.mjs └── test:migrate.mjs ├── sentry.client.config.js ├── sentry.properties ├── sentry.server.config.js ├── tailwind.config.js ├── tsconfig.json ├── types ├── index.d.ts ├── next-auth.d.ts └── react-table-config.d.ts └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.env.sample -------------------------------------------------------------------------------- /.env.test.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.env.test.sample -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.github/pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/cypress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.github/workflows/cypress.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish/docker-setup.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.github/workflows/docker-publish/docker-setup.mjs -------------------------------------------------------------------------------- /.github/workflows/docker-publish/test-image.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.github/workflows/docker-publish/test-image.mjs -------------------------------------------------------------------------------- /.github/workflows/label-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.github/workflows/label-pr.yml -------------------------------------------------------------------------------- /.github/workflows/reviewdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.github/workflows/reviewdog.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.github/workflows/trigger-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/README.md -------------------------------------------------------------------------------- /components/AnalyticsScripts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/AnalyticsScripts.tsx -------------------------------------------------------------------------------- /components/AuthLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/AuthLayout.tsx -------------------------------------------------------------------------------- /components/Authenticated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/Authenticated.tsx -------------------------------------------------------------------------------- /components/ColumnListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/ColumnListItem.tsx -------------------------------------------------------------------------------- /components/DashedCreateBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/DashedCreateBox.tsx -------------------------------------------------------------------------------- /components/DataSourcesSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/DataSourcesSidebar.tsx -------------------------------------------------------------------------------- /components/DragIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/DragIcon.tsx -------------------------------------------------------------------------------- /components/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/ErrorMessage.tsx -------------------------------------------------------------------------------- /components/ErrorWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/ErrorWrapper.tsx -------------------------------------------------------------------------------- /components/FeedbackPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/FeedbackPanel.tsx -------------------------------------------------------------------------------- /components/FeedbackSidebarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/FeedbackSidebarItem.tsx -------------------------------------------------------------------------------- /components/GoogleSheetsSetup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/GoogleSheetsSetup.tsx -------------------------------------------------------------------------------- /components/HeadSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/HeadSection.tsx -------------------------------------------------------------------------------- /components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/Layout.tsx -------------------------------------------------------------------------------- /components/LoadingComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/LoadingComponent.tsx -------------------------------------------------------------------------------- /components/LoadingOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/LoadingOverlay.tsx -------------------------------------------------------------------------------- /components/OrganizationSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/OrganizationSidebar.tsx -------------------------------------------------------------------------------- /components/PageWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/PageWrapper.tsx -------------------------------------------------------------------------------- /components/PublicLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/PublicLayout.tsx -------------------------------------------------------------------------------- /components/Shimmer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/Shimmer.tsx -------------------------------------------------------------------------------- /components/ShimmerOrCount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/ShimmerOrCount.tsx -------------------------------------------------------------------------------- /components/ShowErrorMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/ShowErrorMessages.tsx -------------------------------------------------------------------------------- /components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/Sidebar.tsx -------------------------------------------------------------------------------- /components/SidebarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/SidebarItem.tsx -------------------------------------------------------------------------------- /components/TinyLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/TinyLabel.tsx -------------------------------------------------------------------------------- /components/UnauthenticatedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/UnauthenticatedView.tsx -------------------------------------------------------------------------------- /components/svg/AlignLeftIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/svg/AlignLeftIcon.tsx -------------------------------------------------------------------------------- /components/svg/BracketsCurlyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/svg/BracketsCurlyIcon.tsx -------------------------------------------------------------------------------- /components/svg/QuestionIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/svg/QuestionIcon.tsx -------------------------------------------------------------------------------- /components/svg/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/svg/Spinner.tsx -------------------------------------------------------------------------------- /components/svg/TextIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/components/svg/TextIcon.tsx -------------------------------------------------------------------------------- /cypress.env.json: -------------------------------------------------------------------------------- 1 | { 2 | "COOKIE_NAME": "next-auth.session-token" 3 | } 4 | -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/fixtures/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/cypress/fixtures/user.json -------------------------------------------------------------------------------- /cypress/integration/0-auth/check_login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/cypress/integration/0-auth/check_login.js -------------------------------------------------------------------------------- /cypress/integration/0-auth/login_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/cypress/integration/0-auth/login_spec.js -------------------------------------------------------------------------------- /cypress/integration/1-generic/data_sources_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/cypress/integration/1-generic/data_sources_spec.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /deploy/docker/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/deploy/docker/.env.sample -------------------------------------------------------------------------------- /deploy/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/deploy/docker/docker-compose.yml -------------------------------------------------------------------------------- /features/activity/components/ActivityItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/activity/components/ActivityItem.tsx -------------------------------------------------------------------------------- /features/activity/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/activity/types.d.ts -------------------------------------------------------------------------------- /features/api/ApiResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/api/ApiResponse.ts -------------------------------------------------------------------------------- /features/api/ApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/api/ApiService.ts -------------------------------------------------------------------------------- /features/api/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/api/cookies.ts -------------------------------------------------------------------------------- /features/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/api/index.ts -------------------------------------------------------------------------------- /features/api/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/api/middleware.ts -------------------------------------------------------------------------------- /features/api/middlewares/BelongsToOrganization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/api/middlewares/BelongsToOrganization.ts -------------------------------------------------------------------------------- /features/api/middlewares/HasAccessToDashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/api/middlewares/HasAccessToDashboard.ts -------------------------------------------------------------------------------- /features/api/middlewares/IsSignedIn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/api/middlewares/IsSignedIn.ts -------------------------------------------------------------------------------- /features/api/middlewares/OwnsDataSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/api/middlewares/OwnsDataSource.ts -------------------------------------------------------------------------------- /features/api/middlewares/VerifyKeepAlive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/api/middlewares/VerifyKeepAlive.ts -------------------------------------------------------------------------------- /features/api/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/api/types.d.ts -------------------------------------------------------------------------------- /features/api/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/api/urls.ts -------------------------------------------------------------------------------- /features/app/api-slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/app/api-slice.ts -------------------------------------------------------------------------------- /features/app/state-slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/app/state-slice.ts -------------------------------------------------------------------------------- /features/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/auth/index.ts -------------------------------------------------------------------------------- /features/auth/signinSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/auth/signinSchema.ts -------------------------------------------------------------------------------- /features/auth/signupSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/auth/signupSchema.ts -------------------------------------------------------------------------------- /features/authorization/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/authorization/hooks.ts -------------------------------------------------------------------------------- /features/cache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/cache/index.ts -------------------------------------------------------------------------------- /features/code/evaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/code/evaluator.ts -------------------------------------------------------------------------------- /features/dashboards/api-slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/api-slice.ts -------------------------------------------------------------------------------- /features/dashboards/components/DashboardEditDataSourceInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/components/DashboardEditDataSourceInfo.tsx -------------------------------------------------------------------------------- /features/dashboards/components/DashboardEditName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/components/DashboardEditName.tsx -------------------------------------------------------------------------------- /features/dashboards/components/DashboardEditVisibility.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/components/DashboardEditVisibility.tsx -------------------------------------------------------------------------------- /features/dashboards/components/DashboardEditWidgets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/components/DashboardEditWidgets.tsx -------------------------------------------------------------------------------- /features/dashboards/components/DashboardPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/components/DashboardPage.tsx -------------------------------------------------------------------------------- /features/dashboards/components/DashboardsSidebarSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/components/DashboardsSidebarSection.tsx -------------------------------------------------------------------------------- /features/dashboards/components/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/components/Divider.tsx -------------------------------------------------------------------------------- /features/dashboards/components/GenericCodeOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/components/GenericCodeOption.tsx -------------------------------------------------------------------------------- /features/dashboards/components/GenericTextOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/components/GenericTextOption.tsx -------------------------------------------------------------------------------- /features/dashboards/components/Widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/components/Widget.tsx -------------------------------------------------------------------------------- /features/dashboards/components/WidgetEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/components/WidgetEditor.tsx -------------------------------------------------------------------------------- /features/dashboards/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/hooks.ts -------------------------------------------------------------------------------- /features/dashboards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/index.ts -------------------------------------------------------------------------------- /features/dashboards/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/schema.ts -------------------------------------------------------------------------------- /features/dashboards/server-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/server-helpers.ts -------------------------------------------------------------------------------- /features/dashboards/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/dashboards/types.d.ts -------------------------------------------------------------------------------- /features/data-sources/api-slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/data-sources/api-slice.ts -------------------------------------------------------------------------------- /features/data-sources/components/DataSourceEditName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/data-sources/components/DataSourceEditName.tsx -------------------------------------------------------------------------------- /features/data-sources/components/DataSourceTileCreate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/data-sources/components/DataSourceTileCreate.tsx -------------------------------------------------------------------------------- /features/data-sources/components/DataSourcesBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/data-sources/components/DataSourcesBlock.tsx -------------------------------------------------------------------------------- /features/data-sources/components/DataSourcesEditLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/data-sources/components/DataSourcesEditLayout.tsx -------------------------------------------------------------------------------- /features/data-sources/components/DummyDataSources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/data-sources/components/DummyDataSources.tsx -------------------------------------------------------------------------------- /features/data-sources/components/NewDataSourceForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/data-sources/components/NewDataSourceForm.tsx -------------------------------------------------------------------------------- /features/data-sources/components/OptionWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/data-sources/components/OptionWrapper.tsx -------------------------------------------------------------------------------- /features/data-sources/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/data-sources/hooks.ts -------------------------------------------------------------------------------- /features/data-sources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/data-sources/index.ts -------------------------------------------------------------------------------- /features/data-sources/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/data-sources/types.d.ts -------------------------------------------------------------------------------- /features/fields/api-slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/api-slice.ts -------------------------------------------------------------------------------- /features/fields/components/BooleanCheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/components/BooleanCheck.tsx -------------------------------------------------------------------------------- /features/fields/components/DummyField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/components/DummyField.tsx -------------------------------------------------------------------------------- /features/fields/components/EmptyDash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/components/EmptyDash.tsx -------------------------------------------------------------------------------- /features/fields/components/FieldWrapper/EditFieldWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/components/FieldWrapper/EditFieldWrapper.tsx -------------------------------------------------------------------------------- /features/fields/components/FieldWrapper/IndexFieldWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/components/FieldWrapper/IndexFieldWrapper.tsx -------------------------------------------------------------------------------- /features/fields/components/FieldWrapper/ShowFieldWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/components/FieldWrapper/ShowFieldWrapper.tsx -------------------------------------------------------------------------------- /features/fields/components/GoToRecordLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/components/GoToRecordLink.tsx -------------------------------------------------------------------------------- /features/fields/components/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/components/MenuItem.tsx -------------------------------------------------------------------------------- /features/fields/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/factory.ts -------------------------------------------------------------------------------- /features/fields/getColumns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/getColumns.ts -------------------------------------------------------------------------------- /features/fields/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/hooks.ts -------------------------------------------------------------------------------- /features/fields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/index.ts -------------------------------------------------------------------------------- /features/fields/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/fields/types.d.ts -------------------------------------------------------------------------------- /features/options/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/options/index.ts -------------------------------------------------------------------------------- /features/organizations/api-slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/organizations/api-slice.ts -------------------------------------------------------------------------------- /features/organizations/components/OrganizationsBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/organizations/components/OrganizationsBlock.tsx -------------------------------------------------------------------------------- /features/organizations/invitationsSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/organizations/invitationsSchema.ts -------------------------------------------------------------------------------- /features/records/api-slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/records/api-slice.ts -------------------------------------------------------------------------------- /features/records/clientHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/records/clientHelpers.ts -------------------------------------------------------------------------------- /features/records/components/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/records/components/BackButton.tsx -------------------------------------------------------------------------------- /features/records/components/EditRecord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/records/components/EditRecord.tsx -------------------------------------------------------------------------------- /features/records/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/records/components/Form.tsx -------------------------------------------------------------------------------- /features/records/components/NewRecord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/records/components/NewRecord.tsx -------------------------------------------------------------------------------- /features/records/components/RecordsIndexPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/records/components/RecordsIndexPage.tsx -------------------------------------------------------------------------------- /features/records/components/ShowRecord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/records/components/ShowRecord.tsx -------------------------------------------------------------------------------- /features/records/convertToBaseFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/records/convertToBaseFilters.ts -------------------------------------------------------------------------------- /features/records/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/records/hooks.ts -------------------------------------------------------------------------------- /features/records/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/records/index.ts -------------------------------------------------------------------------------- /features/records/state-slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/records/state-slice.ts -------------------------------------------------------------------------------- /features/records/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/records/types.d.ts -------------------------------------------------------------------------------- /features/roles/AccessControlService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/roles/AccessControlService.ts -------------------------------------------------------------------------------- /features/roles/api-slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/roles/api-slice.ts -------------------------------------------------------------------------------- /features/roles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/roles/index.ts -------------------------------------------------------------------------------- /features/roles/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/roles/schema.ts -------------------------------------------------------------------------------- /features/tables/api-slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/api-slice.ts -------------------------------------------------------------------------------- /features/tables/components/BooleanConditionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/BooleanConditionComponent.tsx -------------------------------------------------------------------------------- /features/tables/components/BulkDeleteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/BulkDeleteButton.tsx -------------------------------------------------------------------------------- /features/tables/components/Cell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/Cell.tsx -------------------------------------------------------------------------------- /features/tables/components/CheckboxColumnCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/CheckboxColumnCell.tsx -------------------------------------------------------------------------------- /features/tables/components/ConditionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/ConditionComponent.tsx -------------------------------------------------------------------------------- /features/tables/components/ConditionSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/ConditionSelect.tsx -------------------------------------------------------------------------------- /features/tables/components/CursorPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/CursorPagination.tsx -------------------------------------------------------------------------------- /features/tables/components/DateConditionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/DateConditionComponent.tsx -------------------------------------------------------------------------------- /features/tables/components/Filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/Filter.tsx -------------------------------------------------------------------------------- /features/tables/components/FilterTrashIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/FilterTrashIcon.tsx -------------------------------------------------------------------------------- /features/tables/components/FiltersButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/FiltersButton.tsx -------------------------------------------------------------------------------- /features/tables/components/FiltersPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/FiltersPanel.tsx -------------------------------------------------------------------------------- /features/tables/components/GroupFiltersPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/GroupFiltersPanel.tsx -------------------------------------------------------------------------------- /features/tables/components/IntConditionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/IntConditionComponent.tsx -------------------------------------------------------------------------------- /features/tables/components/ItemControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/ItemControls.tsx -------------------------------------------------------------------------------- /features/tables/components/ItemControlsCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/ItemControlsCell.tsx -------------------------------------------------------------------------------- /features/tables/components/MobileRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/MobileRow.tsx -------------------------------------------------------------------------------- /features/tables/components/OffsetPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/OffsetPagination.tsx -------------------------------------------------------------------------------- /features/tables/components/OffsetPaginationComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/OffsetPaginationComponent.tsx -------------------------------------------------------------------------------- /features/tables/components/RecordRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/RecordRow.tsx -------------------------------------------------------------------------------- /features/tables/components/RecordsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/RecordsTable.tsx -------------------------------------------------------------------------------- /features/tables/components/SelectConditionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/SelectConditionComponent.tsx -------------------------------------------------------------------------------- /features/tables/components/StringConditionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/StringConditionComponent.tsx -------------------------------------------------------------------------------- /features/tables/components/TablesSidebarSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/TablesSidebarSection.tsx -------------------------------------------------------------------------------- /features/tables/components/VerbComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/components/VerbComponent.tsx -------------------------------------------------------------------------------- /features/tables/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/hooks.ts -------------------------------------------------------------------------------- /features/tables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/index.ts -------------------------------------------------------------------------------- /features/tables/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/tables/types.d.ts -------------------------------------------------------------------------------- /features/views/api-slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/api-slice.ts -------------------------------------------------------------------------------- /features/views/components/CompactFiltersView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/CompactFiltersView.tsx -------------------------------------------------------------------------------- /features/views/components/FieldEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/FieldEditor.tsx -------------------------------------------------------------------------------- /features/views/components/FieldTypeOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/FieldTypeOption.tsx -------------------------------------------------------------------------------- /features/views/components/GenericBooleanOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/GenericBooleanOption.tsx -------------------------------------------------------------------------------- /features/views/components/GenericCodeOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/GenericCodeOption.tsx -------------------------------------------------------------------------------- /features/views/components/GenericSelectOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/GenericSelectOption.tsx -------------------------------------------------------------------------------- /features/views/components/GenericTextOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/GenericTextOption.tsx -------------------------------------------------------------------------------- /features/views/components/NullableOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/NullableOption.tsx -------------------------------------------------------------------------------- /features/views/components/OptionWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/OptionWrapper.tsx -------------------------------------------------------------------------------- /features/views/components/ViewEditColumns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/ViewEditColumns.tsx -------------------------------------------------------------------------------- /features/views/components/ViewEditDataSourceInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/ViewEditDataSourceInfo.tsx -------------------------------------------------------------------------------- /features/views/components/ViewEditFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/ViewEditFilters.tsx -------------------------------------------------------------------------------- /features/views/components/ViewEditName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/ViewEditName.tsx -------------------------------------------------------------------------------- /features/views/components/ViewEditOrder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/ViewEditOrder.tsx -------------------------------------------------------------------------------- /features/views/components/ViewEditVisibility.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/ViewEditVisibility.tsx -------------------------------------------------------------------------------- /features/views/components/ViewsSidebarSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/ViewsSidebarSection.tsx -------------------------------------------------------------------------------- /features/views/components/VisibilityOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/components/VisibilityOption.tsx -------------------------------------------------------------------------------- /features/views/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/hooks.ts -------------------------------------------------------------------------------- /features/views/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/schema.ts -------------------------------------------------------------------------------- /features/views/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/features/views/types.d.ts -------------------------------------------------------------------------------- /hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/hooks/index.ts -------------------------------------------------------------------------------- /lib/ItemTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/ItemTypes.ts -------------------------------------------------------------------------------- /lib/chakra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/chakra.ts -------------------------------------------------------------------------------- /lib/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/colors.js -------------------------------------------------------------------------------- /lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/constants.ts -------------------------------------------------------------------------------- /lib/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/crypto.ts -------------------------------------------------------------------------------- /lib/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/email.ts -------------------------------------------------------------------------------- /lib/encoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/encoding.ts -------------------------------------------------------------------------------- /lib/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/environment.ts -------------------------------------------------------------------------------- /lib/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/errors.ts -------------------------------------------------------------------------------- /lib/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/fonts.css -------------------------------------------------------------------------------- /lib/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/globals.css -------------------------------------------------------------------------------- /lib/gtag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/gtag.ts -------------------------------------------------------------------------------- /lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/helpers.ts -------------------------------------------------------------------------------- /lib/humanize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/humanize.ts -------------------------------------------------------------------------------- /lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/logger.ts -------------------------------------------------------------------------------- /lib/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/messages.ts -------------------------------------------------------------------------------- /lib/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/redis.ts -------------------------------------------------------------------------------- /lib/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/services.ts -------------------------------------------------------------------------------- /lib/siteMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/siteMeta.ts -------------------------------------------------------------------------------- /lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/store.ts -------------------------------------------------------------------------------- /lib/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/time.ts -------------------------------------------------------------------------------- /lib/track.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/lib/track.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/404.tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/_error.tsx -------------------------------------------------------------------------------- /pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /pages/api/auth/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/auth/register.ts -------------------------------------------------------------------------------- /pages/api/columns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/columns.ts -------------------------------------------------------------------------------- /pages/api/dashboards/[dashboardId].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/dashboards/[dashboardId].ts -------------------------------------------------------------------------------- /pages/api/dashboards/[dashboardId]/widgets/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/dashboards/[dashboardId]/widgets/order.ts -------------------------------------------------------------------------------- /pages/api/dashboards/[dashboardId]/widgets/values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/dashboards/[dashboardId]/widgets/values.ts -------------------------------------------------------------------------------- /pages/api/dashboards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/dashboards/index.ts -------------------------------------------------------------------------------- /pages/api/data-sources/[dataSourceId].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/data-sources/[dataSourceId].ts -------------------------------------------------------------------------------- /pages/api/data-sources/[dataSourceId]/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/data-sources/[dataSourceId]/query.ts -------------------------------------------------------------------------------- /pages/api/data-sources/[dataSourceId]/tables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/data-sources/[dataSourceId]/tables.ts -------------------------------------------------------------------------------- /pages/api/data-sources/[dataSourceId]/tables/[tableName]/records.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/data-sources/[dataSourceId]/tables/[tableName]/records.ts -------------------------------------------------------------------------------- /pages/api/data-sources/[dataSourceId]/tables/[tableName]/records/[recordId].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/data-sources/[dataSourceId]/tables/[tableName]/records/[recordId].ts -------------------------------------------------------------------------------- /pages/api/data-sources/[dataSourceId]/tables/[tableName]/records/bulk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/data-sources/[dataSourceId]/tables/[tableName]/records/bulk.ts -------------------------------------------------------------------------------- /pages/api/data-sources/check-connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/data-sources/check-connection.ts -------------------------------------------------------------------------------- /pages/api/data-sources/google-sheets/[dataSourceId]/sheets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/data-sources/google-sheets/[dataSourceId]/sheets.ts -------------------------------------------------------------------------------- /pages/api/data-sources/google-sheets/auth-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/data-sources/google-sheets/auth-url.ts -------------------------------------------------------------------------------- /pages/api/data-sources/google-sheets/callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/data-sources/google-sheets/callback.ts -------------------------------------------------------------------------------- /pages/api/data-sources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/data-sources/index.ts -------------------------------------------------------------------------------- /pages/api/feedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/feedback.ts -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/api/organization-users/[organizationUserId]/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/organization-users/[organizationUserId]/roles.ts -------------------------------------------------------------------------------- /pages/api/organizations/[organizationId].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/organizations/[organizationId].ts -------------------------------------------------------------------------------- /pages/api/organizations/[organizationId]/activities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/organizations/[organizationId]/activities.ts -------------------------------------------------------------------------------- /pages/api/organizations/[organizationId]/invitations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/organizations/[organizationId]/invitations.ts -------------------------------------------------------------------------------- /pages/api/organizations/[organizationId]/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/organizations/[organizationId]/roles.ts -------------------------------------------------------------------------------- /pages/api/organizations/[organizationId]/roles/[roleId].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/organizations/[organizationId]/roles/[roleId].ts -------------------------------------------------------------------------------- /pages/api/organizations/[organizationId]/users/[organizationUserId].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/organizations/[organizationId]/users/[organizationUserId].ts -------------------------------------------------------------------------------- /pages/api/organizations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/organizations/index.ts -------------------------------------------------------------------------------- /pages/api/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/profile.ts -------------------------------------------------------------------------------- /pages/api/records.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/records.ts -------------------------------------------------------------------------------- /pages/api/records/[recordId].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/records/[recordId].ts -------------------------------------------------------------------------------- /pages/api/test/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/test/seed.ts -------------------------------------------------------------------------------- /pages/api/views/[viewId].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/views/[viewId].ts -------------------------------------------------------------------------------- /pages/api/views/[viewId]/columns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/views/[viewId]/columns.ts -------------------------------------------------------------------------------- /pages/api/views/[viewId]/columns/[columnName].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/views/[viewId]/columns/[columnName].ts -------------------------------------------------------------------------------- /pages/api/views/[viewId]/columns/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/views/[viewId]/columns/order.ts -------------------------------------------------------------------------------- /pages/api/views/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/views/index.ts -------------------------------------------------------------------------------- /pages/api/widgets/[widgetId].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/widgets/[widgetId].ts -------------------------------------------------------------------------------- /pages/api/widgets/[widgetId]/value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/widgets/[widgetId]/value.ts -------------------------------------------------------------------------------- /pages/api/widgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/api/widgets/index.ts -------------------------------------------------------------------------------- /pages/auth/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/auth/login.tsx -------------------------------------------------------------------------------- /pages/auth/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/auth/register.tsx -------------------------------------------------------------------------------- /pages/beta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/beta.tsx -------------------------------------------------------------------------------- /pages/dashboards/[dashboardId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/dashboards/[dashboardId].tsx -------------------------------------------------------------------------------- /pages/dashboards/[dashboardId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/dashboards/[dashboardId]/edit.tsx -------------------------------------------------------------------------------- /pages/data-sources/[dataSourceId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/data-sources/[dataSourceId].tsx -------------------------------------------------------------------------------- /pages/data-sources/[dataSourceId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/data-sources/[dataSourceId]/edit.tsx -------------------------------------------------------------------------------- /pages/data-sources/[dataSourceId]/tables/[tableName].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/data-sources/[dataSourceId]/tables/[tableName].tsx -------------------------------------------------------------------------------- /pages/data-sources/[dataSourceId]/tables/[tableName]/[recordId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/data-sources/[dataSourceId]/tables/[tableName]/[recordId].tsx -------------------------------------------------------------------------------- /pages/data-sources/[dataSourceId]/tables/[tableName]/[recordId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/data-sources/[dataSourceId]/tables/[tableName]/[recordId]/edit.tsx -------------------------------------------------------------------------------- /pages/data-sources/[dataSourceId]/tables/[tableName]/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/data-sources/[dataSourceId]/tables/[tableName]/new.tsx -------------------------------------------------------------------------------- /pages/data-sources/google-sheets/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/data-sources/google-sheets/new.tsx -------------------------------------------------------------------------------- /pages/data-sources/maria_db/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/data-sources/maria_db/new.tsx -------------------------------------------------------------------------------- /pages/data-sources/mssql/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/data-sources/mssql/new.tsx -------------------------------------------------------------------------------- /pages/data-sources/mysql/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/data-sources/mysql/new.tsx -------------------------------------------------------------------------------- /pages/data-sources/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/data-sources/new.tsx -------------------------------------------------------------------------------- /pages/data-sources/postgresql/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/data-sources/postgresql/new.tsx -------------------------------------------------------------------------------- /pages/data-sources/stripe/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/data-sources/stripe/new.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/organization-invitations/[uuid].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/organization-invitations/[uuid].tsx -------------------------------------------------------------------------------- /pages/organizations/[organizationSlug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/organizations/[organizationSlug].tsx -------------------------------------------------------------------------------- /pages/organizations/[organizationSlug]/activity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/organizations/[organizationSlug]/activity.tsx -------------------------------------------------------------------------------- /pages/organizations/[organizationSlug]/members.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/organizations/[organizationSlug]/members.tsx -------------------------------------------------------------------------------- /pages/organizations/[organizationSlug]/roles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/organizations/[organizationSlug]/roles.tsx -------------------------------------------------------------------------------- /pages/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/profile.tsx -------------------------------------------------------------------------------- /pages/views/[viewId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/views/[viewId].tsx -------------------------------------------------------------------------------- /pages/views/[viewId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/views/[viewId]/edit.tsx -------------------------------------------------------------------------------- /pages/views/[viewId]/records/[recordId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/views/[viewId]/records/[recordId].tsx -------------------------------------------------------------------------------- /pages/views/[viewId]/records/[recordId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/views/[viewId]/records/[recordId]/edit.tsx -------------------------------------------------------------------------------- /pages/views/[viewId]/records/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/views/[viewId]/records/new.tsx -------------------------------------------------------------------------------- /pages/views/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/pages/views/new.tsx -------------------------------------------------------------------------------- /plugins/data-sources/ConnectionPooler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/ConnectionPooler.ts -------------------------------------------------------------------------------- /plugins/data-sources/QueryServiceWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/QueryServiceWrapper.ts -------------------------------------------------------------------------------- /plugins/data-sources/abstract-sql-query-service/AbstractQueryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/abstract-sql-query-service/AbstractQueryService.ts -------------------------------------------------------------------------------- /plugins/data-sources/abstract-sql-query-service/doInitialScan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/abstract-sql-query-service/doInitialScan.ts -------------------------------------------------------------------------------- /plugins/data-sources/abstract-sql-query-service/getKnexClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/abstract-sql-query-service/getKnexClient.ts -------------------------------------------------------------------------------- /plugins/data-sources/abstract-sql-query-service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/abstract-sql-query-service/index.ts -------------------------------------------------------------------------------- /plugins/data-sources/abstract-sql-query-service/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/abstract-sql-query-service/types.d.ts -------------------------------------------------------------------------------- /plugins/data-sources/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/enums.ts -------------------------------------------------------------------------------- /plugins/data-sources/getDataSourceInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/getDataSourceInfo.ts -------------------------------------------------------------------------------- /plugins/data-sources/getSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/getSchema.ts -------------------------------------------------------------------------------- /plugins/data-sources/google-sheets/GoogleDriveService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/google-sheets/GoogleDriveService.ts -------------------------------------------------------------------------------- /plugins/data-sources/google-sheets/QueryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/google-sheets/QueryService.ts -------------------------------------------------------------------------------- /plugins/data-sources/google-sheets/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/google-sheets/constants.ts -------------------------------------------------------------------------------- /plugins/data-sources/google-sheets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/google-sheets/index.ts -------------------------------------------------------------------------------- /plugins/data-sources/google-sheets/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/google-sheets/types.d.ts -------------------------------------------------------------------------------- /plugins/data-sources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/index.ts -------------------------------------------------------------------------------- /plugins/data-sources/maria_db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/maria_db/index.ts -------------------------------------------------------------------------------- /plugins/data-sources/maria_db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/maria_db/schema.ts -------------------------------------------------------------------------------- /plugins/data-sources/mssql/QueryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/mssql/QueryService.ts -------------------------------------------------------------------------------- /plugins/data-sources/mssql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/mssql/index.ts -------------------------------------------------------------------------------- /plugins/data-sources/mssql/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/mssql/schema.ts -------------------------------------------------------------------------------- /plugins/data-sources/mysql/QueryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/mysql/QueryService.ts -------------------------------------------------------------------------------- /plugins/data-sources/mysql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/mysql/index.ts -------------------------------------------------------------------------------- /plugins/data-sources/mysql/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/mysql/schema.ts -------------------------------------------------------------------------------- /plugins/data-sources/mysql/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/mysql/types.d.ts -------------------------------------------------------------------------------- /plugins/data-sources/postgresql/QueryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/postgresql/QueryService.ts -------------------------------------------------------------------------------- /plugins/data-sources/postgresql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/postgresql/index.ts -------------------------------------------------------------------------------- /plugins/data-sources/postgresql/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/postgresql/schema.ts -------------------------------------------------------------------------------- /plugins/data-sources/postgresql/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/postgresql/types.d.ts -------------------------------------------------------------------------------- /plugins/data-sources/serverHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/serverHelpers.ts -------------------------------------------------------------------------------- /plugins/data-sources/stripe/QueryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/stripe/QueryService.ts -------------------------------------------------------------------------------- /plugins/data-sources/stripe/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/stripe/index.ts -------------------------------------------------------------------------------- /plugins/data-sources/stripe/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/stripe/schema.ts -------------------------------------------------------------------------------- /plugins/data-sources/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/data-sources/types.d.ts -------------------------------------------------------------------------------- /plugins/fields/Association/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Association/Edit.tsx -------------------------------------------------------------------------------- /plugins/fields/Association/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Association/Index.tsx -------------------------------------------------------------------------------- /plugins/fields/Association/Inspector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Association/Inspector.tsx -------------------------------------------------------------------------------- /plugins/fields/Association/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Association/Show.tsx -------------------------------------------------------------------------------- /plugins/fields/Association/fieldOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Association/fieldOptions.ts -------------------------------------------------------------------------------- /plugins/fields/Association/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Association/schema.ts -------------------------------------------------------------------------------- /plugins/fields/Boolean/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Boolean/Edit.tsx -------------------------------------------------------------------------------- /plugins/fields/Boolean/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Boolean/Index.tsx -------------------------------------------------------------------------------- /plugins/fields/Boolean/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Boolean/Show.tsx -------------------------------------------------------------------------------- /plugins/fields/DateTime/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/DateTime/Edit.tsx -------------------------------------------------------------------------------- /plugins/fields/DateTime/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/DateTime/Index.tsx -------------------------------------------------------------------------------- /plugins/fields/DateTime/Inspector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/DateTime/Inspector.tsx -------------------------------------------------------------------------------- /plugins/fields/DateTime/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/DateTime/Show.tsx -------------------------------------------------------------------------------- /plugins/fields/DateTime/fieldOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/DateTime/fieldOptions.ts -------------------------------------------------------------------------------- /plugins/fields/DateTime/parsedValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/DateTime/parsedValue.ts -------------------------------------------------------------------------------- /plugins/fields/DateTime/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/DateTime/schema.ts -------------------------------------------------------------------------------- /plugins/fields/DateTime/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/DateTime/types.d.ts -------------------------------------------------------------------------------- /plugins/fields/Gravatar/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Gravatar/Index.tsx -------------------------------------------------------------------------------- /plugins/fields/Gravatar/Inspector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Gravatar/Inspector.tsx -------------------------------------------------------------------------------- /plugins/fields/Gravatar/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Gravatar/Show.tsx -------------------------------------------------------------------------------- /plugins/fields/Gravatar/fieldOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Gravatar/fieldOptions.ts -------------------------------------------------------------------------------- /plugins/fields/Gravatar/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Gravatar/schema.ts -------------------------------------------------------------------------------- /plugins/fields/Gravatar/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Gravatar/types.d.ts -------------------------------------------------------------------------------- /plugins/fields/Id/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Id/Edit.tsx -------------------------------------------------------------------------------- /plugins/fields/Id/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Id/Index.tsx -------------------------------------------------------------------------------- /plugins/fields/Id/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Id/Show.tsx -------------------------------------------------------------------------------- /plugins/fields/Json/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Json/Edit.tsx -------------------------------------------------------------------------------- /plugins/fields/Json/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Json/Index.tsx -------------------------------------------------------------------------------- /plugins/fields/Json/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Json/Show.tsx -------------------------------------------------------------------------------- /plugins/fields/Json/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Json/schema.ts -------------------------------------------------------------------------------- /plugins/fields/LinkTo/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/LinkTo/Index.tsx -------------------------------------------------------------------------------- /plugins/fields/LinkTo/Inspector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/LinkTo/Inspector.tsx -------------------------------------------------------------------------------- /plugins/fields/LinkTo/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/LinkTo/Show.tsx -------------------------------------------------------------------------------- /plugins/fields/LinkTo/fieldOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/LinkTo/fieldOptions.ts -------------------------------------------------------------------------------- /plugins/fields/LinkTo/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/LinkTo/schema.ts -------------------------------------------------------------------------------- /plugins/fields/LinkTo/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/LinkTo/types.d.ts -------------------------------------------------------------------------------- /plugins/fields/Number/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Number/Edit.tsx -------------------------------------------------------------------------------- /plugins/fields/Number/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Number/Index.tsx -------------------------------------------------------------------------------- /plugins/fields/Number/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Number/Show.tsx -------------------------------------------------------------------------------- /plugins/fields/Number/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Number/options.ts -------------------------------------------------------------------------------- /plugins/fields/Number/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Number/schema.ts -------------------------------------------------------------------------------- /plugins/fields/ProgressBar/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/ProgressBar/Edit.tsx -------------------------------------------------------------------------------- /plugins/fields/ProgressBar/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/ProgressBar/Index.tsx -------------------------------------------------------------------------------- /plugins/fields/ProgressBar/Inspector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/ProgressBar/Inspector.tsx -------------------------------------------------------------------------------- /plugins/fields/ProgressBar/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/ProgressBar/Show.tsx -------------------------------------------------------------------------------- /plugins/fields/ProgressBar/fieldOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/ProgressBar/fieldOptions.ts -------------------------------------------------------------------------------- /plugins/fields/ProgressBar/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/ProgressBar/schema.ts -------------------------------------------------------------------------------- /plugins/fields/ProgressBar/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/ProgressBar/types.d.ts -------------------------------------------------------------------------------- /plugins/fields/Select/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Select/Edit.tsx -------------------------------------------------------------------------------- /plugins/fields/Select/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Select/Index.tsx -------------------------------------------------------------------------------- /plugins/fields/Select/Inspector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Select/Inspector.tsx -------------------------------------------------------------------------------- /plugins/fields/Select/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Select/Show.tsx -------------------------------------------------------------------------------- /plugins/fields/Select/fieldOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Select/fieldOptions.ts -------------------------------------------------------------------------------- /plugins/fields/Select/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Select/schema.ts -------------------------------------------------------------------------------- /plugins/fields/Select/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Select/types.d.ts -------------------------------------------------------------------------------- /plugins/fields/Text/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Text/Edit.tsx -------------------------------------------------------------------------------- /plugins/fields/Text/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Text/Index.tsx -------------------------------------------------------------------------------- /plugins/fields/Text/Inspector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Text/Inspector.tsx -------------------------------------------------------------------------------- /plugins/fields/Text/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Text/Show.tsx -------------------------------------------------------------------------------- /plugins/fields/Text/fieldOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Text/fieldOptions.ts -------------------------------------------------------------------------------- /plugins/fields/Text/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Text/schema.ts -------------------------------------------------------------------------------- /plugins/fields/Text/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Text/types.d.ts -------------------------------------------------------------------------------- /plugins/fields/Textarea/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Textarea/Edit.tsx -------------------------------------------------------------------------------- /plugins/fields/Textarea/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Textarea/Index.tsx -------------------------------------------------------------------------------- /plugins/fields/Textarea/Inspector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Textarea/Inspector.tsx -------------------------------------------------------------------------------- /plugins/fields/Textarea/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Textarea/Show.tsx -------------------------------------------------------------------------------- /plugins/fields/Textarea/fieldOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Textarea/fieldOptions.ts -------------------------------------------------------------------------------- /plugins/fields/Textarea/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/plugins/fields/Textarea/schema.ts -------------------------------------------------------------------------------- /plugins/fields/Textarea/types.d.ts: -------------------------------------------------------------------------------- 1 | export type TextareaFieldOptions = { 2 | rows: number; 3 | }; 4 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/index.ts -------------------------------------------------------------------------------- /prisma/migrations/20210827073855_initial_migration/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20210827073855_initial_migration/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20210902112607_add_encrypted_credentials_to_data_sources/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20210902112607_add_encrypted_credentials_to_data_sources/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20210908205601_add_roles/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20210908205601_add_roles/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20210909110755_add_options_to_roles/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20210909110755_add_options_to_roles/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20210923094700_add_ogranization_membership_invite/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20210923094700_add_ogranization_membership_invite/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20210923095550_refactor_invite_table/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20210923095550_refactor_invite_table/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20210923111111_invitations_have_uuid_primary_keys/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20210923111111_invitations_have_uuid_primary_keys/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20210923132123_cascade_user_deletion_to_invites/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20210923132123_cascade_user_deletion_to_invites/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20210924130927_add_last_logged_in_at_to_users/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20210924130927_add_last_logged_in_at_to_users/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211015102604_add_views/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211015102604_add_views/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211015103805_change_filters_and_order_rules_to_arrays_in_views/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211015103805_change_filters_and_order_rules_to_arrays_in_views/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211015104016_delete_order_rules_from_views/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211015104016_delete_order_rules_from_views/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211015150345_add_datasource_id_to_views/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211015150345_add_datasource_id_to_views/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211015152114_rename_datasource_views/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211015152114_rename_datasource_views/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211020084717_split_indexes_for_view/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211020084717_split_indexes_for_view/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211020141810_add_encrypted_ssh_credentials/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211020141810_add_encrypted_ssh_credentials/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211022134622_add_order_rule_to_views/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211022134622_add_order_rule_to_views/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211025070704_chnage_name_of_order_rule_in_views/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211025070704_chnage_name_of_order_rule_in_views/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211105155559_add_activities/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211105155559_add_activities/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211107151703_add_columns_to_views/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211107151703_add_columns_to_views/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211108135526_add_action_to_activity/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211108135526_add_action_to_activity/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211108210747_change_user_id_to_user_email_in_activity/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211108210747_change_user_id_to_user_email_in_activity/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211109092051_change_back_to_user_id_activity/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211109092051_change_back_to_user_id_activity/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211109114014_changes_to_array_acitivity/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211109114014_changes_to_array_acitivity/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211109164431_add_index_user_id_activity/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211109164431_add_index_user_id_activity/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211110105430_update_view_filters_to_array/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211110105430_update_view_filters_to_array/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211110111825_add_last_known_timezone_to_users/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211110111825_add_last_known_timezone_to_users/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211111151715_view_columns_to_array/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211111151715_view_columns_to_array/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211119102418_add_table_meta_data_to_datasource/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211119102418_add_table_meta_data_to_datasource/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211209121519_add_dashboard/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211209121519_add_dashboard/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211210093006_add_datasource_to_dashboard/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211210093006_add_datasource_to_dashboard/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211210142704_add_dashboard_item/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211210142704_add_dashboard_item/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211214134027_rename_dashboard_item_to_widget/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/20211214134027_rename_dashboard_item_to_widget/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/sample-seed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/sample-seed.sql -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /prisma/seed-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/seed-script.ts -------------------------------------------------------------------------------- /prisma/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/prisma/seed.ts -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/favicons/browserconfig.xml -------------------------------------------------------------------------------- /public/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/favicons/favicon.ico -------------------------------------------------------------------------------- /public/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /public/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/favicons/site.webmanifest -------------------------------------------------------------------------------- /public/fonts/nunito-v16-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/fonts/nunito-v16-latin-700.eot -------------------------------------------------------------------------------- /public/fonts/nunito-v16-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/fonts/nunito-v16-latin-700.svg -------------------------------------------------------------------------------- /public/fonts/nunito-v16-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/fonts/nunito-v16-latin-700.ttf -------------------------------------------------------------------------------- /public/fonts/nunito-v16-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/fonts/nunito-v16-latin-700.woff -------------------------------------------------------------------------------- /public/fonts/nunito-v16-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/fonts/nunito-v16-latin-700.woff2 -------------------------------------------------------------------------------- /public/fonts/nunito-v16-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/fonts/nunito-v16-latin-regular.eot -------------------------------------------------------------------------------- /public/fonts/nunito-v16-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/fonts/nunito-v16-latin-regular.svg -------------------------------------------------------------------------------- /public/fonts/nunito-v16-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/fonts/nunito-v16-latin-regular.ttf -------------------------------------------------------------------------------- /public/fonts/nunito-v16-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/fonts/nunito-v16-latin-regular.woff -------------------------------------------------------------------------------- /public/fonts/nunito-v16-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/fonts/nunito-v16-latin-regular.woff2 -------------------------------------------------------------------------------- /public/img/404_cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/404_cat.jpg -------------------------------------------------------------------------------- /public/img/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/bg.svg -------------------------------------------------------------------------------- /public/img/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/cover.jpg -------------------------------------------------------------------------------- /public/img/heading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/heading.png -------------------------------------------------------------------------------- /public/img/illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/illustration.svg -------------------------------------------------------------------------------- /public/img/logo_text_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logo_text_black.png -------------------------------------------------------------------------------- /public/img/logos/airtable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/airtable.png -------------------------------------------------------------------------------- /public/img/logos/amazon_redshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/amazon_redshift.png -------------------------------------------------------------------------------- /public/img/logos/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/github.png -------------------------------------------------------------------------------- /public/img/logos/google-sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/google-sheets.png -------------------------------------------------------------------------------- /public/img/logos/intercom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/intercom.png -------------------------------------------------------------------------------- /public/img/logos/maria_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/maria_db.png -------------------------------------------------------------------------------- /public/img/logos/mssql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/mssql.png -------------------------------------------------------------------------------- /public/img/logos/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/mysql.png -------------------------------------------------------------------------------- /public/img/logos/postgresql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/postgresql.png -------------------------------------------------------------------------------- /public/img/logos/redis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/redis.png -------------------------------------------------------------------------------- /public/img/logos/salesforce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/salesforce.png -------------------------------------------------------------------------------- /public/img/logos/shopify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/shopify.png -------------------------------------------------------------------------------- /public/img/logos/stripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/stripe.png -------------------------------------------------------------------------------- /public/img/logos/swagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/swagger.png -------------------------------------------------------------------------------- /public/img/logos/zendesk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/public/img/logos/zendesk.png -------------------------------------------------------------------------------- /scripts/docker-start.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/scripts/docker-start.mjs -------------------------------------------------------------------------------- /scripts/start-cypress.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/scripts/start-cypress.mjs -------------------------------------------------------------------------------- /scripts/test:migrate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/scripts/test:migrate.mjs -------------------------------------------------------------------------------- /sentry.client.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/sentry.client.config.js -------------------------------------------------------------------------------- /sentry.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/sentry.properties -------------------------------------------------------------------------------- /sentry.server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/sentry.server.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/types/next-auth.d.ts -------------------------------------------------------------------------------- /types/react-table-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/types/react-table-config.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basetool-io/basetool/HEAD/yarn.lock --------------------------------------------------------------------------------