├── .codeclimate.yaml ├── .eslintrc.cjs ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── config │ ├── dep-report.json5 │ └── vulnerability-report.json5 ├── helpers │ ├── github-api │ │ ├── create-and-close-existing-issue.mjs │ │ └── github-api-requests.mjs │ ├── npm-audit │ │ ├── create-report-issues.cjs │ │ ├── create-report.cjs │ │ ├── enhance-vulnerability-list.cjs │ │ ├── find-direct-dependencies.cjs │ │ ├── find-indirect-vulnerable-deps.cjs │ │ ├── get-latest-dep-info.cjs │ │ ├── is-fix-available.cjs │ │ ├── parse-npm-vulnerabilities.cjs │ │ └── run-npm-audit.cjs │ ├── npm-deps │ │ ├── create-report-issues.cjs │ │ ├── create-report.cjs │ │ └── parse-npm-deps.cjs │ ├── package-release │ │ ├── check-npm-for-version-tag.cjs │ │ ├── validate-for-rc-tag.cjs │ │ └── validate-for-release-tag.cjs │ ├── parse-json5-config.cjs │ └── techdocs │ │ ├── update-main-typescript-types.cjs │ │ └── update-typescript-types.cjs └── workflows │ ├── ci-unit-integration-test.yaml │ ├── document-techdoc-types.yaml │ ├── npm-audit-report.yaml │ ├── npm-dep-report.yaml │ ├── publish-techdocs.yaml │ ├── release.yaml │ └── test-coverage-report.yaml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.cjs ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── __tests__ ├── __mocks__ │ ├── parameters.ts │ └── responses.ts ├── integration.test.ts ├── roleMapping.test.ts ├── roles.test.ts ├── users.test.ts └── utils │ ├── debug.test.ts │ ├── request.test.ts │ └── token.test.ts ├── catalog-info.yaml ├── jest.config.ts ├── mkdocs.yml ├── package.json ├── rollup.config.mjs ├── rollupdts.config.mjs ├── scripts ├── bump-version.mjs ├── remove-dts-files.mjs ├── remove-empty-dirs.mjs └── run-coverage-and-open-report.mjs ├── src ├── config.ts ├── index.ts ├── integration.ts ├── roleMapping.ts ├── roles.ts ├── types.ts ├── users.ts └── utils │ ├── checkForUpdates.ts │ ├── debug.ts │ ├── index.ts │ ├── request.ts │ └── token.ts ├── techdocs ├── LICENSE_CONTENT ├── README_TECHDOCS.md ├── docs │ ├── getting-started │ │ ├── environment-variables.md │ │ ├── installing-the-package.md │ │ ├── quick-start-guide.md │ │ └── sso-settings.md │ ├── index.md │ ├── major-releases │ │ └── major-release-1.md │ └── using-the-package │ │ ├── apis-&-components │ │ ├── get-integration.md │ │ ├── role-mapping │ │ │ ├── assign-user-roles.md │ │ │ ├── get-user-roles.md │ │ │ ├── get-users-with-role.md │ │ │ └── unassign-user-role.md │ │ ├── roles │ │ │ ├── add-role-composite.md │ │ │ ├── create-role.md │ │ │ ├── delete-role-composite.md │ │ │ ├── delete-role.md │ │ │ ├── get-role-composite.md │ │ │ ├── get-role-composites.md │ │ │ ├── get-role.md │ │ │ ├── get-roles.md │ │ │ └── update-role.md │ │ └── users │ │ │ ├── get-azure-idir-users.md │ │ │ ├── get-basic-bceid-user.md │ │ │ ├── get-both-bceid-user.md │ │ │ ├── get-business-bceid-user.md │ │ │ ├── get-github-bcgov-users.md │ │ │ ├── get-github-public-users.md │ │ │ └── get-idir-users.md │ │ ├── module-exports.md │ │ ├── troubleshooting.md │ │ └── typescript-types.md └── pubcode.yaml └── tsconfig.json /.codeclimate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.codeclimate.yaml -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | * eol=lf 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/config/dep-report.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/config/dep-report.json5 -------------------------------------------------------------------------------- /.github/config/vulnerability-report.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/config/vulnerability-report.json5 -------------------------------------------------------------------------------- /.github/helpers/github-api/create-and-close-existing-issue.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/github-api/create-and-close-existing-issue.mjs -------------------------------------------------------------------------------- /.github/helpers/github-api/github-api-requests.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/github-api/github-api-requests.mjs -------------------------------------------------------------------------------- /.github/helpers/npm-audit/create-report-issues.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/npm-audit/create-report-issues.cjs -------------------------------------------------------------------------------- /.github/helpers/npm-audit/create-report.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/npm-audit/create-report.cjs -------------------------------------------------------------------------------- /.github/helpers/npm-audit/enhance-vulnerability-list.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/npm-audit/enhance-vulnerability-list.cjs -------------------------------------------------------------------------------- /.github/helpers/npm-audit/find-direct-dependencies.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/npm-audit/find-direct-dependencies.cjs -------------------------------------------------------------------------------- /.github/helpers/npm-audit/find-indirect-vulnerable-deps.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/npm-audit/find-indirect-vulnerable-deps.cjs -------------------------------------------------------------------------------- /.github/helpers/npm-audit/get-latest-dep-info.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/npm-audit/get-latest-dep-info.cjs -------------------------------------------------------------------------------- /.github/helpers/npm-audit/is-fix-available.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/npm-audit/is-fix-available.cjs -------------------------------------------------------------------------------- /.github/helpers/npm-audit/parse-npm-vulnerabilities.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/npm-audit/parse-npm-vulnerabilities.cjs -------------------------------------------------------------------------------- /.github/helpers/npm-audit/run-npm-audit.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/npm-audit/run-npm-audit.cjs -------------------------------------------------------------------------------- /.github/helpers/npm-deps/create-report-issues.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/npm-deps/create-report-issues.cjs -------------------------------------------------------------------------------- /.github/helpers/npm-deps/create-report.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/npm-deps/create-report.cjs -------------------------------------------------------------------------------- /.github/helpers/npm-deps/parse-npm-deps.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/npm-deps/parse-npm-deps.cjs -------------------------------------------------------------------------------- /.github/helpers/package-release/check-npm-for-version-tag.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/package-release/check-npm-for-version-tag.cjs -------------------------------------------------------------------------------- /.github/helpers/package-release/validate-for-rc-tag.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/package-release/validate-for-rc-tag.cjs -------------------------------------------------------------------------------- /.github/helpers/package-release/validate-for-release-tag.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/package-release/validate-for-release-tag.cjs -------------------------------------------------------------------------------- /.github/helpers/parse-json5-config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/parse-json5-config.cjs -------------------------------------------------------------------------------- /.github/helpers/techdocs/update-main-typescript-types.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/techdocs/update-main-typescript-types.cjs -------------------------------------------------------------------------------- /.github/helpers/techdocs/update-typescript-types.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/helpers/techdocs/update-typescript-types.cjs -------------------------------------------------------------------------------- /.github/workflows/ci-unit-integration-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/workflows/ci-unit-integration-test.yaml -------------------------------------------------------------------------------- /.github/workflows/document-techdoc-types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/workflows/document-techdoc-types.yaml -------------------------------------------------------------------------------- /.github/workflows/npm-audit-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/workflows/npm-audit-report.yaml -------------------------------------------------------------------------------- /.github/workflows/npm-dep-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/workflows/npm-dep-report.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-techdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/workflows/publish-techdocs.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.github/workflows/test-coverage-report.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | package-lock.json 4 | coverage 5 | -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__mocks__/parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/__tests__/__mocks__/parameters.ts -------------------------------------------------------------------------------- /__tests__/__mocks__/responses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/__tests__/__mocks__/responses.ts -------------------------------------------------------------------------------- /__tests__/integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/__tests__/integration.test.ts -------------------------------------------------------------------------------- /__tests__/roleMapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/__tests__/roleMapping.test.ts -------------------------------------------------------------------------------- /__tests__/roles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/__tests__/roles.test.ts -------------------------------------------------------------------------------- /__tests__/users.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/__tests__/users.test.ts -------------------------------------------------------------------------------- /__tests__/utils/debug.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/__tests__/utils/debug.test.ts -------------------------------------------------------------------------------- /__tests__/utils/request.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/__tests__/utils/request.test.ts -------------------------------------------------------------------------------- /__tests__/utils/token.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/__tests__/utils/token.test.ts -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/jest.config.ts -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /rollupdts.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/rollupdts.config.mjs -------------------------------------------------------------------------------- /scripts/bump-version.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/scripts/bump-version.mjs -------------------------------------------------------------------------------- /scripts/remove-dts-files.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/scripts/remove-dts-files.mjs -------------------------------------------------------------------------------- /scripts/remove-empty-dirs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/scripts/remove-empty-dirs.mjs -------------------------------------------------------------------------------- /scripts/run-coverage-and-open-report.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/scripts/run-coverage-and-open-report.mjs -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/src/integration.ts -------------------------------------------------------------------------------- /src/roleMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/src/roleMapping.ts -------------------------------------------------------------------------------- /src/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/src/roles.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/src/users.ts -------------------------------------------------------------------------------- /src/utils/checkForUpdates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/src/utils/checkForUpdates.ts -------------------------------------------------------------------------------- /src/utils/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/src/utils/debug.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /src/utils/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/src/utils/token.ts -------------------------------------------------------------------------------- /techdocs/LICENSE_CONTENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/LICENSE_CONTENT -------------------------------------------------------------------------------- /techdocs/README_TECHDOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/README_TECHDOCS.md -------------------------------------------------------------------------------- /techdocs/docs/getting-started/environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/getting-started/environment-variables.md -------------------------------------------------------------------------------- /techdocs/docs/getting-started/installing-the-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/getting-started/installing-the-package.md -------------------------------------------------------------------------------- /techdocs/docs/getting-started/quick-start-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/getting-started/quick-start-guide.md -------------------------------------------------------------------------------- /techdocs/docs/getting-started/sso-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/getting-started/sso-settings.md -------------------------------------------------------------------------------- /techdocs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/index.md -------------------------------------------------------------------------------- /techdocs/docs/major-releases/major-release-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/major-releases/major-release-1.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/get-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/get-integration.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/role-mapping/assign-user-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/role-mapping/assign-user-roles.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/role-mapping/get-user-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/role-mapping/get-user-roles.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/role-mapping/get-users-with-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/role-mapping/get-users-with-role.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/role-mapping/unassign-user-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/role-mapping/unassign-user-role.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/roles/add-role-composite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/roles/add-role-composite.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/roles/create-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/roles/create-role.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/roles/delete-role-composite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/roles/delete-role-composite.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/roles/delete-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/roles/delete-role.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/roles/get-role-composite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/roles/get-role-composite.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/roles/get-role-composites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/roles/get-role-composites.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/roles/get-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/roles/get-role.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/roles/get-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/roles/get-roles.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/roles/update-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/roles/update-role.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/users/get-azure-idir-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/users/get-azure-idir-users.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/users/get-basic-bceid-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/users/get-basic-bceid-user.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/users/get-both-bceid-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/users/get-both-bceid-user.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/users/get-business-bceid-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/users/get-business-bceid-user.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/users/get-github-bcgov-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/users/get-github-bcgov-users.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/users/get-github-public-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/users/get-github-public-users.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/apis-&-components/users/get-idir-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/apis-&-components/users/get-idir-users.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/module-exports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/module-exports.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/troubleshooting.md -------------------------------------------------------------------------------- /techdocs/docs/using-the-package/typescript-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/docs/using-the-package/typescript-types.md -------------------------------------------------------------------------------- /techdocs/pubcode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/techdocs/pubcode.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/citz-imb-sso-css-api/HEAD/tsconfig.json --------------------------------------------------------------------------------