├── .auto-changelog ├── .eslintrc.js ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc.json ├── .npmrc ├── README.md ├── cspell.json ├── eslint.config.js ├── frontend ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .node-version ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .stylelintrc.js ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src │ ├── app.tsx │ ├── containers │ │ └── DocumentContainer │ │ │ ├── DocumentContainer.tsx │ │ │ ├── Header.tsx │ │ │ ├── Loading.tsx │ │ │ ├── MethodParameters.tsx │ │ │ ├── MethodResponse.tsx │ │ │ ├── PackageInstall.tsx │ │ │ ├── Sidebar.tsx │ │ │ └── index.ts │ ├── modals │ │ └── TryboxModal │ │ │ ├── TryboxModal.tsx │ │ │ └── index.ts │ ├── styles │ │ └── app.css │ └── types │ │ └── env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── lib ├── clients │ └── custom-grpc.client.ts ├── commands │ └── generate-sdk.command.ts ├── decorators │ ├── any-type.decorator.ts │ ├── extend-type.decorator.ts │ ├── grpc-value.decorator.ts │ ├── microservice.decorator.ts │ ├── mock.decorator.ts │ └── property.decorator.ts ├── documents │ ├── grpc-test.dto.ts │ ├── microservice-document.controller.ts │ └── microservice-document.module.ts ├── helpers │ ├── api-property.helper.ts │ ├── generate.helper.ts │ ├── mock.helper.ts │ ├── property.helper.ts │ ├── proto-type.helper.ts │ ├── shell.helper.ts │ └── type.helper.ts ├── index.ts ├── interceptors │ └── grpc-translation.interceptor.ts ├── responses │ └── native.response.ts ├── sdk-stub │ ├── helpers │ │ └── grpc.helper.ts │ └── types │ │ └── microservice-option.type.ts ├── services │ ├── generate-document.service.ts │ ├── generate-microservice.service.ts │ ├── generate-proto.service.ts │ ├── hbs-generator.service.ts │ ├── method-template.service.ts │ ├── mock-method-template.service.ts │ ├── mock-module-template.service.ts │ ├── module-template.service.ts │ └── service-template.service.ts ├── storages │ ├── microservice.storage.ts │ └── property.storage.ts ├── templates │ ├── body-method-template.hbs │ ├── grpc-service-template.hbs │ ├── index-template.hbs │ ├── method-template.hbs │ ├── mock-module-template.hbs │ ├── mock-providers-template.hbs │ ├── module-template.hbs │ ├── proto-native-list.hbs │ ├── proto-service-definition.hbs │ ├── service-interface.hbs │ ├── service-template.hbs │ └── usage-doc-template.hbs ├── type-helpers │ ├── intersection-type.helper.ts │ ├── omit-type.helper.ts │ ├── partial-type.helper.ts │ └── pick-type.helper.ts └── types │ ├── document-module-option.type.ts │ ├── document.type.ts │ ├── mock-option.type.ts │ ├── property-option.type.ts │ └── sdk-build-config.type.ts ├── nest-cli.json ├── package.json ├── prettier.config.js ├── renovate.json ├── sample ├── app.controller.ts ├── app.microservice.ts ├── app.module.ts ├── app.service.ts ├── cli.ts ├── dto │ └── param.dto.ts ├── enums │ └── user-type.enum.ts ├── main.ts └── responses │ ├── pagination.response.ts │ ├── user-name.response.ts │ ├── user-pagination.response.ts │ └── user.response.ts ├── scripts └── publish.sh ├── sdk-config.json ├── tsconfig.build.json └── tsconfig.json /.auto-changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/.auto-changelog -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/.npmrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/README.md -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/cspell.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@hodfords/nestjs-eslint-config'); 2 | -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/.gitattributes -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.node-version: -------------------------------------------------------------------------------- 1 | 22.10.0 2 | -------------------------------------------------------------------------------- /frontend/.nvmrc: -------------------------------------------------------------------------------- 1 | 22.10.0 2 | -------------------------------------------------------------------------------- /frontend/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/.prettierignore -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/.stylelintrc.js -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /frontend/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/src/app.tsx -------------------------------------------------------------------------------- /frontend/src/containers/DocumentContainer/DocumentContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/src/containers/DocumentContainer/DocumentContainer.tsx -------------------------------------------------------------------------------- /frontend/src/containers/DocumentContainer/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/src/containers/DocumentContainer/Header.tsx -------------------------------------------------------------------------------- /frontend/src/containers/DocumentContainer/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/src/containers/DocumentContainer/Loading.tsx -------------------------------------------------------------------------------- /frontend/src/containers/DocumentContainer/MethodParameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/src/containers/DocumentContainer/MethodParameters.tsx -------------------------------------------------------------------------------- /frontend/src/containers/DocumentContainer/MethodResponse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/src/containers/DocumentContainer/MethodResponse.tsx -------------------------------------------------------------------------------- /frontend/src/containers/DocumentContainer/PackageInstall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/src/containers/DocumentContainer/PackageInstall.tsx -------------------------------------------------------------------------------- /frontend/src/containers/DocumentContainer/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/src/containers/DocumentContainer/Sidebar.tsx -------------------------------------------------------------------------------- /frontend/src/containers/DocumentContainer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DocumentContainer'; 2 | -------------------------------------------------------------------------------- /frontend/src/modals/TryboxModal/TryboxModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/src/modals/TryboxModal/TryboxModal.tsx -------------------------------------------------------------------------------- /frontend/src/modals/TryboxModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TryboxModal'; 2 | -------------------------------------------------------------------------------- /frontend/src/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/src/styles/app.css -------------------------------------------------------------------------------- /frontend/src/types/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/src/types/env.d.ts -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /lib/clients/custom-grpc.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/clients/custom-grpc.client.ts -------------------------------------------------------------------------------- /lib/commands/generate-sdk.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/commands/generate-sdk.command.ts -------------------------------------------------------------------------------- /lib/decorators/any-type.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/decorators/any-type.decorator.ts -------------------------------------------------------------------------------- /lib/decorators/extend-type.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/decorators/extend-type.decorator.ts -------------------------------------------------------------------------------- /lib/decorators/grpc-value.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/decorators/grpc-value.decorator.ts -------------------------------------------------------------------------------- /lib/decorators/microservice.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/decorators/microservice.decorator.ts -------------------------------------------------------------------------------- /lib/decorators/mock.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/decorators/mock.decorator.ts -------------------------------------------------------------------------------- /lib/decorators/property.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/decorators/property.decorator.ts -------------------------------------------------------------------------------- /lib/documents/grpc-test.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/documents/grpc-test.dto.ts -------------------------------------------------------------------------------- /lib/documents/microservice-document.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/documents/microservice-document.controller.ts -------------------------------------------------------------------------------- /lib/documents/microservice-document.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/documents/microservice-document.module.ts -------------------------------------------------------------------------------- /lib/helpers/api-property.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/helpers/api-property.helper.ts -------------------------------------------------------------------------------- /lib/helpers/generate.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/helpers/generate.helper.ts -------------------------------------------------------------------------------- /lib/helpers/mock.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/helpers/mock.helper.ts -------------------------------------------------------------------------------- /lib/helpers/property.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/helpers/property.helper.ts -------------------------------------------------------------------------------- /lib/helpers/proto-type.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/helpers/proto-type.helper.ts -------------------------------------------------------------------------------- /lib/helpers/shell.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/helpers/shell.helper.ts -------------------------------------------------------------------------------- /lib/helpers/type.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/helpers/type.helper.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/interceptors/grpc-translation.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/interceptors/grpc-translation.interceptor.ts -------------------------------------------------------------------------------- /lib/responses/native.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/responses/native.response.ts -------------------------------------------------------------------------------- /lib/sdk-stub/helpers/grpc.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/sdk-stub/helpers/grpc.helper.ts -------------------------------------------------------------------------------- /lib/sdk-stub/types/microservice-option.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/sdk-stub/types/microservice-option.type.ts -------------------------------------------------------------------------------- /lib/services/generate-document.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/services/generate-document.service.ts -------------------------------------------------------------------------------- /lib/services/generate-microservice.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/services/generate-microservice.service.ts -------------------------------------------------------------------------------- /lib/services/generate-proto.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/services/generate-proto.service.ts -------------------------------------------------------------------------------- /lib/services/hbs-generator.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/services/hbs-generator.service.ts -------------------------------------------------------------------------------- /lib/services/method-template.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/services/method-template.service.ts -------------------------------------------------------------------------------- /lib/services/mock-method-template.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/services/mock-method-template.service.ts -------------------------------------------------------------------------------- /lib/services/mock-module-template.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/services/mock-module-template.service.ts -------------------------------------------------------------------------------- /lib/services/module-template.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/services/module-template.service.ts -------------------------------------------------------------------------------- /lib/services/service-template.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/services/service-template.service.ts -------------------------------------------------------------------------------- /lib/storages/microservice.storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/storages/microservice.storage.ts -------------------------------------------------------------------------------- /lib/storages/property.storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/storages/property.storage.ts -------------------------------------------------------------------------------- /lib/templates/body-method-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/templates/body-method-template.hbs -------------------------------------------------------------------------------- /lib/templates/grpc-service-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/templates/grpc-service-template.hbs -------------------------------------------------------------------------------- /lib/templates/index-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/templates/index-template.hbs -------------------------------------------------------------------------------- /lib/templates/method-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/templates/method-template.hbs -------------------------------------------------------------------------------- /lib/templates/mock-module-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/templates/mock-module-template.hbs -------------------------------------------------------------------------------- /lib/templates/mock-providers-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/templates/mock-providers-template.hbs -------------------------------------------------------------------------------- /lib/templates/module-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/templates/module-template.hbs -------------------------------------------------------------------------------- /lib/templates/proto-native-list.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/templates/proto-native-list.hbs -------------------------------------------------------------------------------- /lib/templates/proto-service-definition.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/templates/proto-service-definition.hbs -------------------------------------------------------------------------------- /lib/templates/service-interface.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/templates/service-interface.hbs -------------------------------------------------------------------------------- /lib/templates/service-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/templates/service-template.hbs -------------------------------------------------------------------------------- /lib/templates/usage-doc-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/templates/usage-doc-template.hbs -------------------------------------------------------------------------------- /lib/type-helpers/intersection-type.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/type-helpers/intersection-type.helper.ts -------------------------------------------------------------------------------- /lib/type-helpers/omit-type.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/type-helpers/omit-type.helper.ts -------------------------------------------------------------------------------- /lib/type-helpers/partial-type.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/type-helpers/partial-type.helper.ts -------------------------------------------------------------------------------- /lib/type-helpers/pick-type.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/type-helpers/pick-type.helper.ts -------------------------------------------------------------------------------- /lib/types/document-module-option.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/types/document-module-option.type.ts -------------------------------------------------------------------------------- /lib/types/document.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/types/document.type.ts -------------------------------------------------------------------------------- /lib/types/mock-option.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/types/mock-option.type.ts -------------------------------------------------------------------------------- /lib/types/property-option.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/types/property-option.type.ts -------------------------------------------------------------------------------- /lib/types/sdk-build-config.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/lib/types/sdk-build-config.type.ts -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@hodfords/nestjs-prettier-config'); 2 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/renovate.json -------------------------------------------------------------------------------- /sample/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/sample/app.controller.ts -------------------------------------------------------------------------------- /sample/app.microservice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/sample/app.microservice.ts -------------------------------------------------------------------------------- /sample/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/sample/app.module.ts -------------------------------------------------------------------------------- /sample/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/sample/app.service.ts -------------------------------------------------------------------------------- /sample/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/sample/cli.ts -------------------------------------------------------------------------------- /sample/dto/param.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/sample/dto/param.dto.ts -------------------------------------------------------------------------------- /sample/enums/user-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/sample/enums/user-type.enum.ts -------------------------------------------------------------------------------- /sample/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/sample/main.ts -------------------------------------------------------------------------------- /sample/responses/pagination.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/sample/responses/pagination.response.ts -------------------------------------------------------------------------------- /sample/responses/user-name.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/sample/responses/user-name.response.ts -------------------------------------------------------------------------------- /sample/responses/user-pagination.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/sample/responses/user-pagination.response.ts -------------------------------------------------------------------------------- /sample/responses/user.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/sample/responses/user.response.ts -------------------------------------------------------------------------------- /scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/scripts/publish.sh -------------------------------------------------------------------------------- /sdk-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/sdk-config.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-grpc-helper/HEAD/tsconfig.json --------------------------------------------------------------------------------