├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── docs ├── upgrading-to-v2.md └── v1.md ├── jest.config.js ├── jest.setup.ts ├── nest-cli.json ├── package.json ├── src ├── index.ts ├── soap-constants.ts ├── soap-integration.spec.ts ├── soap-module-options.type.ts ├── soap-providers.spec.ts ├── soap-providers.ts ├── soap.module.ts ├── soap.service.spec.ts └── soap.service.ts ├── tsconfig.build.json ├── tsconfig.json └── tslint.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/README.md -------------------------------------------------------------------------------- /docs/upgrading-to-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/docs/upgrading-to-v2.md -------------------------------------------------------------------------------- /docs/v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/docs/v1.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.ts: -------------------------------------------------------------------------------- 1 | jest.mock('soap'); -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/soap-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/src/soap-constants.ts -------------------------------------------------------------------------------- /src/soap-integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/src/soap-integration.spec.ts -------------------------------------------------------------------------------- /src/soap-module-options.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/src/soap-module-options.type.ts -------------------------------------------------------------------------------- /src/soap-providers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/src/soap-providers.spec.ts -------------------------------------------------------------------------------- /src/soap-providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/src/soap-providers.ts -------------------------------------------------------------------------------- /src/soap.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/src/soap.module.ts -------------------------------------------------------------------------------- /src/soap.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/src/soap.service.spec.ts -------------------------------------------------------------------------------- /src/soap.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/src/soap.service.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehh/nestjs-soap/HEAD/tslint.json --------------------------------------------------------------------------------