├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── ranger.yaml ├── .gitignore ├── .husky └── commit-msg ├── .versionrc ├── .vscode ├── launch.json └── tasks.json ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ ├── plugin-typescript.cjs │ │ ├── plugin-version.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.1.0.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── app.json ├── commitlint.config.js ├── docker-compose.yml ├── package.json ├── scripts └── prepare-build.sh ├── src ├── app.ts ├── models │ ├── README.md │ ├── blacklisted-user │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── credential │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── frontend │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── global-setting │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── index.ts │ ├── keys │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── otp │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── pending-user │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── policy │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── role │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── scope │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── service-account │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── session │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── smtp-mailer │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── smtp-provider │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── templates │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── tokens │ │ ├── index.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts │ ├── types.d.ts │ └── user │ │ ├── index.ts │ │ ├── methods.ts │ │ ├── model.ts │ │ ├── schema.ts │ │ ├── statics.ts │ │ └── types.d.ts ├── plugins │ ├── auth │ │ ├── helpers │ │ │ ├── heirarchy.ts │ │ │ ├── index.ts │ │ │ ├── model-methods.ts │ │ │ ├── policy-checker.ts │ │ │ ├── policy-retriever.ts │ │ │ ├── role-retreiver.ts │ │ │ └── types.d.ts │ │ ├── index.ts │ │ └── methods │ │ │ ├── index.ts │ │ │ ├── others │ │ │ └── index.ts │ │ │ └── user │ │ │ ├── accept.ts │ │ │ ├── blacklist.ts │ │ │ ├── index.ts │ │ │ ├── modify.ts │ │ │ ├── policies.ts │ │ │ ├── promote.ts │ │ │ ├── remove.ts │ │ │ ├── restrict.ts │ │ │ ├── scope.ts │ │ │ └── view.ts │ ├── axios │ │ ├── index.ts │ │ └── interceptor.ts │ ├── crypto │ │ ├── decrypt.ts │ │ ├── encrypt.ts │ │ ├── generate-keys.ts │ │ ├── index.ts │ │ └── types.d.ts │ ├── db │ │ ├── db.ts │ │ ├── helpers │ │ │ ├── fields-picker.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── plugins │ │ │ ├── base-encode │ │ │ │ ├── base-encode.ts │ │ │ │ └── index.ts │ │ │ ├── encrypt │ │ │ │ ├── encrypt.ts │ │ │ │ └── index.ts │ │ │ ├── hash │ │ │ │ ├── hash.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ └── statics │ │ │ ├── clear-collection.ts │ │ │ └── index.ts │ ├── errors │ │ ├── bad-gateway.ts │ │ ├── bad-request.ts │ │ ├── base-error.ts │ │ ├── forbidden.ts │ │ ├── index.ts │ │ ├── internal-server-error.ts │ │ ├── not-allowed.ts │ │ ├── not-found.ts │ │ ├── too-many-requests.ts │ │ └── un-authorized.ts │ ├── google │ │ ├── api │ │ │ ├── drive │ │ │ │ ├── API.ts │ │ │ │ ├── about │ │ │ │ │ ├── API.ts │ │ │ │ │ ├── fields.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── get.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.d.ts │ │ │ │ ├── drives │ │ │ │ │ ├── API.ts │ │ │ │ │ ├── fields.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── create.ts │ │ │ │ │ │ ├── get.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── list.ts │ │ │ │ │ │ └── update.ts │ │ │ │ │ └── types.d.ts │ │ │ │ ├── files │ │ │ │ │ ├── API.ts │ │ │ │ │ ├── fields.ts │ │ │ │ │ ├── handle-query.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── create.ts │ │ │ │ │ │ ├── delete.ts │ │ │ │ │ │ ├── download.ts │ │ │ │ │ │ ├── generate-id.ts │ │ │ │ │ │ ├── get.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── list.ts │ │ │ │ │ │ └── search.ts │ │ │ │ │ └── types.d.ts │ │ │ │ ├── index.ts │ │ │ │ ├── methods.ts │ │ │ │ ├── permissions │ │ │ │ │ ├── API.ts │ │ │ │ │ ├── fields.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── create.ts │ │ │ │ │ │ ├── delete.ts │ │ │ │ │ │ ├── get.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── list.ts │ │ │ │ │ │ └── update.ts │ │ │ │ │ └── types.d.ts │ │ │ │ ├── scopes.ts │ │ │ │ └── types.d.ts │ │ │ ├── iam │ │ │ │ ├── API.ts │ │ │ │ ├── index.ts │ │ │ │ ├── methods.ts │ │ │ │ ├── projects │ │ │ │ │ ├── API.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── get.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── list.ts │ │ │ │ │ └── types.d.ts │ │ │ │ ├── scopes.ts │ │ │ │ ├── service-account │ │ │ │ │ ├── API.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── create.ts │ │ │ │ │ │ ├── delete.ts │ │ │ │ │ │ ├── disable.ts │ │ │ │ │ │ ├── enable.ts │ │ │ │ │ │ ├── get.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── list.ts │ │ │ │ │ └── types.d.ts │ │ │ │ └── types.d.ts │ │ │ ├── index.ts │ │ │ ├── scopes.ts │ │ │ └── types.d.ts │ │ ├── handlers │ │ │ ├── nac │ │ │ │ ├── check-token.ts │ │ │ │ ├── generate-oauth.ts │ │ │ │ ├── generate-token.ts │ │ │ │ ├── index.ts │ │ │ │ └── revoke-token.ts │ │ │ └── sac │ │ │ │ ├── generate-oauth.ts │ │ │ │ ├── generate-token.ts │ │ │ │ └── index.ts │ │ ├── helpers │ │ │ ├── API.ts │ │ │ ├── construct-fields.ts │ │ │ ├── index.ts │ │ │ ├── mimetypes.ts │ │ │ ├── requester.ts │ │ │ ├── resolve-token.ts │ │ │ ├── sign-jwt.ts │ │ │ ├── stringize-scope.ts │ │ │ └── types.d.ts │ │ ├── index.ts │ │ ├── routes.ts │ │ └── types.d.ts │ ├── index.ts │ ├── json-web-token │ │ ├── generate-keys.ts │ │ ├── generate-token.ts │ │ ├── index.ts │ │ └── verify.ts │ ├── logger │ │ ├── index.ts │ │ └── logger.ts │ ├── mail-transporter │ │ ├── create-transport.ts │ │ ├── handle-gmail.ts │ │ ├── index.ts │ │ └── types.ts │ ├── misc │ │ ├── index.ts │ │ ├── isundefined.ts │ │ └── uid.ts │ ├── oauth │ │ ├── clients │ │ │ ├── facebook │ │ │ │ ├── index.ts │ │ │ │ └── passport.ts │ │ │ ├── github │ │ │ │ ├── index.ts │ │ │ │ └── passport.ts │ │ │ ├── google │ │ │ │ ├── index.ts │ │ │ │ └── passport.ts │ │ │ └── index.ts │ │ ├── helpers │ │ │ ├── handle-verification.ts │ │ │ ├── index.ts │ │ │ ├── initialize.ts │ │ │ └── tranform-authenticator.ts │ │ └── index.ts │ ├── otp-manager │ │ ├── generate.ts │ │ ├── index.ts │ │ └── verify.ts │ ├── server │ │ ├── generators │ │ │ ├── database-handler │ │ │ │ ├── functions │ │ │ │ │ ├── add.ts │ │ │ │ │ ├── delete.ts │ │ │ │ │ ├── edit.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── view.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.d.ts │ │ │ ├── endpoints-generator │ │ │ │ └── index.ts │ │ │ ├── health-checker │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── setup-route-generator │ │ │ │ └── index.ts │ │ ├── helpers │ │ │ ├── get-all-routes.ts │ │ │ ├── index.ts │ │ │ └── send-response.ts │ │ ├── index.ts │ │ ├── middlewares │ │ │ ├── cors.ts │ │ │ ├── db-checker.ts │ │ │ ├── index.ts │ │ │ ├── rate-limit.ts │ │ │ ├── secret-check.ts │ │ │ ├── session-checker.ts │ │ │ └── setup-check.ts │ │ ├── responses │ │ │ ├── error.ts │ │ │ ├── index.ts │ │ │ └── success.ts │ │ ├── server.ts │ │ └── types.d.ts │ ├── session-manager │ │ ├── create-session.ts │ │ ├── index.ts │ │ └── verify-session.ts │ └── templates │ │ ├── global-settings │ │ └── index.ts │ │ ├── policies │ │ ├── credentials │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ ├── frontends │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ ├── global-settings │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ ├── index.ts │ │ ├── policy │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ ├── roles │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ ├── scopes │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ ├── service-accounts │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ ├── smtp-mailer │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ ├── smtp-providers │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ ├── templates │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ └── user │ │ │ ├── add │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ │ ├── blacklist │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ │ ├── index.ts │ │ │ ├── modify │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ │ ├── remove │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ │ └── view │ │ │ ├── index.ts │ │ │ └── policies.ts │ │ └── roles │ │ ├── index.ts │ │ └── policies-map │ │ ├── content-manager.ts │ │ ├── manager.ts │ │ ├── moderator.ts │ │ └── owner.ts ├── routes │ ├── auth │ │ ├── index.ts │ │ └── routes.ts │ ├── index.ts │ ├── login │ │ ├── index.ts │ │ └── oauth │ │ │ ├── facebook │ │ │ └── index.ts │ │ │ ├── github │ │ │ └── index.ts │ │ │ ├── google │ │ │ └── index.ts │ │ │ └── index.ts │ └── setup │ │ ├── credentials.ts │ │ ├── frontend.ts │ │ ├── index.ts │ │ ├── policies.ts │ │ ├── roles.ts │ │ ├── routes.ts │ │ ├── scope.ts │ │ ├── settings.ts │ │ ├── smtp-mailer.ts │ │ ├── smtp-provider.ts │ │ ├── token.ts │ │ └── user.ts ├── types │ ├── express.d.ts │ ├── inline.response.d.ts │ └── model.objectid.d.ts └── views │ ├── css │ └── chunk-vendors.392be852.css │ ├── favicon.ico │ ├── img │ ├── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── android-chrome-maskable-192x192.png │ │ ├── android-chrome-maskable-512x512.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── msapplication-icon-144x144.png │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg │ └── logo.63a7d78d.svg │ ├── index.html │ ├── js │ ├── about.abf9e668.js │ ├── about.abf9e668.js.map │ ├── app.150b19d6.js │ ├── app.150b19d6.js.map │ ├── chunk-vendors.6f028e18.js │ └── chunk-vendors.6f028e18.js.map │ ├── manifest.json │ ├── precache-manifest.d51489f5c5b1b2c7633da1d965dbf182.js │ ├── robots.txt │ └── service-worker.js ├── tests ├── api │ ├── index.spec.ts │ └── routes │ │ └── setup │ │ ├── credentials.spec.ts │ │ ├── endpoints.spec.ts │ │ ├── policies.spec.ts │ │ ├── roles.spec.ts │ │ ├── scope.spec.ts │ │ └── settings.spec.ts ├── helpers │ └── requester.ts ├── require.js ├── rest │ └── routes │ │ ├── login │ │ └── user.rest │ │ └── setup │ │ ├── credentials.rest │ │ ├── frontend.rest │ │ ├── index.rest │ │ ├── policies.rest │ │ ├── roles.rest │ │ ├── scope.rest │ │ ├── settings.rest │ │ ├── token.rest │ │ └── user.rest └── unit │ └── uid.spec.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ranger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.github/ranger.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | npx --no-install commitlint --edit $1 -------------------------------------------------------------------------------- /.versionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.versionrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-typescript.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.yarn/plugins/@yarnpkg/plugin-typescript.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-version.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.yarn/plugins/@yarnpkg/plugin-version.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.1.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.yarn/releases/yarn-3.1.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/app.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/package.json -------------------------------------------------------------------------------- /scripts/prepare-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/scripts/prepare-build.sh -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/README.md -------------------------------------------------------------------------------- /src/models/blacklisted-user/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/blacklisted-user/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/blacklisted-user/model.ts -------------------------------------------------------------------------------- /src/models/blacklisted-user/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/blacklisted-user/schema.ts -------------------------------------------------------------------------------- /src/models/blacklisted-user/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/blacklisted-user/statics.ts -------------------------------------------------------------------------------- /src/models/blacklisted-user/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/blacklisted-user/types.d.ts -------------------------------------------------------------------------------- /src/models/credential/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/credential/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/credential/model.ts -------------------------------------------------------------------------------- /src/models/credential/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/credential/schema.ts -------------------------------------------------------------------------------- /src/models/credential/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/credential/statics.ts -------------------------------------------------------------------------------- /src/models/credential/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/credential/types.d.ts -------------------------------------------------------------------------------- /src/models/frontend/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/frontend/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/frontend/model.ts -------------------------------------------------------------------------------- /src/models/frontend/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/frontend/schema.ts -------------------------------------------------------------------------------- /src/models/frontend/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/frontend/statics.ts -------------------------------------------------------------------------------- /src/models/frontend/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/frontend/types.d.ts -------------------------------------------------------------------------------- /src/models/global-setting/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/global-setting/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/global-setting/model.ts -------------------------------------------------------------------------------- /src/models/global-setting/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/global-setting/schema.ts -------------------------------------------------------------------------------- /src/models/global-setting/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/global-setting/statics.ts -------------------------------------------------------------------------------- /src/models/global-setting/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/global-setting/types.d.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/models/keys/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/keys/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/keys/model.ts -------------------------------------------------------------------------------- /src/models/keys/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/keys/schema.ts -------------------------------------------------------------------------------- /src/models/keys/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/keys/statics.ts -------------------------------------------------------------------------------- /src/models/keys/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/keys/types.d.ts -------------------------------------------------------------------------------- /src/models/otp/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/otp/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/otp/model.ts -------------------------------------------------------------------------------- /src/models/otp/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/otp/schema.ts -------------------------------------------------------------------------------- /src/models/otp/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/otp/statics.ts -------------------------------------------------------------------------------- /src/models/otp/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/otp/types.d.ts -------------------------------------------------------------------------------- /src/models/pending-user/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/pending-user/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/pending-user/model.ts -------------------------------------------------------------------------------- /src/models/pending-user/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/pending-user/schema.ts -------------------------------------------------------------------------------- /src/models/pending-user/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/pending-user/statics.ts -------------------------------------------------------------------------------- /src/models/pending-user/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/pending-user/types.d.ts -------------------------------------------------------------------------------- /src/models/policy/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/policy/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/policy/model.ts -------------------------------------------------------------------------------- /src/models/policy/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/policy/schema.ts -------------------------------------------------------------------------------- /src/models/policy/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/policy/statics.ts -------------------------------------------------------------------------------- /src/models/policy/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/policy/types.d.ts -------------------------------------------------------------------------------- /src/models/role/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/role/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/role/model.ts -------------------------------------------------------------------------------- /src/models/role/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/role/schema.ts -------------------------------------------------------------------------------- /src/models/role/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/role/statics.ts -------------------------------------------------------------------------------- /src/models/role/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/role/types.d.ts -------------------------------------------------------------------------------- /src/models/scope/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/scope/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/scope/model.ts -------------------------------------------------------------------------------- /src/models/scope/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/scope/schema.ts -------------------------------------------------------------------------------- /src/models/scope/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/scope/statics.ts -------------------------------------------------------------------------------- /src/models/scope/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/scope/types.d.ts -------------------------------------------------------------------------------- /src/models/service-account/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/service-account/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/service-account/model.ts -------------------------------------------------------------------------------- /src/models/service-account/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/service-account/schema.ts -------------------------------------------------------------------------------- /src/models/service-account/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/service-account/statics.ts -------------------------------------------------------------------------------- /src/models/service-account/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/service-account/types.d.ts -------------------------------------------------------------------------------- /src/models/session/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/session/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/session/model.ts -------------------------------------------------------------------------------- /src/models/session/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/session/schema.ts -------------------------------------------------------------------------------- /src/models/session/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/session/statics.ts -------------------------------------------------------------------------------- /src/models/session/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/session/types.d.ts -------------------------------------------------------------------------------- /src/models/smtp-mailer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/smtp-mailer/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/smtp-mailer/model.ts -------------------------------------------------------------------------------- /src/models/smtp-mailer/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/smtp-mailer/schema.ts -------------------------------------------------------------------------------- /src/models/smtp-mailer/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/smtp-mailer/statics.ts -------------------------------------------------------------------------------- /src/models/smtp-mailer/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/smtp-mailer/types.d.ts -------------------------------------------------------------------------------- /src/models/smtp-provider/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/smtp-provider/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/smtp-provider/model.ts -------------------------------------------------------------------------------- /src/models/smtp-provider/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/smtp-provider/schema.ts -------------------------------------------------------------------------------- /src/models/smtp-provider/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/smtp-provider/statics.ts -------------------------------------------------------------------------------- /src/models/smtp-provider/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/smtp-provider/types.d.ts -------------------------------------------------------------------------------- /src/models/templates/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/templates/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/templates/model.ts -------------------------------------------------------------------------------- /src/models/templates/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/templates/schema.ts -------------------------------------------------------------------------------- /src/models/templates/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/templates/statics.ts -------------------------------------------------------------------------------- /src/models/templates/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/templates/types.d.ts -------------------------------------------------------------------------------- /src/models/tokens/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/tokens/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/tokens/model.ts -------------------------------------------------------------------------------- /src/models/tokens/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/tokens/schema.ts -------------------------------------------------------------------------------- /src/models/tokens/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/tokens/statics.ts -------------------------------------------------------------------------------- /src/models/tokens/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/tokens/types.d.ts -------------------------------------------------------------------------------- /src/models/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/types.d.ts -------------------------------------------------------------------------------- /src/models/user/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './model'; 2 | -------------------------------------------------------------------------------- /src/models/user/methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/user/methods.ts -------------------------------------------------------------------------------- /src/models/user/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/user/model.ts -------------------------------------------------------------------------------- /src/models/user/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/user/schema.ts -------------------------------------------------------------------------------- /src/models/user/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/user/statics.ts -------------------------------------------------------------------------------- /src/models/user/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/models/user/types.d.ts -------------------------------------------------------------------------------- /src/plugins/auth/helpers/heirarchy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/helpers/heirarchy.ts -------------------------------------------------------------------------------- /src/plugins/auth/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/helpers/index.ts -------------------------------------------------------------------------------- /src/plugins/auth/helpers/model-methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/helpers/model-methods.ts -------------------------------------------------------------------------------- /src/plugins/auth/helpers/policy-checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/helpers/policy-checker.ts -------------------------------------------------------------------------------- /src/plugins/auth/helpers/policy-retriever.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/helpers/policy-retriever.ts -------------------------------------------------------------------------------- /src/plugins/auth/helpers/role-retreiver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/helpers/role-retreiver.ts -------------------------------------------------------------------------------- /src/plugins/auth/helpers/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/helpers/types.d.ts -------------------------------------------------------------------------------- /src/plugins/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/index.ts -------------------------------------------------------------------------------- /src/plugins/auth/methods/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/methods/index.ts -------------------------------------------------------------------------------- /src/plugins/auth/methods/others/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/methods/others/index.ts -------------------------------------------------------------------------------- /src/plugins/auth/methods/user/accept.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/methods/user/accept.ts -------------------------------------------------------------------------------- /src/plugins/auth/methods/user/blacklist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/methods/user/blacklist.ts -------------------------------------------------------------------------------- /src/plugins/auth/methods/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/methods/user/index.ts -------------------------------------------------------------------------------- /src/plugins/auth/methods/user/modify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/methods/user/modify.ts -------------------------------------------------------------------------------- /src/plugins/auth/methods/user/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/methods/user/policies.ts -------------------------------------------------------------------------------- /src/plugins/auth/methods/user/promote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/methods/user/promote.ts -------------------------------------------------------------------------------- /src/plugins/auth/methods/user/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/methods/user/remove.ts -------------------------------------------------------------------------------- /src/plugins/auth/methods/user/restrict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/methods/user/restrict.ts -------------------------------------------------------------------------------- /src/plugins/auth/methods/user/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/methods/user/scope.ts -------------------------------------------------------------------------------- /src/plugins/auth/methods/user/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/auth/methods/user/view.ts -------------------------------------------------------------------------------- /src/plugins/axios/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './interceptor'; 2 | -------------------------------------------------------------------------------- /src/plugins/axios/interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/axios/interceptor.ts -------------------------------------------------------------------------------- /src/plugins/crypto/decrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/crypto/decrypt.ts -------------------------------------------------------------------------------- /src/plugins/crypto/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/crypto/encrypt.ts -------------------------------------------------------------------------------- /src/plugins/crypto/generate-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/crypto/generate-keys.ts -------------------------------------------------------------------------------- /src/plugins/crypto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/crypto/index.ts -------------------------------------------------------------------------------- /src/plugins/crypto/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/crypto/types.d.ts -------------------------------------------------------------------------------- /src/plugins/db/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/db/db.ts -------------------------------------------------------------------------------- /src/plugins/db/helpers/fields-picker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/db/helpers/fields-picker.ts -------------------------------------------------------------------------------- /src/plugins/db/helpers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './fields-picker'; 2 | -------------------------------------------------------------------------------- /src/plugins/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/db/index.ts -------------------------------------------------------------------------------- /src/plugins/db/plugins/base-encode/base-encode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/db/plugins/base-encode/base-encode.ts -------------------------------------------------------------------------------- /src/plugins/db/plugins/base-encode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/db/plugins/base-encode/index.ts -------------------------------------------------------------------------------- /src/plugins/db/plugins/encrypt/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/db/plugins/encrypt/encrypt.ts -------------------------------------------------------------------------------- /src/plugins/db/plugins/encrypt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/db/plugins/encrypt/index.ts -------------------------------------------------------------------------------- /src/plugins/db/plugins/hash/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/db/plugins/hash/hash.ts -------------------------------------------------------------------------------- /src/plugins/db/plugins/hash/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/db/plugins/hash/index.ts -------------------------------------------------------------------------------- /src/plugins/db/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/db/plugins/index.ts -------------------------------------------------------------------------------- /src/plugins/db/statics/clear-collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/db/statics/clear-collection.ts -------------------------------------------------------------------------------- /src/plugins/db/statics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/db/statics/index.ts -------------------------------------------------------------------------------- /src/plugins/errors/bad-gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/errors/bad-gateway.ts -------------------------------------------------------------------------------- /src/plugins/errors/bad-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/errors/bad-request.ts -------------------------------------------------------------------------------- /src/plugins/errors/base-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/errors/base-error.ts -------------------------------------------------------------------------------- /src/plugins/errors/forbidden.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/errors/forbidden.ts -------------------------------------------------------------------------------- /src/plugins/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/errors/index.ts -------------------------------------------------------------------------------- /src/plugins/errors/internal-server-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/errors/internal-server-error.ts -------------------------------------------------------------------------------- /src/plugins/errors/not-allowed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/errors/not-allowed.ts -------------------------------------------------------------------------------- /src/plugins/errors/not-found.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/errors/not-found.ts -------------------------------------------------------------------------------- /src/plugins/errors/too-many-requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/errors/too-many-requests.ts -------------------------------------------------------------------------------- /src/plugins/errors/un-authorized.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/errors/un-authorized.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/API.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/about/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/about/API.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/about/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/about/fields.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/about/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/about/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/about/methods/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/about/methods/get.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/about/methods/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/about/methods/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/about/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/about/types.d.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/drives/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/drives/API.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/drives/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/drives/fields.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/drives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/drives/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/drives/methods/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/drives/methods/create.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/drives/methods/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/drives/methods/get.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/drives/methods/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/drives/methods/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/drives/methods/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/drives/methods/list.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/drives/methods/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/drives/methods/update.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/drives/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/drives/types.d.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/files/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/files/API.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/files/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/files/fields.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/files/handle-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/files/handle-query.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/files/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/files/methods/create.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/google/api/drive/files/methods/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/files/methods/delete.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/files/methods/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/files/methods/download.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/files/methods/generate-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/files/methods/generate-id.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/files/methods/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/files/methods/get.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/files/methods/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/files/methods/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/files/methods/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/files/methods/list.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/files/methods/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/files/methods/search.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/files/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/files/types.d.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/methods.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/permissions/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/permissions/API.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/permissions/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/permissions/fields.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/permissions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/permissions/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/permissions/methods/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/permissions/methods/create.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/permissions/methods/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/permissions/methods/delete.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/permissions/methods/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/permissions/methods/get.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/permissions/methods/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/permissions/methods/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/permissions/methods/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/permissions/methods/list.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/permissions/methods/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/permissions/methods/update.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/permissions/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/permissions/types.d.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/scopes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/scopes.ts -------------------------------------------------------------------------------- /src/plugins/google/api/drive/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/drive/types.d.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/API.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/methods.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/projects/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/projects/API.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/projects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/projects/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/projects/methods/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/projects/methods/get.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/projects/methods/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/projects/methods/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/projects/methods/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/projects/methods/list.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/projects/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/projects/types.d.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/scopes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/scopes.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/service-account/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/service-account/API.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/service-account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/service-account/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/service-account/methods/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/service-account/methods/create.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/service-account/methods/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/service-account/methods/delete.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/service-account/methods/disable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/service-account/methods/disable.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/service-account/methods/enable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/service-account/methods/enable.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/service-account/methods/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/service-account/methods/get.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/service-account/methods/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/service-account/methods/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/service-account/methods/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/service-account/methods/list.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/service-account/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/service-account/types.d.ts -------------------------------------------------------------------------------- /src/plugins/google/api/iam/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/iam/types.d.ts -------------------------------------------------------------------------------- /src/plugins/google/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/index.ts -------------------------------------------------------------------------------- /src/plugins/google/api/scopes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/scopes.ts -------------------------------------------------------------------------------- /src/plugins/google/api/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/api/types.d.ts -------------------------------------------------------------------------------- /src/plugins/google/handlers/nac/check-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/handlers/nac/check-token.ts -------------------------------------------------------------------------------- /src/plugins/google/handlers/nac/generate-oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/handlers/nac/generate-oauth.ts -------------------------------------------------------------------------------- /src/plugins/google/handlers/nac/generate-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/handlers/nac/generate-token.ts -------------------------------------------------------------------------------- /src/plugins/google/handlers/nac/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/handlers/nac/index.ts -------------------------------------------------------------------------------- /src/plugins/google/handlers/nac/revoke-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/handlers/nac/revoke-token.ts -------------------------------------------------------------------------------- /src/plugins/google/handlers/sac/generate-oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/handlers/sac/generate-oauth.ts -------------------------------------------------------------------------------- /src/plugins/google/handlers/sac/generate-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/handlers/sac/generate-token.ts -------------------------------------------------------------------------------- /src/plugins/google/handlers/sac/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/handlers/sac/index.ts -------------------------------------------------------------------------------- /src/plugins/google/helpers/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/helpers/API.ts -------------------------------------------------------------------------------- /src/plugins/google/helpers/construct-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/helpers/construct-fields.ts -------------------------------------------------------------------------------- /src/plugins/google/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/helpers/index.ts -------------------------------------------------------------------------------- /src/plugins/google/helpers/mimetypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/helpers/mimetypes.ts -------------------------------------------------------------------------------- /src/plugins/google/helpers/requester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/helpers/requester.ts -------------------------------------------------------------------------------- /src/plugins/google/helpers/resolve-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/helpers/resolve-token.ts -------------------------------------------------------------------------------- /src/plugins/google/helpers/sign-jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/helpers/sign-jwt.ts -------------------------------------------------------------------------------- /src/plugins/google/helpers/stringize-scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/helpers/stringize-scope.ts -------------------------------------------------------------------------------- /src/plugins/google/helpers/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/helpers/types.d.ts -------------------------------------------------------------------------------- /src/plugins/google/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/index.ts -------------------------------------------------------------------------------- /src/plugins/google/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/routes.ts -------------------------------------------------------------------------------- /src/plugins/google/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/google/types.d.ts -------------------------------------------------------------------------------- /src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/index.ts -------------------------------------------------------------------------------- /src/plugins/json-web-token/generate-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/json-web-token/generate-keys.ts -------------------------------------------------------------------------------- /src/plugins/json-web-token/generate-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/json-web-token/generate-token.ts -------------------------------------------------------------------------------- /src/plugins/json-web-token/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/json-web-token/index.ts -------------------------------------------------------------------------------- /src/plugins/json-web-token/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/json-web-token/verify.ts -------------------------------------------------------------------------------- /src/plugins/logger/index.ts: -------------------------------------------------------------------------------- 1 | export * from './logger'; 2 | -------------------------------------------------------------------------------- /src/plugins/logger/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/logger/logger.ts -------------------------------------------------------------------------------- /src/plugins/mail-transporter/create-transport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/mail-transporter/create-transport.ts -------------------------------------------------------------------------------- /src/plugins/mail-transporter/handle-gmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/mail-transporter/handle-gmail.ts -------------------------------------------------------------------------------- /src/plugins/mail-transporter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/mail-transporter/index.ts -------------------------------------------------------------------------------- /src/plugins/mail-transporter/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/mail-transporter/types.ts -------------------------------------------------------------------------------- /src/plugins/misc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/misc/index.ts -------------------------------------------------------------------------------- /src/plugins/misc/isundefined.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/misc/isundefined.ts -------------------------------------------------------------------------------- /src/plugins/misc/uid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/misc/uid.ts -------------------------------------------------------------------------------- /src/plugins/oauth/clients/facebook/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './passport'; 2 | -------------------------------------------------------------------------------- /src/plugins/oauth/clients/facebook/passport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/oauth/clients/facebook/passport.ts -------------------------------------------------------------------------------- /src/plugins/oauth/clients/github/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './passport'; 2 | -------------------------------------------------------------------------------- /src/plugins/oauth/clients/github/passport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/oauth/clients/github/passport.ts -------------------------------------------------------------------------------- /src/plugins/oauth/clients/google/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './passport'; 2 | -------------------------------------------------------------------------------- /src/plugins/oauth/clients/google/passport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/oauth/clients/google/passport.ts -------------------------------------------------------------------------------- /src/plugins/oauth/clients/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/oauth/clients/index.ts -------------------------------------------------------------------------------- /src/plugins/oauth/helpers/handle-verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/oauth/helpers/handle-verification.ts -------------------------------------------------------------------------------- /src/plugins/oauth/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/oauth/helpers/index.ts -------------------------------------------------------------------------------- /src/plugins/oauth/helpers/initialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/oauth/helpers/initialize.ts -------------------------------------------------------------------------------- /src/plugins/oauth/helpers/tranform-authenticator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/oauth/helpers/tranform-authenticator.ts -------------------------------------------------------------------------------- /src/plugins/oauth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/oauth/index.ts -------------------------------------------------------------------------------- /src/plugins/otp-manager/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/otp-manager/generate.ts -------------------------------------------------------------------------------- /src/plugins/otp-manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/otp-manager/index.ts -------------------------------------------------------------------------------- /src/plugins/otp-manager/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/otp-manager/verify.ts -------------------------------------------------------------------------------- /src/plugins/server/generators/database-handler/functions/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/generators/database-handler/functions/add.ts -------------------------------------------------------------------------------- /src/plugins/server/generators/database-handler/functions/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/generators/database-handler/functions/delete.ts -------------------------------------------------------------------------------- /src/plugins/server/generators/database-handler/functions/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/generators/database-handler/functions/edit.ts -------------------------------------------------------------------------------- /src/plugins/server/generators/database-handler/functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/generators/database-handler/functions/index.ts -------------------------------------------------------------------------------- /src/plugins/server/generators/database-handler/functions/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/generators/database-handler/functions/view.ts -------------------------------------------------------------------------------- /src/plugins/server/generators/database-handler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/generators/database-handler/index.ts -------------------------------------------------------------------------------- /src/plugins/server/generators/database-handler/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/generators/database-handler/types.d.ts -------------------------------------------------------------------------------- /src/plugins/server/generators/endpoints-generator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/generators/endpoints-generator/index.ts -------------------------------------------------------------------------------- /src/plugins/server/generators/health-checker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/generators/health-checker/index.ts -------------------------------------------------------------------------------- /src/plugins/server/generators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/generators/index.ts -------------------------------------------------------------------------------- /src/plugins/server/generators/setup-route-generator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/generators/setup-route-generator/index.ts -------------------------------------------------------------------------------- /src/plugins/server/helpers/get-all-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/helpers/get-all-routes.ts -------------------------------------------------------------------------------- /src/plugins/server/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/helpers/index.ts -------------------------------------------------------------------------------- /src/plugins/server/helpers/send-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/helpers/send-response.ts -------------------------------------------------------------------------------- /src/plugins/server/index.ts: -------------------------------------------------------------------------------- 1 | export * from './server'; 2 | -------------------------------------------------------------------------------- /src/plugins/server/middlewares/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/middlewares/cors.ts -------------------------------------------------------------------------------- /src/plugins/server/middlewares/db-checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/middlewares/db-checker.ts -------------------------------------------------------------------------------- /src/plugins/server/middlewares/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/middlewares/index.ts -------------------------------------------------------------------------------- /src/plugins/server/middlewares/rate-limit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/middlewares/rate-limit.ts -------------------------------------------------------------------------------- /src/plugins/server/middlewares/secret-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/middlewares/secret-check.ts -------------------------------------------------------------------------------- /src/plugins/server/middlewares/session-checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/middlewares/session-checker.ts -------------------------------------------------------------------------------- /src/plugins/server/middlewares/setup-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/middlewares/setup-check.ts -------------------------------------------------------------------------------- /src/plugins/server/responses/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/responses/error.ts -------------------------------------------------------------------------------- /src/plugins/server/responses/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/responses/index.ts -------------------------------------------------------------------------------- /src/plugins/server/responses/success.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/responses/success.ts -------------------------------------------------------------------------------- /src/plugins/server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/server.ts -------------------------------------------------------------------------------- /src/plugins/server/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/server/types.d.ts -------------------------------------------------------------------------------- /src/plugins/session-manager/create-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/session-manager/create-session.ts -------------------------------------------------------------------------------- /src/plugins/session-manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/session-manager/index.ts -------------------------------------------------------------------------------- /src/plugins/session-manager/verify-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/session-manager/verify-session.ts -------------------------------------------------------------------------------- /src/plugins/templates/global-settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/global-settings/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/credentials/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/credentials/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/credentials/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/credentials/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/frontends/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/frontends/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/frontends/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/frontends/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/global-settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/global-settings/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/global-settings/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/global-settings/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/policy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/policy/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/policy/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/policy/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/roles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/roles/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/roles/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/roles/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/scopes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/scopes/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/scopes/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/scopes/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/service-accounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/service-accounts/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/service-accounts/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/service-accounts/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/smtp-mailer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/smtp-mailer/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/smtp-mailer/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/smtp-mailer/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/smtp-providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/smtp-providers/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/smtp-providers/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/smtp-providers/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/templates/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/templates/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/templates/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/user/add/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/user/add/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/user/add/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/user/add/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/user/blacklist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/user/blacklist/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/user/blacklist/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/user/blacklist/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/user/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/user/modify/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/user/modify/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/user/modify/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/user/modify/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/user/remove/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/user/remove/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/user/remove/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/user/remove/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/user/view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/user/view/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/policies/user/view/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/policies/user/view/policies.ts -------------------------------------------------------------------------------- /src/plugins/templates/roles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/roles/index.ts -------------------------------------------------------------------------------- /src/plugins/templates/roles/policies-map/content-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/roles/policies-map/content-manager.ts -------------------------------------------------------------------------------- /src/plugins/templates/roles/policies-map/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/roles/policies-map/manager.ts -------------------------------------------------------------------------------- /src/plugins/templates/roles/policies-map/moderator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/roles/policies-map/moderator.ts -------------------------------------------------------------------------------- /src/plugins/templates/roles/policies-map/owner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/plugins/templates/roles/policies-map/owner.ts -------------------------------------------------------------------------------- /src/routes/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/auth/index.ts -------------------------------------------------------------------------------- /src/routes/auth/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/auth/routes.ts -------------------------------------------------------------------------------- /src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/index.ts -------------------------------------------------------------------------------- /src/routes/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/login/index.ts -------------------------------------------------------------------------------- /src/routes/login/oauth/facebook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/login/oauth/facebook/index.ts -------------------------------------------------------------------------------- /src/routes/login/oauth/github/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/login/oauth/github/index.ts -------------------------------------------------------------------------------- /src/routes/login/oauth/google/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/login/oauth/google/index.ts -------------------------------------------------------------------------------- /src/routes/login/oauth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/login/oauth/index.ts -------------------------------------------------------------------------------- /src/routes/setup/credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/setup/credentials.ts -------------------------------------------------------------------------------- /src/routes/setup/frontend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/setup/frontend.ts -------------------------------------------------------------------------------- /src/routes/setup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/setup/index.ts -------------------------------------------------------------------------------- /src/routes/setup/policies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/setup/policies.ts -------------------------------------------------------------------------------- /src/routes/setup/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/setup/roles.ts -------------------------------------------------------------------------------- /src/routes/setup/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/setup/routes.ts -------------------------------------------------------------------------------- /src/routes/setup/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/setup/scope.ts -------------------------------------------------------------------------------- /src/routes/setup/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/setup/settings.ts -------------------------------------------------------------------------------- /src/routes/setup/smtp-mailer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/setup/smtp-mailer.ts -------------------------------------------------------------------------------- /src/routes/setup/smtp-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/setup/smtp-provider.ts -------------------------------------------------------------------------------- /src/routes/setup/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/setup/token.ts -------------------------------------------------------------------------------- /src/routes/setup/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/routes/setup/user.ts -------------------------------------------------------------------------------- /src/types/express.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/types/express.d.ts -------------------------------------------------------------------------------- /src/types/inline.response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/types/inline.response.d.ts -------------------------------------------------------------------------------- /src/types/model.objectid.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/types/model.objectid.d.ts -------------------------------------------------------------------------------- /src/views/css/chunk-vendors.392be852.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/css/chunk-vendors.392be852.css -------------------------------------------------------------------------------- /src/views/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/favicon.ico -------------------------------------------------------------------------------- /src/views/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /src/views/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /src/views/img/icons/android-chrome-maskable-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/android-chrome-maskable-192x192.png -------------------------------------------------------------------------------- /src/views/img/icons/android-chrome-maskable-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/android-chrome-maskable-512x512.png -------------------------------------------------------------------------------- /src/views/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /src/views/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /src/views/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /src/views/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /src/views/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /src/views/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /src/views/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /src/views/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /src/views/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /src/views/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /src/views/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /src/views/img/logo.63a7d78d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/img/logo.63a7d78d.svg -------------------------------------------------------------------------------- /src/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/index.html -------------------------------------------------------------------------------- /src/views/js/about.abf9e668.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/js/about.abf9e668.js -------------------------------------------------------------------------------- /src/views/js/about.abf9e668.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/js/about.abf9e668.js.map -------------------------------------------------------------------------------- /src/views/js/app.150b19d6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/js/app.150b19d6.js -------------------------------------------------------------------------------- /src/views/js/app.150b19d6.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/js/app.150b19d6.js.map -------------------------------------------------------------------------------- /src/views/js/chunk-vendors.6f028e18.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/js/chunk-vendors.6f028e18.js -------------------------------------------------------------------------------- /src/views/js/chunk-vendors.6f028e18.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/js/chunk-vendors.6f028e18.js.map -------------------------------------------------------------------------------- /src/views/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/manifest.json -------------------------------------------------------------------------------- /src/views/precache-manifest.d51489f5c5b1b2c7633da1d965dbf182.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/precache-manifest.d51489f5c5b1b2c7633da1d965dbf182.js -------------------------------------------------------------------------------- /src/views/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/views/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/src/views/service-worker.js -------------------------------------------------------------------------------- /tests/api/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/api/index.spec.ts -------------------------------------------------------------------------------- /tests/api/routes/setup/credentials.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/api/routes/setup/credentials.spec.ts -------------------------------------------------------------------------------- /tests/api/routes/setup/endpoints.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/api/routes/setup/endpoints.spec.ts -------------------------------------------------------------------------------- /tests/api/routes/setup/policies.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/api/routes/setup/policies.spec.ts -------------------------------------------------------------------------------- /tests/api/routes/setup/roles.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/api/routes/setup/roles.spec.ts -------------------------------------------------------------------------------- /tests/api/routes/setup/scope.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/routes/setup/settings.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/helpers/requester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/helpers/requester.ts -------------------------------------------------------------------------------- /tests/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/require.js -------------------------------------------------------------------------------- /tests/rest/routes/login/user.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/rest/routes/login/user.rest -------------------------------------------------------------------------------- /tests/rest/routes/setup/credentials.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/rest/routes/setup/credentials.rest -------------------------------------------------------------------------------- /tests/rest/routes/setup/frontend.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/rest/routes/setup/frontend.rest -------------------------------------------------------------------------------- /tests/rest/routes/setup/index.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/rest/routes/setup/index.rest -------------------------------------------------------------------------------- /tests/rest/routes/setup/policies.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/rest/routes/setup/policies.rest -------------------------------------------------------------------------------- /tests/rest/routes/setup/roles.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/rest/routes/setup/roles.rest -------------------------------------------------------------------------------- /tests/rest/routes/setup/scope.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/rest/routes/setup/scope.rest -------------------------------------------------------------------------------- /tests/rest/routes/setup/settings.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/rest/routes/setup/settings.rest -------------------------------------------------------------------------------- /tests/rest/routes/setup/token.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/rest/routes/setup/token.rest -------------------------------------------------------------------------------- /tests/rest/routes/setup/user.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/rest/routes/setup/user.rest -------------------------------------------------------------------------------- /tests/unit/uid.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tests/unit/uid.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyndex-drive/server/HEAD/yarn.lock --------------------------------------------------------------------------------