diff --git a/.eslintrc.json b/.eslintrc.json index 9af321cd12a..f5a6d5dd967 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -19,7 +19,8 @@ "plugins": ["@graphql-eslint"], // Do not apply naming conventions to .graphql files "rules": { - "@typescript-eslint/naming-convention": "off" + "@typescript-eslint/naming-convention": "off", + "@typescript-eslint/consistent-type-assertions": "off" } }, { diff --git a/.github/workflows/pull-request-target.yml b/.github/workflows/pull-request-target.yml index ad50c9d2d69..fde5f05808e 100644 --- a/.github/workflows/pull-request-target.yml +++ b/.github/workflows/pull-request-target.yml @@ -39,6 +39,7 @@ jobs: ### Reviewers + Do not assign reviewers. Our Queue Monitors will review your PR and assign them. When your PR has been assigned reviewers contact them to get your code reviewed and approved via: 1. comments in this PR or diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index d435f3a3f11..6948d1bce2f 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -4,7 +4,7 @@ # NOTE! # # Please read the README.md file in this directory that defines what should -# be placed in this file +# be placed in this file. # ############################################################################## ############################################################################## @@ -25,6 +25,8 @@ jobs: steps: - name: Checkout repository content uses: actions/checkout@v3 + with: + fetch-depth: 2 - name: Count number of lines run: | @@ -49,8 +51,21 @@ jobs: - name: Install Dependencies run: npm ci + # Lint, but exclude typescript files in the .eslintignore file + # or else we'll get failures + - name: Get changed files + id: changed_files + uses: tj-actions/changed-files@v42 + with: + files: | + **.ts + '!src/types/**.ts' + - name: Run ESLint to check for linting errors in modified files - run: npx eslint $(git diff --name-only --diff-filter=d ${{ github.event.before }} ${{ github.sha }} -- '***.ts') + if: steps.changed_files.outputs.any_changed == 'true' + env: + CHANGED_FILES: ${{ steps.changed_files.outputs.all_changed_files }} + run: npx eslint ${CHANGED_FILES} - name: Check for formatting errors run: npm run format:check @@ -180,6 +195,3 @@ jobs: run: | echo "PR is not against develop branch. Please refer PR_GUIDELINES.md" exit 1 - - - diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 24dd9683680..6eb103c38bd 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -96,7 +96,7 @@ jobs: Generate-Documentation: name: Generate Documentation runs-on: ubuntu-latest - if: github.ref == 'refs/heads/develop' + # if: github.ref == 'refs/heads/automated-docs' needs: Push-Workflow steps: - name: Checkout repository @@ -139,7 +139,7 @@ jobs: git config --global user.email "${{env.email}}" git add . git commit -m "Update documentation" - git push -f https://$GH_TOKEN@github.com/PalisadoesFoundation/talawa-api.git HEAD:develop + git push -f https://$GH_TOKEN@github.com/PalisadoesFoundation/talawa-api.git HEAD:automated-docs echo -e "🚀${Green} Hurrah! doc updated${NoColor}" env: ACCESS_TOKEN: ${{ secrets.GH_TOKEN }} @@ -152,7 +152,6 @@ jobs: Copy-docs-to-talawa-docs: runs-on: ubuntu-latest - if: github.ref == 'refs/heads/develop' needs: Generate-Documentation steps: - uses: actions/checkout@v3 @@ -194,7 +193,7 @@ jobs: INPUT_MAIL_PASSWORD: ${{ secrets.API_DEMO_MAIL_PASSWORD }} INPUT_LAST_RESORT_SUPERADMIN_EMAIL: ${{ secrets.API_DEMO_LAST_RESORT_SUPERADMIN_EMAIL }} with: - host: ${{ secrets.API_DEMO_HOST }} + host: ${{secrets.API_DEMO_HOST}} username: ${{ secrets.API_DEMO_USERNAME }} key: ${{ secrets.API_DEMO_SSH_KEY }} port: ${{ secrets.API_DEMO_SSH_PORT}} @@ -202,4 +201,4 @@ jobs: command_timeout: 30m script: | python3 /usr/local/bin/scripts/create_env.py --access_token_secret $INPUT_ACCESS_TOKEN_SECRET --refresh_token_secret $INPUT_REFRESH_TOKEN_SECRET --recaptcha_secret_key $INPUT_RECAPTCHA_SECRET_KEY --mail_username $INPUT_MAIL_USERNAME --mail_password $INPUT_MAIL_PASSWORD --last_resort_superadmin_email $INPUT_LAST_RESORT_SUPERADMIN_EMAIL - python3 /usr/local/bin/scripts/deploy.py --path ~/develop --branch develop \ No newline at end of file + python3 /usr/local/bin/scripts/deploy.py --path ~/develop --branch develop diff --git a/README.md b/README.md index bdacd57db57..327fa7941ae 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,11 @@ Core features include: -- [Talawa Components](#talawa-components) -- [Documentation](#documentation) -- [Installation](#installation) -- [Image Upload](#image-upload) +- [Talawa API](#talawa-api) + - [Talawa Components](#talawa-components) + - [Documentation](#documentation) + - [Installation](#installation) + - [Image Upload](#image-upload) @@ -52,4 +53,4 @@ Core features include: ## Image Upload -To enable image upload functionalities create an images folder in the root of the project +To enable image upload functionalities create an images folder in the root of the project \ No newline at end of file diff --git a/codegen.ts b/codegen.ts index 47f6985cadf..3f49de49f01 100644 --- a/codegen.ts +++ b/codegen.ts @@ -47,6 +47,8 @@ const config: CodegenConfig = { EventAttendee: "../models/EventAttendee#InterfaceEventAttendee", + UserFamily: "../models/userFamily#InterfaceUserFamily", + Feedback: "../models/Feedback#InterfaceFeedback", // File: '../models/File#InterfaceFile', diff --git a/package-lock.json b/package-lock.json index 9b98cfc6fa0..f7aecf24509 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24,7 +24,7 @@ "copy-paste": "^1.5.3", "cors": "^2.8.5", "cross-env": "^7.0.3", - "date-fns": "^3.3.0", + "date-fns": "^3.3.1", "dotenv": "^16.4.1", "express": "^4.18.2", "express-mongo-sanitize": "^2.2.0", @@ -48,7 +48,7 @@ "mongoose": "^5.13.21", "mongoose-paginate-v2": "^1.7.0", "morgan": "^1.10.0", - "nanoid": "^3.3.7", + "nanoid": "^5.0.5", "nodemailer": "^6.9.8", "pm2": "^5.2.0", "redis": "^4.6.12", @@ -66,7 +66,7 @@ "@graphql-codegen/cli": "^5.0.0", "@graphql-codegen/typescript": "^4.0.1", "@graphql-codegen/typescript-resolvers": "^4.0.1", - "@graphql-eslint/eslint-plugin": "^3.12.0", + "@graphql-eslint/eslint-plugin": "^3.20.1", "@types/bcryptjs": "^2.4.6", "@types/cls-hooked": "^4.3.8", "@types/copy-paste": "^1.1.30", @@ -85,8 +85,8 @@ "@types/shortid": "^0.0.32", "@types/uuid": "^9.0.7", "@types/validator": "^13.11.7", - "@typescript-eslint/eslint-plugin": "^5.42.0", - "@typescript-eslint/parser": "^5.42.0", + "@typescript-eslint/eslint-plugin": "^6.20.0", + "@typescript-eslint/parser": "^6.20.0", "@vitest/coverage-c8": "^0.24.3", "concurrently": "^8.2.2", "eslint": "^8.56.0", @@ -96,7 +96,7 @@ "get-graphql-schema": "^2.1.2", "graphql-markdown": "^7.0.0", "husky": "^9.0.6", - "lint-staged": "^15.2.0", + "lint-staged": "^15.2.1", "prettier": "^2.7.1", "rimraf": "^5.0.5", "tsx": "^4.7.0", @@ -6246,32 +6246,33 @@ "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", - "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.20.0.tgz", + "integrity": "sha512-fTwGQUnjhoYHeSF6m5pWNkzmDDdsKELYrOBxhjMrofPqCkoC2k3B2wvGHFxa1CTIqkEn88nlW1HVMztjo2K8Hg==", "dev": true, "dependencies": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.62.0", - "@typescript-eslint/type-utils": "5.62.0", - "@typescript-eslint/utils": "5.62.0", + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.20.0", + "@typescript-eslint/type-utils": "6.20.0", + "@typescript-eslint/utils": "6.20.0", + "@typescript-eslint/visitor-keys": "6.20.0", "debug": "^4.3.4", "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", + "eslint": "^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { "typescript": { @@ -6307,25 +6308,26 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", - "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.20.0.tgz", + "integrity": "sha512-bYerPDF/H5v6V76MdMYhjwmwgMA+jlPVqjSDq2cRqMi8bP5sR3Z+RLOiOMad3nsnmDVmn2gAFCyNgh/dIrfP/w==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "5.62.0", - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/scope-manager": "6.20.0", + "@typescript-eslint/types": "6.20.0", + "@typescript-eslint/typescript-estree": "6.20.0", + "@typescript-eslint/visitor-keys": "6.20.0", "debug": "^4.3.4" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "eslint": "^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { "typescript": { @@ -6334,16 +6336,16 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", - "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.20.0.tgz", + "integrity": "sha512-p4rvHQRDTI1tGGMDFQm+GtxP1ZHyAh64WANVoyEcNMpaTFn3ox/3CcgtIlELnRfKzSs/DwYlDccJEtr3O6qBvA==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/visitor-keys": "5.62.0" + "@typescript-eslint/types": "6.20.0", + "@typescript-eslint/visitor-keys": "6.20.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -6351,25 +6353,25 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", - "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.20.0.tgz", + "integrity": "sha512-qnSobiJQb1F5JjN0YDRPHruQTrX7ICsmltXhkV536mp4idGAYrIyr47zF/JmkJtEcAVnIz4gUYJ7gOZa6SmN4g==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "5.62.0", - "@typescript-eslint/utils": "5.62.0", + "@typescript-eslint/typescript-estree": "6.20.0", + "@typescript-eslint/utils": "6.20.0", "debug": "^4.3.4", - "tsutils": "^3.21.0" + "ts-api-utils": "^1.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "*" + "eslint": "^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { "typescript": { @@ -6378,12 +6380,12 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", - "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.20.0.tgz", + "integrity": "sha512-MM9mfZMAhiN4cOEcUOEx+0HmuaW3WBfukBZPCfwSqFnQy0grXYtngKCqpQN339X3RrwtzspWJrpbrupKYUSBXQ==", "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -6391,21 +6393,22 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", - "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.20.0.tgz", + "integrity": "sha512-RnRya9q5m6YYSpBN7IzKu9FmLcYtErkDkc8/dKv81I9QiLLtVBHrjz+Ev/crAqgMNW2FCsoZF4g2QUylMnJz+g==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/visitor-keys": "5.62.0", + "@typescript-eslint/types": "6.20.0", + "@typescript-eslint/visitor-keys": "6.20.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -6417,6 +6420,15 @@ } } }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -6429,6 +6441,21 @@ "node": ">=10" } }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { "version": "7.5.4", "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", @@ -6445,29 +6472,28 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", - "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.20.0.tgz", + "integrity": "sha512-/EKuw+kRu2vAqCoDwDCBtDRU6CTKbUmwwI7SH7AashZ+W+7o8eiyy6V2cdOqN49KsTcASWsC5QeghYuRDTyOOg==", "dev": true, "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.62.0", - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/typescript-estree": "5.62.0", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.20.0", + "@typescript-eslint/types": "6.20.0", + "@typescript-eslint/typescript-estree": "6.20.0", + "semver": "^7.5.4" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "eslint": "^7.0.0 || ^8.0.0" } }, "node_modules/@typescript-eslint/utils/node_modules/lru-cache": { @@ -6498,16 +6524,16 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", - "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.20.0.tgz", + "integrity": "sha512-E8Cp98kRe4gKHjJD4NExXKz/zOJ1A2hhZc+IMVD6i7w4yjIvh6VyuRI0gRtxAsXtoC35uGMaQ9rjI2zJaXDEAw==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.62.0", - "eslint-visitor-keys": "^3.3.0" + "@typescript-eslint/types": "6.20.0", + "eslint-visitor-keys": "^3.4.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -8271,9 +8297,9 @@ "integrity": "sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==" }, "node_modules/date-fns": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-3.3.0.tgz", - "integrity": "sha512-xuouT0GuI2W8yXhCMn/AXbSl1Av3wu2hJXxMnnILTY3bYY0UgNK0qOwVXqdFBrobW5qbX1TuOTgMw7c2H2OuhA==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-3.3.1.tgz", + "integrity": "sha512-y8e109LYGgoQDveiEBD3DYXKba1jWf5BA8YU1FL5Tvm0BTdEfy54WLCwnuYWZNnzzvALy/QQ4Hov+Q9RVRv+Zw==", "funding": { "type": "github", "url": "https://github.com/sponsors/kossnocorp" @@ -9300,19 +9326,6 @@ "@microsoft/tsdoc-config": "0.16.2" } }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, "node_modules/eslint-visitor-keys": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", @@ -9460,15 +9473,6 @@ "node": ">=4.0" } }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", @@ -11067,12 +11071,12 @@ } }, "node_modules/husky": { - "version": "9.0.6", - "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.6.tgz", - "integrity": "sha512-EEuw/rfTiMjOfuL7pGO/i9otg1u36TXxqjIA6D9qxVjd/UXoDOsLor/BSFf5hTK50shwzCU3aVVwdXDp/lp7RA==", + "version": "9.0.10", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.10.tgz", + "integrity": "sha512-TQGNknoiy6bURzIO77pPRu+XHi6zI7T93rX+QnJsoYFf3xdjKOur+IlfqzJGMHIK/wXrLg+GsvMs8Op7vI2jVA==", "dev": true, "bin": { - "husky": "bin.js" + "husky": "bin.mjs" }, "engines": { "node": ">=18" @@ -12154,9 +12158,9 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "node_modules/lint-staged": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.2.0.tgz", - "integrity": "sha512-TFZzUEV00f+2YLaVPWBWGAMq7So6yQx+GG8YRMDeOEIf95Zn5RyiLMsEiX4KTNl9vq/w+NqRJkLA1kPIo15ufQ==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.2.1.tgz", + "integrity": "sha512-dhwAPnM85VdshybV9FWI/9ghTvMLoQLEXgVMx+ua2DN7mdfzd/tRfoU2yhMcBac0RHkofoxdnnJUokr8s4zKmQ==", "dev": true, "dependencies": { "chalk": "5.3.0", @@ -12164,7 +12168,7 @@ "debug": "4.3.4", "execa": "8.0.1", "lilconfig": "3.0.0", - "listr2": "8.0.0", + "listr2": "8.0.1", "micromatch": "4.0.5", "pidtree": "0.6.0", "string-argv": "0.3.2", @@ -12281,9 +12285,9 @@ } }, "node_modules/lint-staged/node_modules/listr2": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.0.0.tgz", - "integrity": "sha512-u8cusxAcyqAiQ2RhYvV7kRKNLgUvtObIbhOX2NCXqvp1UU32xIg5CT22ykS2TPKJXZWJwtK3IKLiqAGlGNE+Zg==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.0.1.tgz", + "integrity": "sha512-ovJXBXkKGfq+CwmKTjluEqFi3p4h8xvkxGQQAQan22YCgef4KZ1mKGjzfGh6PL6AW5Csw0QiQPNuQyH+6Xk3hA==", "dev": true, "dependencies": { "cli-truncate": "^4.0.0", @@ -12404,9 +12408,9 @@ } }, "node_modules/lint-staged/node_modules/string-width": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.0.0.tgz", - "integrity": "sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.1.0.tgz", + "integrity": "sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==", "dev": true, "dependencies": { "emoji-regex": "^10.3.0", @@ -13300,9 +13304,9 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.5.tgz", + "integrity": "sha512-/Veqm+QKsyMY3kqi4faWplnY1u+VuKO3dD2binyPIybP31DRO29bPF+1mszgLnrR2KqSLceFLBNw0zmvDzN1QQ==", "funding": [ { "type": "github", @@ -13310,10 +13314,10 @@ } ], "bin": { - "nanoid": "bin/nanoid.cjs" + "nanoid": "bin/nanoid.js" }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": "^18 || >=20" } }, "node_modules/natural-compare": { @@ -13322,12 +13326,6 @@ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, - "node_modules/natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true - }, "node_modules/needle": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/needle/-/needle-2.4.0.tgz", @@ -14267,6 +14265,24 @@ "node": "^10 || ^12 || >=14" } }, + "node_modules/postcss/node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", @@ -16088,6 +16104,18 @@ "node": ">= 14.0.0" } }, + "node_modules/ts-api-utils": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "dev": true, + "engines": { + "node": ">=16.13.0" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, "node_modules/ts-log": { "version": "2.2.5", "resolved": "https://registry.npmjs.org/ts-log/-/ts-log-2.2.5.tgz", @@ -16123,27 +16151,6 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - } - }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, "node_modules/tsx": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.7.0.tgz", @@ -21678,21 +21685,22 @@ "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" }, "@typescript-eslint/eslint-plugin": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", - "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.20.0.tgz", + "integrity": "sha512-fTwGQUnjhoYHeSF6m5pWNkzmDDdsKELYrOBxhjMrofPqCkoC2k3B2wvGHFxa1CTIqkEn88nlW1HVMztjo2K8Hg==", "dev": true, "requires": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.62.0", - "@typescript-eslint/type-utils": "5.62.0", - "@typescript-eslint/utils": "5.62.0", + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.20.0", + "@typescript-eslint/type-utils": "6.20.0", + "@typescript-eslint/utils": "6.20.0", + "@typescript-eslint/visitor-keys": "6.20.0", "debug": "^4.3.4", "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" }, "dependencies": { "lru-cache": { @@ -21716,60 +21724,71 @@ } }, "@typescript-eslint/parser": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", - "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.20.0.tgz", + "integrity": "sha512-bYerPDF/H5v6V76MdMYhjwmwgMA+jlPVqjSDq2cRqMi8bP5sR3Z+RLOiOMad3nsnmDVmn2gAFCyNgh/dIrfP/w==", "dev": true, "requires": { - "@typescript-eslint/scope-manager": "5.62.0", - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/scope-manager": "6.20.0", + "@typescript-eslint/types": "6.20.0", + "@typescript-eslint/typescript-estree": "6.20.0", + "@typescript-eslint/visitor-keys": "6.20.0", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", - "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.20.0.tgz", + "integrity": "sha512-p4rvHQRDTI1tGGMDFQm+GtxP1ZHyAh64WANVoyEcNMpaTFn3ox/3CcgtIlELnRfKzSs/DwYlDccJEtr3O6qBvA==", "dev": true, "requires": { - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/visitor-keys": "5.62.0" + "@typescript-eslint/types": "6.20.0", + "@typescript-eslint/visitor-keys": "6.20.0" } }, "@typescript-eslint/type-utils": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", - "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.20.0.tgz", + "integrity": "sha512-qnSobiJQb1F5JjN0YDRPHruQTrX7ICsmltXhkV536mp4idGAYrIyr47zF/JmkJtEcAVnIz4gUYJ7gOZa6SmN4g==", "dev": true, "requires": { - "@typescript-eslint/typescript-estree": "5.62.0", - "@typescript-eslint/utils": "5.62.0", + "@typescript-eslint/typescript-estree": "6.20.0", + "@typescript-eslint/utils": "6.20.0", "debug": "^4.3.4", - "tsutils": "^3.21.0" + "ts-api-utils": "^1.0.1" } }, "@typescript-eslint/types": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", - "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.20.0.tgz", + "integrity": "sha512-MM9mfZMAhiN4cOEcUOEx+0HmuaW3WBfukBZPCfwSqFnQy0grXYtngKCqpQN339X3RrwtzspWJrpbrupKYUSBXQ==", "dev": true }, "@typescript-eslint/typescript-estree": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", - "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.20.0.tgz", + "integrity": "sha512-RnRya9q5m6YYSpBN7IzKu9FmLcYtErkDkc8/dKv81I9QiLLtVBHrjz+Ev/crAqgMNW2FCsoZF4g2QUylMnJz+g==", "dev": true, "requires": { - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/visitor-keys": "5.62.0", + "@typescript-eslint/types": "6.20.0", + "@typescript-eslint/visitor-keys": "6.20.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" }, "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -21779,6 +21798,15 @@ "yallist": "^4.0.0" } }, + "minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, "semver": { "version": "7.5.4", "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", @@ -21791,19 +21819,18 @@ } }, "@typescript-eslint/utils": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", - "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.20.0.tgz", + "integrity": "sha512-/EKuw+kRu2vAqCoDwDCBtDRU6CTKbUmwwI7SH7AashZ+W+7o8eiyy6V2cdOqN49KsTcASWsC5QeghYuRDTyOOg==", "dev": true, "requires": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.62.0", - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/typescript-estree": "5.62.0", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.20.0", + "@typescript-eslint/types": "6.20.0", + "@typescript-eslint/typescript-estree": "6.20.0", + "semver": "^7.5.4" }, "dependencies": { "lru-cache": { @@ -21827,13 +21854,13 @@ } }, "@typescript-eslint/visitor-keys": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", - "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.20.0.tgz", + "integrity": "sha512-E8Cp98kRe4gKHjJD4NExXKz/zOJ1A2hhZc+IMVD6i7w4yjIvh6VyuRI0gRtxAsXtoC35uGMaQ9rjI2zJaXDEAw==", "dev": true, "requires": { - "@typescript-eslint/types": "5.62.0", - "eslint-visitor-keys": "^3.3.0" + "@typescript-eslint/types": "6.20.0", + "eslint-visitor-keys": "^3.4.1" } }, "@ungap/structured-clone": { @@ -23173,9 +23200,9 @@ "integrity": "sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==" }, "date-fns": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-3.3.0.tgz", - "integrity": "sha512-xuouT0GuI2W8yXhCMn/AXbSl1Av3wu2hJXxMnnILTY3bYY0UgNK0qOwVXqdFBrobW5qbX1TuOTgMw7c2H2OuhA==" + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-3.3.1.tgz", + "integrity": "sha512-y8e109LYGgoQDveiEBD3DYXKba1jWf5BA8YU1FL5Tvm0BTdEfy54WLCwnuYWZNnzzvALy/QQ4Hov+Q9RVRv+Zw==" }, "dayjs": { "version": "1.11.10", @@ -23915,16 +23942,6 @@ "@microsoft/tsdoc-config": "0.16.2" } }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, "eslint-visitor-keys": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", @@ -23981,12 +23998,6 @@ } } }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true - }, "esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", @@ -25177,9 +25188,9 @@ "dev": true }, "husky": { - "version": "9.0.6", - "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.6.tgz", - "integrity": "sha512-EEuw/rfTiMjOfuL7pGO/i9otg1u36TXxqjIA6D9qxVjd/UXoDOsLor/BSFf5hTK50shwzCU3aVVwdXDp/lp7RA==", + "version": "9.0.10", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.10.tgz", + "integrity": "sha512-TQGNknoiy6bURzIO77pPRu+XHi6zI7T93rX+QnJsoYFf3xdjKOur+IlfqzJGMHIK/wXrLg+GsvMs8Op7vI2jVA==", "dev": true }, "i18n": { @@ -25969,9 +25980,9 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "lint-staged": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.2.0.tgz", - "integrity": "sha512-TFZzUEV00f+2YLaVPWBWGAMq7So6yQx+GG8YRMDeOEIf95Zn5RyiLMsEiX4KTNl9vq/w+NqRJkLA1kPIo15ufQ==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.2.1.tgz", + "integrity": "sha512-dhwAPnM85VdshybV9FWI/9ghTvMLoQLEXgVMx+ua2DN7mdfzd/tRfoU2yhMcBac0RHkofoxdnnJUokr8s4zKmQ==", "dev": true, "requires": { "chalk": "5.3.0", @@ -25979,7 +25990,7 @@ "debug": "4.3.4", "execa": "8.0.1", "lilconfig": "3.0.0", - "listr2": "8.0.0", + "listr2": "8.0.1", "micromatch": "4.0.5", "pidtree": "0.6.0", "string-argv": "0.3.2", @@ -26045,9 +26056,9 @@ "dev": true }, "listr2": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.0.0.tgz", - "integrity": "sha512-u8cusxAcyqAiQ2RhYvV7kRKNLgUvtObIbhOX2NCXqvp1UU32xIg5CT22ykS2TPKJXZWJwtK3IKLiqAGlGNE+Zg==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.0.1.tgz", + "integrity": "sha512-ovJXBXkKGfq+CwmKTjluEqFi3p4h8xvkxGQQAQan22YCgef4KZ1mKGjzfGh6PL6AW5Csw0QiQPNuQyH+6Xk3hA==", "dev": true, "requires": { "cli-truncate": "^4.0.0", @@ -26128,9 +26139,9 @@ } }, "string-width": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.0.0.tgz", - "integrity": "sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.1.0.tgz", + "integrity": "sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==", "dev": true, "requires": { "emoji-regex": "^10.3.0", @@ -26788,9 +26799,9 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.5.tgz", + "integrity": "sha512-/Veqm+QKsyMY3kqi4faWplnY1u+VuKO3dD2binyPIybP31DRO29bPF+1mszgLnrR2KqSLceFLBNw0zmvDzN1QQ==" }, "natural-compare": { "version": "1.4.0", @@ -26798,12 +26809,6 @@ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, - "natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true - }, "needle": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/needle/-/needle-2.4.0.tgz", @@ -27490,6 +27495,14 @@ "nanoid": "^3.3.7", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" + }, + "dependencies": { + "nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true + } } }, "prelude-ls": { @@ -28868,6 +28881,13 @@ "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.4.1.tgz", "integrity": "sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==" }, + "ts-api-utils": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "dev": true, + "requires": {} + }, "ts-log": { "version": "2.2.5", "resolved": "https://registry.npmjs.org/ts-log/-/ts-log-2.2.5.tgz", @@ -28902,23 +28922,6 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, - "tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "requires": { - "tslib": "^1.8.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - } - } - }, "tsx": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.7.0.tgz", diff --git a/package.json b/package.json index 29cb12c0af8..570b502bd9f 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,7 @@ "copy-paste": "^1.5.3", "cors": "^2.8.5", "cross-env": "^7.0.3", - "date-fns": "^3.3.0", + "date-fns": "^3.3.1", "dotenv": "^16.4.1", "express": "^4.18.2", "express-mongo-sanitize": "^2.2.0", @@ -82,7 +82,7 @@ "mongoose": "^5.13.21", "mongoose-paginate-v2": "^1.7.0", "morgan": "^1.10.0", - "nanoid": "^3.3.7", + "nanoid": "^5.0.5", "nodemailer": "^6.9.8", "pm2": "^5.2.0", "redis": "^4.6.12", @@ -100,7 +100,7 @@ "@graphql-codegen/cli": "^5.0.0", "@graphql-codegen/typescript": "^4.0.1", "@graphql-codegen/typescript-resolvers": "^4.0.1", - "@graphql-eslint/eslint-plugin": "^3.12.0", + "@graphql-eslint/eslint-plugin": "^3.20.1", "@types/bcryptjs": "^2.4.6", "@types/cls-hooked": "^4.3.8", "@types/copy-paste": "^1.1.30", @@ -119,8 +119,8 @@ "@types/shortid": "^0.0.32", "@types/uuid": "^9.0.7", "@types/validator": "^13.11.7", - "@typescript-eslint/eslint-plugin": "^5.42.0", - "@typescript-eslint/parser": "^5.42.0", + "@typescript-eslint/eslint-plugin": "^6.20.0", + "@typescript-eslint/parser": "^6.20.0", "@vitest/coverage-c8": "^0.24.3", "concurrently": "^8.2.2", "eslint": "^8.56.0", @@ -130,7 +130,7 @@ "get-graphql-schema": "^2.1.2", "graphql-markdown": "^7.0.0", "husky": "^9.0.6", - "lint-staged": "^15.2.0", + "lint-staged": "^15.2.1", "prettier": "^2.7.1", "rimraf": "^5.0.5", "tsx": "^4.7.0", diff --git a/sample_data/userFamilies.json b/sample_data/userFamilies.json new file mode 100644 index 00000000000..b936f133662 --- /dev/null +++ b/sample_data/userFamilies.json @@ -0,0 +1,20 @@ +[ + { + "_id": "60f18f31b7e5c4a2a4c3f905", + "title": "Smith Family", + "users": [ + "64378abd85008f171cf2990d", + "65378abd85008f171cf2990d", + "66378abd85008f171cf2990d" + ] + }, + { + "_id": "60f18f31b7e5c4a2a4c3f906", + "title": "Johnson Family", + "users": [ + "66378abd85008f171cf2990d", + "65378abd85008f171cf2990d", + "64378abd85008f171cf2990d" + ] + } +] diff --git a/schema.graphql b/schema.graphql index 9b4ab8c8090..6f7c101ea15 100644 --- a/schema.graphql +++ b/schema.graphql @@ -521,6 +521,7 @@ type Mutation { addUserCustomData(dataName: String!, dataValue: Any!, organizationId: ID!): UserCustomData! addUserImage(file: String!): User! addUserToGroupChat(chatId: ID!, userId: ID!): GroupChat! + addUserToUserFamily(familyId: ID!, userId: ID!): UserFamily! adminRemoveEvent(eventId: ID!): Event! adminRemoveGroup(groupId: ID!): GroupChat! assignUserTag(input: ToggleUserTagAssignInput!): User @@ -543,6 +544,7 @@ type Mutation { createPlugin(pluginCreatedBy: String!, pluginDesc: String!, pluginName: String!, uninstalledOrgs: [ID!]): Plugin! createPost(data: PostInput!, file: String): Post createSampleOrganization: Boolean! + createUserFamily(data: createUserFamilyInput!): UserFamily! createUserTag(input: CreateUserTagInput!): UserTag deleteAdvertisementById(id: ID!): DeletePayload! deleteDonationById(id: ID!): DeletePayload! @@ -574,7 +576,9 @@ type Mutation { removePost(id: ID!): Post removeSampleOrganization: Boolean! removeUserCustomData(organizationId: ID!): UserCustomData! + removeUserFamily(familyId: ID!): UserFamily! removeUserFromGroupChat(chatId: ID!, userId: ID!): GroupChat! + removeUserFromUserFamily(familyId: ID!, userId: ID!): UserFamily! removeUserImage: User! removeUserTag(id: ID!): UserTag revokeRefreshTokenForUser: Boolean! @@ -1074,6 +1078,14 @@ type UserEdge { node: User! } +type UserFamily { + _id: ID! + admins: [User!]! + creator: User! + title: String + users: [User!]! +} + input UserInput { appLanguageCode: String email: EmailAddress! @@ -1236,4 +1248,9 @@ input createGroupChatInput { organizationId: ID! title: String! userIds: [ID!]! +} + +input createUserFamilyInput { + title: String! + userIds: [ID!]! } \ No newline at end of file diff --git a/src/app.ts b/src/app.ts index e3eeef04d35..e26d89fda33 100644 --- a/src/app.ts +++ b/src/app.ts @@ -11,7 +11,6 @@ import { appConfig } from "./config"; import { requestContext, requestTracing, stream } from "./libraries"; //@ts-ignore import graphqlUploadExpress from "graphql-upload/graphqlUploadExpress.mjs"; - const app = express(); app.use(requestTracing.middleware()); diff --git a/src/checks.ts b/src/checks.ts index 425f980c17a..41147f27813 100644 --- a/src/checks.ts +++ b/src/checks.ts @@ -3,7 +3,6 @@ import { User } from "./models"; import { generateErrorMessage } from "zod-error"; import { getEnvIssues } from "./env"; import { logger } from "./libraries"; - const logWarningForSuperAdminEnvVariable = async (): Promise => { const superAdminExist = await User.exists({ userType: "SUPERADMIN" }); const isVariablePresentInEnvFile = !!LAST_RESORT_SUPERADMIN_EMAIL; diff --git a/src/constants.ts b/src/constants.ts index e5945d74540..b454f7e6761 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -177,12 +177,24 @@ export const LENGTH_VALIDATION_ERROR = { PARAM: "stringValidation", }; +export const USER_FAMILY_MIN_MEMBERS_ERROR_CODE = { + MESSAGE: "InputValidationError", + CODE: "membersInUserFamilyLessThanOne", + PARAM: "membersInUserFamilyLessThanOne", +}; + export const REGEX_VALIDATION_ERROR = { MESSAGE: "Error: Entered value must be a valid string", CODE: "string.notValid", PARAM: "stringValidation", }; +export const USER_FAMILY_NOT_FOUND_ERROR = { + MESSAGE: "Error: User Family Not Found", + CODE: "userfamilyNotFound", + PARAM: "userfamilyNotFound", +}; + export const USER_NOT_AUTHORIZED_SUPERADMIN = { MESSAGE: "Error: Current user must be a SUPERADMIN", CODE: "role.notValid.superadmin", diff --git a/src/models/ActionItem.ts b/src/models/ActionItem.ts index d8832d579c7..1cbbb2ef499 100644 --- a/src/models/ActionItem.ts +++ b/src/models/ActionItem.ts @@ -6,7 +6,7 @@ import type { InterfaceActionItemCategory } from "./ActionItemCategory"; import { MILLISECONDS_IN_A_WEEK } from "../constants"; /** - * This is an interface that represents a database(MongoDB) document for ActionItem. + * This is an interface that represents a database(MongoDB) document for ActionItem [test change]. */ export interface InterfaceActionItem { diff --git a/src/models/User.ts b/src/models/User.ts index 8f8eb098be5..befe7ee2f37 100644 --- a/src/models/User.ts +++ b/src/models/User.ts @@ -6,7 +6,6 @@ import type { InterfaceEvent } from "./Event"; import type { InterfaceMembershipRequest } from "./MembershipRequest"; import type { InterfaceOrganization } from "./Organization"; import { createLoggingMiddleware } from "../libraries/dbLogger"; -import { LOG } from "../constants"; /** * This is an interface that represents a database(MongoDB) document for User. diff --git a/src/models/userFamily.ts b/src/models/userFamily.ts new file mode 100644 index 00000000000..a9d8577ea41 --- /dev/null +++ b/src/models/userFamily.ts @@ -0,0 +1,56 @@ +import type { PopulatedDoc, Types, Document, Model } from "mongoose"; +import { Schema, model, models } from "mongoose"; +import type { InterfaceUser } from "./User"; +/** + * This is an interface that represents a database(MongoDB) document for Family. + */ + +export interface InterfaceUserFamily { + _id: Types.ObjectId; + title: string; + users: PopulatedDoc[]; + admins: PopulatedDoc[]; + creator: PopulatedDoc[]; +} + +/** + * @param title - Name of the user Family (type: String) + * Description: Name of the user Family. + */ + +/** + * @param users - Members associated with the user Family (type: String) + * Description: Members associated with the user Family. + */ +const userFamilySchema = new Schema({ + title: { + type: String, + required: true, + }, + users: [ + { + type: Schema.Types.ObjectId, + ref: "User", + required: true, + }, + ], + admins: [ + { + type: Schema.Types.ObjectId, + ref: "User", + required: true, + }, + ], + creator: { + type: Schema.Types.ObjectId, + ref: "User", + required: true, + }, +}); + +const userFamilyModel = (): Model => + model("UserFamily", userFamilySchema); + +// This syntax is needed to prevent Mongoose OverwriteModelError while running tests. +export const UserFamily = (models.UserFamily || + userFamilyModel()) as ReturnType; diff --git a/src/resolvers/Mutation/addUserToUserFamily.ts b/src/resolvers/Mutation/addUserToUserFamily.ts new file mode 100644 index 00000000000..1c1cd590e36 --- /dev/null +++ b/src/resolvers/Mutation/addUserToUserFamily.ts @@ -0,0 +1,82 @@ +import "dotenv/config"; +import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; +import { errors, requestContext } from "../../libraries"; +import { adminCheck } from "../../utilities/userFamilyAdminCheck"; +import { User } from "../../models"; +import { UserFamily } from "../../models/userFamily"; +import { + USER_FAMILY_NOT_FOUND_ERROR, + USER_ALREADY_MEMBER_ERROR, + USER_NOT_FOUND_ERROR, +} from "../../constants"; +/** + * This function adds user to the family. + * @param _parent - parent of current request + * @param args - payload provided with the request + * @param context - context of the entire application + * @remarks The following checks are done: + * 1. If the family exists + * 2. If the user exists + * 3. If the user is already member of the family + * 4. If the user is admin of the user Family + * @returns Updated family + */ +export const addUserToUserFamily: MutationResolvers["addUserToUserFamily"] = + async (_parent, args, context) => { + const userFamily = await UserFamily.findOne({ + _id: args.familyId, + }).lean(); + + const currentUser = await User.findById({ + _id: context.userId, + }); + + // Checks whether user with _id === args.userId exists. + if (currentUser === null) { + throw new errors.NotFoundError( + requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), + USER_NOT_FOUND_ERROR.CODE, + USER_NOT_FOUND_ERROR.PARAM + ); + } + + //check wheather family exists + if (!userFamily) { + throw new errors.NotFoundError( + requestContext.translate(USER_FAMILY_NOT_FOUND_ERROR.MESSAGE), + USER_FAMILY_NOT_FOUND_ERROR.CODE, + USER_FAMILY_NOT_FOUND_ERROR.PARAM + ); + } + + //check whether user is admin of the family + await adminCheck(currentUser?._id, userFamily); + + const isUserMemberOfUserFamily = userFamily.users.some((user) => { + user.equals(args.userId); + }); + + // Checks whether user with _id === args.userId is already a member of Family. + if (isUserMemberOfUserFamily) { + throw new errors.ConflictError( + requestContext.translate(USER_ALREADY_MEMBER_ERROR.MESSAGE), + USER_ALREADY_MEMBER_ERROR.CODE, + USER_ALREADY_MEMBER_ERROR.PARAM + ); + } + + // Adds args.userId to users lists on family group and return the updated family. + return await UserFamily.findOneAndUpdate( + { + _id: args.familyId, + }, + { + $push: { + users: args.userId, + }, + }, + { + new: true, + } + ).lean(); + }; diff --git a/src/resolvers/Mutation/createUserFamily.ts b/src/resolvers/Mutation/createUserFamily.ts new file mode 100644 index 00000000000..9a7f911625f --- /dev/null +++ b/src/resolvers/Mutation/createUserFamily.ts @@ -0,0 +1,81 @@ +import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; +import { User } from "../../models"; +import { errors, requestContext } from "../../libraries"; +import { + LENGTH_VALIDATION_ERROR, + USER_FAMILY_MIN_MEMBERS_ERROR_CODE, + USER_NOT_FOUND_ERROR, +} from "../../constants"; +import { isValidString } from "../../libraries/validators/validateString"; +import { UserFamily } from "../../models/userFamily"; +import { superAdminCheck } from "../../utilities"; +/** + * This Function enables to create a user Family + * @param _parent - parent of current request + * @param args - payload provided with the request + * @param context - context of entire application + * @remarks - The following checks are done: + * 1. If the user exists + * 2. If the user is super admin + * 3. If there are atleast two members in the family. + * @returns Created user Family + */ +export const createUserFamily: MutationResolvers["createUserFamily"] = async ( + _parent, + args, + context +) => { + const currentUser = await User.findById({ + _id: context.userId, + }); + + // Checks whether user with _id === args.userId exists. + if (!currentUser) { + throw new errors.NotFoundError( + requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), + USER_NOT_FOUND_ERROR.CODE, + USER_NOT_FOUND_ERROR.PARAM + ); + } + + // Check whether the user is super admin. + superAdminCheck(currentUser); + + let validationResultName = { + isLessThanMaxLength: false, + }; + + if (args && args.data && typeof args.data.title === "string") { + validationResultName = isValidString(args.data.title, 256); + } + + if (!validationResultName.isLessThanMaxLength) { + throw new errors.InputValidationError( + requestContext.translate( + `${LENGTH_VALIDATION_ERROR.MESSAGE} 256 characters in name` + ), + LENGTH_VALIDATION_ERROR.CODE + ); + } + + // Check if there are at least 2 members + if (args.data?.userIds.length < 2) { + throw new errors.InputValidationError( + requestContext.translate(USER_FAMILY_MIN_MEMBERS_ERROR_CODE.MESSAGE), + USER_FAMILY_MIN_MEMBERS_ERROR_CODE.CODE, + USER_FAMILY_MIN_MEMBERS_ERROR_CODE.PARAM + ); + } + + const userfamilyTitle = args.data?.title; + + const createdUserFamily = await UserFamily.create({ + ...args.data, + title: userfamilyTitle, + users: [context.userId, ...args.data.userIds], + admins: [context.userId], + creator: context.userId, + }); + + return createdUserFamily.toObject(); +}; diff --git a/src/resolvers/Mutation/index.ts b/src/resolvers/Mutation/index.ts index 68e6c4c916c..2d3332bcf80 100644 --- a/src/resolvers/Mutation/index.ts +++ b/src/resolvers/Mutation/index.ts @@ -53,6 +53,10 @@ import { removeComment } from "./removeComment"; import { removeDirectChat } from "./removeDirectChat"; import { removeEvent } from "./removeEvent"; import { removeEventAttendee } from "./removeEventAttendee"; +import { addUserToUserFamily } from "./addUserToUserFamily"; +import { removeUserFromUserFamily } from "./removeUserFromUserFamily"; +import { removeUserFamily } from "./removeUserFamily"; +import { createUserFamily } from "./createUserFamily"; import { removeGroupChat } from "./removeGroupChat"; import { removeAdvertisement } from "./removeAdvertisement"; import { removeMember } from "./removeMember"; @@ -104,6 +108,10 @@ export const Mutation: MutationResolvers = { addUserToGroupChat, adminRemoveEvent, adminRemoveGroup, + addUserToUserFamily, + removeUserFamily, + removeUserFromUserFamily, + createUserFamily, assignUserTag, blockPluginCreationBySuperadmin, blockUser, diff --git a/src/resolvers/Mutation/removeUserFamily.ts b/src/resolvers/Mutation/removeUserFamily.ts new file mode 100644 index 00000000000..38181ad1a97 --- /dev/null +++ b/src/resolvers/Mutation/removeUserFamily.ts @@ -0,0 +1,60 @@ +import { + USER_FAMILY_NOT_FOUND_ERROR, + USER_NOT_FOUND_ERROR, +} from "../../constants"; +import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; +import { errors, requestContext } from "../../libraries"; +import { UserFamily } from "../../models/userFamily"; +import { User } from "../../models"; +import { superAdminCheck } from "../../utilities"; +/** + * This function enables to remove a user family. + * @param _parent - parent of current request + * @param args - payload provided with the request + * @param context - context of entire application. + * @remarks - The following checks are done: + * 1. If the user family exists. + * 2. If the user is super admin. + * @returns Deleted user family. + */ +export const removeUserFamily: MutationResolvers["removeUserFamily"] = async ( + _parent, + args, + context +) => { + const userFamily = await UserFamily.findOne({ + _id: args.familyId, + }).lean(); + + const currentUser = await User.findOne({ + _id: context.userId, + }); + + // Checks whether currentUser exists. + if (!currentUser) { + throw new errors.NotFoundError( + requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), + USER_NOT_FOUND_ERROR.CODE, + USER_NOT_FOUND_ERROR.PARAM + ); + } + + // Checks whether currentUser is a SUPERADMIN + superAdminCheck(currentUser); + + // Checks if a family with _id === args.familyId exists + if (!userFamily) { + throw new errors.NotFoundError( + requestContext.translate(USER_FAMILY_NOT_FOUND_ERROR.MESSAGE), + USER_FAMILY_NOT_FOUND_ERROR.CODE, + USER_FAMILY_NOT_FOUND_ERROR.PARAM + ); + } + + // Deletes the UserFamily. + await UserFamily.deleteOne({ + _id: userFamily._id, + }); + + return userFamily; +}; diff --git a/src/resolvers/Mutation/removeUserFromUserFamily.ts b/src/resolvers/Mutation/removeUserFromUserFamily.ts new file mode 100644 index 00000000000..17d411f6720 --- /dev/null +++ b/src/resolvers/Mutation/removeUserFromUserFamily.ts @@ -0,0 +1,129 @@ +import { + ADMIN_REMOVING_ADMIN, + ADMIN_REMOVING_CREATOR, + USER_FAMILY_NOT_FOUND_ERROR, + USER_NOT_FOUND_ERROR, + USER_REMOVING_SELF, +} from "../../constants"; +import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; +import { errors, requestContext } from "../../libraries"; +import { User } from "../../models"; +import { UserFamily } from "../../models/userFamily"; +import { adminCheck } from "../../utilities/userFamilyAdminCheck"; +import { Types } from "mongoose"; +/** + * This function enables to remove a user from group chat. + * @param _parent - parent of current request + * @param args - payload provided with the request + * @param context - context of entire publication + * @remarks The following checks are done: + * 1. If the family exists. + * 2. If the user to be removed is member of the organisation. + * 3. If the user is admin of the family + * @returns Updated group chat. + */ +export const removeUserFromUserFamily: MutationResolvers["removeUserFromUserFamily"] = + async (_parent, args, context) => { + const userFamily = await UserFamily.findById({ + _id: args.familyId, + }).lean(); + + const currentUser = await User.findById({ + _id: context.userId, + }); + + const user = await User.findById({ + _id: args.userId, + }); + + // Check whether the user exists. + if (!user) { + throw new errors.NotFoundError( + requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), + USER_NOT_FOUND_ERROR.CODE, + USER_NOT_FOUND_ERROR.PARAM + ); + } + + const userIsMemberOfUserFamily = userFamily?.users.some((member) => { + return Types.ObjectId(member).equals(user?._id); + }); + + const userIdUserFamilyAdmin = userFamily?.admins.some((admin) => { + Types.ObjectId(admin).equals(user?._id); + }); + + //Check whether user family exists. + if (!userFamily) { + throw new errors.NotFoundError( + requestContext.translate(USER_FAMILY_NOT_FOUND_ERROR.MESSAGE), + USER_FAMILY_NOT_FOUND_ERROR.CODE, + USER_FAMILY_NOT_FOUND_ERROR.PARAM + ); + } + + //check whether user is admin of the family. + await adminCheck(currentUser?._id, userFamily); + + //Check whether user is member of the family. + if (!userIsMemberOfUserFamily) { + throw new errors.NotFoundError( + requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), + USER_NOT_FOUND_ERROR.CODE, + USER_NOT_FOUND_ERROR.PARAM + ); + } + + // Check if the current user is removing self + if (user._id.equals(currentUser?._id)) { + throw new errors.ConflictError( + requestContext.translate(USER_REMOVING_SELF.MESSAGE), + USER_REMOVING_SELF.CODE, + USER_REMOVING_SELF.PARAM + ); + } + + /* + userIsUserFamilyAdmin being true implies that the current user is an admin of userFamily. + If userIsUserFamilyAdmin is true pushes error message to errors list and breaks out of loop. + */ + if (userIdUserFamilyAdmin) { + throw new errors.ConflictError( + requestContext.translate(ADMIN_REMOVING_ADMIN.MESSAGE), + ADMIN_REMOVING_ADMIN.CODE, + ADMIN_REMOVING_ADMIN.PARAM + ); + } + + /* + Administrators cannot remove creator of userFamily from the members list. + Following if block matches userFamily's creator's id to + user's id. Match being true implies that current user is the creator + of userFamily. If match is true assigns error message to errors list + and breaks out of loop. + */ + if (Types.ObjectId(userFamily.creator.toString()).equals(user._id)) { + throw new errors.UnauthorizedError( + requestContext.translate(ADMIN_REMOVING_CREATOR.MESSAGE), + ADMIN_REMOVING_CREATOR.CODE, + ADMIN_REMOVING_CREATOR.PARAM + ); + } + + //Removes args.userId from users list of user family ans return the updated family. + return await UserFamily.findOneAndUpdate( + { + _id: args.familyId, + }, + { + $set: { + users: userFamily.users.filter( + (user) => user.toString() !== args.userId.toString() + ), + }, + }, + { + new: true, + } + ).lean(); + }; diff --git a/src/resolvers/UserFamily/admins.ts b/src/resolvers/UserFamily/admins.ts new file mode 100644 index 00000000000..9571bd0c021 --- /dev/null +++ b/src/resolvers/UserFamily/admins.ts @@ -0,0 +1,14 @@ +import { User } from "../../models"; +import type { UserFamilyResolvers } from "../../types/generatedGraphQLTypes"; +/** + * This resolver function will fetch and return the admins of the Organization from database. + * @param parent - An object that is the return value of the resolver for this field's parent. + * @returns An object that contains the list of all admins of the organization. + */ +export const admins: UserFamilyResolvers["admins"] = async (parent) => { + return await User.find({ + _id: { + $in: parent.admins, + }, + }).lean(); +}; diff --git a/src/resolvers/UserFamily/creator.ts b/src/resolvers/UserFamily/creator.ts new file mode 100644 index 00000000000..9e10abf8f41 --- /dev/null +++ b/src/resolvers/UserFamily/creator.ts @@ -0,0 +1,24 @@ +import { User } from "../../models"; +import { errors, requestContext } from "../../libraries"; +import type { UserFamilyResolvers } from "../../types/generatedGraphQLTypes"; +import { USER_NOT_FOUND_ERROR } from "../../constants"; +/** + * This resolver function will fetch and return the creator of the Organization from database. + * @param parent - An object that is the return value of the resolver for this field's parent. + * @returns An object that contains the creator data. If the creator not exists then throws an `NotFoundError` error. + */ +export const creator: UserFamilyResolvers["creator"] = async (parent) => { + const user = await User.findOne({ + _id: parent.creator.toString(), + }).lean(); + + if (!user) { + throw new errors.NotFoundError( + requestContext.translate(USER_NOT_FOUND_ERROR.MESSAGE), + USER_NOT_FOUND_ERROR.CODE, + USER_NOT_FOUND_ERROR.PARAM + ); + } + + return user; +}; diff --git a/src/resolvers/UserFamily/index.ts b/src/resolvers/UserFamily/index.ts new file mode 100644 index 00000000000..a89939e37d6 --- /dev/null +++ b/src/resolvers/UserFamily/index.ts @@ -0,0 +1,10 @@ +import type { UserFamilyResolvers } from "../../types/generatedGraphQLTypes"; +import { users } from "./users"; +import { admins } from "./admins"; +import { creator } from "./creator"; + +export const UserFamily: UserFamilyResolvers = { + users, + admins, + creator, +}; diff --git a/src/resolvers/UserFamily/users.ts b/src/resolvers/UserFamily/users.ts new file mode 100644 index 00000000000..c02ba909f47 --- /dev/null +++ b/src/resolvers/UserFamily/users.ts @@ -0,0 +1,14 @@ +import type { UserFamilyResolvers } from "../../types/generatedGraphQLTypes"; +import { User } from "../../models"; +/** + * This resolver function will fetch and return the list of all Members of the user family from database. + * @param parent - An object that is the return value of the resolver for this field's parent. + * @returns An `object` that contains the Member data. + */ +export const users: UserFamilyResolvers["users"] = async (parent) => { + return await User.find({ + _id: { + $in: parent.users, + }, + }).lean(); +}; diff --git a/src/resolvers/index.ts b/src/resolvers/index.ts index 7ded81a68fb..fbfe904d289 100644 --- a/src/resolvers/index.ts +++ b/src/resolvers/index.ts @@ -11,6 +11,7 @@ import { GroupChat } from "./GroupChat"; import { GroupChatMessage } from "./GroupChatMessage"; import { MembershipRequest } from "./MembershipRequest"; import { Mutation } from "./Mutation"; +import { UserFamily } from "./UserFamily"; import { Organization } from "./Organization"; import { Post } from "./Post"; import { Query } from "./Query"; @@ -42,6 +43,7 @@ const resolvers: Resolvers = { Event, Feedback, GroupChat, + UserFamily, GroupChatMessage, MembershipRequest, Mutation, diff --git a/src/typeDefs/inputs.ts b/src/typeDefs/inputs.ts index e4aa13d73ef..d0bdd94af42 100644 --- a/src/typeDefs/inputs.ts +++ b/src/typeDefs/inputs.ts @@ -29,6 +29,11 @@ export const inputs = gql` title: String! } + input createUserFamilyInput { + title: String! + userIds: [ID!]! + } + input CreateUserTagInput { name: String! parentTagId: ID diff --git a/src/typeDefs/mutations.ts b/src/typeDefs/mutations.ts index 1843e921412..a2439dccefb 100644 --- a/src/typeDefs/mutations.ts +++ b/src/typeDefs/mutations.ts @@ -34,6 +34,14 @@ export const mutations = gql` addUserToGroupChat(userId: ID!, chatId: ID!): GroupChat! @auth + addUserToUserFamily(userId: ID!, familyId: ID!): UserFamily! @auth + + removeUserFromUserFamily(userId: ID!, familyId: ID!): UserFamily! @auth + + removeUserFamily(familyId: ID!): UserFamily! @auth + + createUserFamily(data: createUserFamilyInput!): UserFamily! @auth + adminRemoveEvent(eventId: ID!): Event! @auth adminRemoveGroup(groupId: ID!): GroupChat! @auth diff --git a/src/typeDefs/types.ts b/src/typeDefs/types.ts index 098fed4df6d..cfede7dab8a 100644 --- a/src/typeDefs/types.ts +++ b/src/typeDefs/types.ts @@ -75,6 +75,14 @@ export const types = gql` updatedAt: DateTime! } + type UserFamily { + _id: ID! + title: String + users: [User!]! + admins: [User!]! + creator: User! + } + # A page info type adhering to Relay Specification for both cursor based pagination type ConnectionPageInfo { hasNextPage: Boolean! diff --git a/src/types/generatedGraphQLTypes.ts b/src/types/generatedGraphQLTypes.ts index db3d797943c..7e48b384906 100644 --- a/src/types/generatedGraphQLTypes.ts +++ b/src/types/generatedGraphQLTypes.ts @@ -9,6 +9,7 @@ import type { InterfaceDirectChatMessage as InterfaceDirectChatMessageModel } fr import type { InterfaceDonation as InterfaceDonationModel } from '../models/Donation'; import type { InterfaceEvent as InterfaceEventModel } from '../models/Event'; import type { InterfaceEventAttendee as InterfaceEventAttendeeModel } from '../models/EventAttendee'; +import type { InterfaceUserFamily as InterfaceUserFamilyModel } from '../models/userFamily'; import type { InterfaceFeedback as InterfaceFeedbackModel } from '../models/Feedback'; import type { InterfaceGroup as InterfaceGroupModel } from '../models/Group'; import type { InterfaceGroupChat as InterfaceGroupChatModel } from '../models/GroupChat'; @@ -587,6 +588,7 @@ export type Mutation = { addUserCustomData: UserCustomData; addUserImage: User; addUserToGroupChat: GroupChat; + addUserToUserFamily: UserFamily; adminRemoveEvent: Event; adminRemoveGroup: GroupChat; assignUserTag?: Maybe; @@ -609,6 +611,7 @@ export type Mutation = { createPlugin: Plugin; createPost?: Maybe; createSampleOrganization: Scalars['Boolean']['output']; + createUserFamily: UserFamily; createUserTag?: Maybe; deleteAdvertisementById: DeletePayload; deleteDonationById: DeletePayload; @@ -640,7 +643,9 @@ export type Mutation = { removePost?: Maybe; removeSampleOrganization: Scalars['Boolean']['output']; removeUserCustomData: UserCustomData; + removeUserFamily: UserFamily; removeUserFromGroupChat: GroupChat; + removeUserFromUserFamily: UserFamily; removeUserImage: User; removeUserTag?: Maybe; revokeRefreshTokenForUser: Scalars['Boolean']['output']; @@ -727,6 +732,12 @@ export type MutationAddUserToGroupChatArgs = { }; +export type MutationAddUserToUserFamilyArgs = { + familyId: Scalars['ID']['input']; + userId: Scalars['ID']['input']; +}; + + export type MutationAdminRemoveEventArgs = { eventId: Scalars['ID']['input']; }; @@ -852,6 +863,11 @@ export type MutationCreatePostArgs = { }; +export type MutationCreateUserFamilyArgs = { + data: CreateUserFamilyInput; +}; + + export type MutationCreateUserTagArgs = { input: CreateUserTagInput; }; @@ -999,12 +1015,23 @@ export type MutationRemoveUserCustomDataArgs = { }; +export type MutationRemoveUserFamilyArgs = { + familyId: Scalars['ID']['input']; +}; + + export type MutationRemoveUserFromGroupChatArgs = { chatId: Scalars['ID']['input']; userId: Scalars['ID']['input']; }; +export type MutationRemoveUserFromUserFamilyArgs = { + familyId: Scalars['ID']['input']; + userId: Scalars['ID']['input']; +}; + + export type MutationRemoveUserTagArgs = { id: Scalars['ID']['input']; }; @@ -1830,6 +1857,15 @@ export type UserEdge = { node: User; }; +export type UserFamily = { + __typename?: 'UserFamily'; + _id: Scalars['ID']['output']; + admins: Array; + creator: User; + title?: Maybe; + users: Array; +}; + export type UserInput = { appLanguageCode?: InputMaybe; email: Scalars['EmailAddress']['input']; @@ -1978,6 +2014,11 @@ export type CreateGroupChatInput = { userIds: Array; }; +export type CreateUserFamilyInput = { + title: Scalars['String']['input']; + userIds: Array; +}; + export type ResolverTypeWrapper = Promise | T; @@ -2173,6 +2214,7 @@ export type ResolversTypes = { UserConnection: ResolverTypeWrapper & { edges: Array> }>; UserCustomData: ResolverTypeWrapper; UserEdge: ResolverTypeWrapper & { node: ResolversTypes['User'] }>; + UserFamily: ResolverTypeWrapper; UserInput: UserInput; UserOrderByInput: UserOrderByInput; UserPhone: ResolverTypeWrapper; @@ -2189,6 +2231,7 @@ export type ResolversTypes = { UsersConnectionResult: ResolverTypeWrapper & { data?: Maybe, errors: Array }>; createChatInput: CreateChatInput; createGroupChatInput: CreateGroupChatInput; + createUserFamilyInput: CreateUserFamilyInput; }; /** Mapping between all available schema types and the resolvers parents */ @@ -2300,6 +2343,7 @@ export type ResolversParentTypes = { UserConnection: Omit & { edges: Array> }; UserCustomData: UserCustomData; UserEdge: Omit & { node: ResolversParentTypes['User'] }; + UserFamily: InterfaceUserFamilyModel; UserInput: UserInput; UserPhone: UserPhone; UserPhoneInput: UserPhoneInput; @@ -2314,6 +2358,7 @@ export type ResolversParentTypes = { UsersConnectionResult: Omit & { data?: Maybe, errors: Array }; createChatInput: CreateChatInput; createGroupChatInput: CreateGroupChatInput; + createUserFamilyInput: CreateUserFamilyInput; }; export type AuthDirectiveArgs = { }; @@ -2692,6 +2737,7 @@ export type MutationResolvers>; addUserImage?: Resolver>; addUserToGroupChat?: Resolver>; + addUserToUserFamily?: Resolver>; adminRemoveEvent?: Resolver>; adminRemoveGroup?: Resolver>; assignUserTag?: Resolver, ParentType, ContextType, RequireFields>; @@ -2714,6 +2760,7 @@ export type MutationResolvers>; createPost?: Resolver, ParentType, ContextType, RequireFields>; createSampleOrganization?: Resolver; + createUserFamily?: Resolver>; createUserTag?: Resolver, ParentType, ContextType, RequireFields>; deleteAdvertisementById?: Resolver>; deleteDonationById?: Resolver>; @@ -2745,7 +2792,9 @@ export type MutationResolvers, ParentType, ContextType, RequireFields>; removeSampleOrganization?: Resolver; removeUserCustomData?: Resolver>; + removeUserFamily?: Resolver>; removeUserFromGroupChat?: Resolver>; + removeUserFromUserFamily?: Resolver>; removeUserImage?: Resolver; removeUserTag?: Resolver, ParentType, ContextType, RequireFields>; revokeRefreshTokenForUser?: Resolver; @@ -3020,6 +3069,15 @@ export type UserEdgeResolvers; }; +export type UserFamilyResolvers = { + _id?: Resolver; + admins?: Resolver, ParentType, ContextType>; + creator?: Resolver; + title?: Resolver, ParentType, ContextType>; + users?: Resolver, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}; + export type UserPhoneResolvers = { home?: Resolver, ParentType, ContextType>; mobile?: Resolver, ParentType, ContextType>; @@ -3135,6 +3193,7 @@ export type Resolvers = { UserConnection?: UserConnectionResolvers; UserCustomData?: UserCustomDataResolvers; UserEdge?: UserEdgeResolvers; + UserFamily?: UserFamilyResolvers; UserPhone?: UserPhoneResolvers; UserTag?: UserTagResolvers; UserTagEdge?: UserTagEdgeResolvers; diff --git a/src/utilities/userFamilyAdminCheck.ts b/src/utilities/userFamilyAdminCheck.ts new file mode 100644 index 00000000000..bf482733bf3 --- /dev/null +++ b/src/utilities/userFamilyAdminCheck.ts @@ -0,0 +1,36 @@ +import { Types } from "mongoose"; +import { errors, requestContext } from "../libraries"; +import { USER_NOT_AUTHORIZED_ADMIN } from "../constants"; +import type { InterfaceUserFamily } from "../models/userFamily"; +import { User } from "../models"; +/** + * If the current user is an admin of the organisation, this function returns `true` otherwise it returns `false`. + * @remarks + * This is a utility method. + * @param userId - Current user id. + * @param userFamily - userFamily data of `InterfaceuserFamily` type. + * @returns `True` or `False`. + */ +export const adminCheck = async ( + userId: string | Types.ObjectId, + userFamily: InterfaceUserFamily +): Promise => { + const userIsUserFamilyAdmin = userFamily.admins.some( + (admin) => admin === userId || Types.ObjectId(admin).equals(userId) + ); + + const user = await User.findOne({ + _id: userId, + }); + const isUserSuperAdmin: boolean = user + ? user.userType === "SUPERADMIN" + : false; + + if (!userIsUserFamilyAdmin && !isUserSuperAdmin) { + throw new errors.UnauthorizedError( + requestContext.translate(`${USER_NOT_AUTHORIZED_ADMIN.MESSAGE}`), + USER_NOT_AUTHORIZED_ADMIN.CODE, + USER_NOT_AUTHORIZED_ADMIN.PARAM + ); + } +}; diff --git a/talawa-api-docs/README.md b/talawa-api-docs/README.md index efc9c465fc7..2eea479b503 100644 --- a/talawa-api-docs/README.md +++ b/talawa-api-docs/README.md @@ -2,7 +2,7 @@ talawa-api / [Exports](modules.md) # Talawa API -💬 Join the community on Slack. The link can be found in the `Talawa` [README.md](https://github.com/PalisadoesFoundation/talawa) file. +💬 Join our community on Slack. The link can be found in the `Talawa` [README.md](https://github.com/PalisadoesFoundation/talawa) file. [![N|Solid](public/markdown/images/talawa-logo-lite-200x200.png)](https://github.com/PalisadoesFoundation/talawa-api) diff --git a/talawa-api-docs/classes/libraries_errors_ImageSizeLimitExceeded.ImageSizeLimitExceeded.md b/talawa-api-docs/classes/libraries_errors_ImageSizeLimitExceeded.ImageSizeLimitExceeded.md index 3e8433a2819..9cd63190d47 100644 --- a/talawa-api-docs/classes/libraries_errors_ImageSizeLimitExceeded.ImageSizeLimitExceeded.md +++ b/talawa-api-docs/classes/libraries_errors_ImageSizeLimitExceeded.ImageSizeLimitExceeded.md @@ -57,7 +57,7 @@ This class detects invalid file type errors and sends those errors to the superc #### Defined in -[src/libraries/errors/ImageSizeLimitExceeded.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/ImageSizeLimitExceeded.ts#L6) +[src/libraries/errors/ImageSizeLimitExceeded.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/ImageSizeLimitExceeded.ts#L6) ## Properties @@ -71,7 +71,7 @@ This class detects invalid file type errors and sends those errors to the superc #### Defined in -[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L11) ___ @@ -85,7 +85,7 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L12) ___ diff --git a/talawa-api-docs/classes/libraries_errors_applicationError.ApplicationError.md b/talawa-api-docs/classes/libraries_errors_applicationError.ApplicationError.md index 18b985a2f1e..fbb617d53c1 100644 --- a/talawa-api-docs/classes/libraries_errors_applicationError.ApplicationError.md +++ b/talawa-api-docs/classes/libraries_errors_applicationError.ApplicationError.md @@ -74,7 +74,7 @@ Error.constructor #### Defined in -[src/libraries/errors/applicationError.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L14) +[src/libraries/errors/applicationError.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L14) ## Properties @@ -84,7 +84,7 @@ Error.constructor #### Defined in -[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L11) ___ @@ -94,7 +94,7 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L12) ___ diff --git a/talawa-api-docs/classes/libraries_errors_conflictError.ConflictError.md b/talawa-api-docs/classes/libraries_errors_conflictError.ConflictError.md index 7f8871f9a3a..23fb20e1492 100644 --- a/talawa-api-docs/classes/libraries_errors_conflictError.ConflictError.md +++ b/talawa-api-docs/classes/libraries_errors_conflictError.ConflictError.md @@ -57,7 +57,7 @@ This class detects conflict errors and sends those errors to the superclass Appl #### Defined in -[src/libraries/errors/conflictError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/conflictError.ts#L6) +[src/libraries/errors/conflictError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/conflictError.ts#L6) ## Properties @@ -71,7 +71,7 @@ This class detects conflict errors and sends those errors to the superclass Appl #### Defined in -[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L11) ___ @@ -85,7 +85,7 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L12) ___ diff --git a/talawa-api-docs/classes/libraries_errors_inputValidationError.InputValidationError.md b/talawa-api-docs/classes/libraries_errors_inputValidationError.InputValidationError.md index e19b3d6b707..154fb1b9227 100644 --- a/talawa-api-docs/classes/libraries_errors_inputValidationError.InputValidationError.md +++ b/talawa-api-docs/classes/libraries_errors_inputValidationError.InputValidationError.md @@ -57,7 +57,7 @@ This class detects input validation errors and sends those errors to the supercl #### Defined in -[src/libraries/errors/inputValidationError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/inputValidationError.ts#L6) +[src/libraries/errors/inputValidationError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/inputValidationError.ts#L6) ## Properties @@ -71,7 +71,7 @@ This class detects input validation errors and sends those errors to the supercl #### Defined in -[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L11) ___ @@ -85,7 +85,7 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L12) ___ diff --git a/talawa-api-docs/classes/libraries_errors_internalServerError.InternalServerError.md b/talawa-api-docs/classes/libraries_errors_internalServerError.InternalServerError.md index fda99931c96..fa9363b9812 100644 --- a/talawa-api-docs/classes/libraries_errors_internalServerError.InternalServerError.md +++ b/talawa-api-docs/classes/libraries_errors_internalServerError.InternalServerError.md @@ -57,7 +57,7 @@ This class detects internal server errors and sends those errors to the supercla #### Defined in -[src/libraries/errors/internalServerError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/internalServerError.ts#L6) +[src/libraries/errors/internalServerError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/internalServerError.ts#L6) ## Properties @@ -71,7 +71,7 @@ This class detects internal server errors and sends those errors to the supercla #### Defined in -[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L11) ___ @@ -85,7 +85,7 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L12) ___ diff --git a/talawa-api-docs/classes/libraries_errors_invalidFileTypeError.InvalidFileTypeError.md b/talawa-api-docs/classes/libraries_errors_invalidFileTypeError.InvalidFileTypeError.md index b2767ec85ea..2994361bc31 100644 --- a/talawa-api-docs/classes/libraries_errors_invalidFileTypeError.InvalidFileTypeError.md +++ b/talawa-api-docs/classes/libraries_errors_invalidFileTypeError.InvalidFileTypeError.md @@ -57,7 +57,7 @@ This class detects invalid file type errors and sends those errors to the superc #### Defined in -[src/libraries/errors/invalidFileTypeError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/invalidFileTypeError.ts#L6) +[src/libraries/errors/invalidFileTypeError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/invalidFileTypeError.ts#L6) ## Properties @@ -71,7 +71,7 @@ This class detects invalid file type errors and sends those errors to the superc #### Defined in -[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L11) ___ @@ -85,7 +85,7 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L12) ___ diff --git a/talawa-api-docs/classes/libraries_errors_notFoundError.NotFoundError.md b/talawa-api-docs/classes/libraries_errors_notFoundError.NotFoundError.md index 37de3a5edd1..60142b67179 100644 --- a/talawa-api-docs/classes/libraries_errors_notFoundError.NotFoundError.md +++ b/talawa-api-docs/classes/libraries_errors_notFoundError.NotFoundError.md @@ -57,7 +57,7 @@ This class detects Not Found errors and sends those errors to the superclass App #### Defined in -[src/libraries/errors/notFoundError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/notFoundError.ts#L6) +[src/libraries/errors/notFoundError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/notFoundError.ts#L6) ## Properties @@ -71,7 +71,7 @@ This class detects Not Found errors and sends those errors to the superclass App #### Defined in -[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L11) ___ @@ -85,7 +85,7 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L12) ___ diff --git a/talawa-api-docs/classes/libraries_errors_unauthenticatedError.UnauthenticatedError.md b/talawa-api-docs/classes/libraries_errors_unauthenticatedError.UnauthenticatedError.md index c924a4d9303..a7251835915 100644 --- a/talawa-api-docs/classes/libraries_errors_unauthenticatedError.UnauthenticatedError.md +++ b/talawa-api-docs/classes/libraries_errors_unauthenticatedError.UnauthenticatedError.md @@ -57,7 +57,7 @@ This class detects unauthenticated errors and sends those errors to the supercla #### Defined in -[src/libraries/errors/unauthenticatedError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/unauthenticatedError.ts#L6) +[src/libraries/errors/unauthenticatedError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/unauthenticatedError.ts#L6) ## Properties @@ -71,7 +71,7 @@ This class detects unauthenticated errors and sends those errors to the supercla #### Defined in -[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L11) ___ @@ -85,7 +85,7 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L12) ___ diff --git a/talawa-api-docs/classes/libraries_errors_unauthorizedError.UnauthorizedError.md b/talawa-api-docs/classes/libraries_errors_unauthorizedError.UnauthorizedError.md index fcdb5f04e0b..8a8f2a88dd0 100644 --- a/talawa-api-docs/classes/libraries_errors_unauthorizedError.UnauthorizedError.md +++ b/talawa-api-docs/classes/libraries_errors_unauthorizedError.UnauthorizedError.md @@ -57,7 +57,7 @@ This class detects unauthorized errors and sends those errors to the superclass #### Defined in -[src/libraries/errors/unauthorizedError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/unauthorizedError.ts#L6) +[src/libraries/errors/unauthorizedError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/unauthorizedError.ts#L6) ## Properties @@ -71,7 +71,7 @@ This class detects unauthorized errors and sends those errors to the superclass #### Defined in -[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L11) ___ @@ -85,7 +85,7 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L12) ___ diff --git a/talawa-api-docs/classes/libraries_errors_validationError.ValidationError.md b/talawa-api-docs/classes/libraries_errors_validationError.ValidationError.md index c472009631e..d93a2195d8e 100644 --- a/talawa-api-docs/classes/libraries_errors_validationError.ValidationError.md +++ b/talawa-api-docs/classes/libraries_errors_validationError.ValidationError.md @@ -55,7 +55,7 @@ This class detects validation errors and sends those errors to the superclass Ap #### Defined in -[src/libraries/errors/validationError.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/validationError.ts#L7) +[src/libraries/errors/validationError.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/validationError.ts#L7) ## Properties @@ -69,7 +69,7 @@ This class detects validation errors and sends those errors to the superclass Ap #### Defined in -[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L11) ___ @@ -83,7 +83,7 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L12) ___ diff --git a/talawa-api-docs/enums/constants.TransactionLogTypes.md b/talawa-api-docs/enums/constants.TransactionLogTypes.md index f020606a348..f8c7f2a6bb1 100644 --- a/talawa-api-docs/enums/constants.TransactionLogTypes.md +++ b/talawa-api-docs/enums/constants.TransactionLogTypes.md @@ -20,7 +20,7 @@ #### Defined in -[src/constants.ts:528](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L528) +[src/constants.ts:528](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L528) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/constants.ts:530](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L530) +[src/constants.ts:530](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L530) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/constants.ts:529](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L529) +[src/constants.ts:529](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L529) diff --git a/talawa-api-docs/interfaces/libraries_dbLogger.InterfaceLoggableDocument.md b/talawa-api-docs/interfaces/libraries_dbLogger.InterfaceLoggableDocument.md index 0b5338898b5..a494e51f6f8 100644 --- a/talawa-api-docs/interfaces/libraries_dbLogger.InterfaceLoggableDocument.md +++ b/talawa-api-docs/interfaces/libraries_dbLogger.InterfaceLoggableDocument.md @@ -263,7 +263,7 @@ ___ #### Defined in -[src/libraries/dbLogger.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/dbLogger.ts#L33) +[src/libraries/dbLogger.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/dbLogger.ts#L33) ___ diff --git a/talawa-api-docs/interfaces/libraries_dbLogger.InterfaceLoggableQuery.md b/talawa-api-docs/interfaces/libraries_dbLogger.InterfaceLoggableQuery.md index bb0fa2d155b..6987f2378f0 100644 --- a/talawa-api-docs/interfaces/libraries_dbLogger.InterfaceLoggableQuery.md +++ b/talawa-api-docs/interfaces/libraries_dbLogger.InterfaceLoggableQuery.md @@ -184,7 +184,7 @@ ___ #### Defined in -[src/libraries/dbLogger.ts:37](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/dbLogger.ts#L37) +[src/libraries/dbLogger.ts:37](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/dbLogger.ts#L37) ___ diff --git a/talawa-api-docs/interfaces/libraries_errors_applicationError.InterfaceError.md b/talawa-api-docs/interfaces/libraries_errors_applicationError.InterfaceError.md index e30aa4ad31d..a407270fd2a 100644 --- a/talawa-api-docs/interfaces/libraries_errors_applicationError.InterfaceError.md +++ b/talawa-api-docs/interfaces/libraries_errors_applicationError.InterfaceError.md @@ -21,7 +21,7 @@ #### Defined in -[src/libraries/errors/applicationError.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L3) +[src/libraries/errors/applicationError.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L3) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:2](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L2) +[src/libraries/errors/applicationError.ts:2](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L2) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L5) +[src/libraries/errors/applicationError.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L5) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/errors/applicationError.ts#L4) +[src/libraries/errors/applicationError.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/errors/applicationError.ts#L4) diff --git a/talawa-api-docs/interfaces/middleware_isAuth.InterfaceAuthData.md b/talawa-api-docs/interfaces/middleware_isAuth.InterfaceAuthData.md index b5aa4a1bf46..34a4ad3321a 100644 --- a/talawa-api-docs/interfaces/middleware_isAuth.InterfaceAuthData.md +++ b/talawa-api-docs/interfaces/middleware_isAuth.InterfaceAuthData.md @@ -20,7 +20,7 @@ #### Defined in -[src/middleware/isAuth.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/middleware/isAuth.ts#L9) +[src/middleware/isAuth.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/middleware/isAuth.ts#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/middleware/isAuth.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/middleware/isAuth.ts#L8) +[src/middleware/isAuth.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/middleware/isAuth.ts#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/middleware/isAuth.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/middleware/isAuth.ts#L10) +[src/middleware/isAuth.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/middleware/isAuth.ts#L10) diff --git a/talawa-api-docs/interfaces/models_ActionItem.InterfaceActionItem.md b/talawa-api-docs/interfaces/models_ActionItem.InterfaceActionItem.md index ed93178bee9..97c1ae092f8 100644 --- a/talawa-api-docs/interfaces/models_ActionItem.InterfaceActionItem.md +++ b/talawa-api-docs/interfaces/models_ActionItem.InterfaceActionItem.md @@ -4,7 +4,7 @@ [models/ActionItem](../modules/models_ActionItem.md).InterfaceActionItem -This is an interface that represents a database(MongoDB) document for ActionItem. +This is an interface that represents a database(MongoDB) document for ActionItem [test check]. ## Table of contents @@ -33,7 +33,7 @@ This is an interface that represents a database(MongoDB) document for ActionItem #### Defined in -[src/models/ActionItem.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L13) +[src/models/ActionItem.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L13) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/ActionItem.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L16) +[src/models/ActionItem.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L16) ___ @@ -53,7 +53,7 @@ ___ #### Defined in -[src/models/ActionItem.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L14) +[src/models/ActionItem.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L14) ___ @@ -63,7 +63,7 @@ ___ #### Defined in -[src/models/ActionItem.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L15) +[src/models/ActionItem.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L15) ___ @@ -73,7 +73,7 @@ ___ #### Defined in -[src/models/ActionItem.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L19) +[src/models/ActionItem.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L19) ___ @@ -83,7 +83,7 @@ ___ #### Defined in -[src/models/ActionItem.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L21) +[src/models/ActionItem.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L21) ___ @@ -93,7 +93,7 @@ ___ #### Defined in -[src/models/ActionItem.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L25) +[src/models/ActionItem.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L25) ___ @@ -103,7 +103,7 @@ ___ #### Defined in -[src/models/ActionItem.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L24) +[src/models/ActionItem.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L24) ___ @@ -113,7 +113,7 @@ ___ #### Defined in -[src/models/ActionItem.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L20) +[src/models/ActionItem.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L20) ___ @@ -123,7 +123,7 @@ ___ #### Defined in -[src/models/ActionItem.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L23) +[src/models/ActionItem.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L23) ___ @@ -133,7 +133,7 @@ ___ #### Defined in -[src/models/ActionItem.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L22) +[src/models/ActionItem.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L22) ___ @@ -143,7 +143,7 @@ ___ #### Defined in -[src/models/ActionItem.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L18) +[src/models/ActionItem.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L18) ___ @@ -153,7 +153,7 @@ ___ #### Defined in -[src/models/ActionItem.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L17) +[src/models/ActionItem.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L17) ___ @@ -163,4 +163,4 @@ ___ #### Defined in -[src/models/ActionItem.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L26) +[src/models/ActionItem.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L26) diff --git a/talawa-api-docs/interfaces/models_ActionItemCategory.InterfaceActionItemCategory.md b/talawa-api-docs/interfaces/models_ActionItemCategory.InterfaceActionItemCategory.md index 46724736e45..03a4d7e9a64 100644 --- a/talawa-api-docs/interfaces/models_ActionItemCategory.InterfaceActionItemCategory.md +++ b/talawa-api-docs/interfaces/models_ActionItemCategory.InterfaceActionItemCategory.md @@ -26,7 +26,7 @@ This is an interface that represents a database(MongoDB) document for ActionItem #### Defined in -[src/models/ActionItemCategory.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItemCategory.ts#L11) +[src/models/ActionItemCategory.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItemCategory.ts#L11) ___ @@ -36,7 +36,7 @@ ___ #### Defined in -[src/models/ActionItemCategory.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItemCategory.ts#L16) +[src/models/ActionItemCategory.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItemCategory.ts#L16) ___ @@ -46,7 +46,7 @@ ___ #### Defined in -[src/models/ActionItemCategory.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItemCategory.ts#L15) +[src/models/ActionItemCategory.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItemCategory.ts#L15) ___ @@ -56,7 +56,7 @@ ___ #### Defined in -[src/models/ActionItemCategory.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItemCategory.ts#L14) +[src/models/ActionItemCategory.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItemCategory.ts#L14) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[src/models/ActionItemCategory.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItemCategory.ts#L12) +[src/models/ActionItemCategory.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItemCategory.ts#L12) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[src/models/ActionItemCategory.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItemCategory.ts#L13) +[src/models/ActionItemCategory.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItemCategory.ts#L13) ___ @@ -86,4 +86,4 @@ ___ #### Defined in -[src/models/ActionItemCategory.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItemCategory.ts#L17) +[src/models/ActionItemCategory.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItemCategory.ts#L17) diff --git a/talawa-api-docs/interfaces/models_Advertisement.InterfaceAdvertisement.md b/talawa-api-docs/interfaces/models_Advertisement.InterfaceAdvertisement.md index 537702a27e2..92b00c50ca8 100644 --- a/talawa-api-docs/interfaces/models_Advertisement.InterfaceAdvertisement.md +++ b/talawa-api-docs/interfaces/models_Advertisement.InterfaceAdvertisement.md @@ -29,7 +29,7 @@ This is an interface that represents a database(MongoDB) document for Advertisem #### Defined in -[src/models/Advertisement.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Advertisement.ts#L8) +[src/models/Advertisement.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Advertisement.ts#L8) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Advertisement.ts#L16) +[src/models/Advertisement.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Advertisement.ts#L16) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Advertisement.ts#L11) +[src/models/Advertisement.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Advertisement.ts#L11) ___ @@ -59,7 +59,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Advertisement.ts#L15) +[src/models/Advertisement.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Advertisement.ts#L15) ___ @@ -69,7 +69,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Advertisement.ts#L12) +[src/models/Advertisement.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Advertisement.ts#L12) ___ @@ -79,7 +79,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Advertisement.ts#L10) +[src/models/Advertisement.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Advertisement.ts#L10) ___ @@ -89,7 +89,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Advertisement.ts#L9) +[src/models/Advertisement.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Advertisement.ts#L9) ___ @@ -99,7 +99,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Advertisement.ts#L14) +[src/models/Advertisement.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Advertisement.ts#L14) ___ @@ -109,7 +109,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Advertisement.ts#L13) +[src/models/Advertisement.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Advertisement.ts#L13) ___ @@ -119,4 +119,4 @@ ___ #### Defined in -[src/models/Advertisement.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Advertisement.ts#L17) +[src/models/Advertisement.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Advertisement.ts#L17) diff --git a/talawa-api-docs/interfaces/models_CheckIn.InterfaceCheckIn.md b/talawa-api-docs/interfaces/models_CheckIn.InterfaceCheckIn.md index b001bc81b74..ec446c8e8dd 100644 --- a/talawa-api-docs/interfaces/models_CheckIn.InterfaceCheckIn.md +++ b/talawa-api-docs/interfaces/models_CheckIn.InterfaceCheckIn.md @@ -25,7 +25,7 @@ #### Defined in -[src/models/CheckIn.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/CheckIn.ts#L13) +[src/models/CheckIn.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/CheckIn.ts#L13) ___ @@ -35,7 +35,7 @@ ___ #### Defined in -[src/models/CheckIn.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/CheckIn.ts#L16) +[src/models/CheckIn.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/CheckIn.ts#L16) ___ @@ -45,7 +45,7 @@ ___ #### Defined in -[src/models/CheckIn.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/CheckIn.ts#L17) +[src/models/CheckIn.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/CheckIn.ts#L17) ___ @@ -55,7 +55,7 @@ ___ #### Defined in -[src/models/CheckIn.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/CheckIn.ts#L19) +[src/models/CheckIn.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/CheckIn.ts#L19) ___ @@ -65,7 +65,7 @@ ___ #### Defined in -[src/models/CheckIn.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/CheckIn.ts#L14) +[src/models/CheckIn.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/CheckIn.ts#L14) ___ @@ -75,7 +75,7 @@ ___ #### Defined in -[src/models/CheckIn.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/CheckIn.ts#L18) +[src/models/CheckIn.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/CheckIn.ts#L18) ___ @@ -85,7 +85,7 @@ ___ #### Defined in -[src/models/CheckIn.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/CheckIn.ts#L15) +[src/models/CheckIn.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/CheckIn.ts#L15) ___ @@ -95,4 +95,4 @@ ___ #### Defined in -[src/models/CheckIn.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/CheckIn.ts#L20) +[src/models/CheckIn.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/CheckIn.ts#L20) diff --git a/talawa-api-docs/interfaces/models_Comment.InterfaceComment.md b/talawa-api-docs/interfaces/models_Comment.InterfaceComment.md index a239e38f969..3df8469907c 100644 --- a/talawa-api-docs/interfaces/models_Comment.InterfaceComment.md +++ b/talawa-api-docs/interfaces/models_Comment.InterfaceComment.md @@ -28,7 +28,7 @@ This is an interface representing a document for a comment in the database(Mongo #### Defined in -[src/models/Comment.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Comment.ts#L9) +[src/models/Comment.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Comment.ts#L9) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/models/Comment.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Comment.ts#L11) +[src/models/Comment.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Comment.ts#L11) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[src/models/Comment.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Comment.ts#L12) +[src/models/Comment.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Comment.ts#L12) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[src/models/Comment.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Comment.ts#L16) +[src/models/Comment.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Comment.ts#L16) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[src/models/Comment.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Comment.ts#L15) +[src/models/Comment.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Comment.ts#L15) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[src/models/Comment.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Comment.ts#L14) +[src/models/Comment.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Comment.ts#L14) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[src/models/Comment.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Comment.ts#L17) +[src/models/Comment.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Comment.ts#L17) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[src/models/Comment.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Comment.ts#L10) +[src/models/Comment.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Comment.ts#L10) ___ @@ -108,4 +108,4 @@ ___ #### Defined in -[src/models/Comment.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Comment.ts#L13) +[src/models/Comment.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Comment.ts#L13) diff --git a/talawa-api-docs/interfaces/models_DirectChat.InterfaceDirectChat.md b/talawa-api-docs/interfaces/models_DirectChat.InterfaceDirectChat.md index 4b75b929909..b7c17ef8846 100644 --- a/talawa-api-docs/interfaces/models_DirectChat.InterfaceDirectChat.md +++ b/talawa-api-docs/interfaces/models_DirectChat.InterfaceDirectChat.md @@ -27,7 +27,7 @@ This is an interface representing a document for direct chat in the database(Mon #### Defined in -[src/models/DirectChat.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChat.ts#L10) +[src/models/DirectChat.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChat.ts#L10) ___ @@ -37,7 +37,7 @@ ___ #### Defined in -[src/models/DirectChat.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChat.ts#L16) +[src/models/DirectChat.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChat.ts#L16) ___ @@ -47,7 +47,7 @@ ___ #### Defined in -[src/models/DirectChat.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChat.ts#L13) +[src/models/DirectChat.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChat.ts#L13) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[src/models/DirectChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChat.ts#L12) +[src/models/DirectChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChat.ts#L12) ___ @@ -67,7 +67,7 @@ ___ #### Defined in -[src/models/DirectChat.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChat.ts#L14) +[src/models/DirectChat.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChat.ts#L14) ___ @@ -77,7 +77,7 @@ ___ #### Defined in -[src/models/DirectChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChat.ts#L15) +[src/models/DirectChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChat.ts#L15) ___ @@ -87,7 +87,7 @@ ___ #### Defined in -[src/models/DirectChat.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChat.ts#L17) +[src/models/DirectChat.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChat.ts#L17) ___ @@ -97,4 +97,4 @@ ___ #### Defined in -[src/models/DirectChat.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChat.ts#L11) +[src/models/DirectChat.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChat.ts#L11) diff --git a/talawa-api-docs/interfaces/models_DirectChatMessage.InterfaceDirectChatMessage.md b/talawa-api-docs/interfaces/models_DirectChatMessage.InterfaceDirectChatMessage.md index 83464e08a06..568a2e906b1 100644 --- a/talawa-api-docs/interfaces/models_DirectChatMessage.InterfaceDirectChatMessage.md +++ b/talawa-api-docs/interfaces/models_DirectChatMessage.InterfaceDirectChatMessage.md @@ -27,7 +27,7 @@ This is an interface representing a document for a direct chat message in the da #### Defined in -[src/models/DirectChatMessage.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChatMessage.ts#L9) +[src/models/DirectChatMessage.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChatMessage.ts#L9) ___ @@ -37,7 +37,7 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChatMessage.ts#L15) +[src/models/DirectChatMessage.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChatMessage.ts#L15) ___ @@ -47,7 +47,7 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChatMessage.ts#L10) +[src/models/DirectChatMessage.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChatMessage.ts#L10) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChatMessage.ts#L13) +[src/models/DirectChatMessage.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChatMessage.ts#L13) ___ @@ -67,7 +67,7 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChatMessage.ts#L12) +[src/models/DirectChatMessage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChatMessage.ts#L12) ___ @@ -77,7 +77,7 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChatMessage.ts#L11) +[src/models/DirectChatMessage.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChatMessage.ts#L11) ___ @@ -87,7 +87,7 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChatMessage.ts#L14) +[src/models/DirectChatMessage.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChatMessage.ts#L14) ___ @@ -97,4 +97,4 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChatMessage.ts#L16) +[src/models/DirectChatMessage.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChatMessage.ts#L16) diff --git a/talawa-api-docs/interfaces/models_Donation.InterfaceDonation.md b/talawa-api-docs/interfaces/models_Donation.InterfaceDonation.md index 0202f1eec21..95147202537 100644 --- a/talawa-api-docs/interfaces/models_Donation.InterfaceDonation.md +++ b/talawa-api-docs/interfaces/models_Donation.InterfaceDonation.md @@ -27,7 +27,7 @@ This is an interface representing a document for a donation in the database(Mong #### Defined in -[src/models/Donation.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Donation.ts#L12) +[src/models/Donation.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Donation.ts#L12) ___ @@ -37,7 +37,7 @@ ___ #### Defined in -[src/models/Donation.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Donation.ts#L13) +[src/models/Donation.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Donation.ts#L13) ___ @@ -47,7 +47,7 @@ ___ #### Defined in -[src/models/Donation.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Donation.ts#L9) +[src/models/Donation.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Donation.ts#L9) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[src/models/Donation.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Donation.ts#L11) +[src/models/Donation.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Donation.ts#L11) ___ @@ -67,7 +67,7 @@ ___ #### Defined in -[src/models/Donation.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Donation.ts#L8) +[src/models/Donation.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Donation.ts#L8) ___ @@ -77,7 +77,7 @@ ___ #### Defined in -[src/models/Donation.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Donation.ts#L10) +[src/models/Donation.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Donation.ts#L10) ___ @@ -87,7 +87,7 @@ ___ #### Defined in -[src/models/Donation.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Donation.ts#L14) +[src/models/Donation.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Donation.ts#L14) ___ @@ -97,4 +97,4 @@ ___ #### Defined in -[src/models/Donation.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Donation.ts#L7) +[src/models/Donation.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Donation.ts#L7) diff --git a/talawa-api-docs/interfaces/models_EncodedImage.InterfaceEncodedImage.md b/talawa-api-docs/interfaces/models_EncodedImage.InterfaceEncodedImage.md index a63b351d3c1..04add601784 100644 --- a/talawa-api-docs/interfaces/models_EncodedImage.InterfaceEncodedImage.md +++ b/talawa-api-docs/interfaces/models_EncodedImage.InterfaceEncodedImage.md @@ -23,7 +23,7 @@ This is an interface that represents a database(MongoDB) document for Encoded Im #### Defined in -[src/models/EncodedImage.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EncodedImage.ts#L7) +[src/models/EncodedImage.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EncodedImage.ts#L7) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/EncodedImage.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EncodedImage.ts#L9) +[src/models/EncodedImage.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EncodedImage.ts#L9) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/EncodedImage.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EncodedImage.ts#L8) +[src/models/EncodedImage.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EncodedImage.ts#L8) ___ @@ -53,4 +53,4 @@ ___ #### Defined in -[src/models/EncodedImage.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EncodedImage.ts#L10) +[src/models/EncodedImage.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EncodedImage.ts#L10) diff --git a/talawa-api-docs/interfaces/models_EncodedVideo.InterfaceEncodedVideo.md b/talawa-api-docs/interfaces/models_EncodedVideo.InterfaceEncodedVideo.md index f370625b436..dcb40bfa724 100644 --- a/talawa-api-docs/interfaces/models_EncodedVideo.InterfaceEncodedVideo.md +++ b/talawa-api-docs/interfaces/models_EncodedVideo.InterfaceEncodedVideo.md @@ -23,7 +23,7 @@ This is an interface that represents a database(MongoDB) document for Encoded Vi #### Defined in -[src/models/EncodedVideo.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EncodedVideo.ts#L7) +[src/models/EncodedVideo.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EncodedVideo.ts#L7) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/EncodedVideo.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EncodedVideo.ts#L9) +[src/models/EncodedVideo.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EncodedVideo.ts#L9) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/EncodedVideo.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EncodedVideo.ts#L8) +[src/models/EncodedVideo.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EncodedVideo.ts#L8) ___ @@ -53,4 +53,4 @@ ___ #### Defined in -[src/models/EncodedVideo.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EncodedVideo.ts#L10) +[src/models/EncodedVideo.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EncodedVideo.ts#L10) diff --git a/talawa-api-docs/interfaces/models_Event.InterfaceEvent.md b/talawa-api-docs/interfaces/models_Event.InterfaceEvent.md index 4b20cac5391..40a06100070 100644 --- a/talawa-api-docs/interfaces/models_Event.InterfaceEvent.md +++ b/talawa-api-docs/interfaces/models_Event.InterfaceEvent.md @@ -41,7 +41,7 @@ This is an interface representing a document for an event in the database(MongoD #### Defined in -[src/models/Event.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L10) +[src/models/Event.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L10) ___ @@ -51,7 +51,7 @@ ___ #### Defined in -[src/models/Event.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L27) +[src/models/Event.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L27) ___ @@ -61,7 +61,7 @@ ___ #### Defined in -[src/models/Event.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L18) +[src/models/Event.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L18) ___ @@ -71,7 +71,7 @@ ___ #### Defined in -[src/models/Event.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L13) +[src/models/Event.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L13) ___ @@ -81,7 +81,7 @@ ___ #### Defined in -[src/models/Event.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L30) +[src/models/Event.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L30) ___ @@ -91,7 +91,7 @@ ___ #### Defined in -[src/models/Event.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L26) +[src/models/Event.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L26) ___ @@ -101,7 +101,7 @@ ___ #### Defined in -[src/models/Event.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L12) +[src/models/Event.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L12) ___ @@ -111,7 +111,7 @@ ___ #### Defined in -[src/models/Event.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L20) +[src/models/Event.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L20) ___ @@ -121,7 +121,7 @@ ___ #### Defined in -[src/models/Event.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L22) +[src/models/Event.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L22) ___ @@ -131,7 +131,7 @@ ___ #### Defined in -[src/models/Event.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L24) +[src/models/Event.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L24) ___ @@ -141,7 +141,7 @@ ___ #### Defined in -[src/models/Event.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L25) +[src/models/Event.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L25) ___ @@ -151,7 +151,7 @@ ___ #### Defined in -[src/models/Event.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L15) +[src/models/Event.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L15) ___ @@ -161,7 +161,7 @@ ___ #### Defined in -[src/models/Event.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L14) +[src/models/Event.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L14) ___ @@ -171,7 +171,7 @@ ___ #### Defined in -[src/models/Event.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L16) +[src/models/Event.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L16) ___ @@ -181,7 +181,7 @@ ___ #### Defined in -[src/models/Event.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L28) +[src/models/Event.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L28) ___ @@ -191,7 +191,7 @@ ___ #### Defined in -[src/models/Event.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L23) +[src/models/Event.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L23) ___ @@ -201,7 +201,7 @@ ___ #### Defined in -[src/models/Event.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L17) +[src/models/Event.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L17) ___ @@ -211,7 +211,7 @@ ___ #### Defined in -[src/models/Event.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L19) +[src/models/Event.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L19) ___ @@ -221,7 +221,7 @@ ___ #### Defined in -[src/models/Event.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L21) +[src/models/Event.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L21) ___ @@ -231,7 +231,7 @@ ___ #### Defined in -[src/models/Event.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L29) +[src/models/Event.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L29) ___ @@ -241,7 +241,7 @@ ___ #### Defined in -[src/models/Event.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L11) +[src/models/Event.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L11) ___ @@ -251,4 +251,4 @@ ___ #### Defined in -[src/models/Event.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L31) +[src/models/Event.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L31) diff --git a/talawa-api-docs/interfaces/models_EventAttendee.InterfaceEventAttendee.md b/talawa-api-docs/interfaces/models_EventAttendee.InterfaceEventAttendee.md index d5a2ff07d4e..e47862c1349 100644 --- a/talawa-api-docs/interfaces/models_EventAttendee.InterfaceEventAttendee.md +++ b/talawa-api-docs/interfaces/models_EventAttendee.InterfaceEventAttendee.md @@ -21,7 +21,7 @@ #### Defined in -[src/models/EventAttendee.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EventAttendee.ts#L8) +[src/models/EventAttendee.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EventAttendee.ts#L8) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/models/EventAttendee.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EventAttendee.ts#L11) +[src/models/EventAttendee.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EventAttendee.ts#L11) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/models/EventAttendee.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EventAttendee.ts#L10) +[src/models/EventAttendee.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EventAttendee.ts#L10) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/models/EventAttendee.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EventAttendee.ts#L9) +[src/models/EventAttendee.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EventAttendee.ts#L9) diff --git a/talawa-api-docs/interfaces/models_Feedback.InterfaceFeedback.md b/talawa-api-docs/interfaces/models_Feedback.InterfaceFeedback.md index 34490fb11e3..1490e2d6036 100644 --- a/talawa-api-docs/interfaces/models_Feedback.InterfaceFeedback.md +++ b/talawa-api-docs/interfaces/models_Feedback.InterfaceFeedback.md @@ -23,7 +23,7 @@ #### Defined in -[src/models/Feedback.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Feedback.ts#L6) +[src/models/Feedback.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Feedback.ts#L6) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/Feedback.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Feedback.ts#L10) +[src/models/Feedback.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Feedback.ts#L10) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/Feedback.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Feedback.ts#L7) +[src/models/Feedback.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Feedback.ts#L7) ___ @@ -53,7 +53,7 @@ ___ #### Defined in -[src/models/Feedback.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Feedback.ts#L8) +[src/models/Feedback.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Feedback.ts#L8) ___ @@ -63,7 +63,7 @@ ___ #### Defined in -[src/models/Feedback.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Feedback.ts#L9) +[src/models/Feedback.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Feedback.ts#L9) ___ @@ -73,4 +73,4 @@ ___ #### Defined in -[src/models/Feedback.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Feedback.ts#L11) +[src/models/Feedback.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Feedback.ts#L11) diff --git a/talawa-api-docs/interfaces/models_File.InterfaceFile.md b/talawa-api-docs/interfaces/models_File.InterfaceFile.md index 3b6bde0097c..b09c17f4150 100644 --- a/talawa-api-docs/interfaces/models_File.InterfaceFile.md +++ b/talawa-api-docs/interfaces/models_File.InterfaceFile.md @@ -28,7 +28,7 @@ This is an interface representing a document for a file in the database(MongoDB) #### Defined in -[src/models/File.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/File.ts#L8) +[src/models/File.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/File.ts#L8) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/models/File.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/File.ts#L13) +[src/models/File.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/File.ts#L13) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[src/models/File.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/File.ts#L15) +[src/models/File.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/File.ts#L15) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[src/models/File.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/File.ts#L9) +[src/models/File.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/File.ts#L9) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[src/models/File.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/File.ts#L12) +[src/models/File.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/File.ts#L12) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[src/models/File.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/File.ts#L11) +[src/models/File.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/File.ts#L11) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[src/models/File.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/File.ts#L14) +[src/models/File.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/File.ts#L14) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[src/models/File.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/File.ts#L16) +[src/models/File.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/File.ts#L16) ___ @@ -108,4 +108,4 @@ ___ #### Defined in -[src/models/File.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/File.ts#L10) +[src/models/File.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/File.ts#L10) diff --git a/talawa-api-docs/interfaces/models_Group.InterfaceGroup.md b/talawa-api-docs/interfaces/models_Group.InterfaceGroup.md index e61de8bb59a..70837e08d29 100644 --- a/talawa-api-docs/interfaces/models_Group.InterfaceGroup.md +++ b/talawa-api-docs/interfaces/models_Group.InterfaceGroup.md @@ -27,7 +27,7 @@ This is an interface representing a document for a group in the database(MongoDB #### Defined in -[src/models/Group.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Group.ts#L9) +[src/models/Group.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Group.ts#L9) ___ @@ -37,7 +37,7 @@ ___ #### Defined in -[src/models/Group.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Group.ts#L14) +[src/models/Group.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Group.ts#L14) ___ @@ -47,7 +47,7 @@ ___ #### Defined in -[src/models/Group.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Group.ts#L15) +[src/models/Group.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Group.ts#L15) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[src/models/Group.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Group.ts#L11) +[src/models/Group.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Group.ts#L11) ___ @@ -67,7 +67,7 @@ ___ #### Defined in -[src/models/Group.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Group.ts#L12) +[src/models/Group.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Group.ts#L12) ___ @@ -77,7 +77,7 @@ ___ #### Defined in -[src/models/Group.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Group.ts#L13) +[src/models/Group.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Group.ts#L13) ___ @@ -87,7 +87,7 @@ ___ #### Defined in -[src/models/Group.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Group.ts#L10) +[src/models/Group.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Group.ts#L10) ___ @@ -97,4 +97,4 @@ ___ #### Defined in -[src/models/Group.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Group.ts#L16) +[src/models/Group.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Group.ts#L16) diff --git a/talawa-api-docs/interfaces/models_GroupChat.InterfaceGroupChat.md b/talawa-api-docs/interfaces/models_GroupChat.InterfaceGroupChat.md index 292147c9f9b..50e6f2bdb79 100644 --- a/talawa-api-docs/interfaces/models_GroupChat.InterfaceGroupChat.md +++ b/talawa-api-docs/interfaces/models_GroupChat.InterfaceGroupChat.md @@ -28,7 +28,7 @@ This is an interface representing a document for a group chat in the database(Mo #### Defined in -[src/models/GroupChat.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChat.ts#L10) +[src/models/GroupChat.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChat.ts#L10) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChat.ts#L15) +[src/models/GroupChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChat.ts#L15) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChat.ts#L14) +[src/models/GroupChat.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChat.ts#L14) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChat.ts#L13) +[src/models/GroupChat.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChat.ts#L13) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChat.ts#L17) +[src/models/GroupChat.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChat.ts#L17) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChat.ts#L18) +[src/models/GroupChat.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChat.ts#L18) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChat.ts#L11) +[src/models/GroupChat.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChat.ts#L11) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChat.ts#L16) +[src/models/GroupChat.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChat.ts#L16) ___ @@ -108,4 +108,4 @@ ___ #### Defined in -[src/models/GroupChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChat.ts#L12) +[src/models/GroupChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChat.ts#L12) diff --git a/talawa-api-docs/interfaces/models_GroupChatMessage.InterfaceGroupChatMessage.md b/talawa-api-docs/interfaces/models_GroupChatMessage.InterfaceGroupChatMessage.md index 8e20312be5d..794c39a6d1c 100644 --- a/talawa-api-docs/interfaces/models_GroupChatMessage.InterfaceGroupChatMessage.md +++ b/talawa-api-docs/interfaces/models_GroupChatMessage.InterfaceGroupChatMessage.md @@ -26,7 +26,7 @@ This is an interface that represents a database(MongoDB) document for Group Chat #### Defined in -[src/models/GroupChatMessage.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChatMessage.ts#L9) +[src/models/GroupChatMessage.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChatMessage.ts#L9) ___ @@ -36,7 +36,7 @@ ___ #### Defined in -[src/models/GroupChatMessage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChatMessage.ts#L12) +[src/models/GroupChatMessage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChatMessage.ts#L12) ___ @@ -46,7 +46,7 @@ ___ #### Defined in -[src/models/GroupChatMessage.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChatMessage.ts#L10) +[src/models/GroupChatMessage.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChatMessage.ts#L10) ___ @@ -56,7 +56,7 @@ ___ #### Defined in -[src/models/GroupChatMessage.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChatMessage.ts#L14) +[src/models/GroupChatMessage.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChatMessage.ts#L14) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[src/models/GroupChatMessage.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChatMessage.ts#L11) +[src/models/GroupChatMessage.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChatMessage.ts#L11) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[src/models/GroupChatMessage.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChatMessage.ts#L15) +[src/models/GroupChatMessage.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChatMessage.ts#L15) ___ @@ -86,4 +86,4 @@ ___ #### Defined in -[src/models/GroupChatMessage.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChatMessage.ts#L13) +[src/models/GroupChatMessage.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChatMessage.ts#L13) diff --git a/talawa-api-docs/interfaces/models_ImageHash.InterfaceImageHash.md b/talawa-api-docs/interfaces/models_ImageHash.InterfaceImageHash.md index b79d755407f..c3f875bf303 100644 --- a/talawa-api-docs/interfaces/models_ImageHash.InterfaceImageHash.md +++ b/talawa-api-docs/interfaces/models_ImageHash.InterfaceImageHash.md @@ -24,7 +24,7 @@ This is an interface that represents a database(MongoDB) document for Image Hash #### Defined in -[src/models/ImageHash.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ImageHash.ts#L7) +[src/models/ImageHash.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ImageHash.ts#L7) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/models/ImageHash.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ImageHash.ts#L9) +[src/models/ImageHash.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ImageHash.ts#L9) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/models/ImageHash.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ImageHash.ts#L8) +[src/models/ImageHash.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ImageHash.ts#L8) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/models/ImageHash.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ImageHash.ts#L10) +[src/models/ImageHash.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ImageHash.ts#L10) ___ @@ -64,4 +64,4 @@ ___ #### Defined in -[src/models/ImageHash.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ImageHash.ts#L11) +[src/models/ImageHash.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ImageHash.ts#L11) diff --git a/talawa-api-docs/interfaces/models_Language.InterfaceLanguage.md b/talawa-api-docs/interfaces/models_Language.InterfaceLanguage.md index 4182487e9b9..4918830262e 100644 --- a/talawa-api-docs/interfaces/models_Language.InterfaceLanguage.md +++ b/talawa-api-docs/interfaces/models_Language.InterfaceLanguage.md @@ -23,7 +23,7 @@ This is an interface that represents a database(MongoDB) document for Language. #### Defined in -[src/models/Language.ts:47](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Language.ts#L47) +[src/models/Language.ts:47](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Language.ts#L47) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/Language.ts:50](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Language.ts#L50) +[src/models/Language.ts:50](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Language.ts#L50) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/Language.ts:48](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Language.ts#L48) +[src/models/Language.ts:48](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Language.ts#L48) ___ @@ -53,4 +53,4 @@ ___ #### Defined in -[src/models/Language.ts:49](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Language.ts#L49) +[src/models/Language.ts:49](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Language.ts#L49) diff --git a/talawa-api-docs/interfaces/models_Language.InterfaceLanguageModel.md b/talawa-api-docs/interfaces/models_Language.InterfaceLanguageModel.md index 70d999f549e..5da5a4f558d 100644 --- a/talawa-api-docs/interfaces/models_Language.InterfaceLanguageModel.md +++ b/talawa-api-docs/interfaces/models_Language.InterfaceLanguageModel.md @@ -23,7 +23,7 @@ This is an interface that represents a database document. #### Defined in -[src/models/Language.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Language.ts#L10) +[src/models/Language.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Language.ts#L10) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/Language.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Language.ts#L7) +[src/models/Language.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Language.ts#L7) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/Language.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Language.ts#L8) +[src/models/Language.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Language.ts#L8) ___ @@ -53,4 +53,4 @@ ___ #### Defined in -[src/models/Language.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Language.ts#L9) +[src/models/Language.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Language.ts#L9) diff --git a/talawa-api-docs/interfaces/models_MembershipRequest.InterfaceMembershipRequest.md b/talawa-api-docs/interfaces/models_MembershipRequest.InterfaceMembershipRequest.md index 126c361fba8..1fb50ff1346 100644 --- a/talawa-api-docs/interfaces/models_MembershipRequest.InterfaceMembershipRequest.md +++ b/talawa-api-docs/interfaces/models_MembershipRequest.InterfaceMembershipRequest.md @@ -23,7 +23,7 @@ This is an interface that represents a database(MongoDB) document for Membership #### Defined in -[src/models/MembershipRequest.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/MembershipRequest.ts#L9) +[src/models/MembershipRequest.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/MembershipRequest.ts#L9) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/MembershipRequest.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/MembershipRequest.ts#L10) +[src/models/MembershipRequest.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/MembershipRequest.ts#L10) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/MembershipRequest.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/MembershipRequest.ts#L12) +[src/models/MembershipRequest.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/MembershipRequest.ts#L12) ___ @@ -53,4 +53,4 @@ ___ #### Defined in -[src/models/MembershipRequest.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/MembershipRequest.ts#L11) +[src/models/MembershipRequest.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/MembershipRequest.ts#L11) diff --git a/talawa-api-docs/interfaces/models_Message.InterfaceMessage.md b/talawa-api-docs/interfaces/models_Message.InterfaceMessage.md index 28b59db0c18..f713245d748 100644 --- a/talawa-api-docs/interfaces/models_Message.InterfaceMessage.md +++ b/talawa-api-docs/interfaces/models_Message.InterfaceMessage.md @@ -28,7 +28,7 @@ This is an interface that represents a database(MongoDB) document for Message. #### Defined in -[src/models/Message.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Message.ts#L9) +[src/models/Message.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Message.ts#L9) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/models/Message.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Message.ts#L13) +[src/models/Message.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Message.ts#L13) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[src/models/Message.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Message.ts#L15) +[src/models/Message.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Message.ts#L15) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[src/models/Message.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Message.ts#L16) +[src/models/Message.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Message.ts#L16) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[src/models/Message.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Message.ts#L11) +[src/models/Message.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Message.ts#L11) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[src/models/Message.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Message.ts#L17) +[src/models/Message.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Message.ts#L17) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[src/models/Message.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Message.ts#L10) +[src/models/Message.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Message.ts#L10) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[src/models/Message.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Message.ts#L14) +[src/models/Message.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Message.ts#L14) ___ @@ -108,4 +108,4 @@ ___ #### Defined in -[src/models/Message.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Message.ts#L12) +[src/models/Message.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Message.ts#L12) diff --git a/talawa-api-docs/interfaces/models_MessageChat.InterfaceMessageChat.md b/talawa-api-docs/interfaces/models_MessageChat.InterfaceMessageChat.md index d5ff72a4b96..b906b3d3d07 100644 --- a/talawa-api-docs/interfaces/models_MessageChat.InterfaceMessageChat.md +++ b/talawa-api-docs/interfaces/models_MessageChat.InterfaceMessageChat.md @@ -26,7 +26,7 @@ This is an interface representing a document for a chat in the database(MongoDB) #### Defined in -[src/models/MessageChat.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/MessageChat.ts#L8) +[src/models/MessageChat.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/MessageChat.ts#L8) ___ @@ -36,7 +36,7 @@ ___ #### Defined in -[src/models/MessageChat.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/MessageChat.ts#L13) +[src/models/MessageChat.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/MessageChat.ts#L13) ___ @@ -46,7 +46,7 @@ ___ #### Defined in -[src/models/MessageChat.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/MessageChat.ts#L10) +[src/models/MessageChat.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/MessageChat.ts#L10) ___ @@ -56,7 +56,7 @@ ___ #### Defined in -[src/models/MessageChat.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/MessageChat.ts#L9) +[src/models/MessageChat.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/MessageChat.ts#L9) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[src/models/MessageChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/MessageChat.ts#L12) +[src/models/MessageChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/MessageChat.ts#L12) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[src/models/MessageChat.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/MessageChat.ts#L11) +[src/models/MessageChat.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/MessageChat.ts#L11) ___ @@ -86,4 +86,4 @@ ___ #### Defined in -[src/models/MessageChat.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/MessageChat.ts#L14) +[src/models/MessageChat.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/MessageChat.ts#L14) diff --git a/talawa-api-docs/interfaces/models_Organization.InterfaceOrganization.md b/talawa-api-docs/interfaces/models_Organization.InterfaceOrganization.md index 34c8efbcecb..b6b1cb6bbbb 100644 --- a/talawa-api-docs/interfaces/models_Organization.InterfaceOrganization.md +++ b/talawa-api-docs/interfaces/models_Organization.InterfaceOrganization.md @@ -39,7 +39,7 @@ This is an interface that represents a database(MongoDB) document for Organizati #### Defined in -[src/models/Organization.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L12) +[src/models/Organization.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L12) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[src/models/Organization.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L17) +[src/models/Organization.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L17) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[src/models/Organization.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L30) +[src/models/Organization.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L30) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[src/models/Organization.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L13) +[src/models/Organization.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L13) ___ @@ -92,7 +92,7 @@ ___ #### Defined in -[src/models/Organization.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L35) +[src/models/Organization.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L35) ___ @@ -102,7 +102,7 @@ ___ #### Defined in -[src/models/Organization.ts:37](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L37) +[src/models/Organization.ts:37](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L37) ___ @@ -112,7 +112,7 @@ ___ #### Defined in -[src/models/Organization.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L27) +[src/models/Organization.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L27) ___ @@ -122,7 +122,7 @@ ___ #### Defined in -[src/models/Organization.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L36) +[src/models/Organization.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L36) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[src/models/Organization.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L16) +[src/models/Organization.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L16) ___ @@ -142,7 +142,7 @@ ___ #### Defined in -[src/models/Organization.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L31) +[src/models/Organization.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L31) ___ @@ -152,7 +152,7 @@ ___ #### Defined in -[src/models/Organization.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L14) +[src/models/Organization.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L14) ___ @@ -162,7 +162,7 @@ ___ #### Defined in -[src/models/Organization.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L29) +[src/models/Organization.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L29) ___ @@ -172,7 +172,7 @@ ___ #### Defined in -[src/models/Organization.ts:34](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L34) +[src/models/Organization.ts:34](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L34) ___ @@ -182,7 +182,7 @@ ___ #### Defined in -[src/models/Organization.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L15) +[src/models/Organization.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L15) ___ @@ -192,7 +192,7 @@ ___ #### Defined in -[src/models/Organization.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L33) +[src/models/Organization.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L33) ___ @@ -202,7 +202,7 @@ ___ #### Defined in -[src/models/Organization.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L32) +[src/models/Organization.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L32) ___ @@ -212,7 +212,7 @@ ___ #### Defined in -[src/models/Organization.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L28) +[src/models/Organization.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L28) ___ @@ -222,7 +222,7 @@ ___ #### Defined in -[src/models/Organization.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L38) +[src/models/Organization.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L38) ___ @@ -232,7 +232,7 @@ ___ #### Defined in -[src/models/Organization.ts:39](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L39) +[src/models/Organization.ts:39](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L39) ___ @@ -242,4 +242,4 @@ ___ #### Defined in -[src/models/Organization.ts:40](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L40) +[src/models/Organization.ts:40](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L40) diff --git a/talawa-api-docs/interfaces/models_OrganizationCustomField.InterfaceOrganizationCustomField.md b/talawa-api-docs/interfaces/models_OrganizationCustomField.InterfaceOrganizationCustomField.md index e8f13051216..6a20d521a04 100644 --- a/talawa-api-docs/interfaces/models_OrganizationCustomField.InterfaceOrganizationCustomField.md +++ b/talawa-api-docs/interfaces/models_OrganizationCustomField.InterfaceOrganizationCustomField.md @@ -21,7 +21,7 @@ #### Defined in -[src/models/OrganizationCustomField.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/OrganizationCustomField.ts#L5) +[src/models/OrganizationCustomField.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/OrganizationCustomField.ts#L5) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/models/OrganizationCustomField.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/OrganizationCustomField.ts#L8) +[src/models/OrganizationCustomField.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/OrganizationCustomField.ts#L8) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/models/OrganizationCustomField.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/OrganizationCustomField.ts#L6) +[src/models/OrganizationCustomField.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/OrganizationCustomField.ts#L6) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/models/OrganizationCustomField.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/OrganizationCustomField.ts#L7) +[src/models/OrganizationCustomField.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/OrganizationCustomField.ts#L7) diff --git a/talawa-api-docs/interfaces/models_OrganizationTagUser.InterfaceOrganizationTagUser.md b/talawa-api-docs/interfaces/models_OrganizationTagUser.InterfaceOrganizationTagUser.md index e80adc89ace..2e84bbb11a7 100644 --- a/talawa-api-docs/interfaces/models_OrganizationTagUser.InterfaceOrganizationTagUser.md +++ b/talawa-api-docs/interfaces/models_OrganizationTagUser.InterfaceOrganizationTagUser.md @@ -21,7 +21,7 @@ #### Defined in -[src/models/OrganizationTagUser.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/OrganizationTagUser.ts#L6) +[src/models/OrganizationTagUser.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/OrganizationTagUser.ts#L6) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/models/OrganizationTagUser.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/OrganizationTagUser.ts#L9) +[src/models/OrganizationTagUser.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/OrganizationTagUser.ts#L9) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/models/OrganizationTagUser.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/OrganizationTagUser.ts#L7) +[src/models/OrganizationTagUser.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/OrganizationTagUser.ts#L7) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/models/OrganizationTagUser.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/OrganizationTagUser.ts#L8) +[src/models/OrganizationTagUser.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/OrganizationTagUser.ts#L8) diff --git a/talawa-api-docs/interfaces/models_Plugin.InterfacePlugin.md b/talawa-api-docs/interfaces/models_Plugin.InterfacePlugin.md index 8fa03920a14..f41d1678096 100644 --- a/talawa-api-docs/interfaces/models_Plugin.InterfacePlugin.md +++ b/talawa-api-docs/interfaces/models_Plugin.InterfacePlugin.md @@ -24,7 +24,7 @@ This is an interface that represents a database(MongoDB) document for Plugin. #### Defined in -[src/models/Plugin.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Plugin.ts#L7) +[src/models/Plugin.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Plugin.ts#L7) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/models/Plugin.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Plugin.ts#L9) +[src/models/Plugin.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Plugin.ts#L9) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/models/Plugin.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Plugin.ts#L10) +[src/models/Plugin.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Plugin.ts#L10) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/models/Plugin.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Plugin.ts#L8) +[src/models/Plugin.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Plugin.ts#L8) ___ @@ -64,4 +64,4 @@ ___ #### Defined in -[src/models/Plugin.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Plugin.ts#L11) +[src/models/Plugin.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Plugin.ts#L11) diff --git a/talawa-api-docs/interfaces/models_PluginField.InterfacePluginField.md b/talawa-api-docs/interfaces/models_PluginField.InterfacePluginField.md index 05780504f96..8de68ac43f6 100644 --- a/talawa-api-docs/interfaces/models_PluginField.InterfacePluginField.md +++ b/talawa-api-docs/interfaces/models_PluginField.InterfacePluginField.md @@ -24,7 +24,7 @@ This is an interface that represents a database(MongoDB) document for Plugin Fie #### Defined in -[src/models/PluginField.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/PluginField.ts#L7) +[src/models/PluginField.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/PluginField.ts#L7) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/models/PluginField.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/PluginField.ts#L11) +[src/models/PluginField.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/PluginField.ts#L11) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/models/PluginField.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/PluginField.ts#L8) +[src/models/PluginField.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/PluginField.ts#L8) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/models/PluginField.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/PluginField.ts#L10) +[src/models/PluginField.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/PluginField.ts#L10) ___ @@ -64,4 +64,4 @@ ___ #### Defined in -[src/models/PluginField.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/PluginField.ts#L9) +[src/models/PluginField.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/PluginField.ts#L9) diff --git a/talawa-api-docs/interfaces/models_Post.InterfacePost.md b/talawa-api-docs/interfaces/models_Post.InterfacePost.md index bc937e3e1b7..0a9c4e34802 100644 --- a/talawa-api-docs/interfaces/models_Post.InterfacePost.md +++ b/talawa-api-docs/interfaces/models_Post.InterfacePost.md @@ -33,7 +33,7 @@ This is an interface that represents a database(MongoDB) document for Post. #### Defined in -[src/models/Post.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L10) +[src/models/Post.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L10) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/Post.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L11) +[src/models/Post.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L11) ___ @@ -53,7 +53,7 @@ ___ #### Defined in -[src/models/Post.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L12) +[src/models/Post.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L12) ___ @@ -63,7 +63,7 @@ ___ #### Defined in -[src/models/Post.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L13) +[src/models/Post.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L13) ___ @@ -73,7 +73,7 @@ ___ #### Defined in -[src/models/Post.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L14) +[src/models/Post.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L14) ___ @@ -83,7 +83,7 @@ ___ #### Defined in -[src/models/Post.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L15) +[src/models/Post.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L15) ___ @@ -93,7 +93,7 @@ ___ #### Defined in -[src/models/Post.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L16) +[src/models/Post.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L16) ___ @@ -103,7 +103,7 @@ ___ #### Defined in -[src/models/Post.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L17) +[src/models/Post.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L17) ___ @@ -113,7 +113,7 @@ ___ #### Defined in -[src/models/Post.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L18) +[src/models/Post.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L18) ___ @@ -123,7 +123,7 @@ ___ #### Defined in -[src/models/Post.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L19) +[src/models/Post.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L19) ___ @@ -133,7 +133,7 @@ ___ #### Defined in -[src/models/Post.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L20) +[src/models/Post.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L20) ___ @@ -143,7 +143,7 @@ ___ #### Defined in -[src/models/Post.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L21) +[src/models/Post.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L21) ___ @@ -153,7 +153,7 @@ ___ #### Defined in -[src/models/Post.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L22) +[src/models/Post.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L22) ___ @@ -163,4 +163,4 @@ ___ #### Defined in -[src/models/Post.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L23) +[src/models/Post.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L23) diff --git a/talawa-api-docs/interfaces/models_SampleData.InterfaceSampleData.md b/talawa-api-docs/interfaces/models_SampleData.InterfaceSampleData.md index ae4ce343dd2..c916e3d6dc4 100644 --- a/talawa-api-docs/interfaces/models_SampleData.InterfaceSampleData.md +++ b/talawa-api-docs/interfaces/models_SampleData.InterfaceSampleData.md @@ -19,7 +19,7 @@ #### Defined in -[src/models/SampleData.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/SampleData.ts#L6) +[src/models/SampleData.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/SampleData.ts#L6) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/models/SampleData.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/SampleData.ts#L5) +[src/models/SampleData.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/SampleData.ts#L5) diff --git a/talawa-api-docs/interfaces/models_TagUser.InterfaceTagUser.md b/talawa-api-docs/interfaces/models_TagUser.InterfaceTagUser.md index 64f17476ead..36c8db370ac 100644 --- a/talawa-api-docs/interfaces/models_TagUser.InterfaceTagUser.md +++ b/talawa-api-docs/interfaces/models_TagUser.InterfaceTagUser.md @@ -20,7 +20,7 @@ #### Defined in -[src/models/TagUser.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/TagUser.ts#L7) +[src/models/TagUser.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/TagUser.ts#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/models/TagUser.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/TagUser.ts#L9) +[src/models/TagUser.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/TagUser.ts#L9) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/models/TagUser.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/TagUser.ts#L8) +[src/models/TagUser.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/TagUser.ts#L8) diff --git a/talawa-api-docs/interfaces/models_User.InterfaceUser.md b/talawa-api-docs/interfaces/models_User.InterfaceUser.md index aebb1e455da..8cf612f42aa 100644 --- a/talawa-api-docs/interfaces/models_User.InterfaceUser.md +++ b/talawa-api-docs/interfaces/models_User.InterfaceUser.md @@ -49,7 +49,7 @@ This is an interface that represents a database(MongoDB) document for User. #### Defined in -[src/models/User.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L15) +[src/models/User.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L15) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[src/models/User.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L16) +[src/models/User.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L16) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[src/models/User.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L26) +[src/models/User.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L26) ___ @@ -92,7 +92,7 @@ ___ #### Defined in -[src/models/User.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L27) +[src/models/User.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L27) ___ @@ -102,7 +102,7 @@ ___ #### Defined in -[src/models/User.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L28) +[src/models/User.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L28) ___ @@ -112,7 +112,7 @@ ___ #### Defined in -[src/models/User.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L29) +[src/models/User.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L29) ___ @@ -122,7 +122,7 @@ ___ #### Defined in -[src/models/User.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L30) +[src/models/User.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L30) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[src/models/User.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L31) +[src/models/User.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L31) ___ @@ -142,7 +142,7 @@ ___ #### Defined in -[src/models/User.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L32) +[src/models/User.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L32) ___ @@ -152,7 +152,7 @@ ___ #### Defined in -[src/models/User.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L33) +[src/models/User.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L33) ___ @@ -162,7 +162,7 @@ ___ #### Defined in -[src/models/User.ts:34](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L34) +[src/models/User.ts:34](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L34) ___ @@ -172,7 +172,7 @@ ___ #### Defined in -[src/models/User.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L35) +[src/models/User.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L35) ___ @@ -182,7 +182,7 @@ ___ #### Defined in -[src/models/User.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L36) +[src/models/User.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L36) ___ @@ -192,7 +192,7 @@ ___ #### Defined in -[src/models/User.ts:37](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L37) +[src/models/User.ts:37](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L37) ___ @@ -202,7 +202,7 @@ ___ #### Defined in -[src/models/User.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L38) +[src/models/User.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L38) ___ @@ -212,7 +212,7 @@ ___ #### Defined in -[src/models/User.ts:39](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L39) +[src/models/User.ts:39](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L39) ___ @@ -222,7 +222,7 @@ ___ #### Defined in -[src/models/User.ts:40](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L40) +[src/models/User.ts:40](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L40) ___ @@ -232,7 +232,7 @@ ___ #### Defined in -[src/models/User.ts:41](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L41) +[src/models/User.ts:41](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L41) ___ @@ -242,7 +242,7 @@ ___ #### Defined in -[src/models/User.ts:42](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L42) +[src/models/User.ts:42](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L42) ___ @@ -252,7 +252,7 @@ ___ #### Defined in -[src/models/User.ts:43](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L43) +[src/models/User.ts:43](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L43) ___ @@ -262,7 +262,7 @@ ___ #### Defined in -[src/models/User.ts:44](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L44) +[src/models/User.ts:44](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L44) ___ @@ -272,7 +272,7 @@ ___ #### Defined in -[src/models/User.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L45) +[src/models/User.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L45) ___ @@ -290,7 +290,7 @@ ___ #### Defined in -[src/models/User.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L46) +[src/models/User.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L46) ___ @@ -300,7 +300,7 @@ ___ #### Defined in -[src/models/User.ts:51](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L51) +[src/models/User.ts:51](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L51) ___ @@ -310,7 +310,7 @@ ___ #### Defined in -[src/models/User.ts:52](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L52) +[src/models/User.ts:52](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L52) ___ @@ -320,7 +320,7 @@ ___ #### Defined in -[src/models/User.ts:53](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L53) +[src/models/User.ts:53](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L53) ___ @@ -330,7 +330,7 @@ ___ #### Defined in -[src/models/User.ts:54](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L54) +[src/models/User.ts:54](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L54) ___ @@ -340,7 +340,7 @@ ___ #### Defined in -[src/models/User.ts:55](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L55) +[src/models/User.ts:55](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L55) ___ @@ -350,7 +350,7 @@ ___ #### Defined in -[src/models/User.ts:56](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L56) +[src/models/User.ts:56](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L56) ___ @@ -360,4 +360,4 @@ ___ #### Defined in -[src/models/User.ts:57](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L57) +[src/models/User.ts:57](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L57) diff --git a/talawa-api-docs/interfaces/models_UserCustomData.InterfaceUserCustomData.md b/talawa-api-docs/interfaces/models_UserCustomData.InterfaceUserCustomData.md index b069c13ccf9..242e4f7ab1d 100644 --- a/talawa-api-docs/interfaces/models_UserCustomData.InterfaceUserCustomData.md +++ b/talawa-api-docs/interfaces/models_UserCustomData.InterfaceUserCustomData.md @@ -23,7 +23,7 @@ This is an interface representing a document for custom field in the database(Mo #### Defined in -[src/models/UserCustomData.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/UserCustomData.ts#L8) +[src/models/UserCustomData.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/UserCustomData.ts#L8) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/UserCustomData.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/UserCustomData.ts#L9) +[src/models/UserCustomData.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/UserCustomData.ts#L9) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/UserCustomData.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/UserCustomData.ts#L11) +[src/models/UserCustomData.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/UserCustomData.ts#L11) ___ @@ -53,4 +53,4 @@ ___ #### Defined in -[src/models/UserCustomData.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/UserCustomData.ts#L10) +[src/models/UserCustomData.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/UserCustomData.ts#L10) diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.AnyScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.AnyScalarConfig.md index 4742631d949..463a3285cf1 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.AnyScalarConfig.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.AnyScalarConfig.md @@ -92,7 +92,7 @@ GraphQLScalarTypeConfig.name #### Defined in -[src/types/generatedGraphQLTypes.ts:2394](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2394) +[src/types/generatedGraphQLTypes.ts:2394](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2394) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.CountryCodeScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.CountryCodeScalarConfig.md index 490a3bb1d67..4d42c90fa4e 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.CountryCodeScalarConfig.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.CountryCodeScalarConfig.md @@ -92,7 +92,7 @@ GraphQLScalarTypeConfig.name #### Defined in -[src/types/generatedGraphQLTypes.ts:2449](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2449) +[src/types/generatedGraphQLTypes.ts:2449](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2449) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.DateScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.DateScalarConfig.md index 15ac45e5560..5a09504e7e2 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.DateScalarConfig.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.DateScalarConfig.md @@ -92,7 +92,7 @@ GraphQLScalarTypeConfig.name #### Defined in -[src/types/generatedGraphQLTypes.ts:2453](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2453) +[src/types/generatedGraphQLTypes.ts:2453](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2453) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.DateTimeScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.DateTimeScalarConfig.md index 9252988bae1..6a1fdaeadb7 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.DateTimeScalarConfig.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.DateTimeScalarConfig.md @@ -92,7 +92,7 @@ GraphQLScalarTypeConfig.name #### Defined in -[src/types/generatedGraphQLTypes.ts:2457](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2457) +[src/types/generatedGraphQLTypes.ts:2457](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2457) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.EmailAddressScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.EmailAddressScalarConfig.md index cf7aab295f7..b23d9cf5bdc 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.EmailAddressScalarConfig.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.EmailAddressScalarConfig.md @@ -92,7 +92,7 @@ GraphQLScalarTypeConfig.name #### Defined in -[src/types/generatedGraphQLTypes.ts:2501](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2501) +[src/types/generatedGraphQLTypes.ts:2501](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2501) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.JsonScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.JsonScalarConfig.md index 0af10d7d6b8..e11635de8f9 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.JsonScalarConfig.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.JsonScalarConfig.md @@ -92,7 +92,7 @@ GraphQLScalarTypeConfig.name #### Defined in -[src/types/generatedGraphQLTypes.ts:2600](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2600) +[src/types/generatedGraphQLTypes.ts:2600](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2600) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.LatitudeScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.LatitudeScalarConfig.md index 44e508e7e17..27c96c82c40 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.LatitudeScalarConfig.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.LatitudeScalarConfig.md @@ -92,7 +92,7 @@ GraphQLScalarTypeConfig.name #### Defined in -[src/types/generatedGraphQLTypes.ts:2621](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2621) +[src/types/generatedGraphQLTypes.ts:2621](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2621) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.LongitudeScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.LongitudeScalarConfig.md index 8451c6f3014..eeb43410fa9 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.LongitudeScalarConfig.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.LongitudeScalarConfig.md @@ -92,7 +92,7 @@ GraphQLScalarTypeConfig.name #### Defined in -[src/types/generatedGraphQLTypes.ts:2625](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2625) +[src/types/generatedGraphQLTypes.ts:2625](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2625) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.PhoneNumberScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.PhoneNumberScalarConfig.md index 5480a0d3308..cb53d76b6a1 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.PhoneNumberScalarConfig.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.PhoneNumberScalarConfig.md @@ -92,7 +92,7 @@ GraphQLScalarTypeConfig.name #### Defined in -[src/types/generatedGraphQLTypes.ts:2836](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2836) +[src/types/generatedGraphQLTypes.ts:2836](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2836) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.PositiveIntScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.PositiveIntScalarConfig.md index 3d016be0117..54d5219b0d3 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.PositiveIntScalarConfig.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.PositiveIntScalarConfig.md @@ -92,7 +92,7 @@ GraphQLScalarTypeConfig.name #### Defined in -[src/types/generatedGraphQLTypes.ts:2857](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2857) +[src/types/generatedGraphQLTypes.ts:2857](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2857) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.SubscriptionResolverObject.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.SubscriptionResolverObject.md index bf10e9bcc60..47fd8f1be4d 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.SubscriptionResolverObject.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.SubscriptionResolverObject.md @@ -28,7 +28,7 @@ #### Defined in -[src/types/generatedGraphQLTypes.ts:2014](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2014) +[src/types/generatedGraphQLTypes.ts:2014](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2014) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2013](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2013) +[src/types/generatedGraphQLTypes.ts:2013](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2013) diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.SubscriptionSubscriberObject.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.SubscriptionSubscriberObject.md index f71a2b91b9a..fc296110647 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.SubscriptionSubscriberObject.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.SubscriptionSubscriberObject.md @@ -29,7 +29,7 @@ #### Defined in -[src/types/generatedGraphQLTypes.ts:2009](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2009) +[src/types/generatedGraphQLTypes.ts:2009](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2009) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2008](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2008) +[src/types/generatedGraphQLTypes.ts:2008](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2008) diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.TimeScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.TimeScalarConfig.md index 16610b321ad..c51b8b7a409 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.TimeScalarConfig.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.TimeScalarConfig.md @@ -92,7 +92,7 @@ GraphQLScalarTypeConfig.name #### Defined in -[src/types/generatedGraphQLTypes.ts:2934](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2934) +[src/types/generatedGraphQLTypes.ts:2934](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2934) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.UploadScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.UploadScalarConfig.md index e57e91fa156..a958128b8fd 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.UploadScalarConfig.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.UploadScalarConfig.md @@ -92,7 +92,7 @@ GraphQLScalarTypeConfig.name #### Defined in -[src/types/generatedGraphQLTypes.ts:2965](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2965) +[src/types/generatedGraphQLTypes.ts:2965](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2965) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.UrlScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.UrlScalarConfig.md index b262dfe7519..6580b62896f 100644 --- a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.UrlScalarConfig.md +++ b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.UrlScalarConfig.md @@ -92,7 +92,7 @@ GraphQLScalarTypeConfig.name #### Defined in -[src/types/generatedGraphQLTypes.ts:2946](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2946) +[src/types/generatedGraphQLTypes.ts:2946](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2946) ___ diff --git a/talawa-api-docs/interfaces/utilities_auth.InterfaceJwtTokenPayload.md b/talawa-api-docs/interfaces/utilities_auth.InterfaceJwtTokenPayload.md index 4947aaa9ecb..3fd2b056063 100644 --- a/talawa-api-docs/interfaces/utilities_auth.InterfaceJwtTokenPayload.md +++ b/talawa-api-docs/interfaces/utilities_auth.InterfaceJwtTokenPayload.md @@ -22,7 +22,7 @@ #### Defined in -[src/utilities/auth.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/auth.ts#L11) +[src/utilities/auth.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/auth.ts#L11) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/utilities/auth.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/auth.ts#L9) +[src/utilities/auth.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/auth.ts#L9) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/utilities/auth.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/auth.ts#L10) +[src/utilities/auth.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/auth.ts#L10) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/utilities/auth.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/auth.ts#L7) +[src/utilities/auth.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/auth.ts#L7) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/utilities/auth.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/auth.ts#L8) +[src/utilities/auth.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/auth.ts#L8) diff --git a/talawa-api-docs/interfaces/utilities_mailer.InterfaceMailFields.md b/talawa-api-docs/interfaces/utilities_mailer.InterfaceMailFields.md index 91c2adc461e..f5f4c9973f5 100644 --- a/talawa-api-docs/interfaces/utilities_mailer.InterfaceMailFields.md +++ b/talawa-api-docs/interfaces/utilities_mailer.InterfaceMailFields.md @@ -20,7 +20,7 @@ #### Defined in -[src/utilities/mailer.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/mailer.ts#L14) +[src/utilities/mailer.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/mailer.ts#L14) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/utilities/mailer.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/mailer.ts#L12) +[src/utilities/mailer.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/mailer.ts#L12) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/utilities/mailer.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/mailer.ts#L13) +[src/utilities/mailer.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/mailer.ts#L13) diff --git a/talawa-api-docs/modules/app.md b/talawa-api-docs/modules/app.md index 12d996519ff..10040668b77 100644 --- a/talawa-api-docs/modules/app.md +++ b/talawa-api-docs/modules/app.md @@ -30,7 +30,7 @@ third argument. #### Defined in -[src/app.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/app.ts#L15) +[src/app.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/app.ts#L15) ▸ **default**(`req`, `res`, `next`): `void` @@ -48,4 +48,4 @@ third argument. #### Defined in -[src/app.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/app.ts#L15) +[src/app.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/app.ts#L15) diff --git a/talawa-api-docs/modules/checks.md b/talawa-api-docs/modules/checks.md index cfdd1478363..84e11cdb9cb 100644 --- a/talawa-api-docs/modules/checks.md +++ b/talawa-api-docs/modules/checks.md @@ -20,4 +20,4 @@ #### Defined in -[src/checks.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/checks.ts#L27) +[src/checks.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/checks.ts#L27) diff --git a/talawa-api-docs/modules/config_appConfig.md b/talawa-api-docs/modules/config_appConfig.md index b842a286555..b2bfab86cf1 100644 --- a/talawa-api-docs/modules/config_appConfig.md +++ b/talawa-api-docs/modules/config_appConfig.md @@ -26,4 +26,4 @@ #### Defined in -[src/config/appConfig.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/config/appConfig.ts#L1) +[src/config/appConfig.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/config/appConfig.ts#L1) diff --git a/talawa-api-docs/modules/config_plugins_loadPlugins.md b/talawa-api-docs/modules/config_plugins_loadPlugins.md index 1085b4afaac..7045b831893 100644 --- a/talawa-api-docs/modules/config_plugins_loadPlugins.md +++ b/talawa-api-docs/modules/config_plugins_loadPlugins.md @@ -20,4 +20,4 @@ #### Defined in -[src/config/plugins/loadPlugins.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/config/plugins/loadPlugins.ts#L7) +[src/config/plugins/loadPlugins.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/config/plugins/loadPlugins.ts#L7) diff --git a/talawa-api-docs/modules/constants.md b/talawa-api-docs/modules/constants.md index f0135d6df25..ca771060042 100644 --- a/talawa-api-docs/modules/constants.md +++ b/talawa-api-docs/modules/constants.md @@ -117,7 +117,7 @@ #### Defined in -[src/constants.ts:490](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L490) +[src/constants.ts:490](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L490) ___ @@ -136,7 +136,7 @@ ___ #### Defined in -[src/constants.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L24) +[src/constants.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L24) ___ @@ -155,7 +155,7 @@ ___ #### Defined in -[src/constants.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L17) +[src/constants.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L17) ___ @@ -174,7 +174,7 @@ ___ #### Defined in -[src/constants.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L10) +[src/constants.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L10) ___ @@ -192,7 +192,7 @@ ___ #### Defined in -[src/constants.ts:254](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L254) +[src/constants.ts:254](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L254) ___ @@ -210,7 +210,7 @@ ___ #### Defined in -[src/constants.ts:247](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L247) +[src/constants.ts:247](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L247) ___ @@ -228,7 +228,7 @@ ___ #### Defined in -[src/constants.ts:235](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L235) +[src/constants.ts:235](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L235) ___ @@ -246,7 +246,7 @@ ___ #### Defined in -[src/constants.ts:241](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L241) +[src/constants.ts:241](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L241) ___ @@ -265,7 +265,7 @@ ___ #### Defined in -[src/constants.ts:340](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L340) +[src/constants.ts:340](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L340) ___ @@ -275,7 +275,7 @@ ___ #### Defined in -[src/constants.ts:488](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L488) +[src/constants.ts:488](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L488) ___ @@ -294,7 +294,7 @@ ___ #### Defined in -[src/constants.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L31) +[src/constants.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L31) ___ @@ -313,7 +313,7 @@ ___ #### Defined in -[src/constants.ts:37](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L37) +[src/constants.ts:37](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L37) ___ @@ -331,7 +331,7 @@ ___ #### Defined in -[src/constants.ts:460](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L460) +[src/constants.ts:460](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L460) ___ @@ -349,7 +349,7 @@ ___ #### Defined in -[src/constants.ts:472](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L472) +[src/constants.ts:472](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L472) ___ @@ -367,7 +367,7 @@ ___ #### Defined in -[src/constants.ts:466](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L466) +[src/constants.ts:466](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L466) ___ @@ -385,7 +385,7 @@ ___ #### Defined in -[src/constants.ts:478](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L478) +[src/constants.ts:478](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L478) ___ @@ -404,7 +404,7 @@ ___ #### Defined in -[src/constants.ts:426](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L426) +[src/constants.ts:426](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L426) ___ @@ -422,7 +422,7 @@ ___ #### Defined in -[src/constants.ts:155](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L155) +[src/constants.ts:155](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L155) ___ @@ -432,7 +432,7 @@ ___ #### Defined in -[src/constants.ts:43](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L43) +[src/constants.ts:43](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L43) ___ @@ -451,7 +451,7 @@ ___ #### Defined in -[src/constants.ts:44](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L44) +[src/constants.ts:44](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L44) ___ @@ -469,7 +469,7 @@ ___ #### Defined in -[src/constants.ts:51](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L51) +[src/constants.ts:51](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L51) ___ @@ -487,7 +487,7 @@ ___ #### Defined in -[src/constants.ts:167](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L167) +[src/constants.ts:167](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L167) ___ @@ -505,7 +505,7 @@ ___ #### Defined in -[src/constants.ts:124](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L124) +[src/constants.ts:124](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L124) ___ @@ -523,7 +523,7 @@ ___ #### Defined in -[src/constants.ts:299](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L299) +[src/constants.ts:299](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L299) ___ @@ -541,7 +541,7 @@ ___ #### Defined in -[src/constants.ts:346](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L346) +[src/constants.ts:346](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L346) ___ @@ -559,7 +559,7 @@ ___ #### Defined in -[src/constants.ts:143](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L143) +[src/constants.ts:143](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L143) ___ @@ -578,7 +578,7 @@ ___ #### Defined in -[src/constants.ts:406](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L406) +[src/constants.ts:406](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L406) ___ @@ -596,7 +596,7 @@ ___ #### Defined in -[src/constants.ts:118](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L118) +[src/constants.ts:118](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L118) ___ @@ -606,7 +606,7 @@ ___ #### Defined in -[src/constants.ts:57](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L57) +[src/constants.ts:57](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L57) ___ @@ -625,7 +625,7 @@ ___ #### Defined in -[src/constants.ts:412](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L412) +[src/constants.ts:412](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L412) ___ @@ -644,7 +644,7 @@ ___ #### Defined in -[src/constants.ts:130](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L130) +[src/constants.ts:130](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L130) ___ @@ -662,7 +662,7 @@ ___ #### Defined in -[src/constants.ts:292](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L292) +[src/constants.ts:292](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L292) ___ @@ -672,7 +672,7 @@ ___ #### Defined in -[src/constants.ts:59](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L59) +[src/constants.ts:59](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L59) ___ @@ -682,7 +682,7 @@ ___ #### Defined in -[src/constants.ts:502](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L502) +[src/constants.ts:502](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L502) ___ @@ -700,7 +700,7 @@ ___ #### Defined in -[src/constants.ts:174](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L174) +[src/constants.ts:174](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L174) ___ @@ -710,7 +710,7 @@ ___ #### Defined in -[src/constants.ts:523](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L523) +[src/constants.ts:523](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L523) ___ @@ -720,7 +720,7 @@ ___ #### Defined in -[src/constants.ts:525](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L525) +[src/constants.ts:525](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L525) ___ @@ -730,7 +730,7 @@ ___ #### Defined in -[src/constants.ts:500](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L500) +[src/constants.ts:500](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L500) ___ @@ -740,7 +740,7 @@ ___ #### Defined in -[src/constants.ts:498](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L498) +[src/constants.ts:498](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L498) ___ @@ -750,7 +750,7 @@ ___ #### Defined in -[src/constants.ts:484](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L484) +[src/constants.ts:484](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L484) ___ @@ -760,7 +760,7 @@ ___ #### Defined in -[src/constants.ts:486](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L486) +[src/constants.ts:486](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L486) ___ @@ -770,7 +770,7 @@ ___ #### Defined in -[src/constants.ts:72](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L72) +[src/constants.ts:72](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L72) ___ @@ -789,7 +789,7 @@ ___ #### Defined in -[src/constants.ts:66](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L66) +[src/constants.ts:66](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L66) ___ @@ -808,7 +808,7 @@ ___ #### Defined in -[src/constants.ts:60](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L60) +[src/constants.ts:60](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L60) ___ @@ -818,7 +818,7 @@ ___ #### Defined in -[src/constants.ts:518](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L518) +[src/constants.ts:518](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L518) ___ @@ -828,7 +828,7 @@ ___ #### Defined in -[src/constants.ts:494](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L494) +[src/constants.ts:494](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L494) ___ @@ -846,7 +846,7 @@ ___ #### Defined in -[src/constants.ts:305](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L305) +[src/constants.ts:305](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L305) ___ @@ -865,7 +865,7 @@ ___ #### Defined in -[src/constants.ts:93](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L93) +[src/constants.ts:93](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L93) ___ @@ -884,7 +884,7 @@ ___ #### Defined in -[src/constants.ts:75](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L75) +[src/constants.ts:75](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L75) ___ @@ -903,7 +903,7 @@ ___ #### Defined in -[src/constants.ts:81](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L81) +[src/constants.ts:81](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L81) ___ @@ -922,7 +922,7 @@ ___ #### Defined in -[src/constants.ts:87](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L87) +[src/constants.ts:87](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L87) ___ @@ -940,7 +940,7 @@ ___ #### Defined in -[src/constants.ts:266](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L266) +[src/constants.ts:266](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L266) ___ @@ -959,7 +959,7 @@ ___ #### Defined in -[src/constants.ts:99](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L99) +[src/constants.ts:99](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L99) ___ @@ -977,7 +977,7 @@ ___ #### Defined in -[src/constants.ts:260](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L260) +[src/constants.ts:260](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L260) ___ @@ -996,7 +996,7 @@ ___ #### Defined in -[src/constants.ts:105](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L105) +[src/constants.ts:105](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L105) ___ @@ -1006,7 +1006,7 @@ ___ #### Defined in -[src/constants.ts:496](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L496) +[src/constants.ts:496](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L496) ___ @@ -1016,7 +1016,7 @@ ___ #### Defined in -[src/constants.ts:514](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L514) +[src/constants.ts:514](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L514) ___ @@ -1026,7 +1026,7 @@ ___ #### Defined in -[src/constants.ts:516](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L516) +[src/constants.ts:516](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L516) ___ @@ -1036,7 +1036,7 @@ ___ #### Defined in -[src/constants.ts:515](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L515) +[src/constants.ts:515](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L515) ___ @@ -1046,7 +1046,7 @@ ___ #### Defined in -[src/constants.ts:492](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L492) +[src/constants.ts:492](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L492) ___ @@ -1064,7 +1064,7 @@ ___ #### Defined in -[src/constants.ts:180](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L180) +[src/constants.ts:180](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L180) ___ @@ -1083,7 +1083,7 @@ ___ #### Defined in -[src/constants.ts:111](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L111) +[src/constants.ts:111](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L111) ___ @@ -1101,7 +1101,7 @@ ___ #### Defined in -[src/constants.ts:137](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L137) +[src/constants.ts:137](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L137) ___ @@ -1120,7 +1120,7 @@ ___ #### Defined in -[src/constants.ts:453](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L453) +[src/constants.ts:453](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L453) ___ @@ -1141,7 +1141,7 @@ ___ #### Defined in -[src/constants.ts:505](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L505) +[src/constants.ts:505](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L505) ___ @@ -1159,7 +1159,7 @@ ___ #### Defined in -[src/constants.ts:161](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L161) +[src/constants.ts:161](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L161) ___ @@ -1169,7 +1169,7 @@ ___ #### Defined in -[src/constants.ts:351](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L351) +[src/constants.ts:351](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L351) ___ @@ -1187,7 +1187,7 @@ ___ #### Defined in -[src/constants.ts:394](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L394) +[src/constants.ts:394](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L394) ___ @@ -1205,7 +1205,7 @@ ___ #### Defined in -[src/constants.ts:312](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L312) +[src/constants.ts:312](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L312) ___ @@ -1223,7 +1223,7 @@ ___ #### Defined in -[src/constants.ts:279](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L279) +[src/constants.ts:279](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L279) ___ @@ -1242,7 +1242,7 @@ ___ #### Defined in -[src/constants.ts:400](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L400) +[src/constants.ts:400](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L400) ___ @@ -1260,7 +1260,7 @@ ___ #### Defined in -[src/constants.ts:149](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L149) +[src/constants.ts:149](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L149) ___ @@ -1270,7 +1270,7 @@ ___ #### Defined in -[src/constants.ts:353](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L353) +[src/constants.ts:353](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L353) ___ @@ -1288,7 +1288,7 @@ ___ #### Defined in -[src/constants.ts:447](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L447) +[src/constants.ts:447](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L447) ___ @@ -1306,7 +1306,7 @@ ___ #### Defined in -[src/constants.ts:326](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L326) +[src/constants.ts:326](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L326) ___ @@ -1325,7 +1325,7 @@ ___ #### Defined in -[src/constants.ts:358](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L358) +[src/constants.ts:358](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L358) ___ @@ -1343,7 +1343,7 @@ ___ #### Defined in -[src/constants.ts:198](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L198) +[src/constants.ts:198](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L198) ___ @@ -1362,7 +1362,7 @@ ___ #### Defined in -[src/constants.ts:364](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L364) +[src/constants.ts:364](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L364) ___ @@ -1380,7 +1380,7 @@ ___ #### Defined in -[src/constants.ts:222](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L222) +[src/constants.ts:222](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L222) ___ @@ -1398,7 +1398,7 @@ ___ #### Defined in -[src/constants.ts:285](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L285) +[src/constants.ts:285](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L285) ___ @@ -1416,7 +1416,7 @@ ___ #### Defined in -[src/constants.ts:333](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L333) +[src/constants.ts:333](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L333) ___ @@ -1434,7 +1434,7 @@ ___ #### Defined in -[src/constants.ts:192](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L192) +[src/constants.ts:192](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L192) ___ @@ -1453,7 +1453,7 @@ ___ #### Defined in -[src/constants.ts:370](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L370) +[src/constants.ts:370](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L370) ___ @@ -1471,7 +1471,7 @@ ___ #### Defined in -[src/constants.ts:186](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L186) +[src/constants.ts:186](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L186) ___ @@ -1489,7 +1489,7 @@ ___ #### Defined in -[src/constants.ts:319](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L319) +[src/constants.ts:319](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L319) ___ @@ -1507,7 +1507,7 @@ ___ #### Defined in -[src/constants.ts:272](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L272) +[src/constants.ts:272](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L272) ___ @@ -1525,7 +1525,7 @@ ___ #### Defined in -[src/constants.ts:210](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L210) +[src/constants.ts:210](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L210) ___ @@ -1544,7 +1544,7 @@ ___ #### Defined in -[src/constants.ts:376](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L376) +[src/constants.ts:376](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L376) ___ @@ -1563,7 +1563,7 @@ ___ #### Defined in -[src/constants.ts:382](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L382) +[src/constants.ts:382](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L382) ___ @@ -1581,7 +1581,7 @@ ___ #### Defined in -[src/constants.ts:216](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L216) +[src/constants.ts:216](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L216) ___ @@ -1599,7 +1599,7 @@ ___ #### Defined in -[src/constants.ts:204](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L204) +[src/constants.ts:204](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L204) ___ @@ -1618,7 +1618,7 @@ ___ #### Defined in -[src/constants.ts:419](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L419) +[src/constants.ts:419](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L419) ___ @@ -1636,7 +1636,7 @@ ___ #### Defined in -[src/constants.ts:228](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L228) +[src/constants.ts:228](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L228) ___ @@ -1655,7 +1655,7 @@ ___ #### Defined in -[src/constants.ts:388](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L388) +[src/constants.ts:388](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L388) ___ @@ -1674,7 +1674,7 @@ ___ #### Defined in -[src/constants.ts:433](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L433) +[src/constants.ts:433](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L433) ___ @@ -1693,7 +1693,7 @@ ___ #### Defined in -[src/constants.ts:440](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L440) +[src/constants.ts:440](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L440) ___ @@ -1703,7 +1703,7 @@ ___ #### Defined in -[src/constants.ts:521](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L521) +[src/constants.ts:521](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L521) ___ @@ -1713,4 +1713,4 @@ ___ #### Defined in -[src/constants.ts:520](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/constants.ts#L520) +[src/constants.ts:520](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/constants.ts#L520) diff --git a/talawa-api-docs/modules/db.md b/talawa-api-docs/modules/db.md index f1135151e01..a501da00168 100644 --- a/talawa-api-docs/modules/db.md +++ b/talawa-api-docs/modules/db.md @@ -21,7 +21,7 @@ #### Defined in -[src/db.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/db.ts#L5) +[src/db.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/db.ts#L5) ## Functions @@ -35,7 +35,7 @@ #### Defined in -[src/db.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/db.ts#L7) +[src/db.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/db.ts#L7) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/db.ts:50](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/db.ts#L50) +[src/db.ts:50](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/db.ts#L50) diff --git a/talawa-api-docs/modules/directives_directiveTransformer_authDirectiveTransformer.md b/talawa-api-docs/modules/directives_directiveTransformer_authDirectiveTransformer.md index d919233a5da..0532b004217 100644 --- a/talawa-api-docs/modules/directives_directiveTransformer_authDirectiveTransformer.md +++ b/talawa-api-docs/modules/directives_directiveTransformer_authDirectiveTransformer.md @@ -27,4 +27,4 @@ #### Defined in -[src/directives/directiveTransformer/authDirectiveTransformer.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/directives/directiveTransformer/authDirectiveTransformer.ts#L6) +[src/directives/directiveTransformer/authDirectiveTransformer.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/directives/directiveTransformer/authDirectiveTransformer.ts#L6) diff --git a/talawa-api-docs/modules/directives_directiveTransformer_roleDirectiveTransformer.md b/talawa-api-docs/modules/directives_directiveTransformer_roleDirectiveTransformer.md index 7adb56bb042..393a57fbfd3 100644 --- a/talawa-api-docs/modules/directives_directiveTransformer_roleDirectiveTransformer.md +++ b/talawa-api-docs/modules/directives_directiveTransformer_roleDirectiveTransformer.md @@ -27,4 +27,4 @@ #### Defined in -[src/directives/directiveTransformer/roleDirectiveTransformer.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/directives/directiveTransformer/roleDirectiveTransformer.ts#L11) +[src/directives/directiveTransformer/roleDirectiveTransformer.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/directives/directiveTransformer/roleDirectiveTransformer.ts#L11) diff --git a/talawa-api-docs/modules/env.md b/talawa-api-docs/modules/env.md index a8ee2587ccd..77b22ec4103 100644 --- a/talawa-api-docs/modules/env.md +++ b/talawa-api-docs/modules/env.md @@ -20,7 +20,7 @@ #### Defined in -[src/env.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/env.ts#L3) +[src/env.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/env.ts#L3) ## Functions @@ -34,4 +34,4 @@ #### Defined in -[src/env.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/env.ts#L36) +[src/env.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/env.ts#L36) diff --git a/talawa-api-docs/modules/helpers_eventInstances_once.md b/talawa-api-docs/modules/helpers_eventInstances_once.md index da7a93497c6..d2606f58278 100644 --- a/talawa-api-docs/modules/helpers_eventInstances_once.md +++ b/talawa-api-docs/modules/helpers_eventInstances_once.md @@ -29,4 +29,4 @@ #### Defined in -[src/helpers/eventInstances/once.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/helpers/eventInstances/once.ts#L10) +[src/helpers/eventInstances/once.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/helpers/eventInstances/once.ts#L10) diff --git a/talawa-api-docs/modules/helpers_eventInstances_weekly.md b/talawa-api-docs/modules/helpers_eventInstances_weekly.md index 389e922f693..05524803679 100644 --- a/talawa-api-docs/modules/helpers_eventInstances_weekly.md +++ b/talawa-api-docs/modules/helpers_eventInstances_weekly.md @@ -29,4 +29,4 @@ #### Defined in -[src/helpers/eventInstances/weekly.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/helpers/eventInstances/weekly.ts#L18) +[src/helpers/eventInstances/weekly.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/helpers/eventInstances/weekly.ts#L18) diff --git a/talawa-api-docs/modules/index.md b/talawa-api-docs/modules/index.md index fc09b78daa4..00b35f9947a 100644 --- a/talawa-api-docs/modules/index.md +++ b/talawa-api-docs/modules/index.md @@ -16,4 +16,4 @@ #### Defined in -[src/index.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/index.ts#L25) +[src/index.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/index.ts#L25) diff --git a/talawa-api-docs/modules/libraries_dbLogger.md b/talawa-api-docs/modules/libraries_dbLogger.md index f09c9ce1f55..6fe9d023552 100644 --- a/talawa-api-docs/modules/libraries_dbLogger.md +++ b/talawa-api-docs/modules/libraries_dbLogger.md @@ -39,7 +39,7 @@ #### Defined in -[src/libraries/dbLogger.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/dbLogger.ts#L5) +[src/libraries/dbLogger.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/dbLogger.ts#L5) ## Variables @@ -49,7 +49,7 @@ #### Defined in -[src/libraries/dbLogger.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/dbLogger.ts#L13) +[src/libraries/dbLogger.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/dbLogger.ts#L13) ## Functions @@ -76,4 +76,4 @@ #### Defined in -[src/libraries/dbLogger.ts:40](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/dbLogger.ts#L40) +[src/libraries/dbLogger.ts:40](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/dbLogger.ts#L40) diff --git a/talawa-api-docs/modules/libraries_logger.md b/talawa-api-docs/modules/libraries_logger.md index 6cd8a12c9b8..87d1d2bb607 100644 --- a/talawa-api-docs/modules/libraries_logger.md +++ b/talawa-api-docs/modules/libraries_logger.md @@ -17,7 +17,7 @@ #### Defined in -[src/libraries/logger.ts:48](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/logger.ts#L48) +[src/libraries/logger.ts:48](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/logger.ts#L48) ___ @@ -33,4 +33,4 @@ ___ #### Defined in -[src/libraries/logger.ts:61](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/logger.ts#L61) +[src/libraries/logger.ts:61](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/logger.ts#L61) diff --git a/talawa-api-docs/modules/libraries_requestContext.md b/talawa-api-docs/modules/libraries_requestContext.md index e58b3ee3f77..6bbbdb2e9fa 100644 --- a/talawa-api-docs/modules/libraries_requestContext.md +++ b/talawa-api-docs/modules/libraries_requestContext.md @@ -26,7 +26,7 @@ #### Defined in -[src/libraries/requestContext.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestContext.ts#L8) +[src/libraries/requestContext.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestContext.ts#L8) ## Functions @@ -52,7 +52,7 @@ #### Defined in -[src/libraries/requestContext.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestContext.ts#L19) +[src/libraries/requestContext.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestContext.ts#L19) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[src/libraries/requestContext.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestContext.ts#L45) +[src/libraries/requestContext.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestContext.ts#L45) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[src/libraries/requestContext.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestContext.ts#L28) +[src/libraries/requestContext.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestContext.ts#L28) ___ @@ -126,7 +126,7 @@ ___ #### Defined in -[src/libraries/requestContext.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestContext.ts#L23) +[src/libraries/requestContext.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestContext.ts#L23) ___ @@ -153,7 +153,7 @@ ___ #### Defined in -[src/libraries/requestContext.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestContext.ts#L14) +[src/libraries/requestContext.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestContext.ts#L14) ___ @@ -173,7 +173,7 @@ ___ #### Defined in -[src/libraries/requestContext.ts:62](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestContext.ts#L62) +[src/libraries/requestContext.ts:62](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestContext.ts#L62) ___ @@ -193,4 +193,4 @@ ___ #### Defined in -[src/libraries/requestContext.ts:71](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestContext.ts#L71) +[src/libraries/requestContext.ts:71](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestContext.ts#L71) diff --git a/talawa-api-docs/modules/libraries_requestTracing.md b/talawa-api-docs/modules/libraries_requestTracing.md index 352b504a6f4..facc5f1c2f0 100644 --- a/talawa-api-docs/modules/libraries_requestTracing.md +++ b/talawa-api-docs/modules/libraries_requestTracing.md @@ -24,7 +24,7 @@ #### Defined in -[src/libraries/requestTracing.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestTracing.ts#L17) +[src/libraries/requestTracing.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestTracing.ts#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/libraries/requestTracing.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestTracing.ts#L21) +[src/libraries/requestTracing.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestTracing.ts#L21) ## Functions @@ -48,7 +48,7 @@ ___ #### Defined in -[src/libraries/requestTracing.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestTracing.ts#L29) +[src/libraries/requestTracing.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestTracing.ts#L29) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[src/libraries/requestTracing.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestTracing.ts#L33) +[src/libraries/requestTracing.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestTracing.ts#L33) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[src/libraries/requestTracing.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestTracing.ts#L25) +[src/libraries/requestTracing.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestTracing.ts#L25) ___ @@ -123,4 +123,4 @@ ___ #### Defined in -[src/libraries/requestTracing.ts:50](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/requestTracing.ts#L50) +[src/libraries/requestTracing.ts:50](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/requestTracing.ts#L50) diff --git a/talawa-api-docs/modules/libraries_validators_compareDates.md b/talawa-api-docs/modules/libraries_validators_compareDates.md index 720c6c6a93b..cdb317849b0 100644 --- a/talawa-api-docs/modules/libraries_validators_compareDates.md +++ b/talawa-api-docs/modules/libraries_validators_compareDates.md @@ -27,4 +27,4 @@ #### Defined in -[src/libraries/validators/compareDates.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/validators/compareDates.ts#L1) +[src/libraries/validators/compareDates.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/validators/compareDates.ts#L1) diff --git a/talawa-api-docs/modules/libraries_validators_validatePaginationArgs.md b/talawa-api-docs/modules/libraries_validators_validatePaginationArgs.md index b3b9c85f390..db2d130a787 100644 --- a/talawa-api-docs/modules/libraries_validators_validatePaginationArgs.md +++ b/talawa-api-docs/modules/libraries_validators_validatePaginationArgs.md @@ -26,4 +26,4 @@ #### Defined in -[src/libraries/validators/validatePaginationArgs.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/validators/validatePaginationArgs.ts#L7) +[src/libraries/validators/validatePaginationArgs.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/validators/validatePaginationArgs.ts#L7) diff --git a/talawa-api-docs/modules/libraries_validators_validateString.md b/talawa-api-docs/modules/libraries_validators_validateString.md index 2bca01a1c2d..876ce191bef 100644 --- a/talawa-api-docs/modules/libraries_validators_validateString.md +++ b/talawa-api-docs/modules/libraries_validators_validateString.md @@ -31,4 +31,4 @@ #### Defined in -[src/libraries/validators/validateString.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/libraries/validators/validateString.ts#L1) +[src/libraries/validators/validateString.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/libraries/validators/validateString.ts#L1) diff --git a/talawa-api-docs/modules/middleware_isAuth.md b/talawa-api-docs/modules/middleware_isAuth.md index af4683bcb90..35358a0eea5 100644 --- a/talawa-api-docs/modules/middleware_isAuth.md +++ b/talawa-api-docs/modules/middleware_isAuth.md @@ -34,4 +34,4 @@ Returns `authData` object with `isAuth`, `expired` and `userId` properties. #### Defined in -[src/middleware/isAuth.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/middleware/isAuth.ts#L17) +[src/middleware/isAuth.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/middleware/isAuth.ts#L17) diff --git a/talawa-api-docs/modules/models_ActionItem.md b/talawa-api-docs/modules/models_ActionItem.md index 4a8a53befd1..fdf34330da5 100644 --- a/talawa-api-docs/modules/models_ActionItem.md +++ b/talawa-api-docs/modules/models_ActionItem.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/ActionItem.ts:106](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItem.ts#L106) +[src/models/ActionItem.ts:106](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItem.ts#L106) diff --git a/talawa-api-docs/modules/models_ActionItemCategory.md b/talawa-api-docs/modules/models_ActionItemCategory.md index 8ba20c2d556..9aaaca01179 100644 --- a/talawa-api-docs/modules/models_ActionItemCategory.md +++ b/talawa-api-docs/modules/models_ActionItemCategory.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/ActionItemCategory.ts:67](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ActionItemCategory.ts#L67) +[src/models/ActionItemCategory.ts:67](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ActionItemCategory.ts#L67) diff --git a/talawa-api-docs/modules/models_Advertisement.md b/talawa-api-docs/modules/models_Advertisement.md index 971c1e7ce2a..e979dec7dbf 100644 --- a/talawa-api-docs/modules/models_Advertisement.md +++ b/talawa-api-docs/modules/models_Advertisement.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/Advertisement.ts:106](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Advertisement.ts#L106) +[src/models/Advertisement.ts:106](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Advertisement.ts#L106) diff --git a/talawa-api-docs/modules/models_CheckIn.md b/talawa-api-docs/modules/models_CheckIn.md index 82c3c9c9838..e00e93a04fd 100644 --- a/talawa-api-docs/modules/models_CheckIn.md +++ b/talawa-api-docs/modules/models_CheckIn.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/CheckIn.ts:64](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/CheckIn.ts#L64) +[src/models/CheckIn.ts:64](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/CheckIn.ts#L64) diff --git a/talawa-api-docs/modules/models_Comment.md b/talawa-api-docs/modules/models_Comment.md index e040ac26032..045fd27b036 100644 --- a/talawa-api-docs/modules/models_Comment.md +++ b/talawa-api-docs/modules/models_Comment.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/Comment.ts:72](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Comment.ts#L72) +[src/models/Comment.ts:72](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Comment.ts#L72) diff --git a/talawa-api-docs/modules/models_DirectChat.md b/talawa-api-docs/modules/models_DirectChat.md index 8c31b3aba09..2e1dc6ea336 100644 --- a/talawa-api-docs/modules/models_DirectChat.md +++ b/talawa-api-docs/modules/models_DirectChat.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/DirectChat.ts:70](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChat.ts#L70) +[src/models/DirectChat.ts:70](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChat.ts#L70) diff --git a/talawa-api-docs/modules/models_DirectChatMessage.md b/talawa-api-docs/modules/models_DirectChatMessage.md index e341036c1f1..791486c8510 100644 --- a/talawa-api-docs/modules/models_DirectChatMessage.md +++ b/talawa-api-docs/modules/models_DirectChatMessage.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/DirectChatMessage.ts:68](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/DirectChatMessage.ts#L68) +[src/models/DirectChatMessage.ts:68](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/DirectChatMessage.ts#L68) diff --git a/talawa-api-docs/modules/models_Donation.md b/talawa-api-docs/modules/models_Donation.md index b1a9d4cded8..412b601072d 100644 --- a/talawa-api-docs/modules/models_Donation.md +++ b/talawa-api-docs/modules/models_Donation.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/Donation.ts:63](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Donation.ts#L63) +[src/models/Donation.ts:63](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Donation.ts#L63) diff --git a/talawa-api-docs/modules/models_EncodedImage.md b/talawa-api-docs/modules/models_EncodedImage.md index e54847f5427..b8b5f7f4658 100644 --- a/talawa-api-docs/modules/models_EncodedImage.md +++ b/talawa-api-docs/modules/models_EncodedImage.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/EncodedImage.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EncodedImage.ts#L38) +[src/models/EncodedImage.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EncodedImage.ts#L38) diff --git a/talawa-api-docs/modules/models_EncodedVideo.md b/talawa-api-docs/modules/models_EncodedVideo.md index 4d238f4de54..889311c9b7e 100644 --- a/talawa-api-docs/modules/models_EncodedVideo.md +++ b/talawa-api-docs/modules/models_EncodedVideo.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/EncodedVideo.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EncodedVideo.ts#L38) +[src/models/EncodedVideo.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EncodedVideo.ts#L38) diff --git a/talawa-api-docs/modules/models_Event.md b/talawa-api-docs/modules/models_Event.md index 4f8136e8088..fe43ec540f3 100644 --- a/talawa-api-docs/modules/models_Event.md +++ b/talawa-api-docs/modules/models_Event.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/Event.ts:168](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Event.ts#L168) +[src/models/Event.ts:168](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Event.ts#L168) diff --git a/talawa-api-docs/modules/models_EventAttendee.md b/talawa-api-docs/modules/models_EventAttendee.md index 8258ce25146..f042e62fa7a 100644 --- a/talawa-api-docs/modules/models_EventAttendee.md +++ b/talawa-api-docs/modules/models_EventAttendee.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/EventAttendee.ts:39](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/EventAttendee.ts#L39) +[src/models/EventAttendee.ts:39](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/EventAttendee.ts#L39) diff --git a/talawa-api-docs/modules/models_Feedback.md b/talawa-api-docs/modules/models_Feedback.md index a78aa107403..60d12f09338 100644 --- a/talawa-api-docs/modules/models_Feedback.md +++ b/talawa-api-docs/modules/models_Feedback.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/Feedback.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Feedback.ts#L46) +[src/models/Feedback.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Feedback.ts#L46) diff --git a/talawa-api-docs/modules/models_File.md b/talawa-api-docs/modules/models_File.md index 6d15b687ac8..fea104b0857 100644 --- a/talawa-api-docs/modules/models_File.md +++ b/talawa-api-docs/modules/models_File.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/File.ts:65](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/File.ts#L65) +[src/models/File.ts:65](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/File.ts#L65) diff --git a/talawa-api-docs/modules/models_Group.md b/talawa-api-docs/modules/models_Group.md index 78d45bbd0de..4f51359b762 100644 --- a/talawa-api-docs/modules/models_Group.md +++ b/talawa-api-docs/modules/models_Group.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/Group.ts:64](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Group.ts#L64) +[src/models/Group.ts:64](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Group.ts#L64) diff --git a/talawa-api-docs/modules/models_GroupChat.md b/talawa-api-docs/modules/models_GroupChat.md index 11f042b48ad..0da7def65e7 100644 --- a/talawa-api-docs/modules/models_GroupChat.md +++ b/talawa-api-docs/modules/models_GroupChat.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/GroupChat.ts:76](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChat.ts#L76) +[src/models/GroupChat.ts:76](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChat.ts#L76) diff --git a/talawa-api-docs/modules/models_GroupChatMessage.md b/talawa-api-docs/modules/models_GroupChatMessage.md index 4c55b2fbbb8..e07c3dbcada 100644 --- a/talawa-api-docs/modules/models_GroupChatMessage.md +++ b/talawa-api-docs/modules/models_GroupChatMessage.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/GroupChatMessage.ts:58](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/GroupChatMessage.ts#L58) +[src/models/GroupChatMessage.ts:58](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/GroupChatMessage.ts#L58) diff --git a/talawa-api-docs/modules/models_ImageHash.md b/talawa-api-docs/modules/models_ImageHash.md index 0708ff216d1..17bef65ab25 100644 --- a/talawa-api-docs/modules/models_ImageHash.md +++ b/talawa-api-docs/modules/models_ImageHash.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/ImageHash.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/ImageHash.ts#L46) +[src/models/ImageHash.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/ImageHash.ts#L46) diff --git a/talawa-api-docs/modules/models_Language.md b/talawa-api-docs/modules/models_Language.md index 300d87b8c7a..11152412274 100644 --- a/talawa-api-docs/modules/models_Language.md +++ b/talawa-api-docs/modules/models_Language.md @@ -21,4 +21,4 @@ #### Defined in -[src/models/Language.ts:77](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Language.ts#L77) +[src/models/Language.ts:77](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Language.ts#L77) diff --git a/talawa-api-docs/modules/models_MembershipRequest.md b/talawa-api-docs/modules/models_MembershipRequest.md index d20fee74203..cd8cc2e8c16 100644 --- a/talawa-api-docs/modules/models_MembershipRequest.md +++ b/talawa-api-docs/modules/models_MembershipRequest.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/MembershipRequest.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/MembershipRequest.ts#L46) +[src/models/MembershipRequest.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/MembershipRequest.ts#L46) diff --git a/talawa-api-docs/modules/models_Message.md b/talawa-api-docs/modules/models_Message.md index ed536fab4aa..f3ff5214232 100644 --- a/talawa-api-docs/modules/models_Message.md +++ b/talawa-api-docs/modules/models_Message.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/Message.ts:70](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Message.ts#L70) +[src/models/Message.ts:70](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Message.ts#L70) diff --git a/talawa-api-docs/modules/models_MessageChat.md b/talawa-api-docs/modules/models_MessageChat.md index a6261eef19e..96644204deb 100644 --- a/talawa-api-docs/modules/models_MessageChat.md +++ b/talawa-api-docs/modules/models_MessageChat.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/MessageChat.ts:56](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/MessageChat.ts#L56) +[src/models/MessageChat.ts:56](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/MessageChat.ts#L56) diff --git a/talawa-api-docs/modules/models_Organization.md b/talawa-api-docs/modules/models_Organization.md index 2e055578845..38f0af2ef04 100644 --- a/talawa-api-docs/modules/models_Organization.md +++ b/talawa-api-docs/modules/models_Organization.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/Organization.ts:184](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Organization.ts#L184) +[src/models/Organization.ts:184](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Organization.ts#L184) diff --git a/talawa-api-docs/modules/models_OrganizationCustomField.md b/talawa-api-docs/modules/models_OrganizationCustomField.md index 0d8dfbbc0e5..3ff0b8749c8 100644 --- a/talawa-api-docs/modules/models_OrganizationCustomField.md +++ b/talawa-api-docs/modules/models_OrganizationCustomField.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/OrganizationCustomField.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/OrganizationCustomField.ts#L29) +[src/models/OrganizationCustomField.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/OrganizationCustomField.ts#L29) diff --git a/talawa-api-docs/modules/models_OrganizationTagUser.md b/talawa-api-docs/modules/models_OrganizationTagUser.md index cc9c59b58b4..0a35d6dd46a 100644 --- a/talawa-api-docs/modules/models_OrganizationTagUser.md +++ b/talawa-api-docs/modules/models_OrganizationTagUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/OrganizationTagUser.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/OrganizationTagUser.ts#L45) +[src/models/OrganizationTagUser.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/OrganizationTagUser.ts#L45) diff --git a/talawa-api-docs/modules/models_Plugin.md b/talawa-api-docs/modules/models_Plugin.md index c54b127f227..ab77c33107c 100644 --- a/talawa-api-docs/modules/models_Plugin.md +++ b/talawa-api-docs/modules/models_Plugin.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/Plugin.ts:47](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Plugin.ts#L47) +[src/models/Plugin.ts:47](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Plugin.ts#L47) diff --git a/talawa-api-docs/modules/models_PluginField.md b/talawa-api-docs/modules/models_PluginField.md index 84e95bcb765..d8b5b4e5b20 100644 --- a/talawa-api-docs/modules/models_PluginField.md +++ b/talawa-api-docs/modules/models_PluginField.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/PluginField.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/PluginField.ts#L45) +[src/models/PluginField.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/PluginField.ts#L45) diff --git a/talawa-api-docs/modules/models_Post.md b/talawa-api-docs/modules/models_Post.md index 39a8c57fa06..a6a6fb30464 100644 --- a/talawa-api-docs/modules/models_Post.md +++ b/talawa-api-docs/modules/models_Post.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/Post.ts:106](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/Post.ts#L106) +[src/models/Post.ts:106](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/Post.ts#L106) diff --git a/talawa-api-docs/modules/models_SampleData.md b/talawa-api-docs/modules/models_SampleData.md index 8b109f9134a..123e588ae5b 100644 --- a/talawa-api-docs/modules/models_SampleData.md +++ b/talawa-api-docs/modules/models_SampleData.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/SampleData.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/SampleData.ts#L24) +[src/models/SampleData.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/SampleData.ts#L24) diff --git a/talawa-api-docs/modules/models_TagUser.md b/talawa-api-docs/modules/models_TagUser.md index 1b1d7691499..1177d9ef7fd 100644 --- a/talawa-api-docs/modules/models_TagUser.md +++ b/talawa-api-docs/modules/models_TagUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/TagUser.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/TagUser.ts#L32) +[src/models/TagUser.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/TagUser.ts#L32) diff --git a/talawa-api-docs/modules/models_User.md b/talawa-api-docs/modules/models_User.md index 2577699c95a..2d36e1dc12e 100644 --- a/talawa-api-docs/modules/models_User.md +++ b/talawa-api-docs/modules/models_User.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/User.ts:292](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/User.ts#L292) +[src/models/User.ts:292](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/User.ts#L292) diff --git a/talawa-api-docs/modules/models_UserCustomData.md b/talawa-api-docs/modules/models_UserCustomData.md index 84fa3313baa..8e38ab60ac3 100644 --- a/talawa-api-docs/modules/models_UserCustomData.md +++ b/talawa-api-docs/modules/models_UserCustomData.md @@ -20,4 +20,4 @@ #### Defined in -[src/models/UserCustomData.ts:43](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/models/UserCustomData.ts#L43) +[src/models/UserCustomData.ts:43](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/models/UserCustomData.ts#L43) diff --git a/talawa-api-docs/modules/resolvers.md b/talawa-api-docs/modules/resolvers.md index 0e401a58fc2..4e3c4f84ff1 100644 --- a/talawa-api-docs/modules/resolvers.md +++ b/talawa-api-docs/modules/resolvers.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/index.ts:92](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/index.ts#L92) +[src/resolvers/index.ts:92](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/index.ts#L92) diff --git a/talawa-api-docs/modules/resolvers_ActionItem.md b/talawa-api-docs/modules/resolvers_ActionItem.md index 7ae07ae080f..ea177a1661b 100644 --- a/talawa-api-docs/modules/resolvers_ActionItem.md +++ b/talawa-api-docs/modules/resolvers_ActionItem.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/ActionItem/index.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/ActionItem/index.ts#L8) +[src/resolvers/ActionItem/index.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/ActionItem/index.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_ActionItemCategory.md b/talawa-api-docs/modules/resolvers_ActionItemCategory.md index 9e232cb9e6e..542b79f8982 100644 --- a/talawa-api-docs/modules/resolvers_ActionItemCategory.md +++ b/talawa-api-docs/modules/resolvers_ActionItemCategory.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/ActionItemCategory/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/ActionItemCategory/index.ts#L5) +[src/resolvers/ActionItemCategory/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/ActionItemCategory/index.ts#L5) diff --git a/talawa-api-docs/modules/resolvers_ActionItemCategory_creator.md b/talawa-api-docs/modules/resolvers_ActionItemCategory_creator.md index 9ee42f85dd6..0fabfdda690 100644 --- a/talawa-api-docs/modules/resolvers_ActionItemCategory_creator.md +++ b/talawa-api-docs/modules/resolvers_ActionItemCategory_creator.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/ActionItemCategory/creator.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/ActionItemCategory/creator.ts#L4) +[src/resolvers/ActionItemCategory/creator.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/ActionItemCategory/creator.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_ActionItemCategory_organization.md b/talawa-api-docs/modules/resolvers_ActionItemCategory_organization.md index 32ee89ebde5..a513bfaf431 100644 --- a/talawa-api-docs/modules/resolvers_ActionItemCategory_organization.md +++ b/talawa-api-docs/modules/resolvers_ActionItemCategory_organization.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/ActionItemCategory/organization.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/ActionItemCategory/organization.ts#L4) +[src/resolvers/ActionItemCategory/organization.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/ActionItemCategory/organization.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_ActionItem_actionItemCategory.md b/talawa-api-docs/modules/resolvers_ActionItem_actionItemCategory.md index 89ba6235fef..fc41d2a9bdd 100644 --- a/talawa-api-docs/modules/resolvers_ActionItem_actionItemCategory.md +++ b/talawa-api-docs/modules/resolvers_ActionItem_actionItemCategory.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/ActionItem/actionItemCategory.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/ActionItem/actionItemCategory.ts#L4) +[src/resolvers/ActionItem/actionItemCategory.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/ActionItem/actionItemCategory.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_ActionItem_assignee.md b/talawa-api-docs/modules/resolvers_ActionItem_assignee.md index ade572d4b86..7c00ae6d5de 100644 --- a/talawa-api-docs/modules/resolvers_ActionItem_assignee.md +++ b/talawa-api-docs/modules/resolvers_ActionItem_assignee.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/ActionItem/assignee.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/ActionItem/assignee.ts#L4) +[src/resolvers/ActionItem/assignee.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/ActionItem/assignee.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_ActionItem_assigner.md b/talawa-api-docs/modules/resolvers_ActionItem_assigner.md index 0cf8ace73d5..7fe7b8fd16e 100644 --- a/talawa-api-docs/modules/resolvers_ActionItem_assigner.md +++ b/talawa-api-docs/modules/resolvers_ActionItem_assigner.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/ActionItem/assigner.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/ActionItem/assigner.ts#L4) +[src/resolvers/ActionItem/assigner.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/ActionItem/assigner.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_ActionItem_creator.md b/talawa-api-docs/modules/resolvers_ActionItem_creator.md index 60914bcae4b..e00e481d9bb 100644 --- a/talawa-api-docs/modules/resolvers_ActionItem_creator.md +++ b/talawa-api-docs/modules/resolvers_ActionItem_creator.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/ActionItem/creator.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/ActionItem/creator.ts#L4) +[src/resolvers/ActionItem/creator.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/ActionItem/creator.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_ActionItem_event.md b/talawa-api-docs/modules/resolvers_ActionItem_event.md index 4008c0aa76a..a6b7b9b408e 100644 --- a/talawa-api-docs/modules/resolvers_ActionItem_event.md +++ b/talawa-api-docs/modules/resolvers_ActionItem_event.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/ActionItem/event.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/ActionItem/event.ts#L4) +[src/resolvers/ActionItem/event.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/ActionItem/event.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_CheckIn.md b/talawa-api-docs/modules/resolvers_CheckIn.md index b426c5519f6..7c443b60fc0 100644 --- a/talawa-api-docs/modules/resolvers_CheckIn.md +++ b/talawa-api-docs/modules/resolvers_CheckIn.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/CheckIn/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/CheckIn/index.ts#L5) +[src/resolvers/CheckIn/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/CheckIn/index.ts#L5) diff --git a/talawa-api-docs/modules/resolvers_CheckIn_event.md b/talawa-api-docs/modules/resolvers_CheckIn_event.md index caaa05fc25e..8c827de4c18 100644 --- a/talawa-api-docs/modules/resolvers_CheckIn_event.md +++ b/talawa-api-docs/modules/resolvers_CheckIn_event.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/CheckIn/event.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/CheckIn/event.ts#L4) +[src/resolvers/CheckIn/event.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/CheckIn/event.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_CheckIn_user.md b/talawa-api-docs/modules/resolvers_CheckIn_user.md index b64741ae44c..66e0d7963a2 100644 --- a/talawa-api-docs/modules/resolvers_CheckIn_user.md +++ b/talawa-api-docs/modules/resolvers_CheckIn_user.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/CheckIn/user.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/CheckIn/user.ts#L4) +[src/resolvers/CheckIn/user.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/CheckIn/user.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_Comment.md b/talawa-api-docs/modules/resolvers_Comment.md index 6cc0e2bfea9..a9d969aa7c7 100644 --- a/talawa-api-docs/modules/resolvers_Comment.md +++ b/talawa-api-docs/modules/resolvers_Comment.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Comment/index.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Comment/index.ts#L4) +[src/resolvers/Comment/index.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Comment/index.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_Comment_creator.md b/talawa-api-docs/modules/resolvers_Comment_creator.md index 9b0a970afd2..a4feca0251e 100644 --- a/talawa-api-docs/modules/resolvers_Comment_creator.md +++ b/talawa-api-docs/modules/resolvers_Comment_creator.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Comment/creator.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Comment/creator.ts#L4) +[src/resolvers/Comment/creator.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Comment/creator.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_DirectChat.md b/talawa-api-docs/modules/resolvers_DirectChat.md index d53ada6cde9..bf64f0a72e9 100644 --- a/talawa-api-docs/modules/resolvers_DirectChat.md +++ b/talawa-api-docs/modules/resolvers_DirectChat.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/DirectChat/index.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/DirectChat/index.ts#L7) +[src/resolvers/DirectChat/index.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/DirectChat/index.ts#L7) diff --git a/talawa-api-docs/modules/resolvers_DirectChatMessage.md b/talawa-api-docs/modules/resolvers_DirectChatMessage.md index 266adb49738..cbedeb7a52d 100644 --- a/talawa-api-docs/modules/resolvers_DirectChatMessage.md +++ b/talawa-api-docs/modules/resolvers_DirectChatMessage.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/DirectChatMessage/index.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/DirectChatMessage/index.ts#L6) +[src/resolvers/DirectChatMessage/index.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/DirectChatMessage/index.ts#L6) diff --git a/talawa-api-docs/modules/resolvers_DirectChatMessage_directChatMessageBelongsTo.md b/talawa-api-docs/modules/resolvers_DirectChatMessage_directChatMessageBelongsTo.md index b175d63680a..fbde7c6ba5d 100644 --- a/talawa-api-docs/modules/resolvers_DirectChatMessage_directChatMessageBelongsTo.md +++ b/talawa-api-docs/modules/resolvers_DirectChatMessage_directChatMessageBelongsTo.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/DirectChatMessage/directChatMessageBelongsTo.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/DirectChatMessage/directChatMessageBelongsTo.ts#L8) +[src/resolvers/DirectChatMessage/directChatMessageBelongsTo.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/DirectChatMessage/directChatMessageBelongsTo.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_DirectChatMessage_receiver.md b/talawa-api-docs/modules/resolvers_DirectChatMessage_receiver.md index f00e04a2fb8..44c419e942f 100644 --- a/talawa-api-docs/modules/resolvers_DirectChatMessage_receiver.md +++ b/talawa-api-docs/modules/resolvers_DirectChatMessage_receiver.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/DirectChatMessage/receiver.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/DirectChatMessage/receiver.ts#L8) +[src/resolvers/DirectChatMessage/receiver.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/DirectChatMessage/receiver.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_DirectChatMessage_sender.md b/talawa-api-docs/modules/resolvers_DirectChatMessage_sender.md index b31cb5c6819..ad8e088a529 100644 --- a/talawa-api-docs/modules/resolvers_DirectChatMessage_sender.md +++ b/talawa-api-docs/modules/resolvers_DirectChatMessage_sender.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/DirectChatMessage/sender.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/DirectChatMessage/sender.ts#L8) +[src/resolvers/DirectChatMessage/sender.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/DirectChatMessage/sender.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_DirectChat_creator.md b/talawa-api-docs/modules/resolvers_DirectChat_creator.md index 065979feb37..8a11d3e5e74 100644 --- a/talawa-api-docs/modules/resolvers_DirectChat_creator.md +++ b/talawa-api-docs/modules/resolvers_DirectChat_creator.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/DirectChat/creator.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/DirectChat/creator.ts#L8) +[src/resolvers/DirectChat/creator.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/DirectChat/creator.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_DirectChat_messages.md b/talawa-api-docs/modules/resolvers_DirectChat_messages.md index a8f8eb4f91e..3e1e6731b1b 100644 --- a/talawa-api-docs/modules/resolvers_DirectChat_messages.md +++ b/talawa-api-docs/modules/resolvers_DirectChat_messages.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/DirectChat/messages.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/DirectChat/messages.ts#L8) +[src/resolvers/DirectChat/messages.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/DirectChat/messages.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_DirectChat_organization.md b/talawa-api-docs/modules/resolvers_DirectChat_organization.md index 5a4dd70f7d5..df294b787ae 100644 --- a/talawa-api-docs/modules/resolvers_DirectChat_organization.md +++ b/talawa-api-docs/modules/resolvers_DirectChat_organization.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/DirectChat/organization.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/DirectChat/organization.ts#L10) +[src/resolvers/DirectChat/organization.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/DirectChat/organization.ts#L10) diff --git a/talawa-api-docs/modules/resolvers_DirectChat_users.md b/talawa-api-docs/modules/resolvers_DirectChat_users.md index 7564bdf3fdd..947bca4c3de 100644 --- a/talawa-api-docs/modules/resolvers_DirectChat_users.md +++ b/talawa-api-docs/modules/resolvers_DirectChat_users.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/DirectChat/users.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/DirectChat/users.ts#L8) +[src/resolvers/DirectChat/users.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/DirectChat/users.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_Event.md b/talawa-api-docs/modules/resolvers_Event.md index 44c6158d9a2..7b7adcd7bda 100644 --- a/talawa-api-docs/modules/resolvers_Event.md +++ b/talawa-api-docs/modules/resolvers_Event.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Event/index.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Event/index.ts#L10) +[src/resolvers/Event/index.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Event/index.ts#L10) diff --git a/talawa-api-docs/modules/resolvers_Event_actionItems.md b/talawa-api-docs/modules/resolvers_Event_actionItems.md index 86f15bf1af0..2aaa6f9f677 100644 --- a/talawa-api-docs/modules/resolvers_Event_actionItems.md +++ b/talawa-api-docs/modules/resolvers_Event_actionItems.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/Event/actionItems.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Event/actionItems.ts#L8) +[src/resolvers/Event/actionItems.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Event/actionItems.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_Event_attendees.md b/talawa-api-docs/modules/resolvers_Event_attendees.md index 5ca89ff1a80..166472d3a0a 100644 --- a/talawa-api-docs/modules/resolvers_Event_attendees.md +++ b/talawa-api-docs/modules/resolvers_Event_attendees.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Event/attendees.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Event/attendees.ts#L4) +[src/resolvers/Event/attendees.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Event/attendees.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_Event_attendeesCheckInStatus.md b/talawa-api-docs/modules/resolvers_Event_attendeesCheckInStatus.md index dc7d0d0cc67..43aedb58f7d 100644 --- a/talawa-api-docs/modules/resolvers_Event_attendeesCheckInStatus.md +++ b/talawa-api-docs/modules/resolvers_Event_attendeesCheckInStatus.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Event/attendeesCheckInStatus.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Event/attendeesCheckInStatus.ts#L4) +[src/resolvers/Event/attendeesCheckInStatus.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Event/attendeesCheckInStatus.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_Event_averageFeedbackScore.md b/talawa-api-docs/modules/resolvers_Event_averageFeedbackScore.md index d6b1f6feec3..bae5323b23d 100644 --- a/talawa-api-docs/modules/resolvers_Event_averageFeedbackScore.md +++ b/talawa-api-docs/modules/resolvers_Event_averageFeedbackScore.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Event/averageFeedbackScore.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Event/averageFeedbackScore.ts#L4) +[src/resolvers/Event/averageFeedbackScore.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Event/averageFeedbackScore.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_Event_creator.md b/talawa-api-docs/modules/resolvers_Event_creator.md index da2017fec65..137a68feacd 100644 --- a/talawa-api-docs/modules/resolvers_Event_creator.md +++ b/talawa-api-docs/modules/resolvers_Event_creator.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Event/creator.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Event/creator.ts#L4) +[src/resolvers/Event/creator.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Event/creator.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_Event_feedback.md b/talawa-api-docs/modules/resolvers_Event_feedback.md index 38e30404dd2..b70de745464 100644 --- a/talawa-api-docs/modules/resolvers_Event_feedback.md +++ b/talawa-api-docs/modules/resolvers_Event_feedback.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Event/feedback.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Event/feedback.ts#L4) +[src/resolvers/Event/feedback.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Event/feedback.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_Event_organization.md b/talawa-api-docs/modules/resolvers_Event_organization.md index b7df44b1d31..32b2ee77475 100644 --- a/talawa-api-docs/modules/resolvers_Event_organization.md +++ b/talawa-api-docs/modules/resolvers_Event_organization.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Event/organization.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Event/organization.ts#L4) +[src/resolvers/Event/organization.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Event/organization.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_Feedback.md b/talawa-api-docs/modules/resolvers_Feedback.md index 29e4663cd8a..114c6148f9b 100644 --- a/talawa-api-docs/modules/resolvers_Feedback.md +++ b/talawa-api-docs/modules/resolvers_Feedback.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Feedback/index.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Feedback/index.ts#L4) +[src/resolvers/Feedback/index.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Feedback/index.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_Feedback_event.md b/talawa-api-docs/modules/resolvers_Feedback_event.md index 426e0d0242c..fc89aeceaea 100644 --- a/talawa-api-docs/modules/resolvers_Feedback_event.md +++ b/talawa-api-docs/modules/resolvers_Feedback_event.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Feedback/event.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Feedback/event.ts#L4) +[src/resolvers/Feedback/event.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Feedback/event.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_GroupChat.md b/talawa-api-docs/modules/resolvers_GroupChat.md index 8c8679c0861..6cca0b911e7 100644 --- a/talawa-api-docs/modules/resolvers_GroupChat.md +++ b/talawa-api-docs/modules/resolvers_GroupChat.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/GroupChat/index.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/GroupChat/index.ts#L7) +[src/resolvers/GroupChat/index.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/GroupChat/index.ts#L7) diff --git a/talawa-api-docs/modules/resolvers_GroupChatMessage.md b/talawa-api-docs/modules/resolvers_GroupChatMessage.md index af98064ab36..bbd6c26c91e 100644 --- a/talawa-api-docs/modules/resolvers_GroupChatMessage.md +++ b/talawa-api-docs/modules/resolvers_GroupChatMessage.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/GroupChatMessage/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/GroupChatMessage/index.ts#L5) +[src/resolvers/GroupChatMessage/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/GroupChatMessage/index.ts#L5) diff --git a/talawa-api-docs/modules/resolvers_GroupChatMessage_groupChatMessageBelongsTo.md b/talawa-api-docs/modules/resolvers_GroupChatMessage_groupChatMessageBelongsTo.md index 736e1f02729..44f4744263a 100644 --- a/talawa-api-docs/modules/resolvers_GroupChatMessage_groupChatMessageBelongsTo.md +++ b/talawa-api-docs/modules/resolvers_GroupChatMessage_groupChatMessageBelongsTo.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/GroupChatMessage/groupChatMessageBelongsTo.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/GroupChatMessage/groupChatMessageBelongsTo.ts#L8) +[src/resolvers/GroupChatMessage/groupChatMessageBelongsTo.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/GroupChatMessage/groupChatMessageBelongsTo.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_GroupChatMessage_sender.md b/talawa-api-docs/modules/resolvers_GroupChatMessage_sender.md index 2a9992a8cca..b0ff136e6e2 100644 --- a/talawa-api-docs/modules/resolvers_GroupChatMessage_sender.md +++ b/talawa-api-docs/modules/resolvers_GroupChatMessage_sender.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/GroupChatMessage/sender.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/GroupChatMessage/sender.ts#L8) +[src/resolvers/GroupChatMessage/sender.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/GroupChatMessage/sender.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_GroupChat_creator.md b/talawa-api-docs/modules/resolvers_GroupChat_creator.md index d5228faee01..093d7538e3f 100644 --- a/talawa-api-docs/modules/resolvers_GroupChat_creator.md +++ b/talawa-api-docs/modules/resolvers_GroupChat_creator.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/GroupChat/creator.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/GroupChat/creator.ts#L8) +[src/resolvers/GroupChat/creator.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/GroupChat/creator.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_GroupChat_messages.md b/talawa-api-docs/modules/resolvers_GroupChat_messages.md index 4c2c1dc3401..1f0e838bb05 100644 --- a/talawa-api-docs/modules/resolvers_GroupChat_messages.md +++ b/talawa-api-docs/modules/resolvers_GroupChat_messages.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/GroupChat/messages.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/GroupChat/messages.ts#L8) +[src/resolvers/GroupChat/messages.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/GroupChat/messages.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_GroupChat_organization.md b/talawa-api-docs/modules/resolvers_GroupChat_organization.md index 8f2f5e2f12f..af4dee804fa 100644 --- a/talawa-api-docs/modules/resolvers_GroupChat_organization.md +++ b/talawa-api-docs/modules/resolvers_GroupChat_organization.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/GroupChat/organization.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/GroupChat/organization.ts#L10) +[src/resolvers/GroupChat/organization.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/GroupChat/organization.ts#L10) diff --git a/talawa-api-docs/modules/resolvers_GroupChat_users.md b/talawa-api-docs/modules/resolvers_GroupChat_users.md index c3e7381a231..129d13410b0 100644 --- a/talawa-api-docs/modules/resolvers_GroupChat_users.md +++ b/talawa-api-docs/modules/resolvers_GroupChat_users.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/GroupChat/users.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/GroupChat/users.ts#L8) +[src/resolvers/GroupChat/users.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/GroupChat/users.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_MembershipRequest.md b/talawa-api-docs/modules/resolvers_MembershipRequest.md index 15307530128..4ac9dca8fea 100644 --- a/talawa-api-docs/modules/resolvers_MembershipRequest.md +++ b/talawa-api-docs/modules/resolvers_MembershipRequest.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/MembershipRequest/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/MembershipRequest/index.ts#L5) +[src/resolvers/MembershipRequest/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/MembershipRequest/index.ts#L5) diff --git a/talawa-api-docs/modules/resolvers_MembershipRequest_organization.md b/talawa-api-docs/modules/resolvers_MembershipRequest_organization.md index 599385d4801..f6e1236638b 100644 --- a/talawa-api-docs/modules/resolvers_MembershipRequest_organization.md +++ b/talawa-api-docs/modules/resolvers_MembershipRequest_organization.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/MembershipRequest/organization.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/MembershipRequest/organization.ts#L8) +[src/resolvers/MembershipRequest/organization.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/MembershipRequest/organization.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_MembershipRequest_user.md b/talawa-api-docs/modules/resolvers_MembershipRequest_user.md index 04799ff3539..8950f2e2532 100644 --- a/talawa-api-docs/modules/resolvers_MembershipRequest_user.md +++ b/talawa-api-docs/modules/resolvers_MembershipRequest_user.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/MembershipRequest/user.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/MembershipRequest/user.ts#L8) +[src/resolvers/MembershipRequest/user.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/MembershipRequest/user.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_Mutation.md b/talawa-api-docs/modules/resolvers_Mutation.md index f07d061363c..7fb91f21e78 100644 --- a/talawa-api-docs/modules/resolvers_Mutation.md +++ b/talawa-api-docs/modules/resolvers_Mutation.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/index.ts:94](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/index.ts#L94) +[src/resolvers/Mutation/index.ts:94](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/index.ts#L94) diff --git a/talawa-api-docs/modules/resolvers_Mutation_acceptAdmin.md b/talawa-api-docs/modules/resolvers_Mutation_acceptAdmin.md index 5a3fef690d2..493a08d085b 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_acceptAdmin.md +++ b/talawa-api-docs/modules/resolvers_Mutation_acceptAdmin.md @@ -36,4 +36,4 @@ THe following checks are done: #### Defined in -[src/resolvers/Mutation/acceptAdmin.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/acceptAdmin.ts#L15) +[src/resolvers/Mutation/acceptAdmin.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/acceptAdmin.ts#L15) diff --git a/talawa-api-docs/modules/resolvers_Mutation_acceptMembershipRequest.md b/talawa-api-docs/modules/resolvers_Mutation_acceptMembershipRequest.md index 9659796c652..1dc367e311c 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_acceptMembershipRequest.md +++ b/talawa-api-docs/modules/resolvers_Mutation_acceptMembershipRequest.md @@ -39,4 +39,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/acceptMembershipRequest.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/acceptMembershipRequest.ts#L25) +[src/resolvers/Mutation/acceptMembershipRequest.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/acceptMembershipRequest.ts#L25) diff --git a/talawa-api-docs/modules/resolvers_Mutation_addEventAttendee.md b/talawa-api-docs/modules/resolvers_Mutation_addEventAttendee.md index 45fecb25e88..581dddfc963 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_addEventAttendee.md +++ b/talawa-api-docs/modules/resolvers_Mutation_addEventAttendee.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/addEventAttendee.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/addEventAttendee.ts#L15) +[src/resolvers/Mutation/addEventAttendee.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/addEventAttendee.ts#L15) diff --git a/talawa-api-docs/modules/resolvers_Mutation_addFeedback.md b/talawa-api-docs/modules/resolvers_Mutation_addFeedback.md index 8e1bdb677fd..d5557776c10 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_addFeedback.md +++ b/talawa-api-docs/modules/resolvers_Mutation_addFeedback.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/addFeedback.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/addFeedback.ts#L11) +[src/resolvers/Mutation/addFeedback.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/addFeedback.ts#L11) diff --git a/talawa-api-docs/modules/resolvers_Mutation_addLanguageTranslation.md b/talawa-api-docs/modules/resolvers_Mutation_addLanguageTranslation.md index 7ac534e39e5..e45933ffa97 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_addLanguageTranslation.md +++ b/talawa-api-docs/modules/resolvers_Mutation_addLanguageTranslation.md @@ -32,4 +32,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/addLanguageTranslation.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/addLanguageTranslation.ts#L14) +[src/resolvers/Mutation/addLanguageTranslation.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/addLanguageTranslation.ts#L14) diff --git a/talawa-api-docs/modules/resolvers_Mutation_addOrganizationCustomField.md b/talawa-api-docs/modules/resolvers_Mutation_addOrganizationCustomField.md index cd4544a2a7b..2d62a4d64b7 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_addOrganizationCustomField.md +++ b/talawa-api-docs/modules/resolvers_Mutation_addOrganizationCustomField.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/addOrganizationCustomField.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/addOrganizationCustomField.ts#L25) +[src/resolvers/Mutation/addOrganizationCustomField.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/addOrganizationCustomField.ts#L25) diff --git a/talawa-api-docs/modules/resolvers_Mutation_addOrganizationImage.md b/talawa-api-docs/modules/resolvers_Mutation_addOrganizationImage.md index b7c5338615c..a6bbb720c29 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_addOrganizationImage.md +++ b/talawa-api-docs/modules/resolvers_Mutation_addOrganizationImage.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/addOrganizationImage.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/addOrganizationImage.ts#L21) +[src/resolvers/Mutation/addOrganizationImage.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/addOrganizationImage.ts#L21) diff --git a/talawa-api-docs/modules/resolvers_Mutation_addUserCustomData.md b/talawa-api-docs/modules/resolvers_Mutation_addUserCustomData.md index 1f7bcf385e4..d4b3cf882b9 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_addUserCustomData.md +++ b/talawa-api-docs/modules/resolvers_Mutation_addUserCustomData.md @@ -36,4 +36,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/addUserCustomData.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/addUserCustomData.ts#L20) +[src/resolvers/Mutation/addUserCustomData.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/addUserCustomData.ts#L20) diff --git a/talawa-api-docs/modules/resolvers_Mutation_addUserImage.md b/talawa-api-docs/modules/resolvers_Mutation_addUserImage.md index e1078d13a58..5c252e8a76f 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_addUserImage.md +++ b/talawa-api-docs/modules/resolvers_Mutation_addUserImage.md @@ -35,4 +35,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/addUserImage.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/addUserImage.ts#L15) +[src/resolvers/Mutation/addUserImage.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/addUserImage.ts#L15) diff --git a/talawa-api-docs/modules/resolvers_Mutation_addUserToGroupChat.md b/talawa-api-docs/modules/resolvers_Mutation_addUserToGroupChat.md index a4fb0566482..e8416ebc5f6 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_addUserToGroupChat.md +++ b/talawa-api-docs/modules/resolvers_Mutation_addUserToGroupChat.md @@ -39,4 +39,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/addUserToGroupChat.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/addUserToGroupChat.ts#L27) +[src/resolvers/Mutation/addUserToGroupChat.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/addUserToGroupChat.ts#L27) diff --git a/talawa-api-docs/modules/resolvers_Mutation_adminRemoveEvent.md b/talawa-api-docs/modules/resolvers_Mutation_adminRemoveEvent.md index ba8b9b15c0e..b2f3350e23e 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_adminRemoveEvent.md +++ b/talawa-api-docs/modules/resolvers_Mutation_adminRemoveEvent.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/adminRemoveEvent.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/adminRemoveEvent.ts#L27) +[src/resolvers/Mutation/adminRemoveEvent.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/adminRemoveEvent.ts#L27) diff --git a/talawa-api-docs/modules/resolvers_Mutation_adminRemoveGroup.md b/talawa-api-docs/modules/resolvers_Mutation_adminRemoveGroup.md index e0aae1d6a5e..39bc87d85ff 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_adminRemoveGroup.md +++ b/talawa-api-docs/modules/resolvers_Mutation_adminRemoveGroup.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/adminRemoveGroup.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/adminRemoveGroup.ts#L25) +[src/resolvers/Mutation/adminRemoveGroup.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/adminRemoveGroup.ts#L25) diff --git a/talawa-api-docs/modules/resolvers_Mutation_assignUserTag.md b/talawa-api-docs/modules/resolvers_Mutation_assignUserTag.md index 024baad3b9d..aa14c5dcd08 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_assignUserTag.md +++ b/talawa-api-docs/modules/resolvers_Mutation_assignUserTag.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/assignUserTag.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/assignUserTag.ts#L12) +[src/resolvers/Mutation/assignUserTag.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/assignUserTag.ts#L12) diff --git a/talawa-api-docs/modules/resolvers_Mutation_blockPluginCreationBySuperadmin.md b/talawa-api-docs/modules/resolvers_Mutation_blockPluginCreationBySuperadmin.md index 38c9a0410b3..f3af8aaa36b 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_blockPluginCreationBySuperadmin.md +++ b/talawa-api-docs/modules/resolvers_Mutation_blockPluginCreationBySuperadmin.md @@ -36,4 +36,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/blockPluginCreationBySuperadmin.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/blockPluginCreationBySuperadmin.ts#L16) +[src/resolvers/Mutation/blockPluginCreationBySuperadmin.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/blockPluginCreationBySuperadmin.ts#L16) diff --git a/talawa-api-docs/modules/resolvers_Mutation_blockUser.md b/talawa-api-docs/modules/resolvers_Mutation_blockUser.md index 783a329975e..3e5e3405c08 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_blockUser.md +++ b/talawa-api-docs/modules/resolvers_Mutation_blockUser.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/blockUser.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/blockUser.ts#L27) +[src/resolvers/Mutation/blockUser.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/blockUser.ts#L27) diff --git a/talawa-api-docs/modules/resolvers_Mutation_cancelMembershipRequest.md b/talawa-api-docs/modules/resolvers_Mutation_cancelMembershipRequest.md index 7343cbcd43d..82c5430c2d8 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_cancelMembershipRequest.md +++ b/talawa-api-docs/modules/resolvers_Mutation_cancelMembershipRequest.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/cancelMembershipRequest.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/cancelMembershipRequest.ts#L24) +[src/resolvers/Mutation/cancelMembershipRequest.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/cancelMembershipRequest.ts#L24) diff --git a/talawa-api-docs/modules/resolvers_Mutation_checkIn.md b/talawa-api-docs/modules/resolvers_Mutation_checkIn.md index b0ff796ff57..946ecc31c23 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_checkIn.md +++ b/talawa-api-docs/modules/resolvers_Mutation_checkIn.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/checkIn.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/checkIn.ts#L16) +[src/resolvers/Mutation/checkIn.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/checkIn.ts#L16) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createActionItem.md b/talawa-api-docs/modules/resolvers_Mutation_createActionItem.md index 27603721bad..bccf8781dac 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createActionItem.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createActionItem.md @@ -41,4 +41,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/createActionItem.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createActionItem.ts#L32) +[src/resolvers/Mutation/createActionItem.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createActionItem.ts#L32) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createActionItemCategory.md b/talawa-api-docs/modules/resolvers_Mutation_createActionItemCategory.md index 0fc3b922b84..e79e770f785 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createActionItemCategory.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createActionItemCategory.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/createActionItemCategory.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createActionItemCategory.ts#L27) +[src/resolvers/Mutation/createActionItemCategory.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createActionItemCategory.ts#L27) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createAdmin.md b/talawa-api-docs/modules/resolvers_Mutation_createAdmin.md index 0c9e4604c53..9ac6af7ef8f 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createAdmin.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createAdmin.md @@ -39,4 +39,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/createAdmin.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createAdmin.ts#L27) +[src/resolvers/Mutation/createAdmin.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createAdmin.ts#L27) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createAdvertisement.md b/talawa-api-docs/modules/resolvers_Mutation_createAdvertisement.md index 2a70e4f4ffd..490ecc4611f 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createAdvertisement.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createAdvertisement.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/createAdvertisement.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createAdvertisement.ts#L4) +[src/resolvers/Mutation/createAdvertisement.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createAdvertisement.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createComment.md b/talawa-api-docs/modules/resolvers_Mutation_createComment.md index 557579a0a84..9fd8cb6a877 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createComment.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createComment.md @@ -35,4 +35,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/createComment.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createComment.ts#L17) +[src/resolvers/Mutation/createComment.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createComment.ts#L17) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createDirectChat.md b/talawa-api-docs/modules/resolvers_Mutation_createDirectChat.md index 042b98fd667..51f89ba47de 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createDirectChat.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createDirectChat.md @@ -36,4 +36,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/createDirectChat.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createDirectChat.ts#L20) +[src/resolvers/Mutation/createDirectChat.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createDirectChat.ts#L20) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createDonation.md b/talawa-api-docs/modules/resolvers_Mutation_createDonation.md index ed922591998..ee2425858c5 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createDonation.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createDonation.md @@ -30,4 +30,4 @@ context of entire application #### Defined in -[src/resolvers/Mutation/createDonation.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createDonation.ts#L11) +[src/resolvers/Mutation/createDonation.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createDonation.ts#L11) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createEvent.md b/talawa-api-docs/modules/resolvers_Mutation_createEvent.md index 978ea54a669..dde203757d5 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createEvent.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createEvent.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/createEvent.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createEvent.ts#L30) +[src/resolvers/Mutation/createEvent.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createEvent.ts#L30) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createGroupChat.md b/talawa-api-docs/modules/resolvers_Mutation_createGroupChat.md index a82fe5975ac..85f2e4559d7 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createGroupChat.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createGroupChat.md @@ -36,4 +36,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/createGroupChat.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createGroupChat.ts#L20) +[src/resolvers/Mutation/createGroupChat.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createGroupChat.ts#L20) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createMember.md b/talawa-api-docs/modules/resolvers_Mutation_createMember.md index 5041d15da4d..6e926bf4554 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createMember.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createMember.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/createMember.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createMember.ts#L24) +[src/resolvers/Mutation/createMember.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createMember.ts#L24) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createMessageChat.md b/talawa-api-docs/modules/resolvers_Mutation_createMessageChat.md index b499da7866c..ebc5876c640 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createMessageChat.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createMessageChat.md @@ -36,4 +36,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/createMessageChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createMessageChat.ts#L15) +[src/resolvers/Mutation/createMessageChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createMessageChat.ts#L15) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createOrganization.md b/talawa-api-docs/modules/resolvers_Mutation_createOrganization.md index c9d06b1bffe..397976a5008 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createOrganization.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createOrganization.md @@ -35,4 +35,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/createOrganization.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createOrganization.ts#L22) +[src/resolvers/Mutation/createOrganization.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createOrganization.ts#L22) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createPlugin.md b/talawa-api-docs/modules/resolvers_Mutation_createPlugin.md index 01f339982c0..d5736ec5d63 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createPlugin.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createPlugin.md @@ -30,4 +30,4 @@ context of entire application #### Defined in -[src/resolvers/Mutation/createPlugin.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createPlugin.ts#L12) +[src/resolvers/Mutation/createPlugin.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createPlugin.ts#L12) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createPost.md b/talawa-api-docs/modules/resolvers_Mutation_createPost.md index d551b7e1e8c..19dae251ca8 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createPost.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createPost.md @@ -36,4 +36,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/createPost.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createPost.ts#L28) +[src/resolvers/Mutation/createPost.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createPost.ts#L28) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createSampleOrganization.md b/talawa-api-docs/modules/resolvers_Mutation_createSampleOrganization.md index fe2bb6de5a5..969f7dc8d62 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createSampleOrganization.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createSampleOrganization.md @@ -18,4 +18,4 @@ Generates sample data for testing or development purposes. #### Defined in -[src/resolvers/Mutation/createSampleOrganization.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createSampleOrganization.ts#L15) +[src/resolvers/Mutation/createSampleOrganization.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createSampleOrganization.ts#L15) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createUserTag.md b/talawa-api-docs/modules/resolvers_Mutation_createUserTag.md index bb96e130443..07fb2a0bf4c 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_createUserTag.md +++ b/talawa-api-docs/modules/resolvers_Mutation_createUserTag.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/createUserTag.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/createUserTag.ts#L13) +[src/resolvers/Mutation/createUserTag.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/createUserTag.ts#L13) diff --git a/talawa-api-docs/modules/resolvers_Mutation_deleteAdvertisementById.md b/talawa-api-docs/modules/resolvers_Mutation_deleteAdvertisementById.md index eab52cb65cf..15fdfd8e21a 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_deleteAdvertisementById.md +++ b/talawa-api-docs/modules/resolvers_Mutation_deleteAdvertisementById.md @@ -26,4 +26,4 @@ payload provided with the request #### Defined in -[src/resolvers/Mutation/deleteAdvertisementById.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/deleteAdvertisementById.ts#L10) +[src/resolvers/Mutation/deleteAdvertisementById.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/deleteAdvertisementById.ts#L10) diff --git a/talawa-api-docs/modules/resolvers_Mutation_deleteDonationById.md b/talawa-api-docs/modules/resolvers_Mutation_deleteDonationById.md index 1144ad62a6f..908075a99bc 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_deleteDonationById.md +++ b/talawa-api-docs/modules/resolvers_Mutation_deleteDonationById.md @@ -26,4 +26,4 @@ payload provided with the request #### Defined in -[src/resolvers/Mutation/deleteDonationById.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/deleteDonationById.ts#L10) +[src/resolvers/Mutation/deleteDonationById.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/deleteDonationById.ts#L10) diff --git a/talawa-api-docs/modules/resolvers_Mutation_forgotPassword.md b/talawa-api-docs/modules/resolvers_Mutation_forgotPassword.md index e9dcd3ea14f..ba2735276cd 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_forgotPassword.md +++ b/talawa-api-docs/modules/resolvers_Mutation_forgotPassword.md @@ -34,4 +34,4 @@ The following tasks are done: #### Defined in -[src/resolvers/Mutation/forgotPassword.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/forgotPassword.ts#L17) +[src/resolvers/Mutation/forgotPassword.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/forgotPassword.ts#L17) diff --git a/talawa-api-docs/modules/resolvers_Mutation_joinPublicOrganization.md b/talawa-api-docs/modules/resolvers_Mutation_joinPublicOrganization.md index caa89ebe7b5..8670202113a 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_joinPublicOrganization.md +++ b/talawa-api-docs/modules/resolvers_Mutation_joinPublicOrganization.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/joinPublicOrganization.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/joinPublicOrganization.ts#L25) +[src/resolvers/Mutation/joinPublicOrganization.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/joinPublicOrganization.ts#L25) diff --git a/talawa-api-docs/modules/resolvers_Mutation_leaveOrganization.md b/talawa-api-docs/modules/resolvers_Mutation_leaveOrganization.md index 517bbf940e3..baebe501545 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_leaveOrganization.md +++ b/talawa-api-docs/modules/resolvers_Mutation_leaveOrganization.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/leaveOrganization.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/leaveOrganization.ts#L24) +[src/resolvers/Mutation/leaveOrganization.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/leaveOrganization.ts#L24) diff --git a/talawa-api-docs/modules/resolvers_Mutation_likeComment.md b/talawa-api-docs/modules/resolvers_Mutation_likeComment.md index 5719adaf74f..f3ba6ea7d84 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_likeComment.md +++ b/talawa-api-docs/modules/resolvers_Mutation_likeComment.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/likeComment.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/likeComment.ts#L18) +[src/resolvers/Mutation/likeComment.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/likeComment.ts#L18) diff --git a/talawa-api-docs/modules/resolvers_Mutation_likePost.md b/talawa-api-docs/modules/resolvers_Mutation_likePost.md index 91d192c3586..74aef81b508 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_likePost.md +++ b/talawa-api-docs/modules/resolvers_Mutation_likePost.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/likePost.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/likePost.ts#L18) +[src/resolvers/Mutation/likePost.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/likePost.ts#L18) diff --git a/talawa-api-docs/modules/resolvers_Mutation_login.md b/talawa-api-docs/modules/resolvers_Mutation_login.md index f7824d595e4..a657d3d3dc9 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_login.md +++ b/talawa-api-docs/modules/resolvers_Mutation_login.md @@ -32,4 +32,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/login.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/login.ts#L25) +[src/resolvers/Mutation/login.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/login.ts#L25) diff --git a/talawa-api-docs/modules/resolvers_Mutation_logout.md b/talawa-api-docs/modules/resolvers_Mutation_logout.md index 456250ec236..900c249ada9 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_logout.md +++ b/talawa-api-docs/modules/resolvers_Mutation_logout.md @@ -35,4 +35,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/logout.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/logout.ts#L13) +[src/resolvers/Mutation/logout.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/logout.ts#L13) diff --git a/talawa-api-docs/modules/resolvers_Mutation_otp.md b/talawa-api-docs/modules/resolvers_Mutation_otp.md index 22305b5dc2c..bf2a2795589 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_otp.md +++ b/talawa-api-docs/modules/resolvers_Mutation_otp.md @@ -31,4 +31,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/otp.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/otp.ts#L16) +[src/resolvers/Mutation/otp.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/otp.ts#L16) diff --git a/talawa-api-docs/modules/resolvers_Mutation_recaptcha.md b/talawa-api-docs/modules/resolvers_Mutation_recaptcha.md index 72140481de5..58ab4d9fbb2 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_recaptcha.md +++ b/talawa-api-docs/modules/resolvers_Mutation_recaptcha.md @@ -26,4 +26,4 @@ payload provided with the request #### Defined in -[src/resolvers/Mutation/recaptcha.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/recaptcha.ts#L10) +[src/resolvers/Mutation/recaptcha.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/recaptcha.ts#L10) diff --git a/talawa-api-docs/modules/resolvers_Mutation_refreshToken.md b/talawa-api-docs/modules/resolvers_Mutation_refreshToken.md index 27ff7ea6f50..a7312acfd06 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_refreshToken.md +++ b/talawa-api-docs/modules/resolvers_Mutation_refreshToken.md @@ -26,4 +26,4 @@ payload provided with the request #### Defined in -[src/resolvers/Mutation/refreshToken.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/refreshToken.ts#L23) +[src/resolvers/Mutation/refreshToken.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/refreshToken.ts#L23) diff --git a/talawa-api-docs/modules/resolvers_Mutation_registerForEvent.md b/talawa-api-docs/modules/resolvers_Mutation_registerForEvent.md index 139e6fcd984..7677f5898ef 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_registerForEvent.md +++ b/talawa-api-docs/modules/resolvers_Mutation_registerForEvent.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/registerForEvent.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/registerForEvent.ts#L24) +[src/resolvers/Mutation/registerForEvent.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/registerForEvent.ts#L24) diff --git a/talawa-api-docs/modules/resolvers_Mutation_rejectAdmin.md b/talawa-api-docs/modules/resolvers_Mutation_rejectAdmin.md index 56a415a1da9..301c929a745 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_rejectAdmin.md +++ b/talawa-api-docs/modules/resolvers_Mutation_rejectAdmin.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/rejectAdmin.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/rejectAdmin.ts#L17) +[src/resolvers/Mutation/rejectAdmin.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/rejectAdmin.ts#L17) diff --git a/talawa-api-docs/modules/resolvers_Mutation_rejectMembershipRequest.md b/talawa-api-docs/modules/resolvers_Mutation_rejectMembershipRequest.md index dde7f9b3da4..36decf2fd51 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_rejectMembershipRequest.md +++ b/talawa-api-docs/modules/resolvers_Mutation_rejectMembershipRequest.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/rejectMembershipRequest.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/rejectMembershipRequest.ts#L23) +[src/resolvers/Mutation/rejectMembershipRequest.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/rejectMembershipRequest.ts#L23) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeActionItem.md b/talawa-api-docs/modules/resolvers_Mutation_removeActionItem.md index 6e2d2b8df8b..e8ba2af76b0 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeActionItem.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeActionItem.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/removeActionItem.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeActionItem.ts#L26) +[src/resolvers/Mutation/removeActionItem.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeActionItem.ts#L26) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeAdmin.md b/talawa-api-docs/modules/resolvers_Mutation_removeAdmin.md index 53b4efc595e..3cdcf9f1f08 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeAdmin.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeAdmin.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/removeAdmin.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeAdmin.ts#L26) +[src/resolvers/Mutation/removeAdmin.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeAdmin.ts#L26) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeAdvertisement.md b/talawa-api-docs/modules/resolvers_Mutation_removeAdvertisement.md index d58a69c835b..5142d18d349 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeAdvertisement.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeAdvertisement.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/removeAdvertisement.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeAdvertisement.ts#L7) +[src/resolvers/Mutation/removeAdvertisement.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeAdvertisement.ts#L7) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeComment.md b/talawa-api-docs/modules/resolvers_Mutation_removeComment.md index f66d03a4eda..d1b89baf03a 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeComment.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeComment.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/removeComment.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeComment.ts#L26) +[src/resolvers/Mutation/removeComment.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeComment.ts#L26) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeDirectChat.md b/talawa-api-docs/modules/resolvers_Mutation_removeDirectChat.md index c3f98bea288..4066d5e1c72 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeDirectChat.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeDirectChat.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/removeDirectChat.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeDirectChat.ts#L22) +[src/resolvers/Mutation/removeDirectChat.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeDirectChat.ts#L22) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeEvent.md b/talawa-api-docs/modules/resolvers_Mutation_removeEvent.md index 48d9d70d28a..c53288cb675 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeEvent.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeEvent.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/removeEvent.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeEvent.ts#L24) +[src/resolvers/Mutation/removeEvent.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeEvent.ts#L24) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeEventAttendee.md b/talawa-api-docs/modules/resolvers_Mutation_removeEventAttendee.md index 9e87260ae21..369c8369b09 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeEventAttendee.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeEventAttendee.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/removeEventAttendee.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeEventAttendee.ts#L14) +[src/resolvers/Mutation/removeEventAttendee.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeEventAttendee.ts#L14) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeGroupChat.md b/talawa-api-docs/modules/resolvers_Mutation_removeGroupChat.md index b133745b6f7..74f5047fa3f 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeGroupChat.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeGroupChat.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/removeGroupChat.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeGroupChat.ts#L22) +[src/resolvers/Mutation/removeGroupChat.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeGroupChat.ts#L22) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeMember.md b/talawa-api-docs/modules/resolvers_Mutation_removeMember.md index eb3fdcc3b0c..5f0b0eec0c7 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeMember.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeMember.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/removeMember.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeMember.ts#L29) +[src/resolvers/Mutation/removeMember.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeMember.ts#L29) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeOrganization.md b/talawa-api-docs/modules/resolvers_Mutation_removeOrganization.md index 818ef4eecbf..3500857f549 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeOrganization.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeOrganization.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/removeOrganization.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeOrganization.ts#L32) +[src/resolvers/Mutation/removeOrganization.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeOrganization.ts#L32) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeOrganizationCustomField.md b/talawa-api-docs/modules/resolvers_Mutation_removeOrganizationCustomField.md index 1e19525aa4d..150bc9b1019 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeOrganizationCustomField.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeOrganizationCustomField.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/removeOrganizationCustomField.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeOrganizationCustomField.ts#L24) +[src/resolvers/Mutation/removeOrganizationCustomField.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeOrganizationCustomField.ts#L24) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeOrganizationImage.md b/talawa-api-docs/modules/resolvers_Mutation_removeOrganizationImage.md index ee16e1aafca..37076c79926 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeOrganizationImage.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeOrganizationImage.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/removeOrganizationImage.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeOrganizationImage.ts#L22) +[src/resolvers/Mutation/removeOrganizationImage.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeOrganizationImage.ts#L22) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removePost.md b/talawa-api-docs/modules/resolvers_Mutation_removePost.md index bb9bdbd74c9..e1794fcbafd 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removePost.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removePost.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/removePost.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removePost.ts#L28) +[src/resolvers/Mutation/removePost.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removePost.ts#L28) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeSampleOrganization.md b/talawa-api-docs/modules/resolvers_Mutation_removeSampleOrganization.md index 9151a489d63..0c6c25c0278 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeSampleOrganization.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeSampleOrganization.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/removeSampleOrganization.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeSampleOrganization.ts#L11) +[src/resolvers/Mutation/removeSampleOrganization.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeSampleOrganization.ts#L11) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeUserCustomData.md b/talawa-api-docs/modules/resolvers_Mutation_removeUserCustomData.md index 5c5e77448c3..3b33d8997f5 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeUserCustomData.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeUserCustomData.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/removeUserCustomData.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeUserCustomData.ts#L12) +[src/resolvers/Mutation/removeUserCustomData.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeUserCustomData.ts#L12) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeUserFromGroupChat.md b/talawa-api-docs/modules/resolvers_Mutation_removeUserFromGroupChat.md index e0e61497693..81ebadd58db 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeUserFromGroupChat.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeUserFromGroupChat.md @@ -38,4 +38,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/removeUserFromGroupChat.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeUserFromGroupChat.ts#L24) +[src/resolvers/Mutation/removeUserFromGroupChat.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeUserFromGroupChat.ts#L24) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeUserImage.md b/talawa-api-docs/modules/resolvers_Mutation_removeUserImage.md index a94e2a38e0f..050506c25ee 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeUserImage.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeUserImage.md @@ -36,4 +36,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/removeUserImage.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeUserImage.ts#L19) +[src/resolvers/Mutation/removeUserImage.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeUserImage.ts#L19) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeUserTag.md b/talawa-api-docs/modules/resolvers_Mutation_removeUserTag.md index 76d2f5dfed3..34e53a8af75 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_removeUserTag.md +++ b/talawa-api-docs/modules/resolvers_Mutation_removeUserTag.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/removeUserTag.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/removeUserTag.ts#L10) +[src/resolvers/Mutation/removeUserTag.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/removeUserTag.ts#L10) diff --git a/talawa-api-docs/modules/resolvers_Mutation_revokeRefreshTokenForUser.md b/talawa-api-docs/modules/resolvers_Mutation_revokeRefreshTokenForUser.md index 218a1b5d28a..9cda23b3d24 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_revokeRefreshTokenForUser.md +++ b/talawa-api-docs/modules/resolvers_Mutation_revokeRefreshTokenForUser.md @@ -26,4 +26,4 @@ payload provided with the request #### Defined in -[src/resolvers/Mutation/revokeRefreshTokenForUser.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/revokeRefreshTokenForUser.ts#L9) +[src/resolvers/Mutation/revokeRefreshTokenForUser.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/revokeRefreshTokenForUser.ts#L9) diff --git a/talawa-api-docs/modules/resolvers_Mutation_saveFcmToken.md b/talawa-api-docs/modules/resolvers_Mutation_saveFcmToken.md index 5a490702e74..3bc995b4fc2 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_saveFcmToken.md +++ b/talawa-api-docs/modules/resolvers_Mutation_saveFcmToken.md @@ -35,4 +35,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/saveFcmToken.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/saveFcmToken.ts#L12) +[src/resolvers/Mutation/saveFcmToken.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/saveFcmToken.ts#L12) diff --git a/talawa-api-docs/modules/resolvers_Mutation_sendMembershipRequest.md b/talawa-api-docs/modules/resolvers_Mutation_sendMembershipRequest.md index abe773ff156..df4c476161e 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_sendMembershipRequest.md +++ b/talawa-api-docs/modules/resolvers_Mutation_sendMembershipRequest.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/sendMembershipRequest.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/sendMembershipRequest.ts#L21) +[src/resolvers/Mutation/sendMembershipRequest.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/sendMembershipRequest.ts#L21) diff --git a/talawa-api-docs/modules/resolvers_Mutation_sendMessageToDirectChat.md b/talawa-api-docs/modules/resolvers_Mutation_sendMessageToDirectChat.md index 899bfc0e478..bb2562c39f7 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_sendMessageToDirectChat.md +++ b/talawa-api-docs/modules/resolvers_Mutation_sendMessageToDirectChat.md @@ -36,4 +36,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/sendMessageToDirectChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/sendMessageToDirectChat.ts#L15) +[src/resolvers/Mutation/sendMessageToDirectChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/sendMessageToDirectChat.ts#L15) diff --git a/talawa-api-docs/modules/resolvers_Mutation_sendMessageToGroupChat.md b/talawa-api-docs/modules/resolvers_Mutation_sendMessageToGroupChat.md index 902d0e89124..9dfc7c80e1b 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_sendMessageToGroupChat.md +++ b/talawa-api-docs/modules/resolvers_Mutation_sendMessageToGroupChat.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/sendMessageToGroupChat.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/sendMessageToGroupChat.ts#L20) +[src/resolvers/Mutation/sendMessageToGroupChat.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/sendMessageToGroupChat.ts#L20) diff --git a/talawa-api-docs/modules/resolvers_Mutation_signUp.md b/talawa-api-docs/modules/resolvers_Mutation_signUp.md index 48d0e47740f..000dee00658 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_signUp.md +++ b/talawa-api-docs/modules/resolvers_Mutation_signUp.md @@ -26,4 +26,4 @@ payload provided with the request #### Defined in -[src/resolvers/Mutation/signUp.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/signUp.ts#L28) +[src/resolvers/Mutation/signUp.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/signUp.ts#L28) diff --git a/talawa-api-docs/modules/resolvers_Mutation_togglePostPin.md b/talawa-api-docs/modules/resolvers_Mutation_togglePostPin.md index f9b873b3ada..111b8dc9228 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_togglePostPin.md +++ b/talawa-api-docs/modules/resolvers_Mutation_togglePostPin.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/togglePostPin.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/togglePostPin.ts#L19) +[src/resolvers/Mutation/togglePostPin.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/togglePostPin.ts#L19) diff --git a/talawa-api-docs/modules/resolvers_Mutation_unassignUserTag.md b/talawa-api-docs/modules/resolvers_Mutation_unassignUserTag.md index 801e02270b1..efd049655a1 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_unassignUserTag.md +++ b/talawa-api-docs/modules/resolvers_Mutation_unassignUserTag.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/unassignUserTag.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/unassignUserTag.ts#L11) +[src/resolvers/Mutation/unassignUserTag.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/unassignUserTag.ts#L11) diff --git a/talawa-api-docs/modules/resolvers_Mutation_unblockUser.md b/talawa-api-docs/modules/resolvers_Mutation_unblockUser.md index 629e3291ff8..3d061a0eafe 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_unblockUser.md +++ b/talawa-api-docs/modules/resolvers_Mutation_unblockUser.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/unblockUser.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/unblockUser.ts#L25) +[src/resolvers/Mutation/unblockUser.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/unblockUser.ts#L25) diff --git a/talawa-api-docs/modules/resolvers_Mutation_unlikeComment.md b/talawa-api-docs/modules/resolvers_Mutation_unlikeComment.md index 38029f7c406..ff99820cb19 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_unlikeComment.md +++ b/talawa-api-docs/modules/resolvers_Mutation_unlikeComment.md @@ -36,4 +36,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/unlikeComment.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/unlikeComment.ts#L17) +[src/resolvers/Mutation/unlikeComment.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/unlikeComment.ts#L17) diff --git a/talawa-api-docs/modules/resolvers_Mutation_unlikePost.md b/talawa-api-docs/modules/resolvers_Mutation_unlikePost.md index 7d3a012fa38..af9781d48b9 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_unlikePost.md +++ b/talawa-api-docs/modules/resolvers_Mutation_unlikePost.md @@ -36,4 +36,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/unlikePost.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/unlikePost.ts#L18) +[src/resolvers/Mutation/unlikePost.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/unlikePost.ts#L18) diff --git a/talawa-api-docs/modules/resolvers_Mutation_unregisterForEventByUser.md b/talawa-api-docs/modules/resolvers_Mutation_unregisterForEventByUser.md index 3879696984c..f072b691265 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_unregisterForEventByUser.md +++ b/talawa-api-docs/modules/resolvers_Mutation_unregisterForEventByUser.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/unregisterForEventByUser.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/unregisterForEventByUser.ts#L24) +[src/resolvers/Mutation/unregisterForEventByUser.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/unregisterForEventByUser.ts#L24) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updateActionItem.md b/talawa-api-docs/modules/resolvers_Mutation_updateActionItem.md index 00b9a275d26..0a77b2ee536 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_updateActionItem.md +++ b/talawa-api-docs/modules/resolvers_Mutation_updateActionItem.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/updateActionItem.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/updateActionItem.ts#L38) +[src/resolvers/Mutation/updateActionItem.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/updateActionItem.ts#L38) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updateActionItemCategory.md b/talawa-api-docs/modules/resolvers_Mutation_updateActionItemCategory.md index 0ec4aa8176d..84ccbdb2c99 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_updateActionItemCategory.md +++ b/talawa-api-docs/modules/resolvers_Mutation_updateActionItemCategory.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/updateActionItemCategory.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/updateActionItemCategory.ts#L26) +[src/resolvers/Mutation/updateActionItemCategory.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/updateActionItemCategory.ts#L26) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updateAdvertisement.md b/talawa-api-docs/modules/resolvers_Mutation_updateAdvertisement.md index 735f08661f7..9a6c0459197 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_updateAdvertisement.md +++ b/talawa-api-docs/modules/resolvers_Mutation_updateAdvertisement.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/updateAdvertisement.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/updateAdvertisement.ts#L14) +[src/resolvers/Mutation/updateAdvertisement.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/updateAdvertisement.ts#L14) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updateEvent.md b/talawa-api-docs/modules/resolvers_Mutation_updateEvent.md index 79a431909ad..3916a2d2384 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_updateEvent.md +++ b/talawa-api-docs/modules/resolvers_Mutation_updateEvent.md @@ -37,4 +37,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/updateEvent.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/updateEvent.ts#L26) +[src/resolvers/Mutation/updateEvent.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/updateEvent.ts#L26) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updateLanguage.md b/talawa-api-docs/modules/resolvers_Mutation_updateLanguage.md index c63d3d8afcd..50e7297dea5 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_updateLanguage.md +++ b/talawa-api-docs/modules/resolvers_Mutation_updateLanguage.md @@ -35,4 +35,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/updateLanguage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/updateLanguage.ts#L12) +[src/resolvers/Mutation/updateLanguage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/updateLanguage.ts#L12) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updateOrganization.md b/talawa-api-docs/modules/resolvers_Mutation_updateOrganization.md index 317bc76d919..194de506401 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_updateOrganization.md +++ b/talawa-api-docs/modules/resolvers_Mutation_updateOrganization.md @@ -36,4 +36,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/updateOrganization.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/updateOrganization.ts#L21) +[src/resolvers/Mutation/updateOrganization.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/updateOrganization.ts#L21) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updatePluginStatus.md b/talawa-api-docs/modules/resolvers_Mutation_updatePluginStatus.md index bce28ebf20a..eadfef41d8e 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_updatePluginStatus.md +++ b/talawa-api-docs/modules/resolvers_Mutation_updatePluginStatus.md @@ -30,4 +30,4 @@ context of entire application #### Defined in -[src/resolvers/Mutation/updatePluginStatus.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/updatePluginStatus.ts#L16) +[src/resolvers/Mutation/updatePluginStatus.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/updatePluginStatus.ts#L16) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updatePost.md b/talawa-api-docs/modules/resolvers_Mutation_updatePost.md index bfb092ef119..40e9cfc39ec 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_updatePost.md +++ b/talawa-api-docs/modules/resolvers_Mutation_updatePost.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/updatePost.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/updatePost.ts#L18) +[src/resolvers/Mutation/updatePost.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/updatePost.ts#L18) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updateUserPassword.md b/talawa-api-docs/modules/resolvers_Mutation_updateUserPassword.md index 1582da22bc6..cc2741309bf 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_updateUserPassword.md +++ b/talawa-api-docs/modules/resolvers_Mutation_updateUserPassword.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/updateUserPassword.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/updateUserPassword.ts#L10) +[src/resolvers/Mutation/updateUserPassword.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/updateUserPassword.ts#L10) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updateUserProfile.md b/talawa-api-docs/modules/resolvers_Mutation_updateUserProfile.md index 10f367231b6..7e3bd766bca 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_updateUserProfile.md +++ b/talawa-api-docs/modules/resolvers_Mutation_updateUserProfile.md @@ -35,4 +35,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/updateUserProfile.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/updateUserProfile.ts#L19) +[src/resolvers/Mutation/updateUserProfile.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/updateUserProfile.ts#L19) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updateUserRoleInOrganization.md b/talawa-api-docs/modules/resolvers_Mutation_updateUserRoleInOrganization.md index 3420be1ffa5..bc5d583dffb 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_updateUserRoleInOrganization.md +++ b/talawa-api-docs/modules/resolvers_Mutation_updateUserRoleInOrganization.md @@ -30,4 +30,4 @@ context of entire application #### Defined in -[src/resolvers/Mutation/updateUserRoleInOrganization.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/updateUserRoleInOrganization.ts#L23) +[src/resolvers/Mutation/updateUserRoleInOrganization.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/updateUserRoleInOrganization.ts#L23) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updateUserTag.md b/talawa-api-docs/modules/resolvers_Mutation_updateUserTag.md index 6f85b982ad5..9c242730c53 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_updateUserTag.md +++ b/talawa-api-docs/modules/resolvers_Mutation_updateUserTag.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Mutation/updateUserTag.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/updateUserTag.ts#L12) +[src/resolvers/Mutation/updateUserTag.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/updateUserTag.ts#L12) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updateUserType.md b/talawa-api-docs/modules/resolvers_Mutation_updateUserType.md index f51115ee9d1..f3c73805e97 100644 --- a/talawa-api-docs/modules/resolvers_Mutation_updateUserType.md +++ b/talawa-api-docs/modules/resolvers_Mutation_updateUserType.md @@ -35,4 +35,4 @@ The following checks are done: #### Defined in -[src/resolvers/Mutation/updateUserType.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Mutation/updateUserType.ts#L18) +[src/resolvers/Mutation/updateUserType.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Mutation/updateUserType.ts#L18) diff --git a/talawa-api-docs/modules/resolvers_Organization.md b/talawa-api-docs/modules/resolvers_Organization.md index 89eecffdb2f..50dcd6b4792 100644 --- a/talawa-api-docs/modules/resolvers_Organization.md +++ b/talawa-api-docs/modules/resolvers_Organization.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Organization/index.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Organization/index.ts#L12) +[src/resolvers/Organization/index.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Organization/index.ts#L12) diff --git a/talawa-api-docs/modules/resolvers_Organization_actionItemCategories.md b/talawa-api-docs/modules/resolvers_Organization_actionItemCategories.md index 21a6b59f31f..8873e054c44 100644 --- a/talawa-api-docs/modules/resolvers_Organization_actionItemCategories.md +++ b/talawa-api-docs/modules/resolvers_Organization_actionItemCategories.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/Organization/actionItemCategories.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Organization/actionItemCategories.ts#L8) +[src/resolvers/Organization/actionItemCategories.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Organization/actionItemCategories.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_Organization_admins.md b/talawa-api-docs/modules/resolvers_Organization_admins.md index 37648587c48..eb90b68e1fc 100644 --- a/talawa-api-docs/modules/resolvers_Organization_admins.md +++ b/talawa-api-docs/modules/resolvers_Organization_admins.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/Organization/admins.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Organization/admins.ts#L8) +[src/resolvers/Organization/admins.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Organization/admins.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_Organization_blockedUsers.md b/talawa-api-docs/modules/resolvers_Organization_blockedUsers.md index 9f9948fd057..e4d84aeaeeb 100644 --- a/talawa-api-docs/modules/resolvers_Organization_blockedUsers.md +++ b/talawa-api-docs/modules/resolvers_Organization_blockedUsers.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/Organization/blockedUsers.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Organization/blockedUsers.ts#L8) +[src/resolvers/Organization/blockedUsers.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Organization/blockedUsers.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_Organization_creator.md b/talawa-api-docs/modules/resolvers_Organization_creator.md index 7f9be3d13fb..8b7ab267f3a 100644 --- a/talawa-api-docs/modules/resolvers_Organization_creator.md +++ b/talawa-api-docs/modules/resolvers_Organization_creator.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/Organization/creator.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Organization/creator.ts#L10) +[src/resolvers/Organization/creator.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Organization/creator.ts#L10) diff --git a/talawa-api-docs/modules/resolvers_Organization_image.md b/talawa-api-docs/modules/resolvers_Organization_image.md index 60aba32faa0..457d284207e 100644 --- a/talawa-api-docs/modules/resolvers_Organization_image.md +++ b/talawa-api-docs/modules/resolvers_Organization_image.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Organization/image.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Organization/image.ts#L4) +[src/resolvers/Organization/image.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Organization/image.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_Organization_members.md b/talawa-api-docs/modules/resolvers_Organization_members.md index ffb29f3c683..660c0bac2a5 100644 --- a/talawa-api-docs/modules/resolvers_Organization_members.md +++ b/talawa-api-docs/modules/resolvers_Organization_members.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/Organization/members.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Organization/members.ts#L9) +[src/resolvers/Organization/members.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Organization/members.ts#L9) diff --git a/talawa-api-docs/modules/resolvers_Organization_membershipRequests.md b/talawa-api-docs/modules/resolvers_Organization_membershipRequests.md index 158ac734488..74f6c662984 100644 --- a/talawa-api-docs/modules/resolvers_Organization_membershipRequests.md +++ b/talawa-api-docs/modules/resolvers_Organization_membershipRequests.md @@ -22,4 +22,4 @@ An object that is the return value of the resolver for this field's parent. #### Defined in -[src/resolvers/Organization/membershipRequests.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Organization/membershipRequests.ts#L8) +[src/resolvers/Organization/membershipRequests.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Organization/membershipRequests.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_Organization_pinnedPosts.md b/talawa-api-docs/modules/resolvers_Organization_pinnedPosts.md index f75d9305b17..4c6a3fd035b 100644 --- a/talawa-api-docs/modules/resolvers_Organization_pinnedPosts.md +++ b/talawa-api-docs/modules/resolvers_Organization_pinnedPosts.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Organization/pinnedPosts.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Organization/pinnedPosts.ts#L6) +[src/resolvers/Organization/pinnedPosts.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Organization/pinnedPosts.ts#L6) diff --git a/talawa-api-docs/modules/resolvers_Post.md b/talawa-api-docs/modules/resolvers_Post.md index 4775ce7bc29..230ed5bbdb7 100644 --- a/talawa-api-docs/modules/resolvers_Post.md +++ b/talawa-api-docs/modules/resolvers_Post.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Post/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Post/index.ts#L5) +[src/resolvers/Post/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Post/index.ts#L5) diff --git a/talawa-api-docs/modules/resolvers_Post_comments.md b/talawa-api-docs/modules/resolvers_Post_comments.md index ef232d45784..0a17e45a219 100644 --- a/talawa-api-docs/modules/resolvers_Post_comments.md +++ b/talawa-api-docs/modules/resolvers_Post_comments.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Post/comments.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Post/comments.ts#L6) +[src/resolvers/Post/comments.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Post/comments.ts#L6) diff --git a/talawa-api-docs/modules/resolvers_Post_creator.md b/talawa-api-docs/modules/resolvers_Post_creator.md index 5a4cdb08068..1bf976afaab 100644 --- a/talawa-api-docs/modules/resolvers_Post_creator.md +++ b/talawa-api-docs/modules/resolvers_Post_creator.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Post/creator.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Post/creator.ts#L4) +[src/resolvers/Post/creator.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Post/creator.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_Query.md b/talawa-api-docs/modules/resolvers_Query.md index f627b144369..b65a6d28fe5 100644 --- a/talawa-api-docs/modules/resolvers_Query.md +++ b/talawa-api-docs/modules/resolvers_Query.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Query/index.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/index.ts#L36) +[src/resolvers/Query/index.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/index.ts#L36) diff --git a/talawa-api-docs/modules/resolvers_Query_actionItem.md b/talawa-api-docs/modules/resolvers_Query_actionItem.md index cc6269311fe..4291d06de11 100644 --- a/talawa-api-docs/modules/resolvers_Query_actionItem.md +++ b/talawa-api-docs/modules/resolvers_Query_actionItem.md @@ -29,4 +29,4 @@ You can learn about GraphQL `Resolvers` #### Defined in -[src/resolvers/Query/actionItem.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/actionItem.ts#L13) +[src/resolvers/Query/actionItem.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/actionItem.ts#L13) diff --git a/talawa-api-docs/modules/resolvers_Query_actionItemCategoriesByOrganization.md b/talawa-api-docs/modules/resolvers_Query_actionItemCategoriesByOrganization.md index 9f2cfd43610..ccd45859c88 100644 --- a/talawa-api-docs/modules/resolvers_Query_actionItemCategoriesByOrganization.md +++ b/talawa-api-docs/modules/resolvers_Query_actionItemCategoriesByOrganization.md @@ -24,4 +24,4 @@ An object that contains `organizationId` which is the _id of the Organization. #### Defined in -[src/resolvers/Query/actionItemCategoriesByOrganization.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/actionItemCategoriesByOrganization.ts#L9) +[src/resolvers/Query/actionItemCategoriesByOrganization.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/actionItemCategoriesByOrganization.ts#L9) diff --git a/talawa-api-docs/modules/resolvers_Query_actionItemCategory.md b/talawa-api-docs/modules/resolvers_Query_actionItemCategory.md index 3cff8e9cb8b..f07db0b7bab 100644 --- a/talawa-api-docs/modules/resolvers_Query_actionItemCategory.md +++ b/talawa-api-docs/modules/resolvers_Query_actionItemCategory.md @@ -29,4 +29,4 @@ You can learn about GraphQL `Resolvers` #### Defined in -[src/resolvers/Query/actionItemCategory.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/actionItemCategory.ts#L13) +[src/resolvers/Query/actionItemCategory.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/actionItemCategory.ts#L13) diff --git a/talawa-api-docs/modules/resolvers_Query_actionItemsByEvent.md b/talawa-api-docs/modules/resolvers_Query_actionItemsByEvent.md index a7c6b138c89..c213294c712 100644 --- a/talawa-api-docs/modules/resolvers_Query_actionItemsByEvent.md +++ b/talawa-api-docs/modules/resolvers_Query_actionItemsByEvent.md @@ -24,4 +24,4 @@ An object that contains `eventId` which is the _id of the Event. #### Defined in -[src/resolvers/Query/actionItemsByEvent.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/actionItemsByEvent.ts#L9) +[src/resolvers/Query/actionItemsByEvent.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/actionItemsByEvent.ts#L9) diff --git a/talawa-api-docs/modules/resolvers_Query_actionItemsByOrganization.md b/talawa-api-docs/modules/resolvers_Query_actionItemsByOrganization.md index 546b86eb259..f3478c65297 100644 --- a/talawa-api-docs/modules/resolvers_Query_actionItemsByOrganization.md +++ b/talawa-api-docs/modules/resolvers_Query_actionItemsByOrganization.md @@ -24,4 +24,4 @@ An object that contains `organizationId` which is the _id of the Organization. #### Defined in -[src/resolvers/Query/actionItemsByOrganization.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/actionItemsByOrganization.ts#L9) +[src/resolvers/Query/actionItemsByOrganization.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/actionItemsByOrganization.ts#L9) diff --git a/talawa-api-docs/modules/resolvers_Query_checkAuth.md b/talawa-api-docs/modules/resolvers_Query_checkAuth.md index d11e544e2db..7cd2dcbb542 100644 --- a/talawa-api-docs/modules/resolvers_Query_checkAuth.md +++ b/talawa-api-docs/modules/resolvers_Query_checkAuth.md @@ -34,4 +34,4 @@ You can learn about GraphQL `Resolvers` [here](https://www.apollographql.com/doc #### Defined in -[src/resolvers/Query/checkAuth.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/checkAuth.ts#L13) +[src/resolvers/Query/checkAuth.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/checkAuth.ts#L13) diff --git a/talawa-api-docs/modules/resolvers_Query_customDataByOrganization.md b/talawa-api-docs/modules/resolvers_Query_customDataByOrganization.md index 3532cae0e7f..4f5fef4de3f 100644 --- a/talawa-api-docs/modules/resolvers_Query_customDataByOrganization.md +++ b/talawa-api-docs/modules/resolvers_Query_customDataByOrganization.md @@ -24,4 +24,4 @@ An object that contains `id` of the organization. #### Defined in -[src/resolvers/Query/customDataByOrganization.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/customDataByOrganization.ts#L13) +[src/resolvers/Query/customDataByOrganization.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/customDataByOrganization.ts#L13) diff --git a/talawa-api-docs/modules/resolvers_Query_customFieldsByOrganization.md b/talawa-api-docs/modules/resolvers_Query_customFieldsByOrganization.md index 7f66ed4d8cc..b1b2cd125f5 100644 --- a/talawa-api-docs/modules/resolvers_Query_customFieldsByOrganization.md +++ b/talawa-api-docs/modules/resolvers_Query_customFieldsByOrganization.md @@ -24,4 +24,4 @@ An object that contains `id` of the organization. #### Defined in -[src/resolvers/Query/customFieldsByOrganization.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/customFieldsByOrganization.ts#L15) +[src/resolvers/Query/customFieldsByOrganization.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/customFieldsByOrganization.ts#L15) diff --git a/talawa-api-docs/modules/resolvers_Query_directChatsByUserID.md b/talawa-api-docs/modules/resolvers_Query_directChatsByUserID.md index e0105796c06..f22d7091abe 100644 --- a/talawa-api-docs/modules/resolvers_Query_directChatsByUserID.md +++ b/talawa-api-docs/modules/resolvers_Query_directChatsByUserID.md @@ -29,4 +29,4 @@ You can learn about GraphQL `Resolvers` #### Defined in -[src/resolvers/Query/directChatsByUserID.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/directChatsByUserID.ts#L13) +[src/resolvers/Query/directChatsByUserID.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/directChatsByUserID.ts#L13) diff --git a/talawa-api-docs/modules/resolvers_Query_directChatsMessagesByChatID.md b/talawa-api-docs/modules/resolvers_Query_directChatsMessagesByChatID.md index 33ec5ea3ae0..cf1681b6c9d 100644 --- a/talawa-api-docs/modules/resolvers_Query_directChatsMessagesByChatID.md +++ b/talawa-api-docs/modules/resolvers_Query_directChatsMessagesByChatID.md @@ -29,4 +29,4 @@ You can learn about GraphQL `Resolvers` #### Defined in -[src/resolvers/Query/directChatsMessagesByChatID.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/directChatsMessagesByChatID.ts#L16) +[src/resolvers/Query/directChatsMessagesByChatID.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/directChatsMessagesByChatID.ts#L16) diff --git a/talawa-api-docs/modules/resolvers_Query_event.md b/talawa-api-docs/modules/resolvers_Query_event.md index e48484019b9..7cca9b19971 100644 --- a/talawa-api-docs/modules/resolvers_Query_event.md +++ b/talawa-api-docs/modules/resolvers_Query_event.md @@ -29,4 +29,4 @@ You can learn about GraphQL `Resolvers` #### Defined in -[src/resolvers/Query/event.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/event.ts#L13) +[src/resolvers/Query/event.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/event.ts#L13) diff --git a/talawa-api-docs/modules/resolvers_Query_eventsByOrganization.md b/talawa-api-docs/modules/resolvers_Query_eventsByOrganization.md index 0e0f7758d93..12517903db7 100644 --- a/talawa-api-docs/modules/resolvers_Query_eventsByOrganization.md +++ b/talawa-api-docs/modules/resolvers_Query_eventsByOrganization.md @@ -24,4 +24,4 @@ An object that contains `orderBy` to sort the object as specified and `id` of th #### Defined in -[src/resolvers/Query/eventsByOrganization.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/eventsByOrganization.ts#L10) +[src/resolvers/Query/eventsByOrganization.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/eventsByOrganization.ts#L10) diff --git a/talawa-api-docs/modules/resolvers_Query_eventsByOrganizationConnection.md b/talawa-api-docs/modules/resolvers_Query_eventsByOrganizationConnection.md index 3979b6a003e..98039b47df4 100644 --- a/talawa-api-docs/modules/resolvers_Query_eventsByOrganizationConnection.md +++ b/talawa-api-docs/modules/resolvers_Query_eventsByOrganizationConnection.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Query/eventsByOrganizationConnection.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/eventsByOrganizationConnection.ts#L7) +[src/resolvers/Query/eventsByOrganizationConnection.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/eventsByOrganizationConnection.ts#L7) diff --git a/talawa-api-docs/modules/resolvers_Query_getAdvertisements.md b/talawa-api-docs/modules/resolvers_Query_getAdvertisements.md index b619585c1b8..e05899b5e29 100644 --- a/talawa-api-docs/modules/resolvers_Query_getAdvertisements.md +++ b/talawa-api-docs/modules/resolvers_Query_getAdvertisements.md @@ -18,4 +18,4 @@ This function returns list of Advertisement from the database. #### Defined in -[src/resolvers/Query/getAdvertisements.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/getAdvertisements.ts#L8) +[src/resolvers/Query/getAdvertisements.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/getAdvertisements.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_Query_getDonationById.md b/talawa-api-docs/modules/resolvers_Query_getDonationById.md index c4123983804..949532e2d2a 100644 --- a/talawa-api-docs/modules/resolvers_Query_getDonationById.md +++ b/talawa-api-docs/modules/resolvers_Query_getDonationById.md @@ -24,4 +24,4 @@ An object that contains `id` of the donation. #### Defined in -[src/resolvers/Query/getDonationById.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/getDonationById.ts#L11) +[src/resolvers/Query/getDonationById.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/getDonationById.ts#L11) diff --git a/talawa-api-docs/modules/resolvers_Query_getDonationByOrgId.md b/talawa-api-docs/modules/resolvers_Query_getDonationByOrgId.md index 16aa6ea00a8..ecf6725ed59 100644 --- a/talawa-api-docs/modules/resolvers_Query_getDonationByOrgId.md +++ b/talawa-api-docs/modules/resolvers_Query_getDonationByOrgId.md @@ -24,4 +24,4 @@ An object that contains `orgId` of the Organization. #### Defined in -[src/resolvers/Query/getDonationByOrgId.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/getDonationByOrgId.ts#L10) +[src/resolvers/Query/getDonationByOrgId.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/getDonationByOrgId.ts#L10) diff --git a/talawa-api-docs/modules/resolvers_Query_getDonationByOrgIdConnection.md b/talawa-api-docs/modules/resolvers_Query_getDonationByOrgIdConnection.md index 9bbaa26bb43..c66837cf0cd 100644 --- a/talawa-api-docs/modules/resolvers_Query_getDonationByOrgIdConnection.md +++ b/talawa-api-docs/modules/resolvers_Query_getDonationByOrgIdConnection.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Query/getDonationByOrgIdConnection.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/getDonationByOrgIdConnection.ts#L6) +[src/resolvers/Query/getDonationByOrgIdConnection.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/getDonationByOrgIdConnection.ts#L6) diff --git a/talawa-api-docs/modules/resolvers_Query_getPlugins.md b/talawa-api-docs/modules/resolvers_Query_getPlugins.md index 5dd8c5d44b2..8fa5ae67208 100644 --- a/talawa-api-docs/modules/resolvers_Query_getPlugins.md +++ b/talawa-api-docs/modules/resolvers_Query_getPlugins.md @@ -18,4 +18,4 @@ This function returns list of plugins from the database. #### Defined in -[src/resolvers/Query/getPlugins.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/getPlugins.ts#L8) +[src/resolvers/Query/getPlugins.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/getPlugins.ts#L8) diff --git a/talawa-api-docs/modules/resolvers_Query_getlanguage.md b/talawa-api-docs/modules/resolvers_Query_getlanguage.md index 856212e58d8..756e6a48b8c 100644 --- a/talawa-api-docs/modules/resolvers_Query_getlanguage.md +++ b/talawa-api-docs/modules/resolvers_Query_getlanguage.md @@ -24,4 +24,4 @@ An object that contains `lang_code`. #### Defined in -[src/resolvers/Query/getlanguage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/getlanguage.ts#L12) +[src/resolvers/Query/getlanguage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/getlanguage.ts#L12) diff --git a/talawa-api-docs/modules/resolvers_Query_hasSubmittedFeedback.md b/talawa-api-docs/modules/resolvers_Query_hasSubmittedFeedback.md index b34fb54d280..f573dcbc302 100644 --- a/talawa-api-docs/modules/resolvers_Query_hasSubmittedFeedback.md +++ b/talawa-api-docs/modules/resolvers_Query_hasSubmittedFeedback.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Query/hasSubmittedFeedback.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/hasSubmittedFeedback.ts#L11) +[src/resolvers/Query/hasSubmittedFeedback.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/hasSubmittedFeedback.ts#L11) diff --git a/talawa-api-docs/modules/resolvers_Query_helperFunctions_getSort.md b/talawa-api-docs/modules/resolvers_Query_helperFunctions_getSort.md index afff98ca8cc..55834a85571 100644 --- a/talawa-api-docs/modules/resolvers_Query_helperFunctions_getSort.md +++ b/talawa-api-docs/modules/resolvers_Query_helperFunctions_getSort.md @@ -26,4 +26,4 @@ #### Defined in -[src/resolvers/Query/helperFunctions/getSort.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/helperFunctions/getSort.ts#L9) +[src/resolvers/Query/helperFunctions/getSort.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/helperFunctions/getSort.ts#L9) diff --git a/talawa-api-docs/modules/resolvers_Query_helperFunctions_getWhere.md b/talawa-api-docs/modules/resolvers_Query_helperFunctions_getWhere.md index 4982f50bd64..771e7982302 100644 --- a/talawa-api-docs/modules/resolvers_Query_helperFunctions_getWhere.md +++ b/talawa-api-docs/modules/resolvers_Query_helperFunctions_getWhere.md @@ -48,4 +48,4 @@ const inputArgs = getWhere\(args.where); #### Defined in -[src/resolvers/Query/helperFunctions/getWhere.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/helperFunctions/getWhere.ts#L24) +[src/resolvers/Query/helperFunctions/getWhere.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/helperFunctions/getWhere.ts#L24) diff --git a/talawa-api-docs/modules/resolvers_Query_me.md b/talawa-api-docs/modules/resolvers_Query_me.md index 870f22b57b0..e3979e28546 100644 --- a/talawa-api-docs/modules/resolvers_Query_me.md +++ b/talawa-api-docs/modules/resolvers_Query_me.md @@ -26,4 +26,4 @@ An object that contains `userId`. #### Defined in -[src/resolvers/Query/me.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/me.ts#L13) +[src/resolvers/Query/me.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/me.ts#L13) diff --git a/talawa-api-docs/modules/resolvers_Query_myLanguage.md b/talawa-api-docs/modules/resolvers_Query_myLanguage.md index fcd33189641..2f5a5dd88ce 100644 --- a/talawa-api-docs/modules/resolvers_Query_myLanguage.md +++ b/talawa-api-docs/modules/resolvers_Query_myLanguage.md @@ -26,4 +26,4 @@ An object that contains `userId`. #### Defined in -[src/resolvers/Query/myLanguage.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/myLanguage.ts#L13) +[src/resolvers/Query/myLanguage.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/myLanguage.ts#L13) diff --git a/talawa-api-docs/modules/resolvers_Query_organizationIsSample.md b/talawa-api-docs/modules/resolvers_Query_organizationIsSample.md index 7cb8920734d..7141a73e417 100644 --- a/talawa-api-docs/modules/resolvers_Query_organizationIsSample.md +++ b/talawa-api-docs/modules/resolvers_Query_organizationIsSample.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Query/organizationIsSample.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/organizationIsSample.ts#L6) +[src/resolvers/Query/organizationIsSample.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/organizationIsSample.ts#L6) diff --git a/talawa-api-docs/modules/resolvers_Query_organizations.md b/talawa-api-docs/modules/resolvers_Query_organizations.md index be3365823ac..8a4672c1c2d 100644 --- a/talawa-api-docs/modules/resolvers_Query_organizations.md +++ b/talawa-api-docs/modules/resolvers_Query_organizations.md @@ -29,4 +29,4 @@ An object containing `orderBy` and `id` of the Organization. #### Defined in -[src/resolvers/Query/organizations.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/organizations.ts#L16) +[src/resolvers/Query/organizations.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/organizations.ts#L16) diff --git a/talawa-api-docs/modules/resolvers_Query_organizationsConnection.md b/talawa-api-docs/modules/resolvers_Query_organizationsConnection.md index 0270a0155ff..b1402dfa2c6 100644 --- a/talawa-api-docs/modules/resolvers_Query_organizationsConnection.md +++ b/talawa-api-docs/modules/resolvers_Query_organizationsConnection.md @@ -32,4 +32,4 @@ learn more about Connection [here](https://relay.dev/graphql/connections.htm). #### Defined in -[src/resolvers/Query/organizationsConnection.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/organizationsConnection.ts#L18) +[src/resolvers/Query/organizationsConnection.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/organizationsConnection.ts#L18) diff --git a/talawa-api-docs/modules/resolvers_Query_organizationsMemberConnection.md b/talawa-api-docs/modules/resolvers_Query_organizationsMemberConnection.md index a6950862b45..a1f90596ce2 100644 --- a/talawa-api-docs/modules/resolvers_Query_organizationsMemberConnection.md +++ b/talawa-api-docs/modules/resolvers_Query_organizationsMemberConnection.md @@ -32,4 +32,4 @@ learn more about Connection [here](https://relay.dev/graphql/connections.htm). #### Defined in -[src/resolvers/Query/organizationsMemberConnection.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/organizationsMemberConnection.ts#L19) +[src/resolvers/Query/organizationsMemberConnection.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/organizationsMemberConnection.ts#L19) diff --git a/talawa-api-docs/modules/resolvers_Query_post.md b/talawa-api-docs/modules/resolvers_Query_post.md index 04ab54e2b8d..2635dd790ca 100644 --- a/talawa-api-docs/modules/resolvers_Query_post.md +++ b/talawa-api-docs/modules/resolvers_Query_post.md @@ -24,4 +24,4 @@ An object that contains `id` of the Post. #### Defined in -[src/resolvers/Query/post.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/post.ts#L11) +[src/resolvers/Query/post.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/post.ts#L11) diff --git a/talawa-api-docs/modules/resolvers_Query_postsByOrganization.md b/talawa-api-docs/modules/resolvers_Query_postsByOrganization.md index 25e17278f3e..239637bb349 100644 --- a/talawa-api-docs/modules/resolvers_Query_postsByOrganization.md +++ b/talawa-api-docs/modules/resolvers_Query_postsByOrganization.md @@ -28,4 +28,4 @@ The query function uses `getSort()` function to sort the data in specified order #### Defined in -[src/resolvers/Query/postsByOrganization.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/postsByOrganization.ts#L13) +[src/resolvers/Query/postsByOrganization.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/postsByOrganization.ts#L13) diff --git a/talawa-api-docs/modules/resolvers_Query_postsByOrganizationConnection.md b/talawa-api-docs/modules/resolvers_Query_postsByOrganizationConnection.md index b7aa8aa6273..1ae41b60ebd 100644 --- a/talawa-api-docs/modules/resolvers_Query_postsByOrganizationConnection.md +++ b/talawa-api-docs/modules/resolvers_Query_postsByOrganizationConnection.md @@ -32,4 +32,4 @@ learn more about Connection [here](https://relay.dev/graphql/connections.htm). #### Defined in -[src/resolvers/Query/postsByOrganizationConnection.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/postsByOrganizationConnection.ts#L19) +[src/resolvers/Query/postsByOrganizationConnection.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/postsByOrganizationConnection.ts#L19) diff --git a/talawa-api-docs/modules/resolvers_Query_registeredEventsByUser.md b/talawa-api-docs/modules/resolvers_Query_registeredEventsByUser.md index e86d27f8ea7..096244fdf5d 100644 --- a/talawa-api-docs/modules/resolvers_Query_registeredEventsByUser.md +++ b/talawa-api-docs/modules/resolvers_Query_registeredEventsByUser.md @@ -28,4 +28,4 @@ The query function uses `getSort()` function to sort the data in specified. #### Defined in -[src/resolvers/Query/registeredEventsByUser.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/registeredEventsByUser.ts#L12) +[src/resolvers/Query/registeredEventsByUser.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/registeredEventsByUser.ts#L12) diff --git a/talawa-api-docs/modules/resolvers_Query_user.md b/talawa-api-docs/modules/resolvers_Query_user.md index b54703a8972..4e242fb81e4 100644 --- a/talawa-api-docs/modules/resolvers_Query_user.md +++ b/talawa-api-docs/modules/resolvers_Query_user.md @@ -26,4 +26,4 @@ An object that contains `id` for the user. #### Defined in -[src/resolvers/Query/user.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/user.ts#L12) +[src/resolvers/Query/user.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/user.ts#L12) diff --git a/talawa-api-docs/modules/resolvers_Query_userLanguage.md b/talawa-api-docs/modules/resolvers_Query_userLanguage.md index f3f64523302..53c28e78169 100644 --- a/talawa-api-docs/modules/resolvers_Query_userLanguage.md +++ b/talawa-api-docs/modules/resolvers_Query_userLanguage.md @@ -24,4 +24,4 @@ An object that contains `userId`. #### Defined in -[src/resolvers/Query/userLanguage.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/userLanguage.ts#L11) +[src/resolvers/Query/userLanguage.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/userLanguage.ts#L11) diff --git a/talawa-api-docs/modules/resolvers_Query_users.md b/talawa-api-docs/modules/resolvers_Query_users.md index 7e9502b20d9..153560d211a 100644 --- a/talawa-api-docs/modules/resolvers_Query_users.md +++ b/talawa-api-docs/modules/resolvers_Query_users.md @@ -30,4 +30,4 @@ The query function uses `getSort()` function to sort the data in specified. #### Defined in -[src/resolvers/Query/users.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/users.ts#L17) +[src/resolvers/Query/users.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/users.ts#L17) diff --git a/talawa-api-docs/modules/resolvers_Query_usersConnection.md b/talawa-api-docs/modules/resolvers_Query_usersConnection.md index 889732da259..7f8a2fab3bc 100644 --- a/talawa-api-docs/modules/resolvers_Query_usersConnection.md +++ b/talawa-api-docs/modules/resolvers_Query_usersConnection.md @@ -29,4 +29,4 @@ learn more about Connection [here](https://relay.dev/graphql/connections.htm). #### Defined in -[src/resolvers/Query/usersConnection.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Query/usersConnection.ts#L15) +[src/resolvers/Query/usersConnection.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Query/usersConnection.ts#L15) diff --git a/talawa-api-docs/modules/resolvers_Subscription.md b/talawa-api-docs/modules/resolvers_Subscription.md index 03a9b323a09..439dc20b296 100644 --- a/talawa-api-docs/modules/resolvers_Subscription.md +++ b/talawa-api-docs/modules/resolvers_Subscription.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/Subscription/index.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Subscription/index.ts#L6) +[src/resolvers/Subscription/index.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Subscription/index.ts#L6) diff --git a/talawa-api-docs/modules/resolvers_Subscription_directMessageChat.md b/talawa-api-docs/modules/resolvers_Subscription_directMessageChat.md index 6d3536ff516..e3cdd0774b8 100644 --- a/talawa-api-docs/modules/resolvers_Subscription_directMessageChat.md +++ b/talawa-api-docs/modules/resolvers_Subscription_directMessageChat.md @@ -25,4 +25,4 @@ You can learn about `subscription` [here](https://www.apollographql.com/docs/apo #### Defined in -[src/resolvers/Subscription/directMessageChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Subscription/directMessageChat.ts#L12) +[src/resolvers/Subscription/directMessageChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Subscription/directMessageChat.ts#L12) diff --git a/talawa-api-docs/modules/resolvers_Subscription_messageSentToDirectChat.md b/talawa-api-docs/modules/resolvers_Subscription_messageSentToDirectChat.md index 1de4c3fdb1a..54e5640d2e7 100644 --- a/talawa-api-docs/modules/resolvers_Subscription_messageSentToDirectChat.md +++ b/talawa-api-docs/modules/resolvers_Subscription_messageSentToDirectChat.md @@ -29,7 +29,7 @@ You can learn about `subscription` [here](https://www.apollographql.com/docs/apo #### Defined in -[src/resolvers/Subscription/messageSentToDirectChat.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Subscription/messageSentToDirectChat.ts#L21) +[src/resolvers/Subscription/messageSentToDirectChat.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Subscription/messageSentToDirectChat.ts#L21) ## Functions @@ -50,4 +50,4 @@ You can learn about `subscription` [here](https://www.apollographql.com/docs/apo #### Defined in -[src/resolvers/Subscription/messageSentToDirectChat.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Subscription/messageSentToDirectChat.ts#L6) +[src/resolvers/Subscription/messageSentToDirectChat.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Subscription/messageSentToDirectChat.ts#L6) diff --git a/talawa-api-docs/modules/resolvers_Subscription_messageSentToGroupChat.md b/talawa-api-docs/modules/resolvers_Subscription_messageSentToGroupChat.md index 94c734b085f..ef65da4eacd 100644 --- a/talawa-api-docs/modules/resolvers_Subscription_messageSentToGroupChat.md +++ b/talawa-api-docs/modules/resolvers_Subscription_messageSentToGroupChat.md @@ -29,7 +29,7 @@ You can learn about `subscription` [here](https://www.apollographql.com/docs/apo #### Defined in -[src/resolvers/Subscription/messageSentToGroupChat.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Subscription/messageSentToGroupChat.ts#L35) +[src/resolvers/Subscription/messageSentToGroupChat.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Subscription/messageSentToGroupChat.ts#L35) ## Functions @@ -50,4 +50,4 @@ You can learn about `subscription` [here](https://www.apollographql.com/docs/apo #### Defined in -[src/resolvers/Subscription/messageSentToGroupChat.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Subscription/messageSentToGroupChat.ts#L7) +[src/resolvers/Subscription/messageSentToGroupChat.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Subscription/messageSentToGroupChat.ts#L7) diff --git a/talawa-api-docs/modules/resolvers_Subscription_onPluginUpdate.md b/talawa-api-docs/modules/resolvers_Subscription_onPluginUpdate.md index baf1969cd57..2e136ac8389 100644 --- a/talawa-api-docs/modules/resolvers_Subscription_onPluginUpdate.md +++ b/talawa-api-docs/modules/resolvers_Subscription_onPluginUpdate.md @@ -20,7 +20,7 @@ #### Defined in -[src/resolvers/Subscription/onPluginUpdate.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Subscription/onPluginUpdate.ts#L28) +[src/resolvers/Subscription/onPluginUpdate.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Subscription/onPluginUpdate.ts#L28) ## Functions @@ -50,4 +50,4 @@ You can learn about `subscription` [here](https://www.apollographql.com/docs/apo #### Defined in -[src/resolvers/Subscription/onPluginUpdate.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/Subscription/onPluginUpdate.ts#L19) +[src/resolvers/Subscription/onPluginUpdate.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/Subscription/onPluginUpdate.ts#L19) diff --git a/talawa-api-docs/modules/resolvers_User.md b/talawa-api-docs/modules/resolvers_User.md index 0946895fd8b..4080931c150 100644 --- a/talawa-api-docs/modules/resolvers_User.md +++ b/talawa-api-docs/modules/resolvers_User.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/User/index.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/User/index.ts#L4) +[src/resolvers/User/index.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/User/index.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_UserTag.md b/talawa-api-docs/modules/resolvers_UserTag.md index 7b7c165e31d..2690c899c2d 100644 --- a/talawa-api-docs/modules/resolvers_UserTag.md +++ b/talawa-api-docs/modules/resolvers_UserTag.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/UserTag/index.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/UserTag/index.ts#L7) +[src/resolvers/UserTag/index.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/UserTag/index.ts#L7) diff --git a/talawa-api-docs/modules/resolvers_UserTag_childTags.md b/talawa-api-docs/modules/resolvers_UserTag_childTags.md index f56f35e7b98..59ec87a7e96 100644 --- a/talawa-api-docs/modules/resolvers_UserTag_childTags.md +++ b/talawa-api-docs/modules/resolvers_UserTag_childTags.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/UserTag/childTags.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/UserTag/childTags.ts#L12) +[src/resolvers/UserTag/childTags.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/UserTag/childTags.ts#L12) diff --git a/talawa-api-docs/modules/resolvers_UserTag_organization.md b/talawa-api-docs/modules/resolvers_UserTag_organization.md index a6f7e271c53..5f80e7cbbb5 100644 --- a/talawa-api-docs/modules/resolvers_UserTag_organization.md +++ b/talawa-api-docs/modules/resolvers_UserTag_organization.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/UserTag/organization.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/UserTag/organization.ts#L4) +[src/resolvers/UserTag/organization.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/UserTag/organization.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_UserTag_parentTag.md b/talawa-api-docs/modules/resolvers_UserTag_parentTag.md index 440b745a4c6..f9f6d80fc8d 100644 --- a/talawa-api-docs/modules/resolvers_UserTag_parentTag.md +++ b/talawa-api-docs/modules/resolvers_UserTag_parentTag.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/UserTag/parentTag.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/UserTag/parentTag.ts#L4) +[src/resolvers/UserTag/parentTag.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/UserTag/parentTag.ts#L4) diff --git a/talawa-api-docs/modules/resolvers_UserTag_usersAssignedTo.md b/talawa-api-docs/modules/resolvers_UserTag_usersAssignedTo.md index 24f1b112203..c8b5a12f097 100644 --- a/talawa-api-docs/modules/resolvers_UserTag_usersAssignedTo.md +++ b/talawa-api-docs/modules/resolvers_UserTag_usersAssignedTo.md @@ -16,4 +16,4 @@ #### Defined in -[src/resolvers/UserTag/usersAssignedTo.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/UserTag/usersAssignedTo.ts#L12) +[src/resolvers/UserTag/usersAssignedTo.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/UserTag/usersAssignedTo.ts#L12) diff --git a/talawa-api-docs/modules/resolvers_middleware_currentUserExists.md b/talawa-api-docs/modules/resolvers_middleware_currentUserExists.md index 233c09e035a..23bd4933720 100644 --- a/talawa-api-docs/modules/resolvers_middleware_currentUserExists.md +++ b/talawa-api-docs/modules/resolvers_middleware_currentUserExists.md @@ -48,4 +48,4 @@ #### Defined in -[src/resolvers/middleware/currentUserExists.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/resolvers/middleware/currentUserExists.ts#L8) +[src/resolvers/middleware/currentUserExists.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/resolvers/middleware/currentUserExists.ts#L8) diff --git a/talawa-api-docs/modules/services_CommentCache_cacheComments.md b/talawa-api-docs/modules/services_CommentCache_cacheComments.md index 76261bb5464..df1e3c33908 100644 --- a/talawa-api-docs/modules/services_CommentCache_cacheComments.md +++ b/talawa-api-docs/modules/services_CommentCache_cacheComments.md @@ -26,4 +26,4 @@ #### Defined in -[src/services/CommentCache/cacheComments.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/CommentCache/cacheComments.ts#L6) +[src/services/CommentCache/cacheComments.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/CommentCache/cacheComments.ts#L6) diff --git a/talawa-api-docs/modules/services_CommentCache_deleteCommentFromCache.md b/talawa-api-docs/modules/services_CommentCache_deleteCommentFromCache.md index 564364a3191..e5f394cbe60 100644 --- a/talawa-api-docs/modules/services_CommentCache_deleteCommentFromCache.md +++ b/talawa-api-docs/modules/services_CommentCache_deleteCommentFromCache.md @@ -26,4 +26,4 @@ #### Defined in -[src/services/CommentCache/deleteCommentFromCache.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/CommentCache/deleteCommentFromCache.ts#L4) +[src/services/CommentCache/deleteCommentFromCache.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/CommentCache/deleteCommentFromCache.ts#L4) diff --git a/talawa-api-docs/modules/services_CommentCache_findCommentsByPostIdInCache.md b/talawa-api-docs/modules/services_CommentCache_findCommentsByPostIdInCache.md index 496de206c11..4a5ce5cdf99 100644 --- a/talawa-api-docs/modules/services_CommentCache_findCommentsByPostIdInCache.md +++ b/talawa-api-docs/modules/services_CommentCache_findCommentsByPostIdInCache.md @@ -26,4 +26,4 @@ #### Defined in -[src/services/CommentCache/findCommentsByPostIdInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/CommentCache/findCommentsByPostIdInCache.ts#L6) +[src/services/CommentCache/findCommentsByPostIdInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/CommentCache/findCommentsByPostIdInCache.ts#L6) diff --git a/talawa-api-docs/modules/services_CommentCache_findCommentsInCache.md b/talawa-api-docs/modules/services_CommentCache_findCommentsInCache.md index 2b883cee270..46e241981cb 100644 --- a/talawa-api-docs/modules/services_CommentCache_findCommentsInCache.md +++ b/talawa-api-docs/modules/services_CommentCache_findCommentsInCache.md @@ -26,4 +26,4 @@ #### Defined in -[src/services/CommentCache/findCommentsInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/CommentCache/findCommentsInCache.ts#L6) +[src/services/CommentCache/findCommentsInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/CommentCache/findCommentsInCache.ts#L6) diff --git a/talawa-api-docs/modules/services_EventCache_cacheEvents.md b/talawa-api-docs/modules/services_EventCache_cacheEvents.md index 8d4b192ed97..5ac678e8924 100644 --- a/talawa-api-docs/modules/services_EventCache_cacheEvents.md +++ b/talawa-api-docs/modules/services_EventCache_cacheEvents.md @@ -26,4 +26,4 @@ #### Defined in -[src/services/EventCache/cacheEvents.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/EventCache/cacheEvents.ts#L6) +[src/services/EventCache/cacheEvents.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/EventCache/cacheEvents.ts#L6) diff --git a/talawa-api-docs/modules/services_EventCache_deleteEventFromCache.md b/talawa-api-docs/modules/services_EventCache_deleteEventFromCache.md index 9de129acc01..ec08c2b0398 100644 --- a/talawa-api-docs/modules/services_EventCache_deleteEventFromCache.md +++ b/talawa-api-docs/modules/services_EventCache_deleteEventFromCache.md @@ -26,4 +26,4 @@ #### Defined in -[src/services/EventCache/deleteEventFromCache.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/EventCache/deleteEventFromCache.ts#L4) +[src/services/EventCache/deleteEventFromCache.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/EventCache/deleteEventFromCache.ts#L4) diff --git a/talawa-api-docs/modules/services_EventCache_findEventInCache.md b/talawa-api-docs/modules/services_EventCache_findEventInCache.md index d147396aa29..b0b92604206 100644 --- a/talawa-api-docs/modules/services_EventCache_findEventInCache.md +++ b/talawa-api-docs/modules/services_EventCache_findEventInCache.md @@ -26,4 +26,4 @@ #### Defined in -[src/services/EventCache/findEventInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/EventCache/findEventInCache.ts#L6) +[src/services/EventCache/findEventInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/EventCache/findEventInCache.ts#L6) diff --git a/talawa-api-docs/modules/services_OrganizationCache_cacheOrganizations.md b/talawa-api-docs/modules/services_OrganizationCache_cacheOrganizations.md index 2061ae27ec9..ad7db88ee04 100644 --- a/talawa-api-docs/modules/services_OrganizationCache_cacheOrganizations.md +++ b/talawa-api-docs/modules/services_OrganizationCache_cacheOrganizations.md @@ -26,4 +26,4 @@ #### Defined in -[src/services/OrganizationCache/cacheOrganizations.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/OrganizationCache/cacheOrganizations.ts#L6) +[src/services/OrganizationCache/cacheOrganizations.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/OrganizationCache/cacheOrganizations.ts#L6) diff --git a/talawa-api-docs/modules/services_OrganizationCache_deleteOrganizationFromCache.md b/talawa-api-docs/modules/services_OrganizationCache_deleteOrganizationFromCache.md index 41f30521517..b401ef4d601 100644 --- a/talawa-api-docs/modules/services_OrganizationCache_deleteOrganizationFromCache.md +++ b/talawa-api-docs/modules/services_OrganizationCache_deleteOrganizationFromCache.md @@ -26,4 +26,4 @@ #### Defined in -[src/services/OrganizationCache/deleteOrganizationFromCache.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/OrganizationCache/deleteOrganizationFromCache.ts#L4) +[src/services/OrganizationCache/deleteOrganizationFromCache.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/OrganizationCache/deleteOrganizationFromCache.ts#L4) diff --git a/talawa-api-docs/modules/services_OrganizationCache_findOrganizationsInCache.md b/talawa-api-docs/modules/services_OrganizationCache_findOrganizationsInCache.md index ad236debb90..539ec87b5ca 100644 --- a/talawa-api-docs/modules/services_OrganizationCache_findOrganizationsInCache.md +++ b/talawa-api-docs/modules/services_OrganizationCache_findOrganizationsInCache.md @@ -26,4 +26,4 @@ #### Defined in -[src/services/OrganizationCache/findOrganizationsInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/OrganizationCache/findOrganizationsInCache.ts#L6) +[src/services/OrganizationCache/findOrganizationsInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/OrganizationCache/findOrganizationsInCache.ts#L6) diff --git a/talawa-api-docs/modules/services_PostCache_cachePosts.md b/talawa-api-docs/modules/services_PostCache_cachePosts.md index f2e82089fcd..dade07b4160 100644 --- a/talawa-api-docs/modules/services_PostCache_cachePosts.md +++ b/talawa-api-docs/modules/services_PostCache_cachePosts.md @@ -26,4 +26,4 @@ #### Defined in -[src/services/PostCache/cachePosts.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/PostCache/cachePosts.ts#L6) +[src/services/PostCache/cachePosts.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/PostCache/cachePosts.ts#L6) diff --git a/talawa-api-docs/modules/services_PostCache_deletePostFromCache.md b/talawa-api-docs/modules/services_PostCache_deletePostFromCache.md index cfa75eb3438..82a3c0c79cb 100644 --- a/talawa-api-docs/modules/services_PostCache_deletePostFromCache.md +++ b/talawa-api-docs/modules/services_PostCache_deletePostFromCache.md @@ -26,4 +26,4 @@ #### Defined in -[src/services/PostCache/deletePostFromCache.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/PostCache/deletePostFromCache.ts#L3) +[src/services/PostCache/deletePostFromCache.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/PostCache/deletePostFromCache.ts#L3) diff --git a/talawa-api-docs/modules/services_PostCache_findPostsInCache.md b/talawa-api-docs/modules/services_PostCache_findPostsInCache.md index 6ed5a5d70ec..c3b6e5fff74 100644 --- a/talawa-api-docs/modules/services_PostCache_findPostsInCache.md +++ b/talawa-api-docs/modules/services_PostCache_findPostsInCache.md @@ -26,4 +26,4 @@ #### Defined in -[src/services/PostCache/findPostsInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/PostCache/findPostsInCache.ts#L6) +[src/services/PostCache/findPostsInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/PostCache/findPostsInCache.ts#L6) diff --git a/talawa-api-docs/modules/services_redisCache.md b/talawa-api-docs/modules/services_redisCache.md index 19c0e9dd9f6..92045166485 100644 --- a/talawa-api-docs/modules/services_redisCache.md +++ b/talawa-api-docs/modules/services_redisCache.md @@ -16,4 +16,4 @@ #### Defined in -[src/services/redisCache.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/services/redisCache.ts#L4) +[src/services/redisCache.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/services/redisCache.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs.md b/talawa-api-docs/modules/typeDefs.md index 85b7b2d39df..326fe27d591 100644 --- a/talawa-api-docs/modules/typeDefs.md +++ b/talawa-api-docs/modules/typeDefs.md @@ -16,4 +16,4 @@ #### Defined in -[src/typeDefs/index.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/index.ts#L19) +[src/typeDefs/index.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/index.ts#L19) diff --git a/talawa-api-docs/modules/typeDefs_directives.md b/talawa-api-docs/modules/typeDefs_directives.md index ac0c4b95681..087189060b5 100644 --- a/talawa-api-docs/modules/typeDefs_directives.md +++ b/talawa-api-docs/modules/typeDefs_directives.md @@ -16,4 +16,4 @@ #### Defined in -[src/typeDefs/directives.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/directives.ts#L4) +[src/typeDefs/directives.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/directives.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_enums.md b/talawa-api-docs/modules/typeDefs_enums.md index e2c36f6f7d8..5f5d58aa467 100644 --- a/talawa-api-docs/modules/typeDefs_enums.md +++ b/talawa-api-docs/modules/typeDefs_enums.md @@ -16,4 +16,4 @@ #### Defined in -[src/typeDefs/enums.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/enums.ts#L4) +[src/typeDefs/enums.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/enums.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_errors.md b/talawa-api-docs/modules/typeDefs_errors.md index 36dceba966d..5f3f27a8794 100644 --- a/talawa-api-docs/modules/typeDefs_errors.md +++ b/talawa-api-docs/modules/typeDefs_errors.md @@ -16,4 +16,4 @@ #### Defined in -[src/typeDefs/errors/index.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/errors/index.ts#L4) +[src/typeDefs/errors/index.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/errors/index.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_errors_common.md b/talawa-api-docs/modules/typeDefs_errors_common.md index 6f4e23b701a..8f4e56f0a71 100644 --- a/talawa-api-docs/modules/typeDefs_errors_common.md +++ b/talawa-api-docs/modules/typeDefs_errors_common.md @@ -16,4 +16,4 @@ #### Defined in -[src/typeDefs/errors/common.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/errors/common.ts#L3) +[src/typeDefs/errors/common.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/errors/common.ts#L3) diff --git a/talawa-api-docs/modules/typeDefs_errors_connectionError.md b/talawa-api-docs/modules/typeDefs_errors_connectionError.md index 4737d892fc2..d2a7090ae3e 100644 --- a/talawa-api-docs/modules/typeDefs_errors_connectionError.md +++ b/talawa-api-docs/modules/typeDefs_errors_connectionError.md @@ -16,4 +16,4 @@ #### Defined in -[src/typeDefs/errors/connectionError.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/errors/connectionError.ts#L3) +[src/typeDefs/errors/connectionError.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/errors/connectionError.ts#L3) diff --git a/talawa-api-docs/modules/typeDefs_inputs.md b/talawa-api-docs/modules/typeDefs_inputs.md index 7ad65f1f96e..f4d199fa0c1 100644 --- a/talawa-api-docs/modules/typeDefs_inputs.md +++ b/talawa-api-docs/modules/typeDefs_inputs.md @@ -16,4 +16,4 @@ #### Defined in -[src/typeDefs/inputs.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/inputs.ts#L4) +[src/typeDefs/inputs.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/inputs.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_interfaces.md b/talawa-api-docs/modules/typeDefs_interfaces.md index 68eabd6ee4a..26ead76d644 100644 --- a/talawa-api-docs/modules/typeDefs_interfaces.md +++ b/talawa-api-docs/modules/typeDefs_interfaces.md @@ -16,4 +16,4 @@ #### Defined in -[src/typeDefs/interfaces.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/interfaces.ts#L4) +[src/typeDefs/interfaces.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/interfaces.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_mutations.md b/talawa-api-docs/modules/typeDefs_mutations.md index ec94148bca3..daee7390d8f 100644 --- a/talawa-api-docs/modules/typeDefs_mutations.md +++ b/talawa-api-docs/modules/typeDefs_mutations.md @@ -18,4 +18,4 @@ This graphQL typeDef defines the logic for different mutations defined in the ta #### Defined in -[src/typeDefs/mutations.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/mutations.ts#L6) +[src/typeDefs/mutations.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/mutations.ts#L6) diff --git a/talawa-api-docs/modules/typeDefs_queries.md b/talawa-api-docs/modules/typeDefs_queries.md index d1623686ffc..9d1c9d6f782 100644 --- a/talawa-api-docs/modules/typeDefs_queries.md +++ b/talawa-api-docs/modules/typeDefs_queries.md @@ -18,4 +18,4 @@ This graphQL typeDef defines the logic for different queries defined in the tala #### Defined in -[src/typeDefs/queries.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/queries.ts#L6) +[src/typeDefs/queries.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/queries.ts#L6) diff --git a/talawa-api-docs/modules/typeDefs_scalars.md b/talawa-api-docs/modules/typeDefs_scalars.md index b27b6373abe..b2931641bbd 100644 --- a/talawa-api-docs/modules/typeDefs_scalars.md +++ b/talawa-api-docs/modules/typeDefs_scalars.md @@ -16,4 +16,4 @@ #### Defined in -[src/typeDefs/scalars.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/scalars.ts#L4) +[src/typeDefs/scalars.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/scalars.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_subscriptions.md b/talawa-api-docs/modules/typeDefs_subscriptions.md index c22454ece6f..b2f91f23171 100644 --- a/talawa-api-docs/modules/typeDefs_subscriptions.md +++ b/talawa-api-docs/modules/typeDefs_subscriptions.md @@ -16,4 +16,4 @@ #### Defined in -[src/typeDefs/subscriptions.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/subscriptions.ts#L4) +[src/typeDefs/subscriptions.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/subscriptions.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_types.md b/talawa-api-docs/modules/typeDefs_types.md index 8f26113632a..8eb5526f3d3 100644 --- a/talawa-api-docs/modules/typeDefs_types.md +++ b/talawa-api-docs/modules/typeDefs_types.md @@ -16,4 +16,4 @@ #### Defined in -[src/typeDefs/types.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/types.ts#L4) +[src/typeDefs/types.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/types.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_unions.md b/talawa-api-docs/modules/typeDefs_unions.md index f1b74f98e51..ff78c9d9cbe 100644 --- a/talawa-api-docs/modules/typeDefs_unions.md +++ b/talawa-api-docs/modules/typeDefs_unions.md @@ -16,4 +16,4 @@ #### Defined in -[src/typeDefs/unions.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/typeDefs/unions.ts#L4) +[src/typeDefs/unions.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/typeDefs/unions.ts#L4) diff --git a/talawa-api-docs/modules/types_generatedGraphQLTypes.md b/talawa-api-docs/modules/types_generatedGraphQLTypes.md index b6965cb6bdf..44998d7b24c 100644 --- a/talawa-api-docs/modules/types_generatedGraphQLTypes.md +++ b/talawa-api-docs/modules/types_generatedGraphQLTypes.md @@ -387,7 +387,7 @@ #### Defined in -[src/types/generatedGraphQLTypes.ts:56](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L56) +[src/types/generatedGraphQLTypes.ts:56](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L56) ___ @@ -410,7 +410,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:74](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L74) +[src/types/generatedGraphQLTypes.ts:74](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L74) ___ @@ -440,7 +440,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2346](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2346) +[src/types/generatedGraphQLTypes.ts:2346](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2346) ___ @@ -477,7 +477,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2328](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2328) +[src/types/generatedGraphQLTypes.ts:2328](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2328) ___ @@ -501,7 +501,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:85](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L85) +[src/types/generatedGraphQLTypes.ts:85](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L85) ___ @@ -524,7 +524,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:97](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L97) +[src/types/generatedGraphQLTypes.ts:97](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L97) ___ @@ -555,7 +555,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2357](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2357) +[src/types/generatedGraphQLTypes.ts:2357](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2357) ___ @@ -581,7 +581,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:108](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L108) +[src/types/generatedGraphQLTypes.ts:108](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L108) ___ @@ -614,7 +614,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2369](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2369) +[src/types/generatedGraphQLTypes.ts:2369](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2369) ___ @@ -624,7 +624,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:122](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L122) +[src/types/generatedGraphQLTypes.ts:122](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L122) ___ @@ -641,7 +641,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:127](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L127) +[src/types/generatedGraphQLTypes.ts:127](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L127) ___ @@ -665,7 +665,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2383](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2383) +[src/types/generatedGraphQLTypes.ts:2383](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2383) ___ @@ -682,7 +682,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:132](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L132) +[src/types/generatedGraphQLTypes.ts:132](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L132) ___ @@ -706,7 +706,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2388](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2388) +[src/types/generatedGraphQLTypes.ts:2388](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2388) ___ @@ -725,7 +725,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:137](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L137) +[src/types/generatedGraphQLTypes.ts:137](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L137) ___ @@ -751,7 +751,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2397](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2397) +[src/types/generatedGraphQLTypes.ts:2397](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2397) ___ @@ -761,7 +761,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2318](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2318) +[src/types/generatedGraphQLTypes.ts:2318](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2318) ___ @@ -780,7 +780,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2320](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2320) +[src/types/generatedGraphQLTypes.ts:2320](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2320) ___ @@ -805,7 +805,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:144](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L144) +[src/types/generatedGraphQLTypes.ts:144](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L144) ___ @@ -824,7 +824,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:157](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L157) +[src/types/generatedGraphQLTypes.ts:157](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L157) ___ @@ -856,7 +856,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2404](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2404) +[src/types/generatedGraphQLTypes.ts:2404](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2404) ___ @@ -875,7 +875,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:164](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L164) +[src/types/generatedGraphQLTypes.ts:164](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L164) ___ @@ -901,7 +901,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2417](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2417) +[src/types/generatedGraphQLTypes.ts:2417](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2417) ___ @@ -925,7 +925,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:171](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L171) +[src/types/generatedGraphQLTypes.ts:171](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L171) ___ @@ -941,7 +941,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:183](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L183) +[src/types/generatedGraphQLTypes.ts:183](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L183) ___ @@ -972,7 +972,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2424](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2424) +[src/types/generatedGraphQLTypes.ts:2424](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2424) ___ @@ -982,7 +982,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:187](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L187) +[src/types/generatedGraphQLTypes.ts:187](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L187) ___ @@ -1005,7 +1005,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2436](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2436) +[src/types/generatedGraphQLTypes.ts:2436](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2436) ___ @@ -1025,7 +1025,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:189](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L189) +[src/types/generatedGraphQLTypes.ts:189](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L189) ___ @@ -1052,7 +1052,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2440](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2440) +[src/types/generatedGraphQLTypes.ts:2440](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2440) ___ @@ -1071,7 +1071,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:197](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L197) +[src/types/generatedGraphQLTypes.ts:197](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L197) ___ @@ -1088,7 +1088,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1969](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1969) +[src/types/generatedGraphQLTypes.ts:1969](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1969) ___ @@ -1106,7 +1106,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1974](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1974) +[src/types/generatedGraphQLTypes.ts:1974](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1974) ___ @@ -1124,7 +1124,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:204](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L204) +[src/types/generatedGraphQLTypes.ts:204](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L204) ___ @@ -1142,7 +1142,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:210](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L210) +[src/types/generatedGraphQLTypes.ts:210](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L210) ___ @@ -1159,7 +1159,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:216](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L216) +[src/types/generatedGraphQLTypes.ts:216](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L216) ___ @@ -1183,7 +1183,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2460](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2460) +[src/types/generatedGraphQLTypes.ts:2460](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2460) ___ @@ -1206,7 +1206,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:221](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L221) +[src/types/generatedGraphQLTypes.ts:221](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L221) ___ @@ -1229,7 +1229,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:232](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L232) +[src/types/generatedGraphQLTypes.ts:232](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L232) ___ @@ -1259,7 +1259,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2476](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2476) +[src/types/generatedGraphQLTypes.ts:2476](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2476) ___ @@ -1289,7 +1289,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2465](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2465) +[src/types/generatedGraphQLTypes.ts:2465](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2465) ___ @@ -1326,7 +1326,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2035](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2035) +[src/types/generatedGraphQLTypes.ts:2035](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2035) ___ @@ -1349,7 +1349,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:3145](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L3145) +[src/types/generatedGraphQLTypes.ts:3145](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L3145) ___ @@ -1374,7 +1374,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:243](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L243) +[src/types/generatedGraphQLTypes.ts:243](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L243) ___ @@ -1406,7 +1406,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2487](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2487) +[src/types/generatedGraphQLTypes.ts:2487](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2487) ___ @@ -1433,7 +1433,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:256](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L256) +[src/types/generatedGraphQLTypes.ts:256](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L256) ___ @@ -1443,7 +1443,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:271](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L271) +[src/types/generatedGraphQLTypes.ts:271](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L271) ___ @@ -1453,7 +1453,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:289](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L289) +[src/types/generatedGraphQLTypes.ts:289](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L289) ___ @@ -1469,7 +1469,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:294](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L294) +[src/types/generatedGraphQLTypes.ts:294](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L294) ___ @@ -1493,7 +1493,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2504](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2504) +[src/types/generatedGraphQLTypes.ts:2504](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2504) ___ @@ -1535,7 +1535,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:298](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L298) +[src/types/generatedGraphQLTypes.ts:298](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L298) ___ @@ -1551,7 +1551,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:329](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L329) +[src/types/generatedGraphQLTypes.ts:329](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L329) ___ @@ -1568,7 +1568,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:333](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L333) +[src/types/generatedGraphQLTypes.ts:333](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L333) ___ @@ -1598,7 +1598,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:338](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L338) +[src/types/generatedGraphQLTypes.ts:338](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L338) ___ @@ -1608,7 +1608,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:356](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L356) +[src/types/generatedGraphQLTypes.ts:356](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L356) ___ @@ -1657,7 +1657,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2509](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2509) +[src/types/generatedGraphQLTypes.ts:2509](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2509) ___ @@ -1697,7 +1697,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:378](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L378) +[src/types/generatedGraphQLTypes.ts:378](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L378) ___ @@ -1713,7 +1713,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L27) +[src/types/generatedGraphQLTypes.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L27) ___ @@ -1731,7 +1731,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:406](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L406) +[src/types/generatedGraphQLTypes.ts:406](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L406) ___ @@ -1756,7 +1756,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2539](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2539) +[src/types/generatedGraphQLTypes.ts:2539](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2539) ___ @@ -1778,7 +1778,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:412](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L412) +[src/types/generatedGraphQLTypes.ts:412](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L412) ___ @@ -1796,7 +1796,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:422](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L422) +[src/types/generatedGraphQLTypes.ts:422](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L422) ___ @@ -1825,7 +1825,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2545](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2545) +[src/types/generatedGraphQLTypes.ts:2545](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2545) ___ @@ -1842,7 +1842,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:428](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L428) +[src/types/generatedGraphQLTypes.ts:428](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L428) ___ @@ -1867,7 +1867,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2555](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2555) +[src/types/generatedGraphQLTypes.ts:2555](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2555) ___ @@ -1885,7 +1885,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:433](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L433) +[src/types/generatedGraphQLTypes.ts:433](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L433) ___ @@ -1895,7 +1895,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:439](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L439) +[src/types/generatedGraphQLTypes.ts:439](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L439) ___ @@ -1918,7 +1918,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:444](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L444) +[src/types/generatedGraphQLTypes.ts:444](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L444) ___ @@ -1941,7 +1941,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:455](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L455) +[src/types/generatedGraphQLTypes.ts:455](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L455) ___ @@ -1963,7 +1963,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:466](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L466) +[src/types/generatedGraphQLTypes.ts:466](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L466) ___ @@ -1992,7 +1992,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2583](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2583) +[src/types/generatedGraphQLTypes.ts:2583](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2583) ___ @@ -2022,7 +2022,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2572](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2572) +[src/types/generatedGraphQLTypes.ts:2572](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2572) ___ @@ -2052,7 +2052,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2561](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2561) +[src/types/generatedGraphQLTypes.ts:2561](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2561) ___ @@ -2068,7 +2068,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L31) +[src/types/generatedGraphQLTypes.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L31) ___ @@ -2084,7 +2084,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L26) +[src/types/generatedGraphQLTypes.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L26) ___ @@ -2094,7 +2094,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:476](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L476) +[src/types/generatedGraphQLTypes.ts:476](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L476) ___ @@ -2119,7 +2119,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2593](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2593) +[src/types/generatedGraphQLTypes.ts:2593](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2593) ___ @@ -2152,7 +2152,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2031](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2031) +[src/types/generatedGraphQLTypes.ts:2031](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2031) ___ @@ -2172,7 +2172,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:482](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L482) +[src/types/generatedGraphQLTypes.ts:482](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L482) ___ @@ -2190,7 +2190,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:490](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L490) +[src/types/generatedGraphQLTypes.ts:490](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L490) ___ @@ -2211,7 +2211,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:496](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L496) +[src/types/generatedGraphQLTypes.ts:496](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L496) ___ @@ -2239,7 +2239,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2611](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2611) +[src/types/generatedGraphQLTypes.ts:2611](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2611) ___ @@ -2266,7 +2266,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2603](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2603) +[src/types/generatedGraphQLTypes.ts:2603](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2603) ___ @@ -2283,7 +2283,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:505](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L505) +[src/types/generatedGraphQLTypes.ts:505](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L505) ___ @@ -2300,7 +2300,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L30) +[src/types/generatedGraphQLTypes.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L30) ___ @@ -2317,7 +2317,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L29) +[src/types/generatedGraphQLTypes.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L29) ___ @@ -2334,7 +2334,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L28) +[src/types/generatedGraphQLTypes.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L28) ___ @@ -2344,7 +2344,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:510](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L510) +[src/types/generatedGraphQLTypes.ts:510](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L510) ___ @@ -2354,7 +2354,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:518](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L518) +[src/types/generatedGraphQLTypes.ts:518](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L518) ___ @@ -2379,7 +2379,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2628](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2628) +[src/types/generatedGraphQLTypes.ts:2628](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2628) ___ @@ -2389,7 +2389,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:524](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L524) +[src/types/generatedGraphQLTypes.ts:524](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L524) ___ @@ -2415,7 +2415,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2634](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2634) +[src/types/generatedGraphQLTypes.ts:2634](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2634) ___ @@ -2431,7 +2431,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L25) +[src/types/generatedGraphQLTypes.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L25) ___ @@ -2450,7 +2450,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:531](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L531) +[src/types/generatedGraphQLTypes.ts:531](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L531) ___ @@ -2476,7 +2476,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2641](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2641) +[src/types/generatedGraphQLTypes.ts:2641](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2641) ___ @@ -2499,7 +2499,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:538](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L538) +[src/types/generatedGraphQLTypes.ts:538](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L538) ___ @@ -2522,7 +2522,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:549](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L549) +[src/types/generatedGraphQLTypes.ts:549](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L549) ___ @@ -2539,7 +2539,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:560](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L560) +[src/types/generatedGraphQLTypes.ts:560](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L560) ___ @@ -2569,7 +2569,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2659](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2659) +[src/types/generatedGraphQLTypes.ts:2659](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2659) ___ @@ -2599,7 +2599,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2648](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2648) +[src/types/generatedGraphQLTypes.ts:2648](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2648) ___ @@ -2609,7 +2609,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:565](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L565) +[src/types/generatedGraphQLTypes.ts:565](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L565) ___ @@ -2635,7 +2635,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2670](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2670) +[src/types/generatedGraphQLTypes.ts:2670](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2670) ___ @@ -2645,7 +2645,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:572](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L572) +[src/types/generatedGraphQLTypes.ts:572](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L572) ___ @@ -2670,7 +2670,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2677](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2677) +[src/types/generatedGraphQLTypes.ts:2677](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2677) ___ @@ -2777,7 +2777,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:578](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L578) +[src/types/generatedGraphQLTypes.ts:578](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L578) ___ @@ -2793,7 +2793,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:674](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L674) +[src/types/generatedGraphQLTypes.ts:674](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L674) ___ @@ -2809,7 +2809,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:679](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L679) +[src/types/generatedGraphQLTypes.ts:679](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L679) ___ @@ -2825,7 +2825,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:684](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L684) +[src/types/generatedGraphQLTypes.ts:684](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L684) ___ @@ -2841,7 +2841,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:689](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L689) +[src/types/generatedGraphQLTypes.ts:689](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L689) ___ @@ -2857,7 +2857,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:694](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L694) +[src/types/generatedGraphQLTypes.ts:694](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L694) ___ @@ -2875,7 +2875,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:699](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L699) +[src/types/generatedGraphQLTypes.ts:699](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L699) ___ @@ -2892,7 +2892,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:706](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L706) +[src/types/generatedGraphQLTypes.ts:706](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L706) ___ @@ -2910,7 +2910,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:712](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L712) +[src/types/generatedGraphQLTypes.ts:712](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L712) ___ @@ -2926,7 +2926,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:719](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L719) +[src/types/generatedGraphQLTypes.ts:719](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L719) ___ @@ -2943,7 +2943,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:724](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L724) +[src/types/generatedGraphQLTypes.ts:724](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L724) ___ @@ -2959,7 +2959,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:730](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L730) +[src/types/generatedGraphQLTypes.ts:730](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L730) ___ @@ -2975,7 +2975,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:735](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L735) +[src/types/generatedGraphQLTypes.ts:735](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L735) ___ @@ -2991,7 +2991,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:740](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L740) +[src/types/generatedGraphQLTypes.ts:740](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L740) ___ @@ -3008,7 +3008,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:745](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L745) +[src/types/generatedGraphQLTypes.ts:745](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L745) ___ @@ -3025,7 +3025,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:751](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L751) +[src/types/generatedGraphQLTypes.ts:751](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L751) ___ @@ -3041,7 +3041,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:757](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L757) +[src/types/generatedGraphQLTypes.ts:757](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L757) ___ @@ -3057,7 +3057,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:762](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L762) +[src/types/generatedGraphQLTypes.ts:762](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L762) ___ @@ -3074,7 +3074,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:767](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L767) +[src/types/generatedGraphQLTypes.ts:767](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L767) ___ @@ -3091,7 +3091,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:773](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L773) +[src/types/generatedGraphQLTypes.ts:773](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L773) ___ @@ -3107,7 +3107,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:779](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L779) +[src/types/generatedGraphQLTypes.ts:779](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L779) ___ @@ -3128,7 +3128,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:784](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L784) +[src/types/generatedGraphQLTypes.ts:784](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L784) ___ @@ -3145,7 +3145,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:794](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L794) +[src/types/generatedGraphQLTypes.ts:794](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L794) ___ @@ -3161,7 +3161,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:800](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L800) +[src/types/generatedGraphQLTypes.ts:800](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L800) ___ @@ -3182,7 +3182,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:805](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L805) +[src/types/generatedGraphQLTypes.ts:805](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L805) ___ @@ -3198,7 +3198,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:815](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L815) +[src/types/generatedGraphQLTypes.ts:815](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L815) ___ @@ -3214,7 +3214,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:820](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L820) +[src/types/generatedGraphQLTypes.ts:820](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L820) ___ @@ -3230,7 +3230,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:825](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L825) +[src/types/generatedGraphQLTypes.ts:825](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L825) ___ @@ -3246,7 +3246,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:830](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L830) +[src/types/generatedGraphQLTypes.ts:830](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L830) ___ @@ -3263,7 +3263,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:835](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L835) +[src/types/generatedGraphQLTypes.ts:835](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L835) ___ @@ -3282,7 +3282,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:841](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L841) +[src/types/generatedGraphQLTypes.ts:841](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L841) ___ @@ -3299,7 +3299,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:849](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L849) +[src/types/generatedGraphQLTypes.ts:849](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L849) ___ @@ -3315,7 +3315,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:855](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L855) +[src/types/generatedGraphQLTypes.ts:855](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L855) ___ @@ -3331,7 +3331,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:860](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L860) +[src/types/generatedGraphQLTypes.ts:860](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L860) ___ @@ -3347,7 +3347,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:865](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L865) +[src/types/generatedGraphQLTypes.ts:865](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L865) ___ @@ -3363,7 +3363,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:870](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L870) +[src/types/generatedGraphQLTypes.ts:870](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L870) ___ @@ -3379,7 +3379,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:875](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L875) +[src/types/generatedGraphQLTypes.ts:875](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L875) ___ @@ -3395,7 +3395,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:880](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L880) +[src/types/generatedGraphQLTypes.ts:880](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L880) ___ @@ -3411,7 +3411,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:885](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L885) +[src/types/generatedGraphQLTypes.ts:885](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L885) ___ @@ -3427,7 +3427,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:890](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L890) +[src/types/generatedGraphQLTypes.ts:890](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L890) ___ @@ -3443,7 +3443,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:895](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L895) +[src/types/generatedGraphQLTypes.ts:895](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L895) ___ @@ -3459,7 +3459,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:900](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L900) +[src/types/generatedGraphQLTypes.ts:900](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L900) ___ @@ -3475,7 +3475,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:905](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L905) +[src/types/generatedGraphQLTypes.ts:905](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L905) ___ @@ -3491,7 +3491,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:910](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L910) +[src/types/generatedGraphQLTypes.ts:910](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L910) ___ @@ -3507,7 +3507,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:915](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L915) +[src/types/generatedGraphQLTypes.ts:915](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L915) ___ @@ -3523,7 +3523,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:920](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L920) +[src/types/generatedGraphQLTypes.ts:920](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L920) ___ @@ -3539,7 +3539,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:925](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L925) +[src/types/generatedGraphQLTypes.ts:925](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L925) ___ @@ -3555,7 +3555,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:930](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L930) +[src/types/generatedGraphQLTypes.ts:930](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L930) ___ @@ -3571,7 +3571,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:935](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L935) +[src/types/generatedGraphQLTypes.ts:935](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L935) ___ @@ -3587,7 +3587,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:940](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L940) +[src/types/generatedGraphQLTypes.ts:940](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L940) ___ @@ -3603,7 +3603,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:945](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L945) +[src/types/generatedGraphQLTypes.ts:945](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L945) ___ @@ -3620,7 +3620,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:950](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L950) +[src/types/generatedGraphQLTypes.ts:950](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L950) ___ @@ -3636,7 +3636,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:956](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L956) +[src/types/generatedGraphQLTypes.ts:956](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L956) ___ @@ -3652,7 +3652,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:961](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L961) +[src/types/generatedGraphQLTypes.ts:961](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L961) ___ @@ -3668,7 +3668,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:966](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L966) +[src/types/generatedGraphQLTypes.ts:966](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L966) ___ @@ -3684,7 +3684,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:971](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L971) +[src/types/generatedGraphQLTypes.ts:971](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L971) ___ @@ -3700,7 +3700,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:976](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L976) +[src/types/generatedGraphQLTypes.ts:976](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L976) ___ @@ -3717,7 +3717,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:981](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L981) +[src/types/generatedGraphQLTypes.ts:981](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L981) ___ @@ -3733,7 +3733,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:987](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L987) +[src/types/generatedGraphQLTypes.ts:987](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L987) ___ @@ -3749,7 +3749,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:992](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L992) +[src/types/generatedGraphQLTypes.ts:992](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L992) ___ @@ -3765,7 +3765,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:997](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L997) +[src/types/generatedGraphQLTypes.ts:997](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L997) ___ @@ -3782,7 +3782,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1002](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1002) +[src/types/generatedGraphQLTypes.ts:1002](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1002) ___ @@ -3798,7 +3798,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1008](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1008) +[src/types/generatedGraphQLTypes.ts:1008](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1008) ___ @@ -3911,7 +3911,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2683](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2683) +[src/types/generatedGraphQLTypes.ts:2683](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2683) ___ @@ -3927,7 +3927,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1013](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1013) +[src/types/generatedGraphQLTypes.ts:1013](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1013) ___ @@ -3943,7 +3943,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1018](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1018) +[src/types/generatedGraphQLTypes.ts:1018](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1018) ___ @@ -3960,7 +3960,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1023](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1023) +[src/types/generatedGraphQLTypes.ts:1023](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1023) ___ @@ -3977,7 +3977,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1029](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1029) +[src/types/generatedGraphQLTypes.ts:1029](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1029) ___ @@ -3994,7 +3994,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1035](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1035) +[src/types/generatedGraphQLTypes.ts:1035](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1035) ___ @@ -4011,7 +4011,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1041](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1041) +[src/types/generatedGraphQLTypes.ts:1041](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1041) ___ @@ -4027,7 +4027,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1047](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1047) +[src/types/generatedGraphQLTypes.ts:1047](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1047) ___ @@ -4044,7 +4044,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1052](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1052) +[src/types/generatedGraphQLTypes.ts:1052](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1052) ___ @@ -4060,7 +4060,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1058](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1058) +[src/types/generatedGraphQLTypes.ts:1058](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1058) ___ @@ -4076,7 +4076,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1063](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1063) +[src/types/generatedGraphQLTypes.ts:1063](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1063) ___ @@ -4092,7 +4092,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1068](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1068) +[src/types/generatedGraphQLTypes.ts:1068](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1068) ___ @@ -4109,7 +4109,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1073](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1073) +[src/types/generatedGraphQLTypes.ts:1073](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1073) ___ @@ -4126,7 +4126,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1079](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1079) +[src/types/generatedGraphQLTypes.ts:1079](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1079) ___ @@ -4142,7 +4142,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1085](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1085) +[src/types/generatedGraphQLTypes.ts:1085](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1085) ___ @@ -4159,7 +4159,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1090](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1090) +[src/types/generatedGraphQLTypes.ts:1090](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1090) ___ @@ -4175,7 +4175,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1096](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1096) +[src/types/generatedGraphQLTypes.ts:1096](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1096) ___ @@ -4193,7 +4193,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1101](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1101) +[src/types/generatedGraphQLTypes.ts:1101](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1101) ___ @@ -4210,7 +4210,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1108](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1108) +[src/types/generatedGraphQLTypes.ts:1108](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1108) ___ @@ -4227,7 +4227,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1114](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1114) +[src/types/generatedGraphQLTypes.ts:1114](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1114) ___ @@ -4243,7 +4243,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1120](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1120) +[src/types/generatedGraphQLTypes.ts:1120](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1120) ___ @@ -4260,7 +4260,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1125](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1125) +[src/types/generatedGraphQLTypes.ts:1125](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1125) ___ @@ -4278,7 +4278,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1131](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1131) +[src/types/generatedGraphQLTypes.ts:1131](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1131) ___ @@ -4294,7 +4294,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1138](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1138) +[src/types/generatedGraphQLTypes.ts:1138](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1138) ___ @@ -4310,7 +4310,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1143](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1143) +[src/types/generatedGraphQLTypes.ts:1143](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1143) ___ @@ -4334,7 +4334,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2033](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2033) +[src/types/generatedGraphQLTypes.ts:2033](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2033) ___ @@ -4351,7 +4351,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L32) +[src/types/generatedGraphQLTypes.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L32) ___ @@ -4386,7 +4386,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1151](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1151) +[src/types/generatedGraphQLTypes.ts:1151](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1151) ___ @@ -4402,7 +4402,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1175](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1175) +[src/types/generatedGraphQLTypes.ts:1175](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1175) ___ @@ -4422,7 +4422,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1187](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1187) +[src/types/generatedGraphQLTypes.ts:1187](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1187) ___ @@ -4449,7 +4449,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2800](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2800) +[src/types/generatedGraphQLTypes.ts:2800](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2800) ___ @@ -4473,7 +4473,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1195](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1195) +[src/types/generatedGraphQLTypes.ts:1195](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1195) ___ @@ -4504,7 +4504,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2808](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2808) +[src/types/generatedGraphQLTypes.ts:2808](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2808) ___ @@ -4527,7 +4527,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1207](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1207) +[src/types/generatedGraphQLTypes.ts:1207](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1207) ___ @@ -4537,7 +4537,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1218](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1218) +[src/types/generatedGraphQLTypes.ts:1218](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1218) ___ @@ -4579,7 +4579,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2777](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2777) +[src/types/generatedGraphQLTypes.ts:2777](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2777) ___ @@ -4598,7 +4598,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1180](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1180) +[src/types/generatedGraphQLTypes.ts:1180](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1180) ___ @@ -4639,7 +4639,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1230](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1230) +[src/types/generatedGraphQLTypes.ts:1230](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1230) ___ @@ -4656,7 +4656,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1259](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1259) +[src/types/generatedGraphQLTypes.ts:1259](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1259) ___ @@ -4680,7 +4680,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2820](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2820) +[src/types/generatedGraphQLTypes.ts:2820](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2820) ___ @@ -4696,7 +4696,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1147](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1147) +[src/types/generatedGraphQLTypes.ts:1147](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1147) ___ @@ -4720,7 +4720,7 @@ Information about pagination in a connection. #### Defined in -[src/types/generatedGraphQLTypes.ts:1265](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1265) +[src/types/generatedGraphQLTypes.ts:1265](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1265) ___ @@ -4749,7 +4749,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2825](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2825) +[src/types/generatedGraphQLTypes.ts:2825](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2825) ___ @@ -4759,7 +4759,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1277](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1277) +[src/types/generatedGraphQLTypes.ts:1277](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1277) ___ @@ -4780,7 +4780,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1281](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1281) +[src/types/generatedGraphQLTypes.ts:1281](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1281) ___ @@ -4800,7 +4800,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1290](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1290) +[src/types/generatedGraphQLTypes.ts:1290](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1290) ___ @@ -4817,7 +4817,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1298](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1298) +[src/types/generatedGraphQLTypes.ts:1298](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1298) ___ @@ -4844,7 +4844,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2848](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2848) +[src/types/generatedGraphQLTypes.ts:2848](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2848) ___ @@ -4864,7 +4864,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1303](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1303) +[src/types/generatedGraphQLTypes.ts:1303](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1303) ___ @@ -4892,7 +4892,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2839](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2839) +[src/types/generatedGraphQLTypes.ts:2839](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2839) ___ @@ -4922,7 +4922,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1311](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1311) +[src/types/generatedGraphQLTypes.ts:1311](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1311) ___ @@ -4943,7 +4943,7 @@ A connection to a list of items. #### Defined in -[src/types/generatedGraphQLTypes.ts:1330](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1330) +[src/types/generatedGraphQLTypes.ts:1330](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1330) ___ @@ -4969,7 +4969,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2878](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2878) +[src/types/generatedGraphQLTypes.ts:2878](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2878) ___ @@ -4991,7 +4991,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1339](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1339) +[src/types/generatedGraphQLTypes.ts:1339](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1339) ___ @@ -5001,7 +5001,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1349](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1349) +[src/types/generatedGraphQLTypes.ts:1349](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1349) ___ @@ -5038,7 +5038,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2860](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2860) +[src/types/generatedGraphQLTypes.ts:2860](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2860) ___ @@ -5057,7 +5057,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1367](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1367) +[src/types/generatedGraphQLTypes.ts:1367](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1367) ___ @@ -5090,7 +5090,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1374](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1374) +[src/types/generatedGraphQLTypes.ts:1374](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1374) ___ @@ -5144,7 +5144,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1395](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1395) +[src/types/generatedGraphQLTypes.ts:1395](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1395) ___ @@ -5160,7 +5160,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1438](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1438) +[src/types/generatedGraphQLTypes.ts:1438](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1438) ___ @@ -5176,7 +5176,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1443](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1443) +[src/types/generatedGraphQLTypes.ts:1443](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1443) ___ @@ -5192,7 +5192,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1448](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1448) +[src/types/generatedGraphQLTypes.ts:1448](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1448) ___ @@ -5208,7 +5208,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1453](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1453) +[src/types/generatedGraphQLTypes.ts:1453](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1453) ___ @@ -5224,7 +5224,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1458](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1458) +[src/types/generatedGraphQLTypes.ts:1458](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1458) ___ @@ -5240,7 +5240,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1463](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1463) +[src/types/generatedGraphQLTypes.ts:1463](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1463) ___ @@ -5256,7 +5256,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1468](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1468) +[src/types/generatedGraphQLTypes.ts:1468](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1468) ___ @@ -5272,7 +5272,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1473](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1473) +[src/types/generatedGraphQLTypes.ts:1473](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1473) ___ @@ -5288,7 +5288,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1478](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1478) +[src/types/generatedGraphQLTypes.ts:1478](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1478) ___ @@ -5304,7 +5304,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1483](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1483) +[src/types/generatedGraphQLTypes.ts:1483](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1483) ___ @@ -5320,7 +5320,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1488](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1488) +[src/types/generatedGraphQLTypes.ts:1488](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1488) ___ @@ -5337,7 +5337,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1493](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1493) +[src/types/generatedGraphQLTypes.ts:1493](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1493) ___ @@ -5356,7 +5356,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1499](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1499) +[src/types/generatedGraphQLTypes.ts:1499](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1499) ___ @@ -5372,7 +5372,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1507](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1507) +[src/types/generatedGraphQLTypes.ts:1507](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1507) ___ @@ -5388,7 +5388,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1512](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1512) +[src/types/generatedGraphQLTypes.ts:1512](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1512) ___ @@ -5407,7 +5407,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1517](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1517) +[src/types/generatedGraphQLTypes.ts:1517](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1517) ___ @@ -5423,7 +5423,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1525](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1525) +[src/types/generatedGraphQLTypes.ts:1525](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1525) ___ @@ -5440,7 +5440,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1530](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1530) +[src/types/generatedGraphQLTypes.ts:1530](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1530) ___ @@ -5456,7 +5456,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1536](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1536) +[src/types/generatedGraphQLTypes.ts:1536](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1536) ___ @@ -5472,7 +5472,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1541](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1541) +[src/types/generatedGraphQLTypes.ts:1541](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1541) ___ @@ -5489,7 +5489,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1546](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1546) +[src/types/generatedGraphQLTypes.ts:1546](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1546) ___ @@ -5508,7 +5508,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1552](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1552) +[src/types/generatedGraphQLTypes.ts:1552](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1552) ___ @@ -5528,7 +5528,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1560](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1560) +[src/types/generatedGraphQLTypes.ts:1560](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1560) ___ @@ -5544,7 +5544,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1569](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1569) +[src/types/generatedGraphQLTypes.ts:1569](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1569) ___ @@ -5560,7 +5560,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1574](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1574) +[src/types/generatedGraphQLTypes.ts:1574](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1574) ___ @@ -5577,7 +5577,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1579](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1579) +[src/types/generatedGraphQLTypes.ts:1579](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1579) ___ @@ -5597,7 +5597,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1585](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1585) +[src/types/generatedGraphQLTypes.ts:1585](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1585) ___ @@ -5614,7 +5614,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1594](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1594) +[src/types/generatedGraphQLTypes.ts:1594](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1594) ___ @@ -5630,7 +5630,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1600](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1600) +[src/types/generatedGraphQLTypes.ts:1600](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1600) ___ @@ -5690,7 +5690,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2885](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2885) +[src/types/generatedGraphQLTypes.ts:2885](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2885) ___ @@ -5706,7 +5706,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1605](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1605) +[src/types/generatedGraphQLTypes.ts:1605](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1605) ___ @@ -5722,7 +5722,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1610](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1610) +[src/types/generatedGraphQLTypes.ts:1610](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1610) ___ @@ -5743,7 +5743,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1615](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1615) +[src/types/generatedGraphQLTypes.ts:1615](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1615) ___ @@ -5762,7 +5762,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1625](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1625) +[src/types/generatedGraphQLTypes.ts:1625](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1625) ___ @@ -5778,7 +5778,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1632](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1632) +[src/types/generatedGraphQLTypes.ts:1632](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1632) ___ @@ -5788,7 +5788,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1636](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1636) +[src/types/generatedGraphQLTypes.ts:1636](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1636) ___ @@ -5805,7 +5805,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L33) +[src/types/generatedGraphQLTypes.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L33) ___ @@ -5824,7 +5824,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1984](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1984) +[src/types/generatedGraphQLTypes.ts:1984](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1984) ___ @@ -5860,7 +5860,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1986](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1986) +[src/types/generatedGraphQLTypes.ts:1986](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1986) ___ @@ -5876,7 +5876,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1982](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1982) +[src/types/generatedGraphQLTypes.ts:1982](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1982) ___ @@ -5971,7 +5971,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:3068](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L3068) +[src/types/generatedGraphQLTypes.ts:3068](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L3068) ___ @@ -5996,7 +5996,7 @@ Mapping of interface types #### Defined in -[src/types/generatedGraphQLTypes.ts:2049](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2049) +[src/types/generatedGraphQLTypes.ts:2049](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2049) ___ @@ -6134,7 +6134,7 @@ Mapping between all available schema types and the resolvers parents #### Defined in -[src/types/generatedGraphQLTypes.ts:2194](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2194) +[src/types/generatedGraphQLTypes.ts:2194](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2194) ___ @@ -6286,7 +6286,7 @@ Mapping between all available schema types and the resolvers types #### Defined in -[src/types/generatedGraphQLTypes.ts:2055](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2055) +[src/types/generatedGraphQLTypes.ts:2055](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2055) ___ @@ -6310,7 +6310,7 @@ Mapping of union types #### Defined in -[src/types/generatedGraphQLTypes.ts:2044](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2044) +[src/types/generatedGraphQLTypes.ts:2044](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2044) ___ @@ -6326,7 +6326,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2322](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2322) +[src/types/generatedGraphQLTypes.ts:2322](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2322) ___ @@ -6345,7 +6345,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2326](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2326) +[src/types/generatedGraphQLTypes.ts:2326](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2326) ___ @@ -6416,7 +6416,7 @@ All built-in and custom scalars, mapped to their actual values #### Defined in -[src/types/generatedGraphQLTypes.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L35) +[src/types/generatedGraphQLTypes.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L35) ___ @@ -6426,7 +6426,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1643](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1643) +[src/types/generatedGraphQLTypes.ts:1643](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1643) ___ @@ -6446,7 +6446,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1648](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1648) +[src/types/generatedGraphQLTypes.ts:1648](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1648) ___ @@ -6466,7 +6466,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2017](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2017) +[src/types/generatedGraphQLTypes.ts:2017](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2017) ___ @@ -6502,7 +6502,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2000](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2000) +[src/types/generatedGraphQLTypes.ts:2000](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2000) ___ @@ -6522,7 +6522,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2021](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2021) +[src/types/generatedGraphQLTypes.ts:2021](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2021) ___ @@ -6548,7 +6548,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2926](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2926) +[src/types/generatedGraphQLTypes.ts:2926](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2926) ___ @@ -6584,7 +6584,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1993](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1993) +[src/types/generatedGraphQLTypes.ts:1993](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1993) ___ @@ -6601,7 +6601,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1656](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1656) +[src/types/generatedGraphQLTypes.ts:1656](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1656) ___ @@ -6621,7 +6621,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1661](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1661) +[src/types/generatedGraphQLTypes.ts:1661](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1661) ___ @@ -6648,7 +6648,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2937](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2937) +[src/types/generatedGraphQLTypes.ts:2937](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2937) ___ @@ -6658,7 +6658,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1669](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1669) +[src/types/generatedGraphQLTypes.ts:1669](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1669) ___ @@ -6692,7 +6692,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2025](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2025) +[src/types/generatedGraphQLTypes.ts:2025](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2025) ___ @@ -6702,7 +6702,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1673](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1673) +[src/types/generatedGraphQLTypes.ts:1673](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1673) ___ @@ -6726,7 +6726,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2949](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2949) +[src/types/generatedGraphQLTypes.ts:2949](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2949) ___ @@ -6736,7 +6736,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1678](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1678) +[src/types/generatedGraphQLTypes.ts:1678](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1678) ___ @@ -6760,7 +6760,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2954](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2954) +[src/types/generatedGraphQLTypes.ts:2954](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2954) ___ @@ -6777,7 +6777,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1683](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1683) +[src/types/generatedGraphQLTypes.ts:1683](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1683) ___ @@ -6798,7 +6798,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1688](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1688) +[src/types/generatedGraphQLTypes.ts:1688](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1688) ___ @@ -6819,7 +6819,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1697](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1697) +[src/types/generatedGraphQLTypes.ts:1697](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1697) ___ @@ -6836,7 +6836,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1706](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1706) +[src/types/generatedGraphQLTypes.ts:1706](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1706) ___ @@ -6860,7 +6860,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2959](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2959) +[src/types/generatedGraphQLTypes.ts:2959](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2959) ___ @@ -6889,7 +6889,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1711](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1711) +[src/types/generatedGraphQLTypes.ts:1711](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1711) ___ @@ -6909,7 +6909,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1728](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1728) +[src/types/generatedGraphQLTypes.ts:1728](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1728) ___ @@ -6934,7 +6934,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1736](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1736) +[src/types/generatedGraphQLTypes.ts:1736](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1736) ___ @@ -6952,7 +6952,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1749](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1749) +[src/types/generatedGraphQLTypes.ts:1749](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1749) ___ @@ -6969,7 +6969,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1755](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1755) +[src/types/generatedGraphQLTypes.ts:1755](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1755) ___ @@ -6986,7 +6986,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1760](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1760) +[src/types/generatedGraphQLTypes.ts:1760](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1760) ___ @@ -7030,7 +7030,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1765](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1765) +[src/types/generatedGraphQLTypes.ts:1765](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1765) ___ @@ -7047,7 +7047,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1806](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1806) +[src/types/generatedGraphQLTypes.ts:1806](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1806) ___ @@ -7066,7 +7066,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1811](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1811) +[src/types/generatedGraphQLTypes.ts:1811](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1811) ___ @@ -7092,7 +7092,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:3000](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L3000) +[src/types/generatedGraphQLTypes.ts:3000](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L3000) ___ @@ -7112,7 +7112,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1818](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1818) +[src/types/generatedGraphQLTypes.ts:1818](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1818) ___ @@ -7139,7 +7139,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:3007](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L3007) +[src/types/generatedGraphQLTypes.ts:3007](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L3007) ___ @@ -7157,7 +7157,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1826](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1826) +[src/types/generatedGraphQLTypes.ts:1826](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1826) ___ @@ -7182,7 +7182,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:3015](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L3015) +[src/types/generatedGraphQLTypes.ts:3015](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L3015) ___ @@ -7203,7 +7203,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1832](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1832) +[src/types/generatedGraphQLTypes.ts:1832](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1832) ___ @@ -7213,7 +7213,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1841](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1841) +[src/types/generatedGraphQLTypes.ts:1841](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1841) ___ @@ -7232,7 +7232,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1853](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1853) +[src/types/generatedGraphQLTypes.ts:1853](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1853) ___ @@ -7250,7 +7250,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1860](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1860) +[src/types/generatedGraphQLTypes.ts:1860](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1860) ___ @@ -7276,7 +7276,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:3021](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L3021) +[src/types/generatedGraphQLTypes.ts:3021](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L3021) ___ @@ -7327,7 +7327,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2968](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L2968) +[src/types/generatedGraphQLTypes.ts:2968](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L2968) ___ @@ -7349,7 +7349,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1866](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1866) +[src/types/generatedGraphQLTypes.ts:1866](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1866) ___ @@ -7365,7 +7365,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1877](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1877) +[src/types/generatedGraphQLTypes.ts:1877](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1877) ___ @@ -7383,7 +7383,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1886](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1886) +[src/types/generatedGraphQLTypes.ts:1886](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1886) ___ @@ -7408,7 +7408,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:3038](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L3038) +[src/types/generatedGraphQLTypes.ts:3038](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L3038) ___ @@ -7437,7 +7437,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:3028](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L3028) +[src/types/generatedGraphQLTypes.ts:3028](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L3028) ___ @@ -7453,7 +7453,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1882](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1882) +[src/types/generatedGraphQLTypes.ts:1882](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1882) ___ @@ -7473,7 +7473,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1798](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1798) +[src/types/generatedGraphQLTypes.ts:1798](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1798) ___ @@ -7491,7 +7491,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1892](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1892) +[src/types/generatedGraphQLTypes.ts:1892](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1892) ___ @@ -7509,7 +7509,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1898](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1898) +[src/types/generatedGraphQLTypes.ts:1898](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1898) ___ @@ -7534,7 +7534,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:3044](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L3044) +[src/types/generatedGraphQLTypes.ts:3044](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L3044) ___ @@ -7552,7 +7552,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1904](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1904) +[src/types/generatedGraphQLTypes.ts:1904](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1904) ___ @@ -7577,7 +7577,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:3050](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L3050) +[src/types/generatedGraphQLTypes.ts:3050](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L3050) ___ @@ -7587,7 +7587,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1910](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1910) +[src/types/generatedGraphQLTypes.ts:1910](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1910) ___ @@ -7634,7 +7634,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1916](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1916) +[src/types/generatedGraphQLTypes.ts:1916](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1916) ___ @@ -7652,7 +7652,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1951](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1951) +[src/types/generatedGraphQLTypes.ts:1951](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1951) ___ @@ -7670,7 +7670,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1957](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1957) +[src/types/generatedGraphQLTypes.ts:1957](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1957) ___ @@ -7695,7 +7695,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:3056](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L3056) +[src/types/generatedGraphQLTypes.ts:3056](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L3056) ___ @@ -7713,7 +7713,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1963](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L1963) +[src/types/generatedGraphQLTypes.ts:1963](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L1963) ___ @@ -7738,4 +7738,4 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:3062](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/types/generatedGraphQLTypes.ts#L3062) +[src/types/generatedGraphQLTypes.ts:3062](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/types/generatedGraphQLTypes.ts#L3062) diff --git a/talawa-api-docs/modules/utilities_PII_decryption.md b/talawa-api-docs/modules/utilities_PII_decryption.md index 72babbe7db9..5957c7066e8 100644 --- a/talawa-api-docs/modules/utilities_PII_decryption.md +++ b/talawa-api-docs/modules/utilities_PII_decryption.md @@ -28,4 +28,4 @@ #### Defined in -[src/utilities/PII/decryption.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/PII/decryption.ts#L4) +[src/utilities/PII/decryption.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/PII/decryption.ts#L4) diff --git a/talawa-api-docs/modules/utilities_PII_encryption.md b/talawa-api-docs/modules/utilities_PII_encryption.md index bd1b573e367..0a964c3826a 100644 --- a/talawa-api-docs/modules/utilities_PII_encryption.md +++ b/talawa-api-docs/modules/utilities_PII_encryption.md @@ -28,4 +28,4 @@ #### Defined in -[src/utilities/PII/encryption.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/PII/encryption.ts#L4) +[src/utilities/PII/encryption.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/PII/encryption.ts#L4) diff --git a/talawa-api-docs/modules/utilities_PII_isAuthorised.md b/talawa-api-docs/modules/utilities_PII_isAuthorised.md index 467a72b9912..0f1b3aab75f 100644 --- a/talawa-api-docs/modules/utilities_PII_isAuthorised.md +++ b/talawa-api-docs/modules/utilities_PII_isAuthorised.md @@ -27,4 +27,4 @@ #### Defined in -[src/utilities/PII/isAuthorised.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/PII/isAuthorised.ts#L3) +[src/utilities/PII/isAuthorised.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/PII/isAuthorised.ts#L3) diff --git a/talawa-api-docs/modules/utilities_adminCheck.md b/talawa-api-docs/modules/utilities_adminCheck.md index 06abd656f03..8808eb09327 100644 --- a/talawa-api-docs/modules/utilities_adminCheck.md +++ b/talawa-api-docs/modules/utilities_adminCheck.md @@ -35,4 +35,4 @@ This is a utility method. #### Defined in -[src/utilities/adminCheck.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/adminCheck.ts#L14) +[src/utilities/adminCheck.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/adminCheck.ts#L14) diff --git a/talawa-api-docs/modules/utilities_auth.md b/talawa-api-docs/modules/utilities_auth.md index bd68874f0b5..01aa23a875d 100644 --- a/talawa-api-docs/modules/utilities_auth.md +++ b/talawa-api-docs/modules/utilities_auth.md @@ -37,7 +37,7 @@ JSON Web Token string payload #### Defined in -[src/utilities/auth.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/auth.ts#L19) +[src/utilities/auth.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/auth.ts#L19) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[src/utilities/auth.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/auth.ts#L35) +[src/utilities/auth.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/auth.ts#L35) ___ @@ -77,4 +77,4 @@ ___ #### Defined in -[src/utilities/auth.ts:51](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/auth.ts#L51) +[src/utilities/auth.ts:51](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/auth.ts#L51) diff --git a/talawa-api-docs/modules/utilities_copyToClipboard.md b/talawa-api-docs/modules/utilities_copyToClipboard.md index e1fdcc7cbcf..356bf68c470 100644 --- a/talawa-api-docs/modules/utilities_copyToClipboard.md +++ b/talawa-api-docs/modules/utilities_copyToClipboard.md @@ -32,4 +32,4 @@ This is a utility method. This works only in development or test mode. #### Defined in -[src/utilities/copyToClipboard.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/copyToClipboard.ts#L9) +[src/utilities/copyToClipboard.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/copyToClipboard.ts#L9) diff --git a/talawa-api-docs/modules/utilities_createSampleOrganizationUtil.md b/talawa-api-docs/modules/utilities_createSampleOrganizationUtil.md index 2ec4b1204b8..e26847c4ac4 100644 --- a/talawa-api-docs/modules/utilities_createSampleOrganizationUtil.md +++ b/talawa-api-docs/modules/utilities_createSampleOrganizationUtil.md @@ -24,7 +24,7 @@ #### Defined in -[src/utilities/createSampleOrganizationUtil.ts:215](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/createSampleOrganizationUtil.ts#L215) +[src/utilities/createSampleOrganizationUtil.ts:215](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/createSampleOrganizationUtil.ts#L215) ___ @@ -45,7 +45,7 @@ ___ #### Defined in -[src/utilities/createSampleOrganizationUtil.ts:64](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/createSampleOrganizationUtil.ts#L64) +[src/utilities/createSampleOrganizationUtil.ts:64](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/createSampleOrganizationUtil.ts#L64) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[src/utilities/createSampleOrganizationUtil.ts:128](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/createSampleOrganizationUtil.ts#L128) +[src/utilities/createSampleOrganizationUtil.ts:128](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/createSampleOrganizationUtil.ts#L128) ___ @@ -87,7 +87,7 @@ ___ #### Defined in -[src/utilities/createSampleOrganizationUtil.ts:185](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/createSampleOrganizationUtil.ts#L185) +[src/utilities/createSampleOrganizationUtil.ts:185](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/createSampleOrganizationUtil.ts#L185) ___ @@ -108,4 +108,4 @@ ___ #### Defined in -[src/utilities/createSampleOrganizationUtil.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/createSampleOrganizationUtil.ts#L10) +[src/utilities/createSampleOrganizationUtil.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/createSampleOrganizationUtil.ts#L10) diff --git a/talawa-api-docs/modules/utilities_deleteDuplicatedImage.md b/talawa-api-docs/modules/utilities_deleteDuplicatedImage.md index 6ee7a9f69bd..f82241155a3 100644 --- a/talawa-api-docs/modules/utilities_deleteDuplicatedImage.md +++ b/talawa-api-docs/modules/utilities_deleteDuplicatedImage.md @@ -28,4 +28,4 @@ This function deletes a duplicated image using the function fs.unlink(). #### Defined in -[src/utilities/deleteDuplicatedImage.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/deleteDuplicatedImage.ts#L8) +[src/utilities/deleteDuplicatedImage.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/deleteDuplicatedImage.ts#L8) diff --git a/talawa-api-docs/modules/utilities_deleteImage.md b/talawa-api-docs/modules/utilities_deleteImage.md index c8105a086cb..dab2bae38b7 100644 --- a/talawa-api-docs/modules/utilities_deleteImage.md +++ b/talawa-api-docs/modules/utilities_deleteImage.md @@ -31,4 +31,4 @@ After deleting the image, the number of uses of the hashed image are decremented #### Defined in -[src/utilities/deleteImage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/deleteImage.ts#L12) +[src/utilities/deleteImage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/deleteImage.ts#L12) diff --git a/talawa-api-docs/modules/utilities_encodedImageStorage_deletePreviousImage.md b/talawa-api-docs/modules/utilities_encodedImageStorage_deletePreviousImage.md index 49344daba3b..643a631312d 100644 --- a/talawa-api-docs/modules/utilities_encodedImageStorage_deletePreviousImage.md +++ b/talawa-api-docs/modules/utilities_encodedImageStorage_deletePreviousImage.md @@ -26,4 +26,4 @@ #### Defined in -[src/utilities/encodedImageStorage/deletePreviousImage.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/encodedImageStorage/deletePreviousImage.ts#L5) +[src/utilities/encodedImageStorage/deletePreviousImage.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/encodedImageStorage/deletePreviousImage.ts#L5) diff --git a/talawa-api-docs/modules/utilities_encodedImageStorage_encodedImageExtensionCheck.md b/talawa-api-docs/modules/utilities_encodedImageStorage_encodedImageExtensionCheck.md index 6aa2a02e1a2..9f12e61d97b 100644 --- a/talawa-api-docs/modules/utilities_encodedImageStorage_encodedImageExtensionCheck.md +++ b/talawa-api-docs/modules/utilities_encodedImageStorage_encodedImageExtensionCheck.md @@ -26,4 +26,4 @@ #### Defined in -[src/utilities/encodedImageStorage/encodedImageExtensionCheck.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/encodedImageStorage/encodedImageExtensionCheck.ts#L1) +[src/utilities/encodedImageStorage/encodedImageExtensionCheck.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/encodedImageStorage/encodedImageExtensionCheck.ts#L1) diff --git a/talawa-api-docs/modules/utilities_encodedImageStorage_uploadEncodedImage.md b/talawa-api-docs/modules/utilities_encodedImageStorage_uploadEncodedImage.md index f210b98f9d8..f18e64362ed 100644 --- a/talawa-api-docs/modules/utilities_encodedImageStorage_uploadEncodedImage.md +++ b/talawa-api-docs/modules/utilities_encodedImageStorage_uploadEncodedImage.md @@ -27,4 +27,4 @@ #### Defined in -[src/utilities/encodedImageStorage/uploadEncodedImage.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/encodedImageStorage/uploadEncodedImage.ts#L26) +[src/utilities/encodedImageStorage/uploadEncodedImage.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/encodedImageStorage/uploadEncodedImage.ts#L26) diff --git a/talawa-api-docs/modules/utilities_encodedVideoStorage_deletePreviousVideo.md b/talawa-api-docs/modules/utilities_encodedVideoStorage_deletePreviousVideo.md index 410541e8ebb..9792067380b 100644 --- a/talawa-api-docs/modules/utilities_encodedVideoStorage_deletePreviousVideo.md +++ b/talawa-api-docs/modules/utilities_encodedVideoStorage_deletePreviousVideo.md @@ -26,4 +26,4 @@ #### Defined in -[src/utilities/encodedVideoStorage/deletePreviousVideo.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/encodedVideoStorage/deletePreviousVideo.ts#L5) +[src/utilities/encodedVideoStorage/deletePreviousVideo.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/encodedVideoStorage/deletePreviousVideo.ts#L5) diff --git a/talawa-api-docs/modules/utilities_encodedVideoStorage_encodedVideoExtensionCheck.md b/talawa-api-docs/modules/utilities_encodedVideoStorage_encodedVideoExtensionCheck.md index 370a1dd9202..ea4026f9c48 100644 --- a/talawa-api-docs/modules/utilities_encodedVideoStorage_encodedVideoExtensionCheck.md +++ b/talawa-api-docs/modules/utilities_encodedVideoStorage_encodedVideoExtensionCheck.md @@ -26,4 +26,4 @@ #### Defined in -[src/utilities/encodedVideoStorage/encodedVideoExtensionCheck.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/encodedVideoStorage/encodedVideoExtensionCheck.ts#L1) +[src/utilities/encodedVideoStorage/encodedVideoExtensionCheck.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/encodedVideoStorage/encodedVideoExtensionCheck.ts#L1) diff --git a/talawa-api-docs/modules/utilities_encodedVideoStorage_uploadEncodedVideo.md b/talawa-api-docs/modules/utilities_encodedVideoStorage_uploadEncodedVideo.md index 6627de2ec5a..50797c581ab 100644 --- a/talawa-api-docs/modules/utilities_encodedVideoStorage_uploadEncodedVideo.md +++ b/talawa-api-docs/modules/utilities_encodedVideoStorage_uploadEncodedVideo.md @@ -27,4 +27,4 @@ #### Defined in -[src/utilities/encodedVideoStorage/uploadEncodedVideo.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/encodedVideoStorage/uploadEncodedVideo.ts#L11) +[src/utilities/encodedVideoStorage/uploadEncodedVideo.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/encodedVideoStorage/uploadEncodedVideo.ts#L11) diff --git a/talawa-api-docs/modules/utilities_graphqlConnectionFactory.md b/talawa-api-docs/modules/utilities_graphqlConnectionFactory.md index c8ac49e3be9..8909bee24b0 100644 --- a/talawa-api-docs/modules/utilities_graphqlConnectionFactory.md +++ b/talawa-api-docs/modules/utilities_graphqlConnectionFactory.md @@ -39,7 +39,7 @@ #### Defined in -[src/utilities/graphqlConnectionFactory.ts:106](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/graphqlConnectionFactory.ts#L106) +[src/utilities/graphqlConnectionFactory.ts:106](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/graphqlConnectionFactory.ts#L106) ___ @@ -59,7 +59,7 @@ ___ #### Defined in -[src/utilities/graphqlConnectionFactory.ts:75](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/graphqlConnectionFactory.ts#L75) +[src/utilities/graphqlConnectionFactory.ts:75](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/graphqlConnectionFactory.ts#L75) ___ @@ -79,7 +79,7 @@ ___ #### Defined in -[src/utilities/graphqlConnectionFactory.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/graphqlConnectionFactory.ts#L46) +[src/utilities/graphqlConnectionFactory.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/graphqlConnectionFactory.ts#L46) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[src/utilities/graphqlConnectionFactory.ts:53](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/graphqlConnectionFactory.ts#L53) +[src/utilities/graphqlConnectionFactory.ts:53](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/graphqlConnectionFactory.ts#L53) ___ @@ -120,4 +120,4 @@ ___ #### Defined in -[src/utilities/graphqlConnectionFactory.ts:34](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/graphqlConnectionFactory.ts#L34) +[src/utilities/graphqlConnectionFactory.ts:34](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/graphqlConnectionFactory.ts#L34) diff --git a/talawa-api-docs/modules/utilities_imageAlreadyInDbCheck.md b/talawa-api-docs/modules/utilities_imageAlreadyInDbCheck.md index 8fc831438ce..d06ec0b9b68 100644 --- a/talawa-api-docs/modules/utilities_imageAlreadyInDbCheck.md +++ b/talawa-api-docs/modules/utilities_imageAlreadyInDbCheck.md @@ -33,4 +33,4 @@ file name. #### Defined in -[src/utilities/imageAlreadyInDbCheck.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/imageAlreadyInDbCheck.ts#L16) +[src/utilities/imageAlreadyInDbCheck.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/imageAlreadyInDbCheck.ts#L16) diff --git a/talawa-api-docs/modules/utilities_imageExtensionCheck.md b/talawa-api-docs/modules/utilities_imageExtensionCheck.md index 6b4646e1f00..ecd410b680e 100644 --- a/talawa-api-docs/modules/utilities_imageExtensionCheck.md +++ b/talawa-api-docs/modules/utilities_imageExtensionCheck.md @@ -30,4 +30,4 @@ then the file is deleted and a validation error is thrown. #### Defined in -[src/utilities/imageExtensionCheck.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/imageExtensionCheck.ts#L10) +[src/utilities/imageExtensionCheck.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/imageExtensionCheck.ts#L10) diff --git a/talawa-api-docs/modules/utilities_mailer.md b/talawa-api-docs/modules/utilities_mailer.md index dca20f8e0ea..9d0fc8715cc 100644 --- a/talawa-api-docs/modules/utilities_mailer.md +++ b/talawa-api-docs/modules/utilities_mailer.md @@ -38,4 +38,4 @@ This is a utility method. #### Defined in -[src/utilities/mailer.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/mailer.ts#L24) +[src/utilities/mailer.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/mailer.ts#L24) diff --git a/talawa-api-docs/modules/utilities_removeSampleOrganizationUtil.md b/talawa-api-docs/modules/utilities_removeSampleOrganizationUtil.md index da8cff98868..ffa9d2e60ff 100644 --- a/talawa-api-docs/modules/utilities_removeSampleOrganizationUtil.md +++ b/talawa-api-docs/modules/utilities_removeSampleOrganizationUtil.md @@ -20,4 +20,4 @@ #### Defined in -[src/utilities/removeSampleOrganizationUtil.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/removeSampleOrganizationUtil.ts#L3) +[src/utilities/removeSampleOrganizationUtil.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/removeSampleOrganizationUtil.ts#L3) diff --git a/talawa-api-docs/modules/utilities_reuploadDuplicateCheck.md b/talawa-api-docs/modules/utilities_reuploadDuplicateCheck.md index 94572fe161a..cc1b769d363 100644 --- a/talawa-api-docs/modules/utilities_reuploadDuplicateCheck.md +++ b/talawa-api-docs/modules/utilities_reuploadDuplicateCheck.md @@ -20,7 +20,7 @@ #### Defined in -[src/utilities/reuploadDuplicateCheck.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/reuploadDuplicateCheck.ts#L15) +[src/utilities/reuploadDuplicateCheck.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/reuploadDuplicateCheck.ts#L15) ## Functions @@ -50,4 +50,4 @@ This is a utility method. #### Defined in -[src/utilities/reuploadDuplicateCheck.ts:42](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/reuploadDuplicateCheck.ts#L42) +[src/utilities/reuploadDuplicateCheck.ts:42](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/reuploadDuplicateCheck.ts#L42) diff --git a/talawa-api-docs/modules/utilities_superAdminCheck.md b/talawa-api-docs/modules/utilities_superAdminCheck.md index e9e25e3d1e6..8cd87747082 100644 --- a/talawa-api-docs/modules/utilities_superAdminCheck.md +++ b/talawa-api-docs/modules/utilities_superAdminCheck.md @@ -26,4 +26,4 @@ #### Defined in -[src/utilities/superAdminCheck.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/superAdminCheck.ts#L5) +[src/utilities/superAdminCheck.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/superAdminCheck.ts#L5) diff --git a/talawa-api-docs/modules/utilities_uploadImage.md b/talawa-api-docs/modules/utilities_uploadImage.md index 905e5bcd8e7..3fd1eaba800 100644 --- a/talawa-api-docs/modules/utilities_uploadImage.md +++ b/talawa-api-docs/modules/utilities_uploadImage.md @@ -35,4 +35,4 @@ This is a utility method. #### Defined in -[src/utilities/uploadImage.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/00da99c/src/utilities/uploadImage.ts#L16) +[src/utilities/uploadImage.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/cf57ca9/src/utilities/uploadImage.ts#L16) diff --git a/tests/helpers/userAndUserFamily.ts b/tests/helpers/userAndUserFamily.ts new file mode 100644 index 00000000000..561f38cf9d2 --- /dev/null +++ b/tests/helpers/userAndUserFamily.ts @@ -0,0 +1,75 @@ +import { nanoid } from "nanoid"; +import type { InterfaceUserFamily } from "../../src/models/userFamily"; +import { User } from "../../src/models"; +import { UserFamily } from "../../src/models/userFamily"; +import type { InterfaceUser } from "../../src/models"; + +import type { Document } from "mongoose"; +/* eslint-disable */ +export type TestUserFamilyType = + | (InterfaceUserFamily & Document) + | null; + +export type TestUserType = + | (InterfaceUser & Document) + | null; +/* eslint-enable */ +export const createTestUserFunc = async (): Promise => { + const testUser = await User.create({ + email: `email${nanoid().toLowerCase()}@gmail.com`, + password: `pass${nanoid().toLowerCase()}`, + firstName: `firstName${nanoid().toLowerCase()}`, + lastName: `lastName${nanoid().toLowerCase()}`, + appLanguageCode: "en", + userType: "SUPERADMIN", + }); + + return testUser; +}; + +export const createTestUserFamilyWithAdmin = async ( + userID: string, + isMember = true, + isAdmin = true +): Promise => { + const testUser = await createTestUserFunc(); + if (testUser) { + const testUserFamily = await UserFamily.create({ + title: `name${nanoid().toLocaleLowerCase()}`, + users: isMember ? [testUser._id] : [], + admins: isAdmin ? [testUser._id] : [], + creator: [testUser._id], + }); + + await User.updateOne( + { + _id: userID, + }, + { + $push: { + createdUserFamily: testUserFamily._id, + joinedUserFamily: testUserFamily._id, + adminForUserFamily: testUserFamily._id, + }, + } + ); + + return testUserFamily; + } else { + return null; + } +}; + +export const createTestUserAndUserFamily = async ( + isMember = true, + isAdmin = true +): Promise<[TestUserType, TestUserFamilyType]> => { + const testUser = await createTestUserFunc(); + const testUserFamily = await createTestUserFamilyWithAdmin( + testUser?._id, + isMember, + isAdmin + ); + + return [testUser, testUserFamily]; +}; diff --git a/tests/resolvers/Mutation/addUserToUserFamily.spec.ts b/tests/resolvers/Mutation/addUserToUserFamily.spec.ts new file mode 100644 index 00000000000..663f979ac6d --- /dev/null +++ b/tests/resolvers/Mutation/addUserToUserFamily.spec.ts @@ -0,0 +1,154 @@ +import "dotenv/config"; +import type mongoose from "mongoose"; +import { Types } from "mongoose"; +import { UserFamily } from "../../../src/models/userFamily"; +import type { MutationAddUserToUserFamilyArgs } from "../../../src/types/generatedGraphQLTypes"; +import { connect, disconnect } from "../../helpers/db"; + +import { + USER_ALREADY_MEMBER_ERROR, + USER_NOT_FOUND_ERROR, + USER_FAMILY_NOT_FOUND_ERROR, +} from "../../../src/constants"; +import { beforeAll, afterAll, describe, it, expect, vi } from "vitest"; +import type { + TestUserType, + TestUserFamilyType, +} from "../../helpers/userAndUserFamily"; + +import { createTestUserAndUserFamily } from "../../helpers/userAndUserFamily"; + +let testUser: TestUserType; +let testUserFamily: TestUserFamilyType; +let MONGOOSE_INSTANCE: typeof mongoose; + +beforeAll(async () => { + MONGOOSE_INSTANCE = await connect(); + const resultsArray = await createTestUserAndUserFamily(); + testUser = resultsArray[0]; + testUserFamily = resultsArray[1]; +}); + +afterAll(async () => { + await disconnect(MONGOOSE_INSTANCE); +}); + +describe("resolver -> mutation -> addUserToUserFamily", () => { + afterAll(() => { + vi.doUnmock("../../../src/constants"); + vi.resetModules(); + }); + + it(`throws NotFoundError if no user Family exists with _id === args.familyId`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => message); + try { + const args: MutationAddUserToUserFamilyArgs = { + familyId: Types.ObjectId().toString(), + userId: testUser?.id, + }; + + const context = { + userId: testUser?.id, + }; + + const { addUserToUserFamily } = await import( + "../../../src/resolvers/Mutation/addUserToUserFamily" + ); + await addUserToUserFamily?.({}, args, context); + } catch (error) { + expect(spy).toBeCalledWith(USER_FAMILY_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `${USER_FAMILY_NOT_FOUND_ERROR.MESSAGE}` + ); + } + }); + + it(`throws NotFoundError if no user exists with _id === args.userId`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => message); + try { + const args: MutationAddUserToUserFamilyArgs = { + familyId: testUserFamily?._id, + userId: Types.ObjectId().toString(), + }; + + const context = { + userId: testUser?._id, + }; + + const { addUserToUserFamily } = await import( + "../../../src/resolvers/Mutation/addUserToUserFamily" + ); + await addUserToUserFamily?.({}, args, context); + } catch (error) { + expect(spy).toBeCalledWith(USER_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual(USER_NOT_FOUND_ERROR.MESSAGE); + } + }); + + it(`throws ConflictError if user with _id === args.userId is already a member + of user family group with _id === args.familyId`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => message); + try { + const args: MutationAddUserToUserFamilyArgs = { + familyId: testUserFamily?._id, + userId: testUser?.id, + }; + + const context = { + userId: testUser?._id, + }; + + const { addUserToUserFamily } = await import( + "../../../src/resolvers/Mutation/addUserToUserFamily" + ); + await addUserToUserFamily?.({}, args, context); + } catch (error) { + expect(spy).toBeCalledWith(USER_ALREADY_MEMBER_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + USER_ALREADY_MEMBER_ERROR.MESSAGE + ); + } + }); + + it(`add the user family with _id === args.familyId and returns it`, async () => { + await UserFamily.updateOne( + { + _id: testUserFamily?._id, + }, + { + $set: { + users: [], + }, + } + ); + + const args: MutationAddUserToUserFamilyArgs = { + familyId: testUserFamily?.id, + userId: testUser?.id, + }; + + const context = { + userId: testUser?.id, + }; + + const { addUserToUserFamily } = await import( + "../../../src/resolvers/Mutation/addUserToUserFamily" + ); + const addUserToUserFamilyPayload = await addUserToUserFamily?.( + {}, + args, + context + ); + expect(addUserToUserFamilyPayload?._id).toEqual(testUserFamily?._id); + expect(addUserToUserFamilyPayload?.users).toEqual([testUser?._id]); + }); +}); diff --git a/tests/resolvers/Mutation/createUserFamily.spec.ts b/tests/resolvers/Mutation/createUserFamily.spec.ts new file mode 100644 index 00000000000..dde3a66dde6 --- /dev/null +++ b/tests/resolvers/Mutation/createUserFamily.spec.ts @@ -0,0 +1,189 @@ +import "dotenv/config"; +import type mongoose from "mongoose"; +import { Types } from "mongoose"; +import type { MutationCreateUserFamilyArgs } from "../../../src/types/generatedGraphQLTypes"; +import { connect, disconnect } from "../../helpers/db"; + +import { + LENGTH_VALIDATION_ERROR, + USER_FAMILY_MIN_MEMBERS_ERROR_CODE, + USER_NOT_AUTHORIZED_SUPERADMIN, + USER_NOT_FOUND_ERROR, +} from "../../../src/constants"; +import { beforeAll, afterAll, describe, it, expect, vi } from "vitest"; +import type { TestUserType } from "../../helpers/userAndUserFamily"; +import { createTestUserFunc } from "../../helpers/userAndUserFamily"; +import { createTestUserFunc as createTestUser } from "../../helpers/user"; + +let testUser: TestUserType; +let testUser2: TestUserType; +let MONGOOSE_INSTANCE: typeof mongoose; + +beforeAll(async () => { + MONGOOSE_INSTANCE = await connect(); + const resultsArray = await createTestUserFunc(); + const secondUser = await createTestUser(); + + testUser = resultsArray; + testUser2 = secondUser; +}); + +afterAll(async () => { + await disconnect(MONGOOSE_INSTANCE); +}); + +describe("resolvers -> Mutation -> createUserFamily", () => { + it(`throws NotFoundError if no user exists with _id === context.userId`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); + + try { + const args: MutationCreateUserFamilyArgs = { + data: { + title: "title", + userIds: [testUser?._id, testUser2?._id], + }, + }; + + const context = { + userId: Types.ObjectId().toString(), + }; + + const { createUserFamily: createUserFamilyResolver } = await import( + "../../../src/resolvers/Mutation/createUserFamily" + ); + + await createUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toHaveBeenCalledWith(USER_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `Translated ${USER_NOT_FOUND_ERROR.MESSAGE}` + ); + } + }); + + it(`throws Not Authorized error if user is not a super admin`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => message); + try { + const args: MutationCreateUserFamilyArgs = { + data: { + title: "title", + userIds: [testUser?._id, testUser2?._id], + }, + }; + + const context = { + userId: testUser2?._id, + }; + + const { createUserFamily: createUserFamilyResolver } = await import( + "../../../src/resolvers/Mutation/createUserFamily" + ); + + await createUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toHaveBeenCalledWith(USER_NOT_AUTHORIZED_SUPERADMIN.MESSAGE); + expect((error as Error).message).toEqual( + `${USER_NOT_AUTHORIZED_SUPERADMIN.MESSAGE}` + ); + } + }); + + it(`throws String Length Validation error if name is greater than 256 characters`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => message); + try { + const args: MutationCreateUserFamilyArgs = { + data: { + title: + "JWQPfpdkGGGKyryb86K4YN85nDj4m4F7gEAMBbMXLax73pn2okV6kpWY0EYO0XSlUc0fAlp45UCgg3s6mqsRYF9FOlzNIDFLZ1rd03Z17cdJRuvBcAmbC0imyqGdXHGDUQmVyOjDkaOLAvjhB5uDeuEqajcAPTcKpZ6LMpigXuqRAd0xGdPNXyITC03FEeKZAjjJL35cSIUeMv5eWmiFlmmm70FU1Bp6575zzBtEdyWPLflcA2GpGmmf4zvT7nfgN3NIkwQIhk9OwP8dn75YYczcYuUzLpxBu1Lyog77YlAj5DNdTIveXu9zHeC6V4EEUcPQtf1622mhdU3jZNMIAyxcAG4ErtztYYRqFs0ApUxXiQI38rmiaLcicYQgcOxpmFvqRGiSduiCprCYm90CHWbQFq4w2uhr8HhR3r9HYMIYtrRyO6C3rPXaQ7otpjuNgE0AKI57AZ4nGG1lvNwptFCY60JEndSLX9Za6XP1zkVRLaMZArQNl", + userIds: [testUser?._id, testUser2?._id], + }, + }; + const context = { + userId: testUser?._id, + }; + + const { createUserFamily: createUserFamilyResolver } = await import( + "../../../src/resolvers/Mutation/createUserFamily" + ); + + await createUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toHaveBeenCalledWith( + `${LENGTH_VALIDATION_ERROR.MESSAGE} 256 characters in name` + ); + expect((error as Error).message).toEqual( + `${LENGTH_VALIDATION_ERROR.MESSAGE} 256 characters in name` + ); + } + }); + + it(`throws InputValidationError if userIds array has fewer than 2 members`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => message); + try { + const args: MutationCreateUserFamilyArgs = { + data: { + title: "title", + userIds: [testUser?._id], + }, + }; + + const context = { + userId: testUser?.id, + }; + + const { createUserFamily: createUserFamilyResolver } = await import( + "../../../src/resolvers/Mutation/createUserFamily" + ); + + await createUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toHaveBeenCalledWith( + USER_FAMILY_MIN_MEMBERS_ERROR_CODE.MESSAGE + ); + expect((error as Error).message).toEqual( + `${USER_FAMILY_MIN_MEMBERS_ERROR_CODE.MESSAGE}` + ); + } + }); + + it(`creates the user Family and returns it`, async () => { + const args: MutationCreateUserFamilyArgs = { + data: { + title: "title", + userIds: [testUser2?._id, testUser?._id], + }, + }; + + const context = { + userId: testUser?.id, + }; + + const { createUserFamily: createUserFamilyResolver } = await import( + "../../../src/resolvers/Mutation/createUserFamily" + ); + + const createUserFamilyPayload = await createUserFamilyResolver?.( + {}, + args, + context + ); + + expect(createUserFamilyPayload).toEqual( + expect.objectContaining({ + title: "title", + }) + ); + }); +}); diff --git a/tests/resolvers/Mutation/removeUserFamily.spec.ts b/tests/resolvers/Mutation/removeUserFamily.spec.ts new file mode 100644 index 00000000000..c2fbf8cfcd7 --- /dev/null +++ b/tests/resolvers/Mutation/removeUserFamily.spec.ts @@ -0,0 +1,139 @@ +import "dotenv/config"; +import type mongoose from "mongoose"; +import { Types } from "mongoose"; +import { UserFamily } from "../../../src/models/userFamily"; +import type { MutationRemoveUserFamilyArgs } from "../../../src/types/generatedGraphQLTypes"; +import { connect, disconnect } from "../../helpers/db"; + +import { + USER_FAMILY_NOT_FOUND_ERROR, + USER_NOT_FOUND_ERROR, +} from "../../../src/constants"; +import { + beforeAll, + afterAll, + describe, + it, + expect, + afterEach, + vi, +} from "vitest"; +import { createTestUserFunc } from "../../helpers/userAndUserFamily"; +import type { + TestUserFamilyType, + TestUserType, +} from "../../helpers/userAndUserFamily"; + +let MONGOOSE_INSTANCE: typeof mongoose; +let testUsers: TestUserType[]; +let testUserFamily: TestUserFamilyType; + +beforeAll(async () => { + MONGOOSE_INSTANCE = await connect(); + const tempUser1 = await createTestUserFunc(); + const tempUser2 = await createTestUserFunc(); + testUsers = [tempUser1, tempUser2]; + + testUserFamily = await UserFamily.create({ + title: "Family", + admins: [tempUser1, tempUser2], + creator: tempUser1, + users: [tempUser1, tempUser2], + }); +}); + +afterAll(async () => { + await disconnect(MONGOOSE_INSTANCE); +}); + +describe("resolvers -> Mutation -> removeUserFamily", () => { + afterEach(() => { + vi.resetAllMocks(); + vi.doMock("../../src/constants"); + vi.resetModules(); + }); + + it(`throws NotFoundError if no user exists with _id === context.userId`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); + + try { + const args: MutationRemoveUserFamilyArgs = { + familyId: testUserFamily?._id, + }; + + const context = { + userId: Types.ObjectId().toString(), + }; + + const { removeUserFamily: removeUserFamilyResolver } = await import( + "../../../src/resolvers/Mutation/removeUserFamily" + ); + + await removeUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toHaveBeenCalledWith(USER_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `Translated ${USER_NOT_FOUND_ERROR.MESSAGE}` + ); + } + }); + + it(`throws NotFoundError if no user family exists with _id === args.familyId`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); + + try { + const args: MutationRemoveUserFamilyArgs = { + familyId: testUserFamily?._id, + }; + + const context = { + userId: testUsers[1]?._id, + }; + + const { removeUserFamily: removeUserFamilyResolver } = await import( + "../../../src/resolvers/Mutation/removeUserFamily" + ); + + await removeUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toHaveBeenCalledWith(USER_FAMILY_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `Translated ${USER_FAMILY_NOT_FOUND_ERROR.MESSAGE}` + ); + } + }); + + it(`throws User is not SUPERADMIN error if current user is with _id === context.userId is not a SUPERADMIN`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => message); + + try { + const args: MutationRemoveUserFamilyArgs = { + familyId: testUserFamily?.id, + }; + + const context = { + userId: testUsers[0]?.id, + }; + + const { removeUserFamily: removeUserFamilyResolver } = await import( + "../../../src/resolvers/Mutation/removeUserFamily" + ); + + await removeUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toHaveBeenCalledWith(USER_FAMILY_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `${USER_FAMILY_NOT_FOUND_ERROR.MESSAGE}` + ); + } + }); +}); diff --git a/tests/resolvers/Mutation/removeUserFromUserFamily.spec.ts b/tests/resolvers/Mutation/removeUserFromUserFamily.spec.ts new file mode 100644 index 00000000000..6baecbe8718 --- /dev/null +++ b/tests/resolvers/Mutation/removeUserFromUserFamily.spec.ts @@ -0,0 +1,289 @@ +import "dotenv/config"; +import type mongoose from "mongoose"; +import { Types } from "mongoose"; +import { UserFamily } from "../../../src/models/userFamily"; +import type { MutationRemoveUserFromUserFamilyArgs } from "../../../src/types/generatedGraphQLTypes"; +import { connect, disconnect } from "../../helpers/db"; + +import { + ADMIN_REMOVING_CREATOR, + USER_FAMILY_NOT_FOUND_ERROR, + USER_NOT_FOUND_ERROR, + USER_REMOVING_SELF, +} from "../../../src/constants"; +import { beforeAll, afterAll, describe, it, expect, vi } from "vitest"; +import { createTestUserFunc } from "../../helpers/userAndUserFamily"; +import type { + TestUserFamilyType, + TestUserType, +} from "../../helpers/userAndUserFamily"; + +let MONGOOSE_INSTANCE: typeof mongoose; +let testUsers: TestUserType[]; +let testUserFamily: TestUserFamilyType; + +beforeAll(async () => { + MONGOOSE_INSTANCE = await connect(); + const tempUser1 = await createTestUserFunc(); + const tempUser2 = await createTestUserFunc(); + const tempUser3 = await createTestUserFunc(); + const tempUser4 = await createTestUserFunc(); + const tempUser5 = await createTestUserFunc(); + testUsers = [tempUser1, tempUser2, tempUser3, tempUser4, tempUser5]; + testUserFamily = await UserFamily.create({ + title: "title", + users: [ + testUsers[0]?._id, + testUsers[1]?._id, + testUsers[2]?._id, + testUsers[4]?._id, + ], + admins: [testUsers[2]?._id, testUsers[1]?._id], + creator: testUsers[2]?._id, + }); +}); + +afterAll(async () => { + await disconnect(MONGOOSE_INSTANCE); +}); + +describe("resolver -> Mutation -> removerUserFromUserFamily", () => { + it("should throw user not found error when user with _id === args.userId does not exist", async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); + try { + const args: MutationRemoveUserFromUserFamilyArgs = { + familyId: testUserFamily?.id, + userId: testUsers[4]?._id, + }; + + const context = { + userId: testUsers[1]?.id, + }; + + const { removeUserFromUserFamily: removeUserFromUserFamilyResolver } = + await import( + "../../../src/resolvers/Mutation/removeUserFromUserFamily" + ); + + await removeUserFromUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toHaveBeenCalledWith(USER_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `Translated ${USER_NOT_FOUND_ERROR.MESSAGE}` + ); + } + }); + + it(`throws NotFoundError if no user family exists with _id === args.familyId`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementationOnce((message) => message); + try { + const args: MutationRemoveUserFromUserFamilyArgs = { + familyId: Types.ObjectId().toString(), + userId: testUsers[4]?._id, + }; + + const context = { + userId: testUsers[0]?._id, + }; + + const { removeUserFromUserFamily: removeUserFromUserFamilyResolver } = + await import( + "../../../src/resolvers/Mutation/removeUserFromUserFamily" + ); + + await removeUserFromUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toBeCalledWith(USER_FAMILY_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `${USER_FAMILY_NOT_FOUND_ERROR.MESSAGE}` + ); + } + }); + + it(`throws UnauthorizedError if users field of user family with _id === args.familyId + does not contain user with _id === args.userId`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementationOnce((message) => message); + try { + const args: MutationRemoveUserFromUserFamilyArgs = { + familyId: testUserFamily?.id, + userId: testUsers[3]?._id, + }; + + const context = { + userId: testUsers[2]?.id, + }; + + const { removeUserFromUserFamily: removeUserFromUserFamilyResolver } = + await import( + "../../../src/resolvers/Mutation/removeUserFromUserFamily" + ); + + await removeUserFromUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toBeCalledWith(USER_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `${USER_NOT_FOUND_ERROR.MESSAGE}` + ); + } + }); + + it("should throw member not found error when user with _id === args.data.userId does not exist in the user Family", async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); + try { + const args: MutationRemoveUserFromUserFamilyArgs = { + familyId: testUserFamily?.id, + userId: testUsers[3]?._id, + }; + + const context = { + userId: testUsers[2]?.id, + }; + + const { removeUserFromUserFamily: removeUserFromUserFamilyResolver } = + await import( + "../../../src/resolvers/Mutation/removeUserFromUserFamily" + ); + + await removeUserFromUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toHaveBeenCalledWith(USER_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `Translated ${USER_NOT_FOUND_ERROR.MESSAGE}` + ); + } + }); + + it("should throw admin cannot remove self error when user with _id === args.data.userId === context.userId", async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); + try { + const args: MutationRemoveUserFromUserFamilyArgs = { + familyId: testUserFamily?.id, + userId: testUsers[2]?._id, + }; + + const context = { + userId: testUsers[2]?.id, + }; + + const { removeUserFromUserFamily: removeUserFromUserFamilyResolver } = + await import( + "../../../src/resolvers/Mutation/removeUserFromUserFamily" + ); + + await removeUserFromUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toHaveBeenCalledWith(USER_REMOVING_SELF.MESSAGE); + expect((error as Error).message).toEqual( + `Translated ${USER_REMOVING_SELF.MESSAGE}` + ); + } + }); + + it("should throw admin cannot remove another admin error when user with _id === args.data.userId is also an admin in the user Family", async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); + try { + const args: MutationRemoveUserFromUserFamilyArgs = { + familyId: testUserFamily?.id, + userId: testUsers[1]?._id, + }; + + const context = { + userId: testUsers[2]?.id, + }; + + const { removeUserFromUserFamily: removeUserFromUserFamilyResolver } = + await import( + "../../../src/resolvers/Mutation/removeUserFromUserFamily" + ); + + await removeUserFromUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toHaveBeenCalledWith(USER_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `Translated ${USER_NOT_FOUND_ERROR.MESSAGE}` + ); + } + }); + + it("should throw admin cannot remove creator error when user with _id === args.data.userId is the user Family creator in the user Family", async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); + try { + const args: MutationRemoveUserFromUserFamilyArgs = { + familyId: testUserFamily?.id, + userId: testUsers[2]?._id, + }; + + const context = { + userId: testUsers[1]?.id, + }; + + const { removeUserFromUserFamily: removeUserFromUserFamilyResolver } = + await import( + "../../../src/resolvers/Mutation/removeUserFromUserFamily" + ); + + await removeUserFromUserFamilyResolver?.({}, args, context); + } catch (error) { + expect(spy).toHaveBeenCalledWith(ADMIN_REMOVING_CREATOR.MESSAGE); + expect((error as Error).message).toEqual( + `Translated ${ADMIN_REMOVING_CREATOR.MESSAGE}` + ); + } + }); + + it("remove that user with _id === args.data.userId from that user Family", async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); + try { + const args: MutationRemoveUserFromUserFamilyArgs = { + familyId: testUserFamily?.id, + userId: testUsers[4]?._id, + }; + + const context = { + userId: testUsers[2]?.id, + }; + + const { removeUserFromUserFamily: removeUserFromUserFamilyResolver } = + await import( + "../../../src/resolvers/Mutation/removeUserFromUserFamily" + ); + + const updatedUserFamily = await removeUserFromUserFamilyResolver?.( + {}, + args, + context + ); + + expect(updatedUserFamily?.users).not.toContain(testUsers[4]?._id); + } catch (error) { + expect(spy).toHaveBeenCalledWith(USER_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `Translated ${USER_NOT_FOUND_ERROR.MESSAGE}` + ); + } + }); +}); diff --git a/tests/resolvers/UserFamily/admins.spec.ts b/tests/resolvers/UserFamily/admins.spec.ts new file mode 100644 index 00000000000..9e4e92372d1 --- /dev/null +++ b/tests/resolvers/UserFamily/admins.spec.ts @@ -0,0 +1,39 @@ +import "dotenv/config"; +import { admins as usersResolver } from "../../../src/resolvers/UserFamily/admins"; +import { connect, disconnect } from "../../helpers/db"; +import type mongoose from "mongoose"; +import { User } from "../../../src/models"; +import { beforeAll, afterAll, describe, it, expect } from "vitest"; +import type { TestUserFamilyType } from "../../helpers/userAndUserFamily"; +import { createTestUserAndUserFamily } from "../../helpers/userAndUserFamily"; + +let testUserFamily: TestUserFamilyType; +let MONGOOSE_INSTANCE: typeof mongoose; + +beforeAll(async () => { + MONGOOSE_INSTANCE = await connect(); + const resultArray = await createTestUserAndUserFamily(); + testUserFamily = resultArray[1]; +}); + +afterAll(async () => { + await disconnect(MONGOOSE_INSTANCE); +}); + +describe("resolvers -> UserFamily -> admins", () => { + it(`returns user objects for parent.admins`, async () => { + if (testUserFamily) { + const parent = testUserFamily.toObject(); + + const usersPayload = await usersResolver?.(parent, {}, {}); + + const users = await User.find({ + _id: { + $in: testUserFamily?.admins, + }, + }).lean(); + + expect(usersPayload).toEqual(users); + } + }); +}); diff --git a/tests/resolvers/UserFamily/creator.spec.ts b/tests/resolvers/UserFamily/creator.spec.ts new file mode 100644 index 00000000000..c9cb6f349d9 --- /dev/null +++ b/tests/resolvers/UserFamily/creator.spec.ts @@ -0,0 +1,111 @@ +import "dotenv/config"; +import { connect, disconnect } from "../../helpers/db"; +import type mongoose from "mongoose"; +import { Types } from "mongoose"; +import { User } from "../../../src/models"; +import { UserFamily } from "../../../src/models/userFamily"; + +import { USER_NOT_FOUND_ERROR } from "../../../src/constants"; +import { + beforeAll, + afterAll, + describe, + it, + expect, + afterEach, + vi, +} from "vitest"; +import type { + TestUserType, + TestUserFamilyType, +} from "../../helpers/userAndUserFamily"; +import { createTestUserAndUserFamily } from "../../helpers/userAndUserFamily"; + +let MONGOOSE_INSTANCE: typeof mongoose; +let testUser: TestUserType; +let testUserFamily: TestUserFamilyType; + +beforeAll(async () => { + MONGOOSE_INSTANCE = await connect(); + const userAndUserFamily = await createTestUserAndUserFamily(); + testUser = userAndUserFamily[0]; + testUserFamily = userAndUserFamily[1]; +}); + +afterAll(async () => { + await disconnect(MONGOOSE_INSTANCE); +}); + +describe("resolvers -> UserFamily -> creator", () => { + afterEach(() => { + vi.doUnmock("../../../src/constants"); + vi.resetModules(); + }); + + it(`throws NotFoundError if no user exists with _id === parent.creator`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); + + try { + testUserFamily = await UserFamily.findOneAndUpdate( + { + _id: testUserFamily?._id, + }, + { + $set: { + creator: Types.ObjectId().toString(), + }, + }, + { + new: true, + } + ); + + const parent = testUserFamily?.toObject(); + + const { creator: creatorResolver } = await import( + "../../../src/resolvers/UserFamily/creator" + ); + if (parent) { + await creatorResolver?.(parent, {}, {}); + } + } catch (error) { + expect(spy).toHaveBeenCalledWith(USER_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `Translated ${USER_NOT_FOUND_ERROR.MESSAGE}` + ); + } + }); + + it(`returns user object for parent.creator`, async () => { + testUserFamily = await UserFamily.findOneAndUpdate( + { + _id: testUserFamily?._id, + }, + { + $set: { + creator: testUser?._id, + }, + }, + { + new: true, + } + ); + + const parent = testUserFamily?.toObject(); + + const { creator: creatorResolver } = await import( + "../../../src/resolvers/UserFamily/creator" + ); + if (parent) { + const creatorPayload = await creatorResolver?.(parent, {}, {}); + const creator = await User.findOne({ + _id: testUserFamily?.creator.toString(), + }).lean(); + + expect(creatorPayload).toEqual(creator); + } + }); +}); diff --git a/tests/resolvers/UserFamily/users.spec.ts b/tests/resolvers/UserFamily/users.spec.ts new file mode 100644 index 00000000000..2654812cf85 --- /dev/null +++ b/tests/resolvers/UserFamily/users.spec.ts @@ -0,0 +1,39 @@ +import "dotenv/config"; +import { users as usersResolver } from "../../../src/resolvers/UserFamily/users"; +import { connect, disconnect } from "../../helpers/db"; +import type mongoose from "mongoose"; +import { User } from "../../../src/models"; +import { beforeAll, afterAll, describe, it, expect } from "vitest"; +import type { TestUserFamilyType } from "../../helpers/userAndUserFamily"; +import { createTestUserAndUserFamily } from "../../helpers/userAndUserFamily"; + +let testUserFamily: TestUserFamilyType; +let MONGOOSE_INSTANCE: typeof mongoose; + +beforeAll(async () => { + MONGOOSE_INSTANCE = await connect(); + const resultArray = await createTestUserAndUserFamily(); + testUserFamily = resultArray[1]; +}); + +afterAll(async () => { + await disconnect(MONGOOSE_INSTANCE); +}); + +describe("resolvers -> UserFamily -> users", () => { + it(`returns user objects for parent.users`, async () => { + if (testUserFamily) { + const parent = testUserFamily.toObject(); + + const usersPayload = await usersResolver?.(parent, {}, {}); + + const users = await User.find({ + _id: { + $in: testUserFamily?.users, + }, + }).lean(); + + expect(usersPayload).toEqual(users); + } + }); +}); diff --git a/tests/utilities/userFamilyAdminCheck.spec.ts b/tests/utilities/userFamilyAdminCheck.spec.ts new file mode 100644 index 00000000000..fa7d3c45a82 --- /dev/null +++ b/tests/utilities/userFamilyAdminCheck.spec.ts @@ -0,0 +1,155 @@ +import "dotenv/config"; +import { + afterAll, + afterEach, + beforeAll, + describe, + expect, + it, + vi, +} from "vitest"; +import { connect, disconnect } from "../helpers/db"; +import { USER_NOT_AUTHORIZED_ADMIN } from "../../src/constants"; +import type { + TestUserFamilyType, + TestUserType, +} from "../helpers/userAndUserFamily"; +import { createTestUserAndUserFamily } from "../helpers/userAndUserFamily"; +import { createTestUserFunc } from "../helpers/user"; +import mongoose from "mongoose"; +import type { InterfaceUserFamily } from "../../src/models/userFamily"; +import { User } from "../../src/models"; +import { UserFamily } from "../../src/models/userFamily"; + +let testUser: TestUserType; +let testUserFamily: TestUserFamilyType; +let MONGOOSE_INSTANCE: typeof mongoose; + +beforeAll(async () => { + MONGOOSE_INSTANCE = await connect(); + const userAndUserFamily = await createTestUserAndUserFamily(false, false); + testUser = await createTestUserFunc(); + testUserFamily = userAndUserFamily[1]; +}); + +afterAll(async () => { + await disconnect(MONGOOSE_INSTANCE); +}); + +describe("utilities -> userFamilyAdminCheck", () => { + afterEach(() => { + vi.resetModules(); + }); + + it("throws error if userIsUserFamilyAdmin === false and isUserSuperAdmin === false", async () => { + const { requestContext } = await import("../../src/libraries"); + + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementationOnce((message) => `Translated ${message}`); + + try { + const { adminCheck } = await import( + "../../src/utilities/userFamilyAdminCheck" + ); + await adminCheck( + testUser?._id, + testUserFamily ?? ({} as InterfaceUserFamily) + ); + } catch (error) { + expect((error as Error).message).toEqual( + `Translated ${USER_NOT_AUTHORIZED_ADMIN.MESSAGE}` + ); + } + expect(spy).toBeCalledWith(USER_NOT_AUTHORIZED_ADMIN.MESSAGE); + }); + + it("throws no error if userIsUserFamilyAdmin === false and isUserSuperAdmin === true", async () => { + const updatedUser = await User.findOneAndUpdate( + { + _id: testUser?._id, + }, + { + userType: "SUPERADMIN", + }, + { + new: true, + upsert: true, + } + ); + + const { adminCheck } = await import( + "../../src/utilities/userFamilyAdminCheck" + ); + + await expect( + adminCheck( + updatedUser?._id, + testUserFamily ?? ({} as InterfaceUserFamily) + ) + ).resolves.not.toThrowError(); + }); + + it("throws no error if user is an admin in that user family but not super admin", async () => { + const updatedUser = await User.findOneAndUpdate( + { + _id: testUser?._id, + }, + { + userType: "USER", + }, + { + new: true, + upsert: true, + } + ); + + const updatedUserFamily = await UserFamily.findOneAndUpdate( + { + _id: testUserFamily?._id, + }, + { + $push: { + admins: testUser?._id, + }, + }, + { + new: true, + upsert: true, + } + ); + + const { adminCheck } = await import( + "../../src/utilities/userFamilyAdminCheck" + ); + + await expect( + adminCheck( + updatedUser?._id, + updatedUserFamily ?? ({} as InterfaceUserFamily) + ) + ).resolves.not.toThrowError(); + }); + it("throws error if user is not found with the specific Id", async () => { + const { requestContext } = await import("../../src/libraries"); + + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementationOnce((message) => `Translated ${message}`); + + try { + const { adminCheck } = await import( + "../../src/utilities/userFamilyAdminCheck" + ); + await adminCheck( + new mongoose.Types.ObjectId(), + testUserFamily ?? ({} as InterfaceUserFamily) + ); + } catch (error) { + expect((error as Error).message).toEqual( + `Translated ${USER_NOT_AUTHORIZED_ADMIN.MESSAGE}` + ); + } + expect(spy).toBeCalledWith(USER_NOT_AUTHORIZED_ADMIN.MESSAGE); + }); +});