├── .cz-config.js ├── .dockerignore ├── .editorconfig ├── .env.example ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── README.md ├── apollo.config.js ├── apps ├── api-e2e │ ├── eslint.config.mjs │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── api │ │ │ └── api.spec.ts │ │ └── support │ │ │ ├── global-setup.ts │ │ │ ├── global-teardown.ts │ │ │ └── test-setup.ts │ ├── tsconfig.json │ └── tsconfig.spec.json ├── api │ ├── eslint.config.mjs │ ├── jest.config.ts │ ├── prisma │ │ └── schema.prisma │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.module.ts │ │ │ ├── auth │ │ │ │ ├── auth.controller.spec.ts │ │ │ │ ├── auth.controller.ts │ │ │ │ ├── auth.module.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── casl │ │ │ │ │ ├── auth-fields.ts │ │ │ │ │ ├── casl-prisma.ts │ │ │ │ │ ├── casl.factory.ts │ │ │ │ │ └── generated.ts │ │ │ │ ├── index.ts │ │ │ │ └── strategies │ │ │ │ │ ├── email-taken-exception.filter.ts │ │ │ │ │ ├── google-oauth.strategy.ts │ │ │ │ │ └── jwt.strategy.ts │ │ │ ├── config │ │ │ │ ├── config.module.ts │ │ │ │ ├── config.service.ts │ │ │ │ └── index.ts │ │ │ ├── controllers │ │ │ │ ├── index.ts │ │ │ │ └── tools.controller.ts │ │ │ ├── graphql │ │ │ │ ├── context.ts │ │ │ │ ├── global-schema.gql.ts │ │ │ │ ├── gql-config.service.ts │ │ │ │ ├── gql-throttler.guard.ts │ │ │ │ ├── index.ts │ │ │ │ ├── models │ │ │ │ │ ├── account-info.ts │ │ │ │ │ ├── auth-exchange-token-input.ts │ │ │ │ │ ├── auth-login-input.ts │ │ │ │ │ ├── auth-password-change-input.ts │ │ │ │ │ ├── auth-password-reset-confirmation-input.ts │ │ │ │ │ ├── auth-password-reset-request-input.ts │ │ │ │ │ ├── auth-register-input.ts │ │ │ │ │ ├── auth-session.ts │ │ │ │ │ ├── context.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── upload.ts │ │ │ │ ├── paljs │ │ │ │ │ ├── InputTypes.ts │ │ │ │ │ ├── SchemaExtensions.ts │ │ │ │ │ ├── User │ │ │ │ │ │ └── typeDefs.ts │ │ │ │ │ └── typeDefs.ts │ │ │ │ ├── resolvers │ │ │ │ │ ├── Auth.ts │ │ │ │ │ ├── Sample.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── prisma │ │ │ │ │ │ ├── User.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── resolversTypes.ts │ │ │ │ └── zen-graphql.module.ts │ │ │ ├── jwt │ │ │ │ ├── index.ts │ │ │ │ └── jwt.module.ts │ │ │ ├── mail │ │ │ │ ├── contexts │ │ │ │ │ ├── general.context.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── password-reset.context.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mail.module.ts │ │ │ │ └── mail.service.ts │ │ │ └── prisma │ │ │ │ ├── default-fields.ts │ │ │ │ ├── index.ts │ │ │ │ ├── prisma-select.service.ts │ │ │ │ ├── prisma.module.ts │ │ │ │ └── prisma.service.ts │ │ ├── assets │ │ │ └── mail │ │ │ │ ├── general.hbs │ │ │ │ └── password-reset.hbs │ │ ├── environments │ │ │ ├── environment.base.ts │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── webpack.config.js ├── portal-e2e │ ├── eslint.config.mjs │ ├── playwright.config.ts │ ├── project.json │ ├── src │ │ └── example.spec.ts │ └── tsconfig.json └── portal │ ├── eslint.config.mjs │ ├── jest.config.ts │ ├── project.json │ ├── public │ └── favicon.ico │ ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ └── app.routes.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── 404.html │ │ └── font │ │ │ ├── euro-ext.woff2 │ │ │ └── euro-ukr.woff2 │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── main.ts │ ├── styles.scss │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── deploy ├── NOTES.md ├── api │ └── Dockerfile ├── dev │ ├── README.md │ ├── k8s-postgres.yaml │ ├── k8s-secrets.yaml │ └── k8s-setup.yaml ├── k8s-postgres.yaml ├── k8s-secrets.yaml └── k8s-setup.yaml ├── docker-compose.yaml ├── eslint.config.mjs ├── jest.config.ts ├── jest.preset.js ├── libs ├── auth │ ├── .storybook │ │ ├── main.ts │ │ ├── preview.ts │ │ └── tsconfig.json │ ├── eslint.config.mjs │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── auth-interceptor.ts │ │ │ ├── auth.service.spec.ts │ │ │ ├── auth.service.ts │ │ │ ├── directives │ │ │ │ ├── if-logged-in.directive.ts │ │ │ │ ├── if-public-registration.directive.ts │ │ │ │ ├── index.ts │ │ │ │ ├── not-roles.directive.ts │ │ │ │ └── roles.directive.ts │ │ │ ├── graphql │ │ │ │ ├── auth-exchange-token-query.gql.ts │ │ │ │ ├── auth-login-query.gql.ts │ │ │ │ └── get-account-info.gql.ts │ │ │ ├── guards │ │ │ │ ├── casl.guard.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logged-in.guard.ts │ │ │ │ ├── login-page.guard.ts │ │ │ │ ├── public-registration.guard.ts │ │ │ │ └── roles.guard.ts │ │ │ ├── inputs │ │ │ │ ├── index.ts │ │ │ │ ├── zen-email-input │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── zen-email-input.component.html │ │ │ │ │ ├── zen-email-input.component.ts │ │ │ │ │ └── zen-email-input.stories.ts │ │ │ │ ├── zen-password-input │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── zen-password-input.component.html │ │ │ │ │ ├── zen-password-input.component.ts │ │ │ │ │ └── zen-password-input.stories.ts │ │ │ │ ├── zen-roles-input │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── zen-roles-input.component.html │ │ │ │ │ ├── zen-roles-input.component.ts │ │ │ │ │ └── zen-roles-input.stories.ts │ │ │ │ └── zen-username-input │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── zen-username-input.component.html │ │ │ │ │ ├── zen-username-input.component.stories.ts │ │ │ │ │ └── zen-username-input.component.ts │ │ │ ├── token.signal.ts │ │ │ ├── validators │ │ │ │ ├── email.validator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── password.validator.ts │ │ │ │ └── username.validator.ts │ │ │ ├── zen-account-info │ │ │ │ ├── zen-account-info.component.html │ │ │ │ └── zen-account-info.component.ts │ │ │ ├── zen-auth.routes.ts │ │ │ ├── zen-login-confirmed │ │ │ │ └── zen-login-confirmed.component.ts │ │ │ ├── zen-login-form │ │ │ │ ├── zen-login-form.component.html │ │ │ │ ├── zen-login-form.component.stories.ts.backup │ │ │ │ └── zen-login-form.component.ts │ │ │ ├── zen-login-link │ │ │ │ ├── zen-login-link.component.html │ │ │ │ └── zen-login-link.component.ts │ │ │ ├── zen-login-page │ │ │ │ ├── zen-login-page.component.html │ │ │ │ ├── zen-login-page.component.stories.ts.backup │ │ │ │ └── zen-login-page.component.ts │ │ │ ├── zen-login │ │ │ │ ├── zen-login.component.html │ │ │ │ ├── zen-login.component.stories.ts.backup │ │ │ │ └── zen-login.component.ts │ │ │ ├── zen-password-change-form │ │ │ │ ├── auth-password-change.gql.ts │ │ │ │ ├── zen-password-change-form.component.html │ │ │ │ ├── zen-password-change-form.component.stories.ts │ │ │ │ └── zen-password-change-form.component.ts │ │ │ ├── zen-password-change │ │ │ │ ├── zen-password-change.component.html │ │ │ │ ├── zen-password-change.component.stories.ts │ │ │ │ └── zen-password-change.component.ts │ │ │ ├── zen-password-reset-confirmation-form │ │ │ │ ├── auth-password-reset-confirmation.gql.ts │ │ │ │ ├── zen-password-reset-confirmation-form.component.html │ │ │ │ ├── zen-password-reset-confirmation-form.component.stories.ts.backup │ │ │ │ └── zen-password-reset-confirmation-form.component.ts │ │ │ ├── zen-password-reset-confirmation-page │ │ │ │ ├── zen-password-reset-confirmation-page.component.html │ │ │ │ ├── zen-password-reset-confirmation-page.component.stories.ts.backup │ │ │ │ └── zen-password-reset-confirmation-page.component.ts │ │ │ ├── zen-password-reset-confirmation │ │ │ │ ├── zen-password-reset-confirmation.component.html │ │ │ │ ├── zen-password-reset-confirmation.component.stories.ts.backup │ │ │ │ └── zen-password-reset-confirmation.component.ts │ │ │ ├── zen-password-reset-request-form │ │ │ │ ├── auth-password-reset-request-query.gql.ts │ │ │ │ ├── zen-password-reset-request-form.component.html │ │ │ │ ├── zen-password-reset-request-form.component.stories.ts │ │ │ │ └── zen-password-reset-request-form.component.ts │ │ │ ├── zen-password-reset-request-page │ │ │ │ ├── zen-password-reset-request-page.component.html │ │ │ │ ├── zen-password-reset-request-page.component.stories.ts │ │ │ │ └── zen-password-reset-request-page.component.ts │ │ │ ├── zen-password-reset-request │ │ │ │ ├── zen-password-reset-request.component.html │ │ │ │ ├── zen-password-reset-request.component.stories.ts │ │ │ │ └── zen-password-reset-request.component.ts │ │ │ ├── zen-register-form │ │ │ │ ├── auth-register.gql.ts │ │ │ │ ├── zen-register-form.component.html │ │ │ │ ├── zen-register-form.component.spec.ts │ │ │ │ ├── zen-register-form.component.stories.ts │ │ │ │ └── zen-register-form.component.ts │ │ │ ├── zen-register-page │ │ │ │ ├── zen-register-page.component.html │ │ │ │ ├── zen-register-page.component.stories.ts │ │ │ │ └── zen-register-page.component.ts │ │ │ └── zen-register │ │ │ │ ├── zen-register.component.html │ │ │ │ ├── zen-register.component.stories.ts │ │ │ │ └── zen-register.component.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── common │ ├── eslint.config.mjs │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── action.ts │ │ │ ├── api-constants.ts │ │ │ ├── api-errors.ts │ │ │ ├── assert-type.ts │ │ │ ├── enum-helper.spec.ts │ │ │ ├── enum-helper.ts │ │ │ ├── environment.ts │ │ │ ├── non-nullable-fields.ts │ │ │ ├── role.ts │ │ │ ├── trim-object-strings.spec.ts │ │ │ └── trim-object-strings.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── components │ ├── .storybook │ │ ├── main.ts │ │ ├── preview.ts │ │ └── tsconfig.json │ ├── eslint.config.mjs │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── animations │ │ │ │ ├── accordion.ts │ │ │ │ └── index.ts │ │ │ ├── zen-confirm-modal │ │ │ │ ├── index.ts │ │ │ │ ├── zen-confirm-modal.module.ts │ │ │ │ ├── zen-confirm-modal.service.ts │ │ │ │ ├── zen-confirm-options.ts │ │ │ │ └── zen-confirm │ │ │ │ │ ├── zen-confirm.component.html │ │ │ │ │ ├── zen-confirm.component.stories.ts │ │ │ │ │ └── zen-confirm.component.ts │ │ │ ├── zen-layout │ │ │ │ ├── index.ts │ │ │ │ ├── zen-layout.component.html │ │ │ │ └── zen-layout.component.ts │ │ │ ├── zen-loading │ │ │ │ ├── index.ts │ │ │ │ ├── zen-loading.component.html │ │ │ │ ├── zen-loading.component.scss │ │ │ │ ├── zen-loading.component.stories.ts │ │ │ │ └── zen-loading.component.ts │ │ │ └── zen-snackbar-error │ │ │ │ ├── index.ts │ │ │ │ ├── zen-snackbar-error.module.ts │ │ │ │ └── zen-snackbar-error.service.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── graphql │ ├── eslint.config.mjs │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── apollo-angular.ts │ │ │ ├── client │ │ │ │ ├── cache.ts │ │ │ │ ├── index.ts │ │ │ │ ├── possible-types.ts │ │ │ │ ├── schema.gql.ts │ │ │ │ └── type-policies.ts │ │ │ ├── fields │ │ │ │ ├── AccountInfo.gql.ts │ │ │ │ ├── AuthSession.gql.ts │ │ │ │ ├── GoogleProfile.gql.ts │ │ │ │ ├── User.gql.ts │ │ │ │ └── index.ts │ │ │ ├── prisma │ │ │ │ └── User.gql.ts │ │ │ ├── utilities │ │ │ │ ├── index.ts │ │ │ │ ├── select.spec.ts │ │ │ │ └── select.ts │ │ │ └── zen-graphql.module.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── main │ ├── eslint.config.mjs │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── zen-main.routes.ts │ │ │ └── zen-portal │ │ │ │ ├── zen-dashboard │ │ │ │ ├── zen-dashboard.component.html │ │ │ │ └── zen-dashboard.component.ts │ │ │ │ ├── zen-portal-main │ │ │ │ ├── zen-portal-main.component.html │ │ │ │ └── zen-portal-main.component.ts │ │ │ │ ├── zen-portal.routes.ts │ │ │ │ ├── zen-settings │ │ │ │ ├── zen-settings.component.html │ │ │ │ └── zen-settings.component.ts │ │ │ │ └── zen-super │ │ │ │ ├── zen-sample-subscription │ │ │ │ ├── zen-sample-subscription.component.html │ │ │ │ └── zen-sample-subscription.component.ts │ │ │ │ ├── zen-sample-upload │ │ │ │ ├── zen-sample-upload.component.html │ │ │ │ ├── zen-sample-upload.component.scss │ │ │ │ └── zen-sample-upload.component.ts │ │ │ │ ├── zen-super-page │ │ │ │ ├── zen-super-page.component.html │ │ │ │ └── zen-super-page.component.ts │ │ │ │ └── zen-super.routes.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json └── nest-auth │ ├── README.md │ ├── eslint.config.mjs │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── index.ts │ └── lib │ │ ├── casl-factory.ts │ │ ├── decorators │ │ ├── allow-anonymous.decorator.ts │ │ ├── casl-ability.decorator.ts │ │ ├── casl-accessible.decorator.ts │ │ ├── casl-policy.decorator.ts │ │ └── current-user.decorator.ts │ │ ├── guards │ │ ├── casl.guard.ts │ │ ├── roles.guard.spec.ts │ │ └── roles.guard.ts │ │ ├── models │ │ ├── jwt-payload.ts │ │ └── request-user.ts │ │ └── nest-auth.module.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── migrations.json ├── nx.json ├── package.json ├── themes ├── _default-font.scss ├── bootstrap │ ├── _bootstrap.scss │ ├── _dark-variables.scss │ ├── _fixes.scss │ └── _light-variables.scss ├── dark-theme.scss ├── light-theme.scss └── material │ ├── dark │ ├── _theme-colors.scss │ └── _theme.scss │ └── light │ ├── _theme-colors.scss │ └── _theme.scss ├── tools ├── apollo-angular.yml ├── apollo-possible-types.yml ├── generate.ts ├── misc.ts ├── templates │ ├── casl-prisma-subjects.ts │ ├── client-fields.ts │ ├── client-queries.ts │ ├── default-fields.ts │ ├── graphql-api-index.ts │ ├── graphql-prisma-index.ts │ ├── graphql-resolvers-abac.ts │ ├── graphql-resolvers-rbac.ts │ ├── graphql-schema-extensions.ts │ ├── index.ts │ └── paljs-type-defs.ts ├── tsconfig.json └── zen-generator.ts └── tsconfig.base.json /.cz-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/.cz-config.js -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/README.md -------------------------------------------------------------------------------- /apollo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apollo.config.js -------------------------------------------------------------------------------- /apps/api-e2e/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api-e2e/eslint.config.mjs -------------------------------------------------------------------------------- /apps/api-e2e/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api-e2e/jest.config.ts -------------------------------------------------------------------------------- /apps/api-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api-e2e/project.json -------------------------------------------------------------------------------- /apps/api-e2e/src/api/api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api-e2e/src/api/api.spec.ts -------------------------------------------------------------------------------- /apps/api-e2e/src/support/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api-e2e/src/support/global-setup.ts -------------------------------------------------------------------------------- /apps/api-e2e/src/support/global-teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api-e2e/src/support/global-teardown.ts -------------------------------------------------------------------------------- /apps/api-e2e/src/support/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api-e2e/src/support/test-setup.ts -------------------------------------------------------------------------------- /apps/api-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/api-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/api/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/eslint.config.mjs -------------------------------------------------------------------------------- /apps/api/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/jest.config.ts -------------------------------------------------------------------------------- /apps/api/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/prisma/schema.prisma -------------------------------------------------------------------------------- /apps/api/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/project.json -------------------------------------------------------------------------------- /apps/api/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/api/src/app/auth/auth.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/auth/auth.controller.spec.ts -------------------------------------------------------------------------------- /apps/api/src/app/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/auth/auth.controller.ts -------------------------------------------------------------------------------- /apps/api/src/app/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/auth/auth.module.ts -------------------------------------------------------------------------------- /apps/api/src/app/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/auth/auth.service.ts -------------------------------------------------------------------------------- /apps/api/src/app/auth/casl/auth-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/auth/casl/auth-fields.ts -------------------------------------------------------------------------------- /apps/api/src/app/auth/casl/casl-prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/auth/casl/casl-prisma.ts -------------------------------------------------------------------------------- /apps/api/src/app/auth/casl/casl.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/auth/casl/casl.factory.ts -------------------------------------------------------------------------------- /apps/api/src/app/auth/casl/generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/auth/casl/generated.ts -------------------------------------------------------------------------------- /apps/api/src/app/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/auth/index.ts -------------------------------------------------------------------------------- /apps/api/src/app/auth/strategies/email-taken-exception.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/auth/strategies/email-taken-exception.filter.ts -------------------------------------------------------------------------------- /apps/api/src/app/auth/strategies/google-oauth.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/auth/strategies/google-oauth.strategy.ts -------------------------------------------------------------------------------- /apps/api/src/app/auth/strategies/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/auth/strategies/jwt.strategy.ts -------------------------------------------------------------------------------- /apps/api/src/app/config/config.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/config/config.module.ts -------------------------------------------------------------------------------- /apps/api/src/app/config/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/config/config.service.ts -------------------------------------------------------------------------------- /apps/api/src/app/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/config/index.ts -------------------------------------------------------------------------------- /apps/api/src/app/controllers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './tools.controller'; 2 | -------------------------------------------------------------------------------- /apps/api/src/app/controllers/tools.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/controllers/tools.controller.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/context.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/global-schema.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/global-schema.gql.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/gql-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/gql-config.service.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/gql-throttler.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/gql-throttler.guard.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/index.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/models/account-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/models/account-info.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/models/auth-exchange-token-input.ts: -------------------------------------------------------------------------------- 1 | export class AuthExchangeTokenInput { 2 | readonly rememberMe: boolean; 3 | } 4 | -------------------------------------------------------------------------------- /apps/api/src/app/graphql/models/auth-login-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/models/auth-login-input.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/models/auth-password-change-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/models/auth-password-change-input.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/models/auth-password-reset-confirmation-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/models/auth-password-reset-confirmation-input.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/models/auth-password-reset-request-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/models/auth-password-reset-request-input.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/models/auth-register-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/models/auth-register-input.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/models/auth-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/models/auth-session.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/models/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/models/context.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/models/index.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/models/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/models/upload.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/paljs/InputTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/paljs/InputTypes.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/paljs/SchemaExtensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/paljs/SchemaExtensions.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/paljs/User/typeDefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/paljs/User/typeDefs.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/paljs/typeDefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/paljs/typeDefs.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/resolvers/Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/resolvers/Auth.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/resolvers/Sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/resolvers/Sample.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/resolvers/index.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/resolvers/prisma/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/resolvers/prisma/User.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/resolvers/prisma/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/resolvers/prisma/index.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/resolversTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/resolversTypes.ts -------------------------------------------------------------------------------- /apps/api/src/app/graphql/zen-graphql.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/graphql/zen-graphql.module.ts -------------------------------------------------------------------------------- /apps/api/src/app/jwt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/jwt/index.ts -------------------------------------------------------------------------------- /apps/api/src/app/jwt/jwt.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/jwt/jwt.module.ts -------------------------------------------------------------------------------- /apps/api/src/app/mail/contexts/general.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/mail/contexts/general.context.ts -------------------------------------------------------------------------------- /apps/api/src/app/mail/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/mail/contexts/index.ts -------------------------------------------------------------------------------- /apps/api/src/app/mail/contexts/password-reset.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/mail/contexts/password-reset.context.ts -------------------------------------------------------------------------------- /apps/api/src/app/mail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/mail/index.ts -------------------------------------------------------------------------------- /apps/api/src/app/mail/mail.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/mail/mail.module.ts -------------------------------------------------------------------------------- /apps/api/src/app/mail/mail.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/mail/mail.service.ts -------------------------------------------------------------------------------- /apps/api/src/app/prisma/default-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/prisma/default-fields.ts -------------------------------------------------------------------------------- /apps/api/src/app/prisma/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/prisma/index.ts -------------------------------------------------------------------------------- /apps/api/src/app/prisma/prisma-select.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/prisma/prisma-select.service.ts -------------------------------------------------------------------------------- /apps/api/src/app/prisma/prisma.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/prisma/prisma.module.ts -------------------------------------------------------------------------------- /apps/api/src/app/prisma/prisma.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/app/prisma/prisma.service.ts -------------------------------------------------------------------------------- /apps/api/src/assets/mail/general.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/assets/mail/general.hbs -------------------------------------------------------------------------------- /apps/api/src/assets/mail/password-reset.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/assets/mail/password-reset.hbs -------------------------------------------------------------------------------- /apps/api/src/environments/environment.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/environments/environment.base.ts -------------------------------------------------------------------------------- /apps/api/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /apps/api/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/api/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/src/main.ts -------------------------------------------------------------------------------- /apps/api/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/tsconfig.app.json -------------------------------------------------------------------------------- /apps/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/tsconfig.json -------------------------------------------------------------------------------- /apps/api/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/api/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/api/webpack.config.js -------------------------------------------------------------------------------- /apps/portal-e2e/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal-e2e/eslint.config.mjs -------------------------------------------------------------------------------- /apps/portal-e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal-e2e/playwright.config.ts -------------------------------------------------------------------------------- /apps/portal-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal-e2e/project.json -------------------------------------------------------------------------------- /apps/portal-e2e/src/example.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal-e2e/src/example.spec.ts -------------------------------------------------------------------------------- /apps/portal-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/portal/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/eslint.config.mjs -------------------------------------------------------------------------------- /apps/portal/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/jest.config.ts -------------------------------------------------------------------------------- /apps/portal/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/project.json -------------------------------------------------------------------------------- /apps/portal/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/public/favicon.ico -------------------------------------------------------------------------------- /apps/portal/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/src/app/app.component.html -------------------------------------------------------------------------------- /apps/portal/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/portal/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/portal/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/portal/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/portal/src/assets/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/src/assets/404.html -------------------------------------------------------------------------------- /apps/portal/src/assets/font/euro-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/src/assets/font/euro-ext.woff2 -------------------------------------------------------------------------------- /apps/portal/src/assets/font/euro-ukr.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/src/assets/font/euro-ukr.woff2 -------------------------------------------------------------------------------- /apps/portal/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /apps/portal/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/portal/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/src/index.html -------------------------------------------------------------------------------- /apps/portal/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/src/main.ts -------------------------------------------------------------------------------- /apps/portal/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/src/styles.scss -------------------------------------------------------------------------------- /apps/portal/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/src/test-setup.ts -------------------------------------------------------------------------------- /apps/portal/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/tsconfig.app.json -------------------------------------------------------------------------------- /apps/portal/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/portal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/tsconfig.json -------------------------------------------------------------------------------- /apps/portal/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/apps/portal/tsconfig.spec.json -------------------------------------------------------------------------------- /deploy/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/deploy/NOTES.md -------------------------------------------------------------------------------- /deploy/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/deploy/api/Dockerfile -------------------------------------------------------------------------------- /deploy/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/deploy/dev/README.md -------------------------------------------------------------------------------- /deploy/dev/k8s-postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/deploy/dev/k8s-postgres.yaml -------------------------------------------------------------------------------- /deploy/dev/k8s-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/deploy/dev/k8s-secrets.yaml -------------------------------------------------------------------------------- /deploy/dev/k8s-setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/deploy/dev/k8s-setup.yaml -------------------------------------------------------------------------------- /deploy/k8s-postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/deploy/k8s-postgres.yaml -------------------------------------------------------------------------------- /deploy/k8s-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/deploy/k8s-secrets.yaml -------------------------------------------------------------------------------- /deploy/k8s-setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/deploy/k8s-setup.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/auth/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/.storybook/main.ts -------------------------------------------------------------------------------- /libs/auth/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/.storybook/preview.ts -------------------------------------------------------------------------------- /libs/auth/.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/.storybook/tsconfig.json -------------------------------------------------------------------------------- /libs/auth/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/eslint.config.mjs -------------------------------------------------------------------------------- /libs/auth/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/jest.config.ts -------------------------------------------------------------------------------- /libs/auth/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/project.json -------------------------------------------------------------------------------- /libs/auth/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/index.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/auth-interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/auth-interceptor.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/auth.service.spec.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/auth.service.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/directives/if-logged-in.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/directives/if-logged-in.directive.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/directives/if-public-registration.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/directives/if-public-registration.directive.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/directives/index.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/directives/not-roles.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/directives/not-roles.directive.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/directives/roles.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/directives/roles.directive.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/graphql/auth-exchange-token-query.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/graphql/auth-exchange-token-query.gql.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/graphql/auth-login-query.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/graphql/auth-login-query.gql.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/graphql/get-account-info.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/graphql/get-account-info.gql.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/guards/casl.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/guards/casl.guard.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/guards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/guards/index.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/guards/logged-in.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/guards/logged-in.guard.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/guards/login-page.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/guards/login-page.guard.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/guards/public-registration.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/guards/public-registration.guard.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/guards/roles.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/guards/roles.guard.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/inputs/index.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-email-input/index.ts: -------------------------------------------------------------------------------- 1 | export * from './zen-email-input.component'; 2 | -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-email-input/zen-email-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/inputs/zen-email-input/zen-email-input.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-email-input/zen-email-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/inputs/zen-email-input/zen-email-input.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-email-input/zen-email-input.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/inputs/zen-email-input/zen-email-input.stories.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-password-input/index.ts: -------------------------------------------------------------------------------- 1 | export * from './zen-password-input.component'; 2 | -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-password-input/zen-password-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/inputs/zen-password-input/zen-password-input.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-password-input/zen-password-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/inputs/zen-password-input/zen-password-input.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-password-input/zen-password-input.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/inputs/zen-password-input/zen-password-input.stories.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-roles-input/index.ts: -------------------------------------------------------------------------------- 1 | export * from './zen-roles-input.component'; 2 | -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-roles-input/zen-roles-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/inputs/zen-roles-input/zen-roles-input.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-roles-input/zen-roles-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/inputs/zen-roles-input/zen-roles-input.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-roles-input/zen-roles-input.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/inputs/zen-roles-input/zen-roles-input.stories.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-username-input/index.ts: -------------------------------------------------------------------------------- 1 | export * from './zen-username-input.component'; 2 | -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-username-input/zen-username-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/inputs/zen-username-input/zen-username-input.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-username-input/zen-username-input.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/inputs/zen-username-input/zen-username-input.component.stories.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/inputs/zen-username-input/zen-username-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/inputs/zen-username-input/zen-username-input.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/token.signal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/token.signal.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/validators/email.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/validators/email.validator.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/validators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/validators/index.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/validators/password.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/validators/password.validator.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/validators/username.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/validators/username.validator.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-account-info/zen-account-info.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-account-info/zen-account-info.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-account-info/zen-account-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-account-info/zen-account-info.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-auth.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-auth.routes.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-login-confirmed/zen-login-confirmed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-login-confirmed/zen-login-confirmed.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-login-form/zen-login-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-login-form/zen-login-form.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-login-form/zen-login-form.component.stories.ts.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-login-form/zen-login-form.component.stories.ts.backup -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-login-form/zen-login-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-login-form/zen-login-form.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-login-link/zen-login-link.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-login-link/zen-login-link.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-login-link/zen-login-link.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-login-link/zen-login-link.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-login-page/zen-login-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-login-page/zen-login-page.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-login-page/zen-login-page.component.stories.ts.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-login-page/zen-login-page.component.stories.ts.backup -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-login-page/zen-login-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-login-page/zen-login-page.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-login/zen-login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-login/zen-login.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-login/zen-login.component.stories.ts.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-login/zen-login.component.stories.ts.backup -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-login/zen-login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-login/zen-login.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-change-form/auth-password-change.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-change-form/auth-password-change.gql.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-change-form/zen-password-change-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-change-form/zen-password-change-form.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-change-form/zen-password-change-form.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-change-form/zen-password-change-form.component.stories.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-change-form/zen-password-change-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-change-form/zen-password-change-form.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-change/zen-password-change.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-change/zen-password-change.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-change/zen-password-change.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-change/zen-password-change.component.stories.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-change/zen-password-change.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-change/zen-password-change.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-confirmation-form/auth-password-reset-confirmation.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-confirmation-form/auth-password-reset-confirmation.gql.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-confirmation-form/zen-password-reset-confirmation-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-confirmation-form/zen-password-reset-confirmation-form.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-confirmation-form/zen-password-reset-confirmation-form.component.stories.ts.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-confirmation-form/zen-password-reset-confirmation-form.component.stories.ts.backup -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-confirmation-form/zen-password-reset-confirmation-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-confirmation-form/zen-password-reset-confirmation-form.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-confirmation-page/zen-password-reset-confirmation-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-confirmation-page/zen-password-reset-confirmation-page.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-confirmation-page/zen-password-reset-confirmation-page.component.stories.ts.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-confirmation-page/zen-password-reset-confirmation-page.component.stories.ts.backup -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-confirmation-page/zen-password-reset-confirmation-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-confirmation-page/zen-password-reset-confirmation-page.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-confirmation/zen-password-reset-confirmation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-confirmation/zen-password-reset-confirmation.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-confirmation/zen-password-reset-confirmation.component.stories.ts.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-confirmation/zen-password-reset-confirmation.component.stories.ts.backup -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-confirmation/zen-password-reset-confirmation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-confirmation/zen-password-reset-confirmation.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-request-form/auth-password-reset-request-query.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-request-form/auth-password-reset-request-query.gql.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-request-form/zen-password-reset-request-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-request-form/zen-password-reset-request-form.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-request-form/zen-password-reset-request-form.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-request-form/zen-password-reset-request-form.component.stories.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-request-form/zen-password-reset-request-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-request-form/zen-password-reset-request-form.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-request-page/zen-password-reset-request-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-request-page/zen-password-reset-request-page.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-request-page/zen-password-reset-request-page.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-request-page/zen-password-reset-request-page.component.stories.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-request-page/zen-password-reset-request-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-request-page/zen-password-reset-request-page.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-request/zen-password-reset-request.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-request/zen-password-reset-request.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-request/zen-password-reset-request.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-request/zen-password-reset-request.component.stories.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-password-reset-request/zen-password-reset-request.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-password-reset-request/zen-password-reset-request.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-register-form/auth-register.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-register-form/auth-register.gql.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-register-form/zen-register-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-register-form/zen-register-form.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-register-form/zen-register-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-register-form/zen-register-form.component.spec.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-register-form/zen-register-form.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-register-form/zen-register-form.component.stories.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-register-form/zen-register-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-register-form/zen-register-form.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-register-page/zen-register-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-register-page/zen-register-page.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-register-page/zen-register-page.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-register-page/zen-register-page.component.stories.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-register-page/zen-register-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-register-page/zen-register-page.component.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-register/zen-register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-register/zen-register.component.html -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-register/zen-register.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-register/zen-register.component.stories.ts -------------------------------------------------------------------------------- /libs/auth/src/lib/zen-register/zen-register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/lib/zen-register/zen-register.component.ts -------------------------------------------------------------------------------- /libs/auth/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/src/test-setup.ts -------------------------------------------------------------------------------- /libs/auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/tsconfig.json -------------------------------------------------------------------------------- /libs/auth/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/auth/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/auth/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/common/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/eslint.config.mjs -------------------------------------------------------------------------------- /libs/common/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/jest.config.ts -------------------------------------------------------------------------------- /libs/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/package.json -------------------------------------------------------------------------------- /libs/common/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/project.json -------------------------------------------------------------------------------- /libs/common/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/src/index.ts -------------------------------------------------------------------------------- /libs/common/src/lib/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/src/lib/action.ts -------------------------------------------------------------------------------- /libs/common/src/lib/api-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/src/lib/api-constants.ts -------------------------------------------------------------------------------- /libs/common/src/lib/api-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/src/lib/api-errors.ts -------------------------------------------------------------------------------- /libs/common/src/lib/assert-type.ts: -------------------------------------------------------------------------------- 1 | export function assertType(obj: unknown = {}): T { 2 | return obj as T; 3 | } 4 | -------------------------------------------------------------------------------- /libs/common/src/lib/enum-helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/src/lib/enum-helper.spec.ts -------------------------------------------------------------------------------- /libs/common/src/lib/enum-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/src/lib/enum-helper.ts -------------------------------------------------------------------------------- /libs/common/src/lib/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/src/lib/environment.ts -------------------------------------------------------------------------------- /libs/common/src/lib/non-nullable-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/src/lib/non-nullable-fields.ts -------------------------------------------------------------------------------- /libs/common/src/lib/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/src/lib/role.ts -------------------------------------------------------------------------------- /libs/common/src/lib/trim-object-strings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/src/lib/trim-object-strings.spec.ts -------------------------------------------------------------------------------- /libs/common/src/lib/trim-object-strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/src/lib/trim-object-strings.ts -------------------------------------------------------------------------------- /libs/common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/tsconfig.json -------------------------------------------------------------------------------- /libs/common/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/common/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/common/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/components/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/.storybook/main.ts -------------------------------------------------------------------------------- /libs/components/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/.storybook/preview.ts -------------------------------------------------------------------------------- /libs/components/.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/.storybook/tsconfig.json -------------------------------------------------------------------------------- /libs/components/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/eslint.config.mjs -------------------------------------------------------------------------------- /libs/components/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/jest.config.ts -------------------------------------------------------------------------------- /libs/components/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/project.json -------------------------------------------------------------------------------- /libs/components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/index.ts -------------------------------------------------------------------------------- /libs/components/src/lib/animations/accordion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/animations/accordion.ts -------------------------------------------------------------------------------- /libs/components/src/lib/animations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/animations/index.ts -------------------------------------------------------------------------------- /libs/components/src/lib/zen-confirm-modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-confirm-modal/index.ts -------------------------------------------------------------------------------- /libs/components/src/lib/zen-confirm-modal/zen-confirm-modal.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-confirm-modal/zen-confirm-modal.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/zen-confirm-modal/zen-confirm-modal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-confirm-modal/zen-confirm-modal.service.ts -------------------------------------------------------------------------------- /libs/components/src/lib/zen-confirm-modal/zen-confirm-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-confirm-modal/zen-confirm-options.ts -------------------------------------------------------------------------------- /libs/components/src/lib/zen-confirm-modal/zen-confirm/zen-confirm.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-confirm-modal/zen-confirm/zen-confirm.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/zen-confirm-modal/zen-confirm/zen-confirm.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-confirm-modal/zen-confirm/zen-confirm.component.stories.ts -------------------------------------------------------------------------------- /libs/components/src/lib/zen-confirm-modal/zen-confirm/zen-confirm.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-confirm-modal/zen-confirm/zen-confirm.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/zen-layout/index.ts: -------------------------------------------------------------------------------- 1 | export * from './zen-layout.component'; 2 | -------------------------------------------------------------------------------- /libs/components/src/lib/zen-layout/zen-layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-layout/zen-layout.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/zen-layout/zen-layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-layout/zen-layout.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/zen-loading/index.ts: -------------------------------------------------------------------------------- 1 | export * from './zen-loading.component'; 2 | -------------------------------------------------------------------------------- /libs/components/src/lib/zen-loading/zen-loading.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-loading/zen-loading.component.html -------------------------------------------------------------------------------- /libs/components/src/lib/zen-loading/zen-loading.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-loading/zen-loading.component.scss -------------------------------------------------------------------------------- /libs/components/src/lib/zen-loading/zen-loading.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-loading/zen-loading.component.stories.ts -------------------------------------------------------------------------------- /libs/components/src/lib/zen-loading/zen-loading.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-loading/zen-loading.component.ts -------------------------------------------------------------------------------- /libs/components/src/lib/zen-snackbar-error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-snackbar-error/index.ts -------------------------------------------------------------------------------- /libs/components/src/lib/zen-snackbar-error/zen-snackbar-error.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-snackbar-error/zen-snackbar-error.module.ts -------------------------------------------------------------------------------- /libs/components/src/lib/zen-snackbar-error/zen-snackbar-error.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/lib/zen-snackbar-error/zen-snackbar-error.service.ts -------------------------------------------------------------------------------- /libs/components/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/src/test-setup.ts -------------------------------------------------------------------------------- /libs/components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/tsconfig.json -------------------------------------------------------------------------------- /libs/components/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/components/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/components/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/graphql/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/eslint.config.mjs -------------------------------------------------------------------------------- /libs/graphql/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/jest.config.ts -------------------------------------------------------------------------------- /libs/graphql/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/project.json -------------------------------------------------------------------------------- /libs/graphql/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/index.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/apollo-angular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/apollo-angular.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/client/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/client/cache.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/client/index.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/client/possible-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/client/possible-types.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/client/schema.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/client/schema.gql.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/client/type-policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/client/type-policies.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/fields/AccountInfo.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/fields/AccountInfo.gql.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/fields/AuthSession.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/fields/AuthSession.gql.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/fields/GoogleProfile.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/fields/GoogleProfile.gql.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/fields/User.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/fields/User.gql.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/fields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/fields/index.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/prisma/User.gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/prisma/User.gql.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/utilities/index.ts: -------------------------------------------------------------------------------- 1 | export * from './select'; 2 | -------------------------------------------------------------------------------- /libs/graphql/src/lib/utilities/select.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/utilities/select.spec.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/utilities/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/utilities/select.ts -------------------------------------------------------------------------------- /libs/graphql/src/lib/zen-graphql.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/lib/zen-graphql.module.ts -------------------------------------------------------------------------------- /libs/graphql/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/src/test-setup.ts -------------------------------------------------------------------------------- /libs/graphql/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/tsconfig.json -------------------------------------------------------------------------------- /libs/graphql/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/graphql/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/graphql/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/main/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/eslint.config.mjs -------------------------------------------------------------------------------- /libs/main/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/jest.config.ts -------------------------------------------------------------------------------- /libs/main/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/project.json -------------------------------------------------------------------------------- /libs/main/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/zen-main.routes'; 2 | -------------------------------------------------------------------------------- /libs/main/src/lib/zen-main.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-main.routes.ts -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-dashboard/zen-dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-dashboard/zen-dashboard.component.html -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-dashboard/zen-dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-dashboard/zen-dashboard.component.ts -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-portal-main/zen-portal-main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-portal-main/zen-portal-main.component.html -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-portal-main/zen-portal-main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-portal-main/zen-portal-main.component.ts -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-portal.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-portal.routes.ts -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-settings/zen-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-settings/zen-settings.component.html -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-settings/zen-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-settings/zen-settings.component.ts -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-super/zen-sample-subscription/zen-sample-subscription.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-super/zen-sample-subscription/zen-sample-subscription.component.html -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-super/zen-sample-subscription/zen-sample-subscription.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-super/zen-sample-subscription/zen-sample-subscription.component.ts -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-super/zen-sample-upload/zen-sample-upload.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-super/zen-sample-upload/zen-sample-upload.component.html -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-super/zen-sample-upload/zen-sample-upload.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-super/zen-sample-upload/zen-sample-upload.component.scss -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-super/zen-sample-upload/zen-sample-upload.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-super/zen-sample-upload/zen-sample-upload.component.ts -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-super/zen-super-page/zen-super-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-super/zen-super-page/zen-super-page.component.html -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-super/zen-super-page/zen-super-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-super/zen-super-page/zen-super-page.component.ts -------------------------------------------------------------------------------- /libs/main/src/lib/zen-portal/zen-super/zen-super.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/lib/zen-portal/zen-super/zen-super.routes.ts -------------------------------------------------------------------------------- /libs/main/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/src/test-setup.ts -------------------------------------------------------------------------------- /libs/main/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/tsconfig.json -------------------------------------------------------------------------------- /libs/main/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/main/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/main/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/nest-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/README.md -------------------------------------------------------------------------------- /libs/nest-auth/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/eslint.config.mjs -------------------------------------------------------------------------------- /libs/nest-auth/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/jest.config.ts -------------------------------------------------------------------------------- /libs/nest-auth/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/project.json -------------------------------------------------------------------------------- /libs/nest-auth/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/src/index.ts -------------------------------------------------------------------------------- /libs/nest-auth/src/lib/casl-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/src/lib/casl-factory.ts -------------------------------------------------------------------------------- /libs/nest-auth/src/lib/decorators/allow-anonymous.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/src/lib/decorators/allow-anonymous.decorator.ts -------------------------------------------------------------------------------- /libs/nest-auth/src/lib/decorators/casl-ability.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/src/lib/decorators/casl-ability.decorator.ts -------------------------------------------------------------------------------- /libs/nest-auth/src/lib/decorators/casl-accessible.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/src/lib/decorators/casl-accessible.decorator.ts -------------------------------------------------------------------------------- /libs/nest-auth/src/lib/decorators/casl-policy.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/src/lib/decorators/casl-policy.decorator.ts -------------------------------------------------------------------------------- /libs/nest-auth/src/lib/decorators/current-user.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/src/lib/decorators/current-user.decorator.ts -------------------------------------------------------------------------------- /libs/nest-auth/src/lib/guards/casl.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/src/lib/guards/casl.guard.ts -------------------------------------------------------------------------------- /libs/nest-auth/src/lib/guards/roles.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/src/lib/guards/roles.guard.spec.ts -------------------------------------------------------------------------------- /libs/nest-auth/src/lib/guards/roles.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/src/lib/guards/roles.guard.ts -------------------------------------------------------------------------------- /libs/nest-auth/src/lib/models/jwt-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/src/lib/models/jwt-payload.ts -------------------------------------------------------------------------------- /libs/nest-auth/src/lib/models/request-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/src/lib/models/request-user.ts -------------------------------------------------------------------------------- /libs/nest-auth/src/lib/nest-auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/src/lib/nest-auth.module.ts -------------------------------------------------------------------------------- /libs/nest-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/tsconfig.json -------------------------------------------------------------------------------- /libs/nest-auth/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/nest-auth/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/libs/nest-auth/tsconfig.spec.json -------------------------------------------------------------------------------- /migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/migrations.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/package.json -------------------------------------------------------------------------------- /themes/_default-font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/themes/_default-font.scss -------------------------------------------------------------------------------- /themes/bootstrap/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/themes/bootstrap/_bootstrap.scss -------------------------------------------------------------------------------- /themes/bootstrap/_dark-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/themes/bootstrap/_dark-variables.scss -------------------------------------------------------------------------------- /themes/bootstrap/_fixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/themes/bootstrap/_fixes.scss -------------------------------------------------------------------------------- /themes/bootstrap/_light-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/themes/bootstrap/_light-variables.scss -------------------------------------------------------------------------------- /themes/dark-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/themes/dark-theme.scss -------------------------------------------------------------------------------- /themes/light-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/themes/light-theme.scss -------------------------------------------------------------------------------- /themes/material/dark/_theme-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/themes/material/dark/_theme-colors.scss -------------------------------------------------------------------------------- /themes/material/dark/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/themes/material/dark/_theme.scss -------------------------------------------------------------------------------- /themes/material/light/_theme-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/themes/material/light/_theme-colors.scss -------------------------------------------------------------------------------- /themes/material/light/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/themes/material/light/_theme.scss -------------------------------------------------------------------------------- /tools/apollo-angular.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/apollo-angular.yml -------------------------------------------------------------------------------- /tools/apollo-possible-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/apollo-possible-types.yml -------------------------------------------------------------------------------- /tools/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/generate.ts -------------------------------------------------------------------------------- /tools/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/misc.ts -------------------------------------------------------------------------------- /tools/templates/casl-prisma-subjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/templates/casl-prisma-subjects.ts -------------------------------------------------------------------------------- /tools/templates/client-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/templates/client-fields.ts -------------------------------------------------------------------------------- /tools/templates/client-queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/templates/client-queries.ts -------------------------------------------------------------------------------- /tools/templates/default-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/templates/default-fields.ts -------------------------------------------------------------------------------- /tools/templates/graphql-api-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/templates/graphql-api-index.ts -------------------------------------------------------------------------------- /tools/templates/graphql-prisma-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/templates/graphql-prisma-index.ts -------------------------------------------------------------------------------- /tools/templates/graphql-resolvers-abac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/templates/graphql-resolvers-abac.ts -------------------------------------------------------------------------------- /tools/templates/graphql-resolvers-rbac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/templates/graphql-resolvers-rbac.ts -------------------------------------------------------------------------------- /tools/templates/graphql-schema-extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/templates/graphql-schema-extensions.ts -------------------------------------------------------------------------------- /tools/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/templates/index.ts -------------------------------------------------------------------------------- /tools/templates/paljs-type-defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/templates/paljs-type-defs.ts -------------------------------------------------------------------------------- /tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/tsconfig.json -------------------------------------------------------------------------------- /tools/zen-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tools/zen-generator.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenSoftware/zen/HEAD/tsconfig.base.json --------------------------------------------------------------------------------