├── .github ├── renovate.json └── workflows │ ├── ProviderDesignFeedback.yml │ ├── build.yml │ ├── contract_requiring_verification_published.yml │ └── trigger_partner_docs_update.yml ├── .gitignore ├── .whitesource ├── LICENSE ├── Makefile ├── README.md ├── oas └── openapi.yaml ├── package.json ├── pactflow └── travis-ci-webhook.json ├── server.js └── src ├── middleware └── auth.middleware.js └── product ├── pact.setup.js ├── product.consumerChange.pact.test.js ├── product.controller.js ├── product.js ├── product.providerChange.pact.test.js ├── product.repository.js ├── product.repository.test.js └── product.routes.js /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ProviderDesignFeedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/.github/workflows/ProviderDesignFeedback.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/contract_requiring_verification_published.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/.github/workflows/contract_requiring_verification_published.yml -------------------------------------------------------------------------------- /.github/workflows/trigger_partner_docs_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/.github/workflows/trigger_partner_docs_update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/.gitignore -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- 1 | { 2 | "settingsInheritedFrom": "pactflow/whitesource-config@main" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/README.md -------------------------------------------------------------------------------- /oas/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/oas/openapi.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/package.json -------------------------------------------------------------------------------- /pactflow/travis-ci-webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/pactflow/travis-ci-webhook.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/server.js -------------------------------------------------------------------------------- /src/middleware/auth.middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/src/middleware/auth.middleware.js -------------------------------------------------------------------------------- /src/product/pact.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/src/product/pact.setup.js -------------------------------------------------------------------------------- /src/product/product.consumerChange.pact.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/src/product/product.consumerChange.pact.test.js -------------------------------------------------------------------------------- /src/product/product.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/src/product/product.controller.js -------------------------------------------------------------------------------- /src/product/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/src/product/product.js -------------------------------------------------------------------------------- /src/product/product.providerChange.pact.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/src/product/product.providerChange.pact.test.js -------------------------------------------------------------------------------- /src/product/product.repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/src/product/product.repository.js -------------------------------------------------------------------------------- /src/product/product.repository.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/src/product/product.repository.test.js -------------------------------------------------------------------------------- /src/product/product.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pactflow/example-provider/HEAD/src/product/product.routes.js --------------------------------------------------------------------------------