From ac416c4df0360a6a2191aba13da679c7865e61a8 Mon Sep 17 00:00:00 2001 From: Patel Divyesh Date: Sun, 28 Jan 2024 13:25:50 +0530 Subject: [PATCH 1/2] Deprecated titles for non-pinned posts (#1744) * Deprecated titles for non-pinned posts * Formatted with prettier --- src/constants.ts | 12 ++++ src/resolvers/Mutation/createPost.ts | 15 ++++ src/resolvers/Mutation/togglePostPin.ts | 24 +++++++ src/resolvers/Mutation/updatePost.ts | 15 ++++ src/typeDefs/mutations.ts | 2 +- src/types/generatedGraphQLTypes.ts | 1 + tests/resolvers/Mutation/createPost.spec.ts | 61 ++++++++++++++++ .../resolvers/Mutation/togglePostPin.spec.ts | 54 ++++++++++++++ tests/resolvers/Mutation/updatePost.spec.ts | 71 ++++++++++++++++++- 9 files changed, 251 insertions(+), 4 deletions(-) diff --git a/src/constants.ts b/src/constants.ts index 3231ef9fa2b..1614b31b7e6 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -230,6 +230,18 @@ export const ADMIN_CANNOT_CHANGE_ITS_ROLE = { PARAM: "admin.changeOwnRole", }; +export const POST_NEEDS_TO_BE_PINNED = { + MESSAGE: "Post needs to be pinned inorder to add a title", + CODE: "post.notAllowedToAddTitle", + PARAM: "post.notAllowedToAddTitle", +}; + +export const PLEASE_PROVIDE_TITLE = { + MESSAGE: "Please provide a title to pin post", + CODE: "post.provideTitle", + PARAM: "post.provideTitle", +}; + export const USER_NOT_AUTHORIZED_TO_PIN = { MESSAGE: "The user must be a superadmin or an admin of the organization to pin/unpin posts", diff --git a/src/resolvers/Mutation/createPost.ts b/src/resolvers/Mutation/createPost.ts index 0724804a05c..10f4b782eed 100644 --- a/src/resolvers/Mutation/createPost.ts +++ b/src/resolvers/Mutation/createPost.ts @@ -6,6 +6,8 @@ import { ORGANIZATION_NOT_FOUND_ERROR, USER_NOT_FOUND_ERROR, USER_NOT_AUTHORIZED_TO_PIN, + POST_NEEDS_TO_BE_PINNED, + PLEASE_PROVIDE_TITLE, } from "../../constants"; import { isValidString } from "../../libraries/validators/validateString"; import { uploadEncodedImage } from "../../utilities/encodedImageStorage/uploadEncodedImage"; @@ -81,6 +83,19 @@ export const createPost: MutationResolvers["createPost"] = async ( } } + // Check title and pinpost + if (args.data?.title && !args.data.pinned) { + throw new errors.InputValidationError( + requestContext.translate(POST_NEEDS_TO_BE_PINNED.MESSAGE), + POST_NEEDS_TO_BE_PINNED.CODE + ); + } else if (!args.data?.title && args.data.pinned) { + throw new errors.InputValidationError( + requestContext.translate(PLEASE_PROVIDE_TITLE.MESSAGE), + PLEASE_PROVIDE_TITLE.CODE + ); + } + // Checks if the recieved arguments are valid according to standard input norms if (args.data?.title && args.data?.text) { const validationResultTitle = isValidString(args.data?.title, 256); diff --git a/src/resolvers/Mutation/togglePostPin.ts b/src/resolvers/Mutation/togglePostPin.ts index 7c132dfef10..ebd55e4ee5f 100644 --- a/src/resolvers/Mutation/togglePostPin.ts +++ b/src/resolvers/Mutation/togglePostPin.ts @@ -2,6 +2,8 @@ import { POST_NOT_FOUND_ERROR, USER_NOT_FOUND_ERROR, USER_NOT_AUTHORIZED_TO_PIN, + PLEASE_PROVIDE_TITLE, + LENGTH_VALIDATION_ERROR, } from "../../constants"; import type { MutationResolvers } from "../../types/generatedGraphQLTypes"; import { errors, requestContext } from "../../libraries"; @@ -12,6 +14,7 @@ import { findOrganizationsInCache } from "../../services/OrganizationCache/findO import { Types } from "mongoose"; import { findPostsInCache } from "../../services/PostCache/findPostsInCache"; import { cachePosts } from "../../services/PostCache/cachePosts"; +import { isValidString } from "../../libraries/validators/validateString"; export const togglePostPin: MutationResolvers["togglePostPin"] = async ( _parent, @@ -118,6 +121,7 @@ export const togglePostPin: MutationResolvers["togglePostPin"] = async ( { $set: { pinned: false, + title: "", }, } ).lean(); @@ -128,6 +132,25 @@ export const togglePostPin: MutationResolvers["togglePostPin"] = async ( return updatedPost!; } else { + if (!args.title) { + throw new errors.InputValidationError( + requestContext.translate(PLEASE_PROVIDE_TITLE.MESSAGE), + PLEASE_PROVIDE_TITLE.CODE + ); + } + + if (args?.title) { + const validationResultTitle = isValidString(args?.title, 256); + if (!validationResultTitle.isLessThanMaxLength) { + throw new errors.InputValidationError( + requestContext.translate( + `${LENGTH_VALIDATION_ERROR.MESSAGE} 256 characters in title` + ), + LENGTH_VALIDATION_ERROR.CODE + ); + } + } + const updatedOrganization = await Organization.findOneAndUpdate( { _id: post.organization, @@ -152,6 +175,7 @@ export const togglePostPin: MutationResolvers["togglePostPin"] = async ( { $set: { pinned: true, + title: args?.title, }, } ).lean(); diff --git a/src/resolvers/Mutation/updatePost.ts b/src/resolvers/Mutation/updatePost.ts index a87ba712d05..6b358993efa 100644 --- a/src/resolvers/Mutation/updatePost.ts +++ b/src/resolvers/Mutation/updatePost.ts @@ -6,6 +6,8 @@ import { USER_NOT_AUTHORIZED_ERROR, POST_NOT_FOUND_ERROR, LENGTH_VALIDATION_ERROR, + POST_NEEDS_TO_BE_PINNED, + PLEASE_PROVIDE_TITLE, } from "../../constants"; import { isValidString } from "../../libraries/validators/validateString"; import { findPostsInCache } from "../../services/PostCache/findPostsInCache"; @@ -67,6 +69,19 @@ export const updatePost: MutationResolvers["updatePost"] = async ( ); } + // Check title and pinpost + if (args.data?.title && !post.pinned) { + throw new errors.InputValidationError( + requestContext.translate(POST_NEEDS_TO_BE_PINNED.MESSAGE), + POST_NEEDS_TO_BE_PINNED.CODE + ); + } else if (!args.data?.title && post.pinned) { + throw new errors.InputValidationError( + requestContext.translate(PLEASE_PROVIDE_TITLE.MESSAGE), + PLEASE_PROVIDE_TITLE.CODE + ); + } + // Checks if the recieved arguments are valid according to standard input norms const validationResultTitle = isValidString(args.data?.title ?? "", 256); const validationResultText = isValidString(args.data?.text ?? "", 500); diff --git a/src/typeDefs/mutations.ts b/src/typeDefs/mutations.ts index 6e3ee8aa5da..5038ba09d2e 100644 --- a/src/typeDefs/mutations.ts +++ b/src/typeDefs/mutations.ts @@ -188,7 +188,7 @@ export const mutations = gql` signUp(data: UserInput!, file: String): AuthData! - togglePostPin(id: ID!): Post! @auth + togglePostPin(id: ID!, title: String): Post! @auth unassignUserTag(input: ToggleUserTagAssignInput!): User @auth diff --git a/src/types/generatedGraphQLTypes.ts b/src/types/generatedGraphQLTypes.ts index 41902b784e9..854a14d5a8a 100644 --- a/src/types/generatedGraphQLTypes.ts +++ b/src/types/generatedGraphQLTypes.ts @@ -979,6 +979,7 @@ export type MutationSignUpArgs = { export type MutationTogglePostPinArgs = { id: Scalars['ID']['input']; + title?: InputMaybe; }; diff --git a/tests/resolvers/Mutation/createPost.spec.ts b/tests/resolvers/Mutation/createPost.spec.ts index 02dbc92193f..c3a69250b4c 100644 --- a/tests/resolvers/Mutation/createPost.spec.ts +++ b/tests/resolvers/Mutation/createPost.spec.ts @@ -210,6 +210,7 @@ describe("resolvers -> Mutation -> createPost", () => { text: "text", videoUrl: "videoUrl", title: "title", + pinned: true, }, }; @@ -277,6 +278,7 @@ describe("resolvers -> Mutation -> createPost", () => { title: "AfGtN9o7IJXH9Xr5P4CcKTWMVWKOOHTldleLrWfZcThgoX5scPE5o0jARvtVA8VhneyxXquyhWb5nluW2jtP0Ry1zIOUFYfJ6BUXvpo4vCw4GVleGBnoKwkFLp5oW9L8OsEIrjVtYBwaOtXZrkTEBySZ1prr0vFcmrSoCqrCTaChNOxL3tDoHK6h44ChFvgmoVYMSq3IzJohKtbBn68D9NfEVMEtoimkGarUnVBAOsGkKv0mIBJaCl2pnR8Xwq1cG1", imageUrl: null, + pinned: true, }, }; @@ -308,6 +310,7 @@ describe("resolvers -> Mutation -> createPost", () => { videoUrl: "", title: "random", imageUrl: null, + pinned: true, }, }; @@ -326,4 +329,62 @@ describe("resolvers -> Mutation -> createPost", () => { ); } }); + + it("throws error if title is provided and post is not pinned", async () => { + const { requestContext } = await import("../../../src/libraries"); + vi.spyOn(requestContext, "translate").mockImplementationOnce( + (message) => message + ); + try { + const args: MutationCreatePostArgs = { + data: { + organizationId: testOrganization?._id, + title: "Test title", + text: "Test text", + pinned: false, + }, + }; + + const context = { + userId: testUser?.id, + }; + + const { createPost: createPostResolver } = await import( + "../../../src/resolvers/Mutation/createPost" + ); + await createPostResolver?.({}, args, context); + } catch (error: any) { + expect(error.message).toEqual( + `Post needs to be pinned inorder to add a title` + ); + } + }); + + it("throws error if title is not provided and post is pinned", async () => { + const { requestContext } = await import("../../../src/libraries"); + vi.spyOn(requestContext, "translate").mockImplementationOnce( + (message) => message + ); + try { + const args: MutationCreatePostArgs = { + data: { + organizationId: testOrganization?._id, + title: "", + text: "Test text", + pinned: true, + }, + }; + + const context = { + userId: testUser?.id, + }; + + const { createPost: createPostResolver } = await import( + "../../../src/resolvers/Mutation/createPost" + ); + await createPostResolver?.({}, args, context); + } catch (error: any) { + expect(error.message).toEqual(`Please provide a title to pin post`); + } + }); }); diff --git a/tests/resolvers/Mutation/togglePostPin.spec.ts b/tests/resolvers/Mutation/togglePostPin.spec.ts index 81f8dc6bffa..7b42435c299 100644 --- a/tests/resolvers/Mutation/togglePostPin.spec.ts +++ b/tests/resolvers/Mutation/togglePostPin.spec.ts @@ -9,6 +9,7 @@ import { POST_NOT_FOUND_ERROR, USER_NOT_FOUND_ERROR, USER_NOT_AUTHORIZED_TO_PIN, + LENGTH_VALIDATION_ERROR, } from "../../../src/constants"; import { beforeAll, @@ -139,6 +140,7 @@ describe("resolvers -> Mutation -> togglePostPin", () => { ); const args: MutationTogglePostPinArgs = { id: testPost?._id, + title: "Test title", }; const context = { @@ -199,4 +201,56 @@ describe("resolvers -> Mutation -> togglePostPin", () => { expect(currentPostIsPinned).toBeFalsy(); expect(updatedPost?.pinned).toBeFalsy(); }); + + it("throws error if title is not provided to pin post", async () => { + const { requestContext } = await import("../../../src/libraries"); + vi.spyOn(requestContext, "translate").mockImplementationOnce( + (message) => message + ); + try { + const args: MutationTogglePostPinArgs = { + id: testPost?._id, + }; + + const context = { + userId: testUser?._id, + }; + + const { togglePostPin: togglePostPinResolver } = await import( + "../../../src/resolvers/Mutation/togglePostPin" + ); + + await togglePostPinResolver?.({}, args, context); + } catch (error: any) { + expect(error.message).toEqual(`Please provide a title to pin post`); + } + }); + + it(`throws String Length Validation error if title is greater than 256 characters`, async () => { + const { requestContext } = await import("../../../src/libraries"); + vi.spyOn(requestContext, "translate").mockImplementationOnce( + (message) => message + ); + try { + const args: MutationTogglePostPinArgs = { + id: testPost?._id, + title: + "AfGtN9o7IJXH9Xr5P4CcKTWMVWKOOHTldleLrWfZcThgoX5scPE5o0jARvtVA8VhneyxXquyhWb5nluW2jtP0Ry1zIOUFYfJ6BUXvpo4vCw4GVleGBnoKwkFLp5oW9L8OsEIrjVtYBwaOtXZrkTEBySZ1prr0vFcmrSoCqrCTaChNOxL3tDoHK6h44ChFvgmoVYMSq3IzJohKtbBn68D9NfEVMEtoimkGarUnVBAOsGkKv0mIBJaCl2pnR8Xwq1cG1", + }; + + const context = { + userId: testUser?._id, + }; + + const { togglePostPin: togglePostPinResolver } = await import( + "../../../src/resolvers/Mutation/togglePostPin" + ); + + await togglePostPinResolver?.({}, args, context); + } catch (error: any) { + expect(error.message).toEqual( + `${LENGTH_VALIDATION_ERROR.MESSAGE} 256 characters in title` + ); + } + }); }); diff --git a/tests/resolvers/Mutation/updatePost.spec.ts b/tests/resolvers/Mutation/updatePost.spec.ts index bb13852369f..828f1d1ad88 100644 --- a/tests/resolvers/Mutation/updatePost.spec.ts +++ b/tests/resolvers/Mutation/updatePost.spec.ts @@ -10,18 +10,26 @@ import { USER_NOT_AUTHORIZED_ERROR, } from "../../../src/constants"; import { beforeEach, afterEach, describe, it, expect, vi } from "vitest"; -import type { TestUserType } from "../../helpers/userAndOrg"; +import type { + TestOrganizationType, + TestUserType, +} from "../../helpers/userAndOrg"; import type { TestPostType } from "../../helpers/posts"; -import { createTestPost } from "../../helpers/posts"; +import { createTestPost, createTestSinglePost } from "../../helpers/posts"; let testUser: TestUserType; let testPost: TestPostType; +let testOrganization: TestOrganizationType; +let testPost2: TestPostType; beforeEach(async () => { await connect(); - const temp = await createTestPost(); + const temp = await createTestPost(true); testUser = temp[0]; + testOrganization = temp[1]; testPost = temp[2]; + testPost2 = await createTestSinglePost(testUser?.id, testOrganization?.id); + const { requestContext } = await import("../../../src/libraries"); vi.spyOn(requestContext, "translate").mockImplementation( (message) => message @@ -199,4 +207,61 @@ describe("resolvers -> Mutation -> updatePost", () => { ); } }); + + it("throws error if title is provided and post is not pinned", async () => { + const { requestContext } = await import("../../../src/libraries"); + vi.spyOn(requestContext, "translate").mockImplementationOnce( + (message) => message + ); + try { + const args: MutationUpdatePostArgs = { + id: testPost2?._id, + data: { + title: "Test title", + text: "Test text", + }, + }; + + const context = { + userId: testUser?.id, + }; + + const { updatePost: updatePostResolver } = await import( + "../../../src/resolvers/Mutation/updatePost" + ); + + await updatePostResolver?.({}, args, context); + } catch (error: any) { + expect(error.message).toEqual( + `Post needs to be pinned inorder to add a title` + ); + } + }); + + it(`throws error if title is not provided and post is pinned`, async () => { + const { requestContext } = await import("../../../src/libraries"); + vi.spyOn(requestContext, "translate").mockImplementationOnce( + (message) => message + ); + try { + const args: MutationUpdatePostArgs = { + id: testPost?._id, + data: { + text: "Testing text", + }, + }; + + const context = { + userId: testUser?.id, + }; + + const { updatePost: updatePostResolver } = await import( + "../../../src/resolvers/Mutation/updatePost" + ); + + await updatePostResolver?.({}, args, context); + } catch (error: any) { + expect(error.message).toEqual(`Please provide a title to pin post`); + } + }); }); From 6eb9bbd95b43fdfe201974ac07118c0236fe32b3 Mon Sep 17 00:00:00 2001 From: palisadoes Date: Sun, 28 Jan 2024 08:02:14 +0000 Subject: [PATCH 2/2] Update documentation --- ...rrors_applicationError.ApplicationError.md | 6 +- ...ries_errors_conflictError.ConflictError.md | 6 +- ...putValidationError.InputValidationError.md | 6 +- ...internalServerError.InternalServerError.md | 6 +- ...validFileTypeError.InvalidFileTypeError.md | 6 +- ...ries_errors_notFoundError.NotFoundError.md | 6 +- ...authenticatedError.UnauthenticatedError.md | 6 +- ...ors_unauthorizedError.UnauthorizedError.md | 6 +- ..._errors_validationError.ValidationError.md | 6 +- .../enums/constants.TransactionLogTypes.md | 6 +- ...ries_dbLogger.InterfaceLoggableDocument.md | 2 +- ...braries_dbLogger.InterfaceLoggableQuery.md | 2 +- ..._errors_applicationError.InterfaceError.md | 8 +- .../middleware_isAuth.InterfaceAuthData.md | 6 +- ...ls_Advertisement.InterfaceAdvertisement.md | 20 +- .../models_CheckIn.InterfaceCheckIn.md | 16 +- .../models_Comment.InterfaceComment.md | 18 +- .../models_DirectChat.InterfaceDirectChat.md | 16 +- ...tChatMessage.InterfaceDirectChatMessage.md | 16 +- .../models_Donation.InterfaceDonation.md | 16 +- ...dels_EncodedImage.InterfaceEncodedImage.md | 8 +- ...dels_EncodedVideo.InterfaceEncodedVideo.md | 8 +- .../interfaces/models_Event.InterfaceEvent.md | 44 +- ...ls_EventAttendee.InterfaceEventAttendee.md | 8 +- .../models_Feedback.InterfaceFeedback.md | 12 +- .../interfaces/models_File.InterfaceFile.md | 18 +- .../interfaces/models_Group.InterfaceGroup.md | 16 +- .../models_GroupChat.InterfaceGroupChat.md | 18 +- ...upChatMessage.InterfaceGroupChatMessage.md | 14 +- .../models_ImageHash.InterfaceImageHash.md | 10 +- .../models_Language.InterfaceLanguage.md | 8 +- .../models_Language.InterfaceLanguageModel.md | 8 +- ...rshipRequest.InterfaceMembershipRequest.md | 8 +- .../models_Message.InterfaceMessage.md | 18 +- ...models_MessageChat.InterfaceMessageChat.md | 14 +- ...dels_Organization.InterfaceOrganization.md | 40 +- ...mField.InterfaceOrganizationCustomField.md | 8 +- ...ionTagUser.InterfaceOrganizationTagUser.md | 8 +- .../models_Plugin.InterfacePlugin.md | 10 +- ...models_PluginField.InterfacePluginField.md | 10 +- .../interfaces/models_Post.InterfacePost.md | 28 +- .../models_SampleData.InterfaceSampleData.md | 4 +- .../models_TagUser.InterfaceTagUser.md | 6 +- .../interfaces/models_User.InterfaceUser.md | 60 +- ..._UserCustomData.InterfaceUserCustomData.md | 8 +- ...s_generatedGraphQLTypes.AnyScalarConfig.md | 2 +- ...tedGraphQLTypes.CountryCodeScalarConfig.md | 2 +- ..._generatedGraphQLTypes.DateScalarConfig.md | 2 +- ...eratedGraphQLTypes.DateTimeScalarConfig.md | 2 +- ...edGraphQLTypes.EmailAddressScalarConfig.md | 2 +- ..._generatedGraphQLTypes.JsonScalarConfig.md | 2 +- ...eratedGraphQLTypes.LatitudeScalarConfig.md | 2 +- ...ratedGraphQLTypes.LongitudeScalarConfig.md | 2 +- ...tedGraphQLTypes.PhoneNumberScalarConfig.md | 2 +- ...tedGraphQLTypes.PositiveIntScalarConfig.md | 2 +- ...GraphQLTypes.SubscriptionResolverObject.md | 4 +- ...aphQLTypes.SubscriptionSubscriberObject.md | 4 +- ..._generatedGraphQLTypes.TimeScalarConfig.md | 2 +- ...eneratedGraphQLTypes.UploadScalarConfig.md | 2 +- ...s_generatedGraphQLTypes.UrlScalarConfig.md | 2 +- ...utilities_auth.InterfaceJwtTokenPayload.md | 10 +- .../utilities_mailer.InterfaceMailFields.md | 6 +- talawa-api-docs/modules/app.md | 4 +- talawa-api-docs/modules/checks.md | 2 +- talawa-api-docs/modules/config_appConfig.md | 2 +- .../modules/config_plugins_loadPlugins.md | 2 +- talawa-api-docs/modules/constants.md | 218 +++--- talawa-api-docs/modules/db.md | 6 +- ...iveTransformer_authDirectiveTransformer.md | 2 +- ...iveTransformer_roleDirectiveTransformer.md | 2 +- talawa-api-docs/modules/env.md | 4 +- .../modules/helpers_eventInstances_once.md | 2 +- .../modules/helpers_eventInstances_weekly.md | 2 +- talawa-api-docs/modules/index.md | 2 +- talawa-api-docs/modules/libraries_dbLogger.md | 6 +- talawa-api-docs/modules/libraries_logger.md | 4 +- .../modules/libraries_requestContext.md | 16 +- .../modules/libraries_requestTracing.md | 12 +- .../libraries_validators_compareDates.md | 2 +- ...aries_validators_validatePaginationArgs.md | 2 +- .../libraries_validators_validateString.md | 2 +- talawa-api-docs/modules/middleware_isAuth.md | 2 +- .../modules/models_Advertisement.md | 2 +- talawa-api-docs/modules/models_CheckIn.md | 2 +- talawa-api-docs/modules/models_Comment.md | 2 +- talawa-api-docs/modules/models_DirectChat.md | 2 +- .../modules/models_DirectChatMessage.md | 2 +- talawa-api-docs/modules/models_Donation.md | 2 +- .../modules/models_EncodedImage.md | 2 +- .../modules/models_EncodedVideo.md | 2 +- talawa-api-docs/modules/models_Event.md | 2 +- .../modules/models_EventAttendee.md | 2 +- talawa-api-docs/modules/models_Feedback.md | 2 +- talawa-api-docs/modules/models_File.md | 2 +- talawa-api-docs/modules/models_Group.md | 2 +- talawa-api-docs/modules/models_GroupChat.md | 2 +- .../modules/models_GroupChatMessage.md | 2 +- talawa-api-docs/modules/models_ImageHash.md | 2 +- talawa-api-docs/modules/models_Language.md | 2 +- .../modules/models_MembershipRequest.md | 2 +- talawa-api-docs/modules/models_Message.md | 2 +- talawa-api-docs/modules/models_MessageChat.md | 2 +- .../modules/models_Organization.md | 2 +- .../modules/models_OrganizationCustomField.md | 2 +- .../modules/models_OrganizationTagUser.md | 2 +- talawa-api-docs/modules/models_Plugin.md | 2 +- talawa-api-docs/modules/models_PluginField.md | 2 +- talawa-api-docs/modules/models_Post.md | 2 +- talawa-api-docs/modules/models_SampleData.md | 2 +- talawa-api-docs/modules/models_TagUser.md | 2 +- talawa-api-docs/modules/models_User.md | 2 +- .../modules/models_UserCustomData.md | 2 +- talawa-api-docs/modules/resolvers.md | 2 +- talawa-api-docs/modules/resolvers_CheckIn.md | 2 +- .../modules/resolvers_CheckIn_event.md | 2 +- .../modules/resolvers_CheckIn_user.md | 2 +- talawa-api-docs/modules/resolvers_Comment.md | 2 +- .../modules/resolvers_Comment_creator.md | 2 +- .../modules/resolvers_DirectChat.md | 2 +- .../modules/resolvers_DirectChatMessage.md | 2 +- ...tChatMessage_directChatMessageBelongsTo.md | 2 +- .../resolvers_DirectChatMessage_receiver.md | 2 +- .../resolvers_DirectChatMessage_sender.md | 2 +- .../modules/resolvers_DirectChat_creator.md | 2 +- .../modules/resolvers_DirectChat_messages.md | 2 +- .../resolvers_DirectChat_organization.md | 2 +- .../modules/resolvers_DirectChat_users.md | 2 +- talawa-api-docs/modules/resolvers_Event.md | 2 +- .../modules/resolvers_Event_attendees.md | 2 +- .../resolvers_Event_attendeesCheckInStatus.md | 2 +- .../resolvers_Event_averageFeedbackScore.md | 2 +- .../modules/resolvers_Event_creator.md | 2 +- .../modules/resolvers_Event_feedback.md | 2 +- .../modules/resolvers_Event_organization.md | 2 +- talawa-api-docs/modules/resolvers_Feedback.md | 2 +- .../modules/resolvers_Feedback_event.md | 2 +- .../modules/resolvers_GroupChat.md | 2 +- .../modules/resolvers_GroupChatMessage.md | 2 +- ...upChatMessage_groupChatMessageBelongsTo.md | 2 +- .../resolvers_GroupChatMessage_sender.md | 2 +- .../modules/resolvers_GroupChat_creator.md | 2 +- .../modules/resolvers_GroupChat_messages.md | 2 +- .../resolvers_GroupChat_organization.md | 2 +- .../modules/resolvers_GroupChat_users.md | 2 +- .../modules/resolvers_MembershipRequest.md | 2 +- ...esolvers_MembershipRequest_organization.md | 2 +- .../resolvers_MembershipRequest_user.md | 2 +- talawa-api-docs/modules/resolvers_Mutation.md | 2 +- .../modules/resolvers_Mutation_acceptAdmin.md | 2 +- ...olvers_Mutation_acceptMembershipRequest.md | 2 +- .../resolvers_Mutation_addEventAttendee.md | 2 +- .../modules/resolvers_Mutation_addFeedback.md | 2 +- ...solvers_Mutation_addLanguageTranslation.md | 2 +- ...ers_Mutation_addOrganizationCustomField.md | 2 +- ...resolvers_Mutation_addOrganizationImage.md | 2 +- .../resolvers_Mutation_addUserCustomData.md | 2 +- .../resolvers_Mutation_addUserImage.md | 2 +- .../resolvers_Mutation_addUserToGroupChat.md | 2 +- .../resolvers_Mutation_adminRemoveEvent.md | 2 +- .../resolvers_Mutation_adminRemoveGroup.md | 2 +- .../resolvers_Mutation_assignUserTag.md | 2 +- ...utation_blockPluginCreationBySuperadmin.md | 2 +- .../modules/resolvers_Mutation_blockUser.md | 2 +- ...olvers_Mutation_cancelMembershipRequest.md | 2 +- .../modules/resolvers_Mutation_checkIn.md | 2 +- .../modules/resolvers_Mutation_createAdmin.md | 2 +- .../resolvers_Mutation_createAdvertisement.md | 2 +- .../resolvers_Mutation_createComment.md | 2 +- .../resolvers_Mutation_createDirectChat.md | 2 +- .../resolvers_Mutation_createDonation.md | 2 +- .../modules/resolvers_Mutation_createEvent.md | 2 +- .../resolvers_Mutation_createGroupChat.md | 2 +- .../resolvers_Mutation_createMember.md | 2 +- .../resolvers_Mutation_createMessageChat.md | 2 +- .../resolvers_Mutation_createOrganization.md | 2 +- .../resolvers_Mutation_createPlugin.md | 2 +- .../modules/resolvers_Mutation_createPost.md | 2 +- ...lvers_Mutation_createSampleOrganization.md | 2 +- .../resolvers_Mutation_createUserTag.md | 2 +- ...olvers_Mutation_deleteAdvertisementById.md | 2 +- .../resolvers_Mutation_deleteDonationById.md | 2 +- .../resolvers_Mutation_forgotPassword.md | 2 +- ...solvers_Mutation_joinPublicOrganization.md | 2 +- .../resolvers_Mutation_leaveOrganization.md | 2 +- .../modules/resolvers_Mutation_likeComment.md | 2 +- .../modules/resolvers_Mutation_likePost.md | 2 +- .../modules/resolvers_Mutation_login.md | 2 +- .../modules/resolvers_Mutation_logout.md | 2 +- .../modules/resolvers_Mutation_otp.md | 2 +- .../modules/resolvers_Mutation_recaptcha.md | 2 +- .../resolvers_Mutation_refreshToken.md | 2 +- .../resolvers_Mutation_registerForEvent.md | 2 +- .../modules/resolvers_Mutation_rejectAdmin.md | 2 +- ...olvers_Mutation_rejectMembershipRequest.md | 2 +- .../modules/resolvers_Mutation_removeAdmin.md | 2 +- .../resolvers_Mutation_removeAdvertisement.md | 2 +- .../resolvers_Mutation_removeComment.md | 2 +- .../resolvers_Mutation_removeDirectChat.md | 2 +- .../modules/resolvers_Mutation_removeEvent.md | 2 +- .../resolvers_Mutation_removeEventAttendee.md | 2 +- .../resolvers_Mutation_removeGroupChat.md | 2 +- .../resolvers_Mutation_removeMember.md | 2 +- .../resolvers_Mutation_removeOrganization.md | 2 +- ..._Mutation_removeOrganizationCustomField.md | 2 +- ...olvers_Mutation_removeOrganizationImage.md | 2 +- .../modules/resolvers_Mutation_removePost.md | 2 +- ...lvers_Mutation_removeSampleOrganization.md | 2 +- ...resolvers_Mutation_removeUserCustomData.md | 2 +- ...olvers_Mutation_removeUserFromGroupChat.md | 2 +- .../resolvers_Mutation_removeUserImage.md | 2 +- .../resolvers_Mutation_removeUserTag.md | 2 +- ...vers_Mutation_revokeRefreshTokenForUser.md | 2 +- .../resolvers_Mutation_saveFcmToken.md | 2 +- ...esolvers_Mutation_sendMembershipRequest.md | 2 +- ...olvers_Mutation_sendMessageToDirectChat.md | 2 +- ...solvers_Mutation_sendMessageToGroupChat.md | 2 +- .../modules/resolvers_Mutation_signUp.md | 2 +- .../resolvers_Mutation_togglePostPin.md | 2 +- .../resolvers_Mutation_unassignUserTag.md | 2 +- .../modules/resolvers_Mutation_unblockUser.md | 2 +- .../resolvers_Mutation_unlikeComment.md | 2 +- .../modules/resolvers_Mutation_unlikePost.md | 2 +- ...lvers_Mutation_unregisterForEventByUser.md | 2 +- .../resolvers_Mutation_updateAdvertisement.md | 2 +- .../modules/resolvers_Mutation_updateEvent.md | 2 +- .../resolvers_Mutation_updateLanguage.md | 2 +- .../resolvers_Mutation_updateOrganization.md | 2 +- .../resolvers_Mutation_updatePluginStatus.md | 2 +- .../modules/resolvers_Mutation_updatePost.md | 2 +- .../resolvers_Mutation_updateUserPassword.md | 2 +- .../resolvers_Mutation_updateUserProfile.md | 2 +- ...s_Mutation_updateUserRoleInOrganization.md | 2 +- .../resolvers_Mutation_updateUserTag.md | 2 +- .../resolvers_Mutation_updateUserType.md | 2 +- .../modules/resolvers_Organization.md | 2 +- .../modules/resolvers_Organization_admins.md | 2 +- .../resolvers_Organization_blockedUsers.md | 2 +- .../modules/resolvers_Organization_creator.md | 2 +- .../modules/resolvers_Organization_image.md | 2 +- .../modules/resolvers_Organization_members.md | 2 +- ...solvers_Organization_membershipRequests.md | 2 +- .../resolvers_Organization_pinnedPosts.md | 2 +- talawa-api-docs/modules/resolvers_Post.md | 2 +- .../modules/resolvers_Post_comments.md | 2 +- .../modules/resolvers_Post_creator.md | 2 +- talawa-api-docs/modules/resolvers_Query.md | 2 +- .../modules/resolvers_Query_checkAuth.md | 2 +- ...esolvers_Query_customDataByOrganization.md | 2 +- ...olvers_Query_customFieldsByOrganization.md | 2 +- .../resolvers_Query_directChatsByUserID.md | 2 +- ...lvers_Query_directChatsMessagesByChatID.md | 2 +- .../modules/resolvers_Query_event.md | 2 +- .../resolvers_Query_eventsByOrganization.md | 2 +- ...rs_Query_eventsByOrganizationConnection.md | 2 +- .../resolvers_Query_getAdvertisements.md | 2 +- .../resolvers_Query_getDonationById.md | 2 +- .../resolvers_Query_getDonationByOrgId.md | 2 +- ...vers_Query_getDonationByOrgIdConnection.md | 2 +- .../modules/resolvers_Query_getPlugins.md | 2 +- .../modules/resolvers_Query_getlanguage.md | 2 +- .../resolvers_Query_hasSubmittedFeedback.md | 2 +- ...resolvers_Query_helperFunctions_getSort.md | 2 +- ...esolvers_Query_helperFunctions_getWhere.md | 2 +- talawa-api-docs/modules/resolvers_Query_me.md | 2 +- .../modules/resolvers_Query_myLanguage.md | 2 +- .../resolvers_Query_organizationIsSample.md | 2 +- .../modules/resolvers_Query_organizations.md | 2 +- ...resolvers_Query_organizationsConnection.md | 2 +- ...ers_Query_organizationsMemberConnection.md | 2 +- .../modules/resolvers_Query_post.md | 2 +- .../resolvers_Query_postsByOrganization.md | 2 +- ...ers_Query_postsByOrganizationConnection.md | 2 +- .../resolvers_Query_registeredEventsByUser.md | 2 +- .../modules/resolvers_Query_user.md | 2 +- .../modules/resolvers_Query_userLanguage.md | 2 +- .../modules/resolvers_Query_users.md | 2 +- .../resolvers_Query_usersConnection.md | 2 +- .../modules/resolvers_Subscription.md | 2 +- ...esolvers_Subscription_directMessageChat.md | 2 +- ...rs_Subscription_messageSentToDirectChat.md | 4 +- ...ers_Subscription_messageSentToGroupChat.md | 4 +- .../resolvers_Subscription_onPluginUpdate.md | 4 +- talawa-api-docs/modules/resolvers_User.md | 2 +- talawa-api-docs/modules/resolvers_UserTag.md | 2 +- .../modules/resolvers_UserTag_childTags.md | 2 +- .../modules/resolvers_UserTag_organization.md | 2 +- .../modules/resolvers_UserTag_parentTag.md | 2 +- .../resolvers_UserTag_usersAssignedTo.md | 2 +- .../resolvers_middleware_currentUserExists.md | 2 +- .../services_CommentCache_cacheComments.md | 2 +- ...ces_CommentCache_deleteCommentFromCache.md | 2 +- ...ommentCache_findCommentsByPostIdInCache.md | 2 +- ...rvices_CommentCache_findCommentsInCache.md | 2 +- .../services_EventCache_cacheEvents.md | 2 +- ...ervices_EventCache_deleteEventFromCache.md | 2 +- .../services_EventCache_findEventInCache.md | 2 +- ...es_OrganizationCache_cacheOrganizations.md | 2 +- ...zationCache_deleteOrganizationFromCache.md | 2 +- ...anizationCache_findOrganizationsInCache.md | 2 +- .../modules/services_PostCache_cachePosts.md | 2 +- .../services_PostCache_deletePostFromCache.md | 2 +- .../services_PostCache_findPostsInCache.md | 2 +- .../modules/services_redisCache.md | 2 +- talawa-api-docs/modules/typeDefs.md | 2 +- .../modules/typeDefs_directives.md | 2 +- talawa-api-docs/modules/typeDefs_enums.md | 2 +- talawa-api-docs/modules/typeDefs_errors.md | 2 +- .../modules/typeDefs_errors_common.md | 2 +- .../typeDefs_errors_connectionError.md | 2 +- talawa-api-docs/modules/typeDefs_inputs.md | 2 +- .../modules/typeDefs_interfaces.md | 2 +- talawa-api-docs/modules/typeDefs_mutations.md | 2 +- talawa-api-docs/modules/typeDefs_queries.md | 2 +- talawa-api-docs/modules/typeDefs_scalars.md | 2 +- .../modules/typeDefs_subscriptions.md | 2 +- talawa-api-docs/modules/typeDefs_types.md | 2 +- talawa-api-docs/modules/typeDefs_unions.md | 2 +- .../modules/types_generatedGraphQLTypes.md | 635 +++++++++--------- .../modules/utilities_PII_decryption.md | 2 +- .../modules/utilities_PII_encryption.md | 2 +- .../modules/utilities_PII_isAuthorised.md | 2 +- .../modules/utilities_adminCheck.md | 2 +- talawa-api-docs/modules/utilities_auth.md | 6 +- .../modules/utilities_copyToClipboard.md | 2 +- .../utilities_createSampleOrganizationUtil.md | 10 +- .../utilities_deleteDuplicatedImage.md | 2 +- .../modules/utilities_deleteImage.md | 2 +- ...encodedImageStorage_deletePreviousImage.md | 2 +- ...ImageStorage_encodedImageExtensionCheck.md | 2 +- ..._encodedImageStorage_uploadEncodedImage.md | 2 +- ...encodedVideoStorage_deletePreviousVideo.md | 2 +- ...VideoStorage_encodedVideoExtensionCheck.md | 2 +- ..._encodedVideoStorage_uploadEncodedVideo.md | 2 +- .../utilities_graphqlConnectionFactory.md | 10 +- .../utilities_imageAlreadyInDbCheck.md | 2 +- .../modules/utilities_imageExtensionCheck.md | 2 +- talawa-api-docs/modules/utilities_mailer.md | 2 +- .../utilities_removeSampleOrganizationUtil.md | 2 +- .../utilities_reuploadDuplicateCheck.md | 4 +- .../modules/utilities_superAdminCheck.md | 2 +- .../modules/utilities_uploadImage.md | 2 +- 341 files changed, 1068 insertions(+), 1029 deletions(-) diff --git a/talawa-api-docs/classes/libraries_errors_applicationError.ApplicationError.md b/talawa-api-docs/classes/libraries_errors_applicationError.ApplicationError.md index 2f06ee23c09..d4f3b1a718e 100644 --- a/talawa-api-docs/classes/libraries_errors_applicationError.ApplicationError.md +++ b/talawa-api-docs/classes/libraries_errors_applicationError.ApplicationError.md @@ -72,7 +72,7 @@ Error.constructor #### Defined in -[src/libraries/errors/applicationError.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/errors/applicationError.ts#L14) +[src/libraries/errors/applicationError.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/errors/applicationError.ts#L14) ## Properties @@ -82,7 +82,7 @@ Error.constructor #### Defined in -[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/errors/applicationError.ts#L11) ___ @@ -92,7 +92,7 @@ ___ #### Defined in -[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 f3dc7b7ec9e..dfc858a99ad 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/fcc2f8f/src/libraries/errors/conflictError.ts#L6) +[src/libraries/errors/conflictError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 4646177f921..e95c5a5446a 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/fcc2f8f/src/libraries/errors/inputValidationError.ts#L6) +[src/libraries/errors/inputValidationError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 96b026571a6..eb759d3e086 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/fcc2f8f/src/libraries/errors/internalServerError.ts#L6) +[src/libraries/errors/internalServerError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 c585c87f802..e8b4ddbdad6 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/fcc2f8f/src/libraries/errors/invalidFileTypeError.ts#L6) +[src/libraries/errors/invalidFileTypeError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 d4e005b0664..a2fc21aa6e0 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/fcc2f8f/src/libraries/errors/notFoundError.ts#L6) +[src/libraries/errors/notFoundError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 84c147fa283..1c2e608196a 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/fcc2f8f/src/libraries/errors/unauthenticatedError.ts#L6) +[src/libraries/errors/unauthenticatedError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 08de3ec0dea..cf46e271895 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/fcc2f8f/src/libraries/errors/unauthorizedError.ts#L6) +[src/libraries/errors/unauthorizedError.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 df8587a3cad..bc92cd24fac 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/fcc2f8f/src/libraries/errors/validationError.ts#L7) +[src/libraries/errors/validationError.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L11) +[src/libraries/errors/applicationError.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L12) +[src/libraries/errors/applicationError.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 bd1b4837f4c..5f70db53649 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:485](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L485) +[src/constants.ts:497](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L497) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/constants.ts:487](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L487) +[src/constants.ts:499](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L499) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/constants.ts:486](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L486) +[src/constants.ts:498](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L498) diff --git a/talawa-api-docs/interfaces/libraries_dbLogger.InterfaceLoggableDocument.md b/talawa-api-docs/interfaces/libraries_dbLogger.InterfaceLoggableDocument.md index cc26a30715b..0c22dbecf8f 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/fcc2f8f/src/libraries/dbLogger.ts#L33) +[src/libraries/dbLogger.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 47f76dc5914..af1785e41b6 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/fcc2f8f/src/libraries/dbLogger.ts#L37) +[src/libraries/dbLogger.ts:37](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 a5eae1735ad..3d6cb78543e 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/fcc2f8f/src/libraries/errors/applicationError.ts#L3) +[src/libraries/errors/applicationError.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L2) +[src/libraries/errors/applicationError.ts:2](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L5) +[src/libraries/errors/applicationError.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/libraries/errors/applicationError.ts#L4) +[src/libraries/errors/applicationError.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 b0418bc67bb..cb2f6888bc6 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/fcc2f8f/src/middleware/isAuth.ts#L9) +[src/middleware/isAuth.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/middleware/isAuth.ts#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/middleware/isAuth.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/middleware/isAuth.ts#L8) +[src/middleware/isAuth.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/middleware/isAuth.ts#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/middleware/isAuth.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/middleware/isAuth.ts#L10) +[src/middleware/isAuth.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/middleware/isAuth.ts#L10) diff --git a/talawa-api-docs/interfaces/models_Advertisement.InterfaceAdvertisement.md b/talawa-api-docs/interfaces/models_Advertisement.InterfaceAdvertisement.md index 88b6a2cc983..1c07dbe31a3 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/fcc2f8f/src/models/Advertisement.ts#L8) +[src/models/Advertisement.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Advertisement.ts#L8) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Advertisement.ts#L16) +[src/models/Advertisement.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Advertisement.ts#L16) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Advertisement.ts#L11) +[src/models/Advertisement.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Advertisement.ts#L11) ___ @@ -59,7 +59,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Advertisement.ts#L15) +[src/models/Advertisement.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Advertisement.ts#L15) ___ @@ -69,7 +69,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Advertisement.ts#L12) +[src/models/Advertisement.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Advertisement.ts#L12) ___ @@ -79,7 +79,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Advertisement.ts#L10) +[src/models/Advertisement.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Advertisement.ts#L10) ___ @@ -89,7 +89,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Advertisement.ts#L9) +[src/models/Advertisement.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Advertisement.ts#L9) ___ @@ -99,7 +99,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Advertisement.ts#L14) +[src/models/Advertisement.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Advertisement.ts#L14) ___ @@ -109,7 +109,7 @@ ___ #### Defined in -[src/models/Advertisement.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Advertisement.ts#L13) +[src/models/Advertisement.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Advertisement.ts#L13) ___ @@ -119,4 +119,4 @@ ___ #### Defined in -[src/models/Advertisement.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Advertisement.ts#L17) +[src/models/Advertisement.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 82bd5b1e546..9b674e62308 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/fcc2f8f/src/models/CheckIn.ts#L13) +[src/models/CheckIn.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/CheckIn.ts#L13) ___ @@ -35,7 +35,7 @@ ___ #### Defined in -[src/models/CheckIn.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/CheckIn.ts#L16) +[src/models/CheckIn.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/CheckIn.ts#L16) ___ @@ -45,7 +45,7 @@ ___ #### Defined in -[src/models/CheckIn.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/CheckIn.ts#L17) +[src/models/CheckIn.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/CheckIn.ts#L17) ___ @@ -55,7 +55,7 @@ ___ #### Defined in -[src/models/CheckIn.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/CheckIn.ts#L19) +[src/models/CheckIn.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/CheckIn.ts#L19) ___ @@ -65,7 +65,7 @@ ___ #### Defined in -[src/models/CheckIn.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/CheckIn.ts#L14) +[src/models/CheckIn.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/CheckIn.ts#L14) ___ @@ -75,7 +75,7 @@ ___ #### Defined in -[src/models/CheckIn.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/CheckIn.ts#L18) +[src/models/CheckIn.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/CheckIn.ts#L18) ___ @@ -85,7 +85,7 @@ ___ #### Defined in -[src/models/CheckIn.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/CheckIn.ts#L15) +[src/models/CheckIn.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/CheckIn.ts#L15) ___ @@ -95,4 +95,4 @@ ___ #### Defined in -[src/models/CheckIn.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/CheckIn.ts#L20) +[src/models/CheckIn.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 230bad37820..5b86444679e 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/fcc2f8f/src/models/Comment.ts#L9) +[src/models/Comment.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Comment.ts#L9) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/models/Comment.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Comment.ts#L11) +[src/models/Comment.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Comment.ts#L11) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[src/models/Comment.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Comment.ts#L12) +[src/models/Comment.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Comment.ts#L12) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[src/models/Comment.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Comment.ts#L16) +[src/models/Comment.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Comment.ts#L16) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[src/models/Comment.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Comment.ts#L15) +[src/models/Comment.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Comment.ts#L15) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[src/models/Comment.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Comment.ts#L14) +[src/models/Comment.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Comment.ts#L14) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[src/models/Comment.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Comment.ts#L17) +[src/models/Comment.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Comment.ts#L17) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[src/models/Comment.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Comment.ts#L10) +[src/models/Comment.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Comment.ts#L10) ___ @@ -108,4 +108,4 @@ ___ #### Defined in -[src/models/Comment.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Comment.ts#L13) +[src/models/Comment.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 50e5030b017..fdbacba165d 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/fcc2f8f/src/models/DirectChat.ts#L10) +[src/models/DirectChat.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChat.ts#L10) ___ @@ -37,7 +37,7 @@ ___ #### Defined in -[src/models/DirectChat.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChat.ts#L16) +[src/models/DirectChat.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChat.ts#L16) ___ @@ -47,7 +47,7 @@ ___ #### Defined in -[src/models/DirectChat.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChat.ts#L13) +[src/models/DirectChat.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChat.ts#L13) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[src/models/DirectChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChat.ts#L12) +[src/models/DirectChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChat.ts#L12) ___ @@ -67,7 +67,7 @@ ___ #### Defined in -[src/models/DirectChat.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChat.ts#L14) +[src/models/DirectChat.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChat.ts#L14) ___ @@ -77,7 +77,7 @@ ___ #### Defined in -[src/models/DirectChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChat.ts#L15) +[src/models/DirectChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChat.ts#L15) ___ @@ -87,7 +87,7 @@ ___ #### Defined in -[src/models/DirectChat.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChat.ts#L17) +[src/models/DirectChat.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChat.ts#L17) ___ @@ -97,4 +97,4 @@ ___ #### Defined in -[src/models/DirectChat.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChat.ts#L11) +[src/models/DirectChat.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 4ce93c03d65..f0bd80492f1 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/fcc2f8f/src/models/DirectChatMessage.ts#L9) +[src/models/DirectChatMessage.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChatMessage.ts#L9) ___ @@ -37,7 +37,7 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChatMessage.ts#L15) +[src/models/DirectChatMessage.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChatMessage.ts#L15) ___ @@ -47,7 +47,7 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChatMessage.ts#L10) +[src/models/DirectChatMessage.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChatMessage.ts#L10) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChatMessage.ts#L13) +[src/models/DirectChatMessage.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChatMessage.ts#L13) ___ @@ -67,7 +67,7 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChatMessage.ts#L12) +[src/models/DirectChatMessage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChatMessage.ts#L12) ___ @@ -77,7 +77,7 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChatMessage.ts#L11) +[src/models/DirectChatMessage.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChatMessage.ts#L11) ___ @@ -87,7 +87,7 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChatMessage.ts#L14) +[src/models/DirectChatMessage.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChatMessage.ts#L14) ___ @@ -97,4 +97,4 @@ ___ #### Defined in -[src/models/DirectChatMessage.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/DirectChatMessage.ts#L16) +[src/models/DirectChatMessage.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 cd8c9e66221..db1a12b6ca8 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/fcc2f8f/src/models/Donation.ts#L12) +[src/models/Donation.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Donation.ts#L12) ___ @@ -37,7 +37,7 @@ ___ #### Defined in -[src/models/Donation.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Donation.ts#L13) +[src/models/Donation.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Donation.ts#L13) ___ @@ -47,7 +47,7 @@ ___ #### Defined in -[src/models/Donation.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Donation.ts#L9) +[src/models/Donation.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Donation.ts#L9) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[src/models/Donation.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Donation.ts#L11) +[src/models/Donation.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Donation.ts#L11) ___ @@ -67,7 +67,7 @@ ___ #### Defined in -[src/models/Donation.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Donation.ts#L8) +[src/models/Donation.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Donation.ts#L8) ___ @@ -77,7 +77,7 @@ ___ #### Defined in -[src/models/Donation.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Donation.ts#L10) +[src/models/Donation.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Donation.ts#L10) ___ @@ -87,7 +87,7 @@ ___ #### Defined in -[src/models/Donation.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Donation.ts#L14) +[src/models/Donation.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Donation.ts#L14) ___ @@ -97,4 +97,4 @@ ___ #### Defined in -[src/models/Donation.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Donation.ts#L7) +[src/models/Donation.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 0dfac9a17fa..b325c194052 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/fcc2f8f/src/models/EncodedImage.ts#L7) +[src/models/EncodedImage.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/EncodedImage.ts#L7) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/EncodedImage.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/EncodedImage.ts#L9) +[src/models/EncodedImage.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/EncodedImage.ts#L9) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/EncodedImage.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/EncodedImage.ts#L8) +[src/models/EncodedImage.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/EncodedImage.ts#L8) ___ @@ -53,4 +53,4 @@ ___ #### Defined in -[src/models/EncodedImage.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/EncodedImage.ts#L10) +[src/models/EncodedImage.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 bb578d6afe2..6ddd8d39e10 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/fcc2f8f/src/models/EncodedVideo.ts#L7) +[src/models/EncodedVideo.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/EncodedVideo.ts#L7) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/EncodedVideo.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/EncodedVideo.ts#L9) +[src/models/EncodedVideo.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/EncodedVideo.ts#L9) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/EncodedVideo.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/EncodedVideo.ts#L8) +[src/models/EncodedVideo.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/EncodedVideo.ts#L8) ___ @@ -53,4 +53,4 @@ ___ #### Defined in -[src/models/EncodedVideo.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/EncodedVideo.ts#L10) +[src/models/EncodedVideo.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 3ca4c406072..10eb402ea09 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/fcc2f8f/src/models/Event.ts#L10) +[src/models/Event.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L10) ___ @@ -51,7 +51,7 @@ ___ #### Defined in -[src/models/Event.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L27) +[src/models/Event.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L27) ___ @@ -61,7 +61,7 @@ ___ #### Defined in -[src/models/Event.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L18) +[src/models/Event.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L18) ___ @@ -71,7 +71,7 @@ ___ #### Defined in -[src/models/Event.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L13) +[src/models/Event.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L13) ___ @@ -81,7 +81,7 @@ ___ #### Defined in -[src/models/Event.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L30) +[src/models/Event.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L30) ___ @@ -91,7 +91,7 @@ ___ #### Defined in -[src/models/Event.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L26) +[src/models/Event.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L26) ___ @@ -101,7 +101,7 @@ ___ #### Defined in -[src/models/Event.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L12) +[src/models/Event.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L12) ___ @@ -111,7 +111,7 @@ ___ #### Defined in -[src/models/Event.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L20) +[src/models/Event.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L20) ___ @@ -121,7 +121,7 @@ ___ #### Defined in -[src/models/Event.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L22) +[src/models/Event.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L22) ___ @@ -131,7 +131,7 @@ ___ #### Defined in -[src/models/Event.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L24) +[src/models/Event.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L24) ___ @@ -141,7 +141,7 @@ ___ #### Defined in -[src/models/Event.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L25) +[src/models/Event.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L25) ___ @@ -151,7 +151,7 @@ ___ #### Defined in -[src/models/Event.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L15) +[src/models/Event.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L15) ___ @@ -161,7 +161,7 @@ ___ #### Defined in -[src/models/Event.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L14) +[src/models/Event.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L14) ___ @@ -171,7 +171,7 @@ ___ #### Defined in -[src/models/Event.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L16) +[src/models/Event.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L16) ___ @@ -181,7 +181,7 @@ ___ #### Defined in -[src/models/Event.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L28) +[src/models/Event.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L28) ___ @@ -191,7 +191,7 @@ ___ #### Defined in -[src/models/Event.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L23) +[src/models/Event.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L23) ___ @@ -201,7 +201,7 @@ ___ #### Defined in -[src/models/Event.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L17) +[src/models/Event.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L17) ___ @@ -211,7 +211,7 @@ ___ #### Defined in -[src/models/Event.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L19) +[src/models/Event.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L19) ___ @@ -221,7 +221,7 @@ ___ #### Defined in -[src/models/Event.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L21) +[src/models/Event.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L21) ___ @@ -231,7 +231,7 @@ ___ #### Defined in -[src/models/Event.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L29) +[src/models/Event.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L29) ___ @@ -241,7 +241,7 @@ ___ #### Defined in -[src/models/Event.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L11) +[src/models/Event.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L11) ___ @@ -251,4 +251,4 @@ ___ #### Defined in -[src/models/Event.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Event.ts#L31) +[src/models/Event.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 4760ea2b16e..806fb6076dd 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/fcc2f8f/src/models/EventAttendee.ts#L8) +[src/models/EventAttendee.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/EventAttendee.ts#L8) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/models/EventAttendee.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/EventAttendee.ts#L11) +[src/models/EventAttendee.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/EventAttendee.ts#L11) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/models/EventAttendee.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/EventAttendee.ts#L10) +[src/models/EventAttendee.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/EventAttendee.ts#L10) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/models/EventAttendee.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/EventAttendee.ts#L9) +[src/models/EventAttendee.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 c1672ac90a1..999f3cf5613 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/fcc2f8f/src/models/Feedback.ts#L6) +[src/models/Feedback.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Feedback.ts#L6) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/Feedback.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Feedback.ts#L10) +[src/models/Feedback.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Feedback.ts#L10) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/Feedback.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Feedback.ts#L7) +[src/models/Feedback.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Feedback.ts#L7) ___ @@ -53,7 +53,7 @@ ___ #### Defined in -[src/models/Feedback.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Feedback.ts#L8) +[src/models/Feedback.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Feedback.ts#L8) ___ @@ -63,7 +63,7 @@ ___ #### Defined in -[src/models/Feedback.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Feedback.ts#L9) +[src/models/Feedback.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Feedback.ts#L9) ___ @@ -73,4 +73,4 @@ ___ #### Defined in -[src/models/Feedback.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Feedback.ts#L11) +[src/models/Feedback.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 9835b4da2ef..ee2b79b10dc 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/fcc2f8f/src/models/File.ts#L8) +[src/models/File.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/File.ts#L8) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/models/File.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/File.ts#L13) +[src/models/File.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/File.ts#L13) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[src/models/File.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/File.ts#L15) +[src/models/File.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/File.ts#L15) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[src/models/File.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/File.ts#L9) +[src/models/File.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/File.ts#L9) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[src/models/File.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/File.ts#L12) +[src/models/File.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/File.ts#L12) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[src/models/File.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/File.ts#L11) +[src/models/File.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/File.ts#L11) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[src/models/File.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/File.ts#L14) +[src/models/File.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/File.ts#L14) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[src/models/File.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/File.ts#L16) +[src/models/File.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/File.ts#L16) ___ @@ -108,4 +108,4 @@ ___ #### Defined in -[src/models/File.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/File.ts#L10) +[src/models/File.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 18687e35cd5..f8e9917abe3 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/fcc2f8f/src/models/Group.ts#L9) +[src/models/Group.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Group.ts#L9) ___ @@ -37,7 +37,7 @@ ___ #### Defined in -[src/models/Group.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Group.ts#L14) +[src/models/Group.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Group.ts#L14) ___ @@ -47,7 +47,7 @@ ___ #### Defined in -[src/models/Group.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Group.ts#L15) +[src/models/Group.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Group.ts#L15) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[src/models/Group.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Group.ts#L11) +[src/models/Group.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Group.ts#L11) ___ @@ -67,7 +67,7 @@ ___ #### Defined in -[src/models/Group.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Group.ts#L12) +[src/models/Group.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Group.ts#L12) ___ @@ -77,7 +77,7 @@ ___ #### Defined in -[src/models/Group.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Group.ts#L13) +[src/models/Group.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Group.ts#L13) ___ @@ -87,7 +87,7 @@ ___ #### Defined in -[src/models/Group.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Group.ts#L10) +[src/models/Group.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Group.ts#L10) ___ @@ -97,4 +97,4 @@ ___ #### Defined in -[src/models/Group.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Group.ts#L16) +[src/models/Group.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 30596447e47..46a192151ec 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/fcc2f8f/src/models/GroupChat.ts#L10) +[src/models/GroupChat.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChat.ts#L10) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChat.ts#L15) +[src/models/GroupChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChat.ts#L15) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChat.ts#L14) +[src/models/GroupChat.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChat.ts#L14) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChat.ts#L13) +[src/models/GroupChat.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChat.ts#L13) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChat.ts#L17) +[src/models/GroupChat.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChat.ts#L17) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChat.ts#L18) +[src/models/GroupChat.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChat.ts#L18) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChat.ts#L11) +[src/models/GroupChat.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChat.ts#L11) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[src/models/GroupChat.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChat.ts#L16) +[src/models/GroupChat.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChat.ts#L16) ___ @@ -108,4 +108,4 @@ ___ #### Defined in -[src/models/GroupChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChat.ts#L12) +[src/models/GroupChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 ffe25cd1c8f..3247c7fba5e 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/fcc2f8f/src/models/GroupChatMessage.ts#L9) +[src/models/GroupChatMessage.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChatMessage.ts#L9) ___ @@ -36,7 +36,7 @@ ___ #### Defined in -[src/models/GroupChatMessage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChatMessage.ts#L12) +[src/models/GroupChatMessage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChatMessage.ts#L12) ___ @@ -46,7 +46,7 @@ ___ #### Defined in -[src/models/GroupChatMessage.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChatMessage.ts#L10) +[src/models/GroupChatMessage.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChatMessage.ts#L10) ___ @@ -56,7 +56,7 @@ ___ #### Defined in -[src/models/GroupChatMessage.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChatMessage.ts#L14) +[src/models/GroupChatMessage.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChatMessage.ts#L14) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[src/models/GroupChatMessage.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChatMessage.ts#L11) +[src/models/GroupChatMessage.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChatMessage.ts#L11) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[src/models/GroupChatMessage.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChatMessage.ts#L15) +[src/models/GroupChatMessage.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChatMessage.ts#L15) ___ @@ -86,4 +86,4 @@ ___ #### Defined in -[src/models/GroupChatMessage.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/GroupChatMessage.ts#L13) +[src/models/GroupChatMessage.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 f8381252cb1..55958fc9de6 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/fcc2f8f/src/models/ImageHash.ts#L7) +[src/models/ImageHash.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/ImageHash.ts#L7) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/models/ImageHash.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/ImageHash.ts#L9) +[src/models/ImageHash.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/ImageHash.ts#L9) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/models/ImageHash.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/ImageHash.ts#L8) +[src/models/ImageHash.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/ImageHash.ts#L8) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/models/ImageHash.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/ImageHash.ts#L10) +[src/models/ImageHash.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/ImageHash.ts#L10) ___ @@ -64,4 +64,4 @@ ___ #### Defined in -[src/models/ImageHash.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/ImageHash.ts#L11) +[src/models/ImageHash.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 6eeabd411c3..d6c2f100d71 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/fcc2f8f/src/models/Language.ts#L47) +[src/models/Language.ts:47](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Language.ts#L47) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/Language.ts:50](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Language.ts#L50) +[src/models/Language.ts:50](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Language.ts#L50) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/Language.ts:48](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Language.ts#L48) +[src/models/Language.ts:48](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Language.ts#L48) ___ @@ -53,4 +53,4 @@ ___ #### Defined in -[src/models/Language.ts:49](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Language.ts#L49) +[src/models/Language.ts:49](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 c6551f5cb61..626a2da04ec 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/fcc2f8f/src/models/Language.ts#L10) +[src/models/Language.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Language.ts#L10) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/Language.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Language.ts#L7) +[src/models/Language.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Language.ts#L7) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/Language.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Language.ts#L8) +[src/models/Language.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Language.ts#L8) ___ @@ -53,4 +53,4 @@ ___ #### Defined in -[src/models/Language.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Language.ts#L9) +[src/models/Language.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 97a2a925568..13dc3e75108 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/fcc2f8f/src/models/MembershipRequest.ts#L9) +[src/models/MembershipRequest.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/MembershipRequest.ts#L9) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/MembershipRequest.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/MembershipRequest.ts#L10) +[src/models/MembershipRequest.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/MembershipRequest.ts#L10) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/MembershipRequest.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/MembershipRequest.ts#L12) +[src/models/MembershipRequest.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/MembershipRequest.ts#L12) ___ @@ -53,4 +53,4 @@ ___ #### Defined in -[src/models/MembershipRequest.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/MembershipRequest.ts#L11) +[src/models/MembershipRequest.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 0701cb521bc..2c7aabf7031 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/fcc2f8f/src/models/Message.ts#L9) +[src/models/Message.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Message.ts#L9) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/models/Message.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Message.ts#L13) +[src/models/Message.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Message.ts#L13) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[src/models/Message.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Message.ts#L15) +[src/models/Message.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Message.ts#L15) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[src/models/Message.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Message.ts#L16) +[src/models/Message.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Message.ts#L16) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[src/models/Message.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Message.ts#L11) +[src/models/Message.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Message.ts#L11) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[src/models/Message.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Message.ts#L17) +[src/models/Message.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Message.ts#L17) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[src/models/Message.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Message.ts#L10) +[src/models/Message.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Message.ts#L10) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[src/models/Message.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Message.ts#L14) +[src/models/Message.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Message.ts#L14) ___ @@ -108,4 +108,4 @@ ___ #### Defined in -[src/models/Message.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Message.ts#L12) +[src/models/Message.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 923d0d2e78e..712c6051a6c 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/fcc2f8f/src/models/MessageChat.ts#L8) +[src/models/MessageChat.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/MessageChat.ts#L8) ___ @@ -36,7 +36,7 @@ ___ #### Defined in -[src/models/MessageChat.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/MessageChat.ts#L13) +[src/models/MessageChat.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/MessageChat.ts#L13) ___ @@ -46,7 +46,7 @@ ___ #### Defined in -[src/models/MessageChat.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/MessageChat.ts#L10) +[src/models/MessageChat.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/MessageChat.ts#L10) ___ @@ -56,7 +56,7 @@ ___ #### Defined in -[src/models/MessageChat.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/MessageChat.ts#L9) +[src/models/MessageChat.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/MessageChat.ts#L9) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[src/models/MessageChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/MessageChat.ts#L12) +[src/models/MessageChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/MessageChat.ts#L12) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[src/models/MessageChat.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/MessageChat.ts#L11) +[src/models/MessageChat.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/MessageChat.ts#L11) ___ @@ -86,4 +86,4 @@ ___ #### Defined in -[src/models/MessageChat.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/MessageChat.ts#L14) +[src/models/MessageChat.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 87b7f641a12..088292fae25 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/fcc2f8f/src/models/Organization.ts#L12) +[src/models/Organization.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L12) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[src/models/Organization.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L17) +[src/models/Organization.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L17) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[src/models/Organization.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L30) +[src/models/Organization.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L30) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[src/models/Organization.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L13) +[src/models/Organization.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L13) ___ @@ -92,7 +92,7 @@ ___ #### Defined in -[src/models/Organization.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L35) +[src/models/Organization.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L35) ___ @@ -102,7 +102,7 @@ ___ #### Defined in -[src/models/Organization.ts:37](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L37) +[src/models/Organization.ts:37](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L37) ___ @@ -112,7 +112,7 @@ ___ #### Defined in -[src/models/Organization.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L27) +[src/models/Organization.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L27) ___ @@ -122,7 +122,7 @@ ___ #### Defined in -[src/models/Organization.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L36) +[src/models/Organization.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L36) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[src/models/Organization.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L16) +[src/models/Organization.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L16) ___ @@ -142,7 +142,7 @@ ___ #### Defined in -[src/models/Organization.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L31) +[src/models/Organization.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L31) ___ @@ -152,7 +152,7 @@ ___ #### Defined in -[src/models/Organization.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L14) +[src/models/Organization.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L14) ___ @@ -162,7 +162,7 @@ ___ #### Defined in -[src/models/Organization.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L29) +[src/models/Organization.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L29) ___ @@ -172,7 +172,7 @@ ___ #### Defined in -[src/models/Organization.ts:34](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L34) +[src/models/Organization.ts:34](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L34) ___ @@ -182,7 +182,7 @@ ___ #### Defined in -[src/models/Organization.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L15) +[src/models/Organization.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L15) ___ @@ -192,7 +192,7 @@ ___ #### Defined in -[src/models/Organization.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L33) +[src/models/Organization.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L33) ___ @@ -202,7 +202,7 @@ ___ #### Defined in -[src/models/Organization.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L32) +[src/models/Organization.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L32) ___ @@ -212,7 +212,7 @@ ___ #### Defined in -[src/models/Organization.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L28) +[src/models/Organization.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L28) ___ @@ -222,7 +222,7 @@ ___ #### Defined in -[src/models/Organization.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L38) +[src/models/Organization.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L38) ___ @@ -232,7 +232,7 @@ ___ #### Defined in -[src/models/Organization.ts:39](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L39) +[src/models/Organization.ts:39](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L39) ___ @@ -242,4 +242,4 @@ ___ #### Defined in -[src/models/Organization.ts:40](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Organization.ts#L40) +[src/models/Organization.ts:40](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 01a992df356..74472d8c17f 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/fcc2f8f/src/models/OrganizationCustomField.ts#L5) +[src/models/OrganizationCustomField.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/OrganizationCustomField.ts#L5) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/models/OrganizationCustomField.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/OrganizationCustomField.ts#L8) +[src/models/OrganizationCustomField.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/OrganizationCustomField.ts#L8) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/models/OrganizationCustomField.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/OrganizationCustomField.ts#L6) +[src/models/OrganizationCustomField.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/OrganizationCustomField.ts#L6) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/models/OrganizationCustomField.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/OrganizationCustomField.ts#L7) +[src/models/OrganizationCustomField.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 f9f9b883786..b8038a88de8 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/fcc2f8f/src/models/OrganizationTagUser.ts#L6) +[src/models/OrganizationTagUser.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/OrganizationTagUser.ts#L6) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/models/OrganizationTagUser.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/OrganizationTagUser.ts#L9) +[src/models/OrganizationTagUser.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/OrganizationTagUser.ts#L9) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/models/OrganizationTagUser.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/OrganizationTagUser.ts#L7) +[src/models/OrganizationTagUser.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/OrganizationTagUser.ts#L7) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/models/OrganizationTagUser.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/OrganizationTagUser.ts#L8) +[src/models/OrganizationTagUser.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 22ff551f800..44bb1bbd8ac 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/fcc2f8f/src/models/Plugin.ts#L7) +[src/models/Plugin.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Plugin.ts#L7) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/models/Plugin.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Plugin.ts#L9) +[src/models/Plugin.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Plugin.ts#L9) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/models/Plugin.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Plugin.ts#L10) +[src/models/Plugin.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Plugin.ts#L10) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/models/Plugin.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Plugin.ts#L8) +[src/models/Plugin.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Plugin.ts#L8) ___ @@ -64,4 +64,4 @@ ___ #### Defined in -[src/models/Plugin.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Plugin.ts#L11) +[src/models/Plugin.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 8b8bbb6fc15..1d0e02dae12 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/fcc2f8f/src/models/PluginField.ts#L7) +[src/models/PluginField.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/PluginField.ts#L7) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/models/PluginField.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/PluginField.ts#L11) +[src/models/PluginField.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/PluginField.ts#L11) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/models/PluginField.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/PluginField.ts#L8) +[src/models/PluginField.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/PluginField.ts#L8) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/models/PluginField.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/PluginField.ts#L10) +[src/models/PluginField.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/PluginField.ts#L10) ___ @@ -64,4 +64,4 @@ ___ #### Defined in -[src/models/PluginField.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/PluginField.ts#L9) +[src/models/PluginField.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 3d170a09cfc..7c299e784b7 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/fcc2f8f/src/models/Post.ts#L10) +[src/models/Post.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L10) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/Post.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Post.ts#L11) +[src/models/Post.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L11) ___ @@ -53,7 +53,7 @@ ___ #### Defined in -[src/models/Post.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Post.ts#L12) +[src/models/Post.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L12) ___ @@ -63,7 +63,7 @@ ___ #### Defined in -[src/models/Post.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Post.ts#L13) +[src/models/Post.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L13) ___ @@ -73,7 +73,7 @@ ___ #### Defined in -[src/models/Post.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Post.ts#L14) +[src/models/Post.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L14) ___ @@ -83,7 +83,7 @@ ___ #### Defined in -[src/models/Post.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Post.ts#L15) +[src/models/Post.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L15) ___ @@ -93,7 +93,7 @@ ___ #### Defined in -[src/models/Post.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Post.ts#L16) +[src/models/Post.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L16) ___ @@ -103,7 +103,7 @@ ___ #### Defined in -[src/models/Post.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Post.ts#L17) +[src/models/Post.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L17) ___ @@ -113,7 +113,7 @@ ___ #### Defined in -[src/models/Post.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Post.ts#L18) +[src/models/Post.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L18) ___ @@ -123,7 +123,7 @@ ___ #### Defined in -[src/models/Post.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Post.ts#L19) +[src/models/Post.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L19) ___ @@ -133,7 +133,7 @@ ___ #### Defined in -[src/models/Post.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Post.ts#L20) +[src/models/Post.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L20) ___ @@ -143,7 +143,7 @@ ___ #### Defined in -[src/models/Post.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Post.ts#L21) +[src/models/Post.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L21) ___ @@ -153,7 +153,7 @@ ___ #### Defined in -[src/models/Post.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Post.ts#L22) +[src/models/Post.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L22) ___ @@ -163,4 +163,4 @@ ___ #### Defined in -[src/models/Post.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/Post.ts#L23) +[src/models/Post.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 08a3b6e9d44..186eee5a806 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/fcc2f8f/src/models/SampleData.ts#L6) +[src/models/SampleData.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/SampleData.ts#L6) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/models/SampleData.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/SampleData.ts#L5) +[src/models/SampleData.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 1a999909e30..ca8da98ec14 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/fcc2f8f/src/models/TagUser.ts#L7) +[src/models/TagUser.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/TagUser.ts#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/models/TagUser.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/TagUser.ts#L9) +[src/models/TagUser.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/TagUser.ts#L9) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/models/TagUser.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/TagUser.ts#L8) +[src/models/TagUser.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 e7651070101..ed055aa3441 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/fcc2f8f/src/models/User.ts#L15) +[src/models/User.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L15) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[src/models/User.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L16) +[src/models/User.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L16) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[src/models/User.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L26) +[src/models/User.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L26) ___ @@ -92,7 +92,7 @@ ___ #### Defined in -[src/models/User.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L27) +[src/models/User.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L27) ___ @@ -102,7 +102,7 @@ ___ #### Defined in -[src/models/User.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L28) +[src/models/User.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L28) ___ @@ -112,7 +112,7 @@ ___ #### Defined in -[src/models/User.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L29) +[src/models/User.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L29) ___ @@ -122,7 +122,7 @@ ___ #### Defined in -[src/models/User.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L30) +[src/models/User.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L30) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[src/models/User.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L31) +[src/models/User.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L31) ___ @@ -142,7 +142,7 @@ ___ #### Defined in -[src/models/User.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L32) +[src/models/User.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L32) ___ @@ -152,7 +152,7 @@ ___ #### Defined in -[src/models/User.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L33) +[src/models/User.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L33) ___ @@ -162,7 +162,7 @@ ___ #### Defined in -[src/models/User.ts:34](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L34) +[src/models/User.ts:34](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L34) ___ @@ -172,7 +172,7 @@ ___ #### Defined in -[src/models/User.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L35) +[src/models/User.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L35) ___ @@ -182,7 +182,7 @@ ___ #### Defined in -[src/models/User.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L36) +[src/models/User.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L36) ___ @@ -192,7 +192,7 @@ ___ #### Defined in -[src/models/User.ts:37](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L37) +[src/models/User.ts:37](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L37) ___ @@ -202,7 +202,7 @@ ___ #### Defined in -[src/models/User.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L38) +[src/models/User.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L38) ___ @@ -212,7 +212,7 @@ ___ #### Defined in -[src/models/User.ts:39](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L39) +[src/models/User.ts:39](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L39) ___ @@ -222,7 +222,7 @@ ___ #### Defined in -[src/models/User.ts:40](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L40) +[src/models/User.ts:40](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L40) ___ @@ -232,7 +232,7 @@ ___ #### Defined in -[src/models/User.ts:41](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L41) +[src/models/User.ts:41](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L41) ___ @@ -242,7 +242,7 @@ ___ #### Defined in -[src/models/User.ts:42](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L42) +[src/models/User.ts:42](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L42) ___ @@ -252,7 +252,7 @@ ___ #### Defined in -[src/models/User.ts:43](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L43) +[src/models/User.ts:43](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L43) ___ @@ -262,7 +262,7 @@ ___ #### Defined in -[src/models/User.ts:44](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L44) +[src/models/User.ts:44](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L44) ___ @@ -272,7 +272,7 @@ ___ #### Defined in -[src/models/User.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L45) +[src/models/User.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L45) ___ @@ -290,7 +290,7 @@ ___ #### Defined in -[src/models/User.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L46) +[src/models/User.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L46) ___ @@ -300,7 +300,7 @@ ___ #### Defined in -[src/models/User.ts:51](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L51) +[src/models/User.ts:51](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L51) ___ @@ -310,7 +310,7 @@ ___ #### Defined in -[src/models/User.ts:52](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L52) +[src/models/User.ts:52](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L52) ___ @@ -320,7 +320,7 @@ ___ #### Defined in -[src/models/User.ts:53](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L53) +[src/models/User.ts:53](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L53) ___ @@ -330,7 +330,7 @@ ___ #### Defined in -[src/models/User.ts:54](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L54) +[src/models/User.ts:54](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L54) ___ @@ -340,7 +340,7 @@ ___ #### Defined in -[src/models/User.ts:55](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L55) +[src/models/User.ts:55](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L55) ___ @@ -350,7 +350,7 @@ ___ #### Defined in -[src/models/User.ts:56](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L56) +[src/models/User.ts:56](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L56) ___ @@ -360,4 +360,4 @@ ___ #### Defined in -[src/models/User.ts:57](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/User.ts#L57) +[src/models/User.ts:57](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 377adc3313c..39c1c5a0102 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/fcc2f8f/src/models/UserCustomData.ts#L8) +[src/models/UserCustomData.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/UserCustomData.ts#L8) ___ @@ -33,7 +33,7 @@ ___ #### Defined in -[src/models/UserCustomData.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/UserCustomData.ts#L9) +[src/models/UserCustomData.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/UserCustomData.ts#L9) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/models/UserCustomData.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/UserCustomData.ts#L11) +[src/models/UserCustomData.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/UserCustomData.ts#L11) ___ @@ -53,4 +53,4 @@ ___ #### Defined in -[src/models/UserCustomData.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/models/UserCustomData.ts#L10) +[src/models/UserCustomData.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 7dce32c0390..bb3921dbf47 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:2236](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2236) +[src/types/generatedGraphQLTypes.ts:2237](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2237) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.CountryCodeScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.CountryCodeScalarConfig.md index 63eee5fb6c8..1916017cba0 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:2291](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2291) +[src/types/generatedGraphQLTypes.ts:2292](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2292) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.DateScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.DateScalarConfig.md index 84aaea92e99..a8de4a89979 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:2295](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2295) +[src/types/generatedGraphQLTypes.ts:2296](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2296) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.DateTimeScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.DateTimeScalarConfig.md index 5e63149e937..f2dedc55edd 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:2299](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2299) +[src/types/generatedGraphQLTypes.ts:2300](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2300) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.EmailAddressScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.EmailAddressScalarConfig.md index 38a5d84f0da..3de51e491e4 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:2343](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2343) +[src/types/generatedGraphQLTypes.ts:2344](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2344) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.JsonScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.JsonScalarConfig.md index 47c1ed94151..dd7373e8b5b 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:2441](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2441) +[src/types/generatedGraphQLTypes.ts:2442](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2442) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.LatitudeScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.LatitudeScalarConfig.md index 87e2756fe27..189851d5f55 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:2462](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2462) +[src/types/generatedGraphQLTypes.ts:2463](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2463) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.LongitudeScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.LongitudeScalarConfig.md index 4165319f74b..42c8fd2d384 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:2466](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2466) +[src/types/generatedGraphQLTypes.ts:2467](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2467) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.PhoneNumberScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.PhoneNumberScalarConfig.md index 9f6c9046f79..89941bac68c 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:2671](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2671) +[src/types/generatedGraphQLTypes.ts:2672](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2672) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.PositiveIntScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.PositiveIntScalarConfig.md index 1939a9e2a4b..2d3991ee02f 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:2692](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2692) +[src/types/generatedGraphQLTypes.ts:2693](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2693) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.SubscriptionResolverObject.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.SubscriptionResolverObject.md index ba9aaabb2ea..45ff88c4ad9 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:1895](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1895) +[src/types/generatedGraphQLTypes.ts:1896](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1896) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1894](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1894) +[src/types/generatedGraphQLTypes.ts:1895](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1895) diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.SubscriptionSubscriberObject.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.SubscriptionSubscriberObject.md index abefdcf1b03..3500d2f04ab 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:1890](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1890) +[src/types/generatedGraphQLTypes.ts:1891](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1891) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1889](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1889) +[src/types/generatedGraphQLTypes.ts:1890](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1890) diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.TimeScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.TimeScalarConfig.md index 24d36e64964..44795ba0dd2 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:2764](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2764) +[src/types/generatedGraphQLTypes.ts:2765](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2765) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.UploadScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.UploadScalarConfig.md index c67c10dead1..7f479b08bd2 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:2795](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2795) +[src/types/generatedGraphQLTypes.ts:2796](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2796) ___ diff --git a/talawa-api-docs/interfaces/types_generatedGraphQLTypes.UrlScalarConfig.md b/talawa-api-docs/interfaces/types_generatedGraphQLTypes.UrlScalarConfig.md index 5b3a96aee6b..64cfa311530 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:2776](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2776) +[src/types/generatedGraphQLTypes.ts:2777](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2777) ___ diff --git a/talawa-api-docs/interfaces/utilities_auth.InterfaceJwtTokenPayload.md b/talawa-api-docs/interfaces/utilities_auth.InterfaceJwtTokenPayload.md index 52fe112d6e1..154c3115ded 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/fcc2f8f/src/utilities/auth.ts#L11) +[src/utilities/auth.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/auth.ts#L11) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/utilities/auth.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/auth.ts#L9) +[src/utilities/auth.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/auth.ts#L9) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/utilities/auth.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/auth.ts#L10) +[src/utilities/auth.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/auth.ts#L10) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/utilities/auth.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/auth.ts#L7) +[src/utilities/auth.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/auth.ts#L7) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/utilities/auth.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/auth.ts#L8) +[src/utilities/auth.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 e1195ac82ad..50bf27bcb84 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/fcc2f8f/src/utilities/mailer.ts#L14) +[src/utilities/mailer.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/mailer.ts#L14) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/utilities/mailer.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/mailer.ts#L12) +[src/utilities/mailer.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/mailer.ts#L12) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/utilities/mailer.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/mailer.ts#L13) +[src/utilities/mailer.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/mailer.ts#L13) diff --git a/talawa-api-docs/modules/app.md b/talawa-api-docs/modules/app.md index deed00d6f81..39a0f026e27 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/fcc2f8f/src/app.ts#L15) +[src/app.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/app.ts#L15) +[src/app.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/app.ts#L15) diff --git a/talawa-api-docs/modules/checks.md b/talawa-api-docs/modules/checks.md index 4e51ecb6a9b..bc149637d7a 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/fcc2f8f/src/checks.ts#L27) +[src/checks.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/checks.ts#L27) diff --git a/talawa-api-docs/modules/config_appConfig.md b/talawa-api-docs/modules/config_appConfig.md index 39d45abe77a..3d0a540e1b2 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/fcc2f8f/src/config/appConfig.ts#L1) +[src/config/appConfig.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 72e52c38e98..1bdbb395d04 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/fcc2f8f/src/config/plugins/loadPlugins.ts#L7) +[src/config/plugins/loadPlugins.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/config/plugins/loadPlugins.ts#L7) diff --git a/talawa-api-docs/modules/constants.md b/talawa-api-docs/modules/constants.md index c54656ba249..28c4947b152 100644 --- a/talawa-api-docs/modules/constants.md +++ b/talawa-api-docs/modules/constants.md @@ -55,7 +55,9 @@ - [ORGANIZATION\_MEMBER\_NOT\_FOUND\_ERROR](constants.md#organization_member_not_found_error) - [ORGANIZATION\_NOT\_AUTHORIZED\_ERROR](constants.md#organization_not_authorized_error) - [ORGANIZATION\_NOT\_FOUND\_ERROR](constants.md#organization_not_found_error) +- [PLEASE\_PROVIDE\_TITLE](constants.md#please_provide_title) - [PLUGIN\_NOT\_FOUND](constants.md#plugin_not_found) +- [POST\_NEEDS\_TO\_BE\_PINNED](constants.md#post_needs_to_be_pinned) - [POST\_NOT\_FOUND\_ERROR](constants.md#post_not_found_error) - [RECAPTCHA\_SECRET\_KEY](constants.md#recaptcha_secret_key) - [REDIS\_HOST](constants.md#redis_host) @@ -109,7 +111,7 @@ #### Defined in -[src/constants.ts:449](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L449) +[src/constants.ts:461](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L461) ___ @@ -127,7 +129,7 @@ ___ #### Defined in -[src/constants.ts:227](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L227) +[src/constants.ts:227](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L227) ___ @@ -145,7 +147,7 @@ ___ #### Defined in -[src/constants.ts:220](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L220) +[src/constants.ts:220](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L220) ___ @@ -163,7 +165,7 @@ ___ #### Defined in -[src/constants.ts:208](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L208) +[src/constants.ts:208](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L208) ___ @@ -181,7 +183,7 @@ ___ #### Defined in -[src/constants.ts:214](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L214) +[src/constants.ts:214](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L214) ___ @@ -200,7 +202,7 @@ ___ #### Defined in -[src/constants.ts:301](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L301) +[src/constants.ts:313](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L313) ___ @@ -210,7 +212,7 @@ ___ #### Defined in -[src/constants.ts:447](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L447) +[src/constants.ts:459](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L459) ___ @@ -229,7 +231,7 @@ ___ #### Defined in -[src/constants.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L10) +[src/constants.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L10) ___ @@ -248,7 +250,7 @@ ___ #### Defined in -[src/constants.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L16) +[src/constants.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L16) ___ @@ -266,7 +268,7 @@ ___ #### Defined in -[src/constants.ts:421](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L421) +[src/constants.ts:433](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L433) ___ @@ -284,7 +286,7 @@ ___ #### Defined in -[src/constants.ts:433](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L433) +[src/constants.ts:445](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L445) ___ @@ -302,7 +304,7 @@ ___ #### Defined in -[src/constants.ts:427](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L427) +[src/constants.ts:439](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L439) ___ @@ -320,7 +322,7 @@ ___ #### Defined in -[src/constants.ts:439](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L439) +[src/constants.ts:451](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L451) ___ @@ -339,7 +341,7 @@ ___ #### Defined in -[src/constants.ts:387](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L387) +[src/constants.ts:399](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L399) ___ @@ -357,7 +359,7 @@ ___ #### Defined in -[src/constants.ts:128](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L128) +[src/constants.ts:128](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L128) ___ @@ -367,7 +369,7 @@ ___ #### Defined in -[src/constants.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L22) +[src/constants.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L22) ___ @@ -386,7 +388,7 @@ ___ #### Defined in -[src/constants.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L23) +[src/constants.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L23) ___ @@ -404,7 +406,7 @@ ___ #### Defined in -[src/constants.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L30) +[src/constants.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L30) ___ @@ -422,7 +424,7 @@ ___ #### Defined in -[src/constants.ts:140](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L140) +[src/constants.ts:140](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L140) ___ @@ -440,7 +442,7 @@ ___ #### Defined in -[src/constants.ts:260](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L260) +[src/constants.ts:272](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L272) ___ @@ -458,7 +460,7 @@ ___ #### Defined in -[src/constants.ts:307](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L307) +[src/constants.ts:319](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L319) ___ @@ -476,7 +478,7 @@ ___ #### Defined in -[src/constants.ts:116](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L116) +[src/constants.ts:116](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L116) ___ @@ -495,7 +497,7 @@ ___ #### Defined in -[src/constants.ts:367](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L367) +[src/constants.ts:379](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L379) ___ @@ -513,7 +515,7 @@ ___ #### Defined in -[src/constants.ts:97](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L97) +[src/constants.ts:97](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L97) ___ @@ -523,7 +525,7 @@ ___ #### Defined in -[src/constants.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L36) +[src/constants.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L36) ___ @@ -542,7 +544,7 @@ ___ #### Defined in -[src/constants.ts:373](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L373) +[src/constants.ts:385](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L385) ___ @@ -561,7 +563,7 @@ ___ #### Defined in -[src/constants.ts:103](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L103) +[src/constants.ts:103](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L103) ___ @@ -579,7 +581,7 @@ ___ #### Defined in -[src/constants.ts:253](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L253) +[src/constants.ts:265](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L265) ___ @@ -589,7 +591,7 @@ ___ #### Defined in -[src/constants.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L38) +[src/constants.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L38) ___ @@ -599,7 +601,7 @@ ___ #### Defined in -[src/constants.ts:461](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L461) +[src/constants.ts:473](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L473) ___ @@ -617,7 +619,7 @@ ___ #### Defined in -[src/constants.ts:147](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L147) +[src/constants.ts:147](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L147) ___ @@ -627,7 +629,7 @@ ___ #### Defined in -[src/constants.ts:480](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L480) +[src/constants.ts:492](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L492) ___ @@ -637,7 +639,7 @@ ___ #### Defined in -[src/constants.ts:482](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L482) +[src/constants.ts:494](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L494) ___ @@ -647,7 +649,7 @@ ___ #### Defined in -[src/constants.ts:459](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L459) +[src/constants.ts:471](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L471) ___ @@ -657,7 +659,7 @@ ___ #### Defined in -[src/constants.ts:457](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L457) +[src/constants.ts:469](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L469) ___ @@ -667,7 +669,7 @@ ___ #### Defined in -[src/constants.ts:445](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L445) +[src/constants.ts:457](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L457) ___ @@ -677,7 +679,7 @@ ___ #### Defined in -[src/constants.ts:51](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L51) +[src/constants.ts:51](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L51) ___ @@ -696,7 +698,7 @@ ___ #### Defined in -[src/constants.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L45) +[src/constants.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L45) ___ @@ -715,7 +717,7 @@ ___ #### Defined in -[src/constants.ts:39](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L39) +[src/constants.ts:39](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L39) ___ @@ -725,7 +727,7 @@ ___ #### Defined in -[src/constants.ts:453](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L453) +[src/constants.ts:465](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L465) ___ @@ -743,7 +745,7 @@ ___ #### Defined in -[src/constants.ts:266](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L266) +[src/constants.ts:278](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L278) ___ @@ -762,7 +764,7 @@ ___ #### Defined in -[src/constants.ts:72](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L72) +[src/constants.ts:72](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L72) ___ @@ -781,7 +783,7 @@ ___ #### Defined in -[src/constants.ts:54](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L54) +[src/constants.ts:54](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L54) ___ @@ -800,7 +802,7 @@ ___ #### Defined in -[src/constants.ts:60](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L60) +[src/constants.ts:60](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L60) ___ @@ -819,7 +821,25 @@ ___ #### Defined in -[src/constants.ts:66](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L66) +[src/constants.ts:66](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L66) + +___ + +### PLEASE\_PROVIDE\_TITLE + +• `Const` **PLEASE\_PROVIDE\_TITLE**: `Object` + +#### Type declaration + +| Name | Type | +| :------ | :------ | +| `CODE` | `string` | +| `MESSAGE` | `string` | +| `PARAM` | `string` | + +#### Defined in + +[src/constants.ts:239](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L239) ___ @@ -838,7 +858,25 @@ ___ #### Defined in -[src/constants.ts:78](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L78) +[src/constants.ts:78](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L78) + +___ + +### POST\_NEEDS\_TO\_BE\_PINNED + +• `Const` **POST\_NEEDS\_TO\_BE\_PINNED**: `Object` + +#### Type declaration + +| Name | Type | +| :------ | :------ | +| `CODE` | `string` | +| `MESSAGE` | `string` | +| `PARAM` | `string` | + +#### Defined in + +[src/constants.ts:233](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L233) ___ @@ -857,7 +895,7 @@ ___ #### Defined in -[src/constants.ts:84](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L84) +[src/constants.ts:84](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L84) ___ @@ -867,7 +905,7 @@ ___ #### Defined in -[src/constants.ts:455](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L455) +[src/constants.ts:467](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L467) ___ @@ -877,7 +915,7 @@ ___ #### Defined in -[src/constants.ts:473](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L473) +[src/constants.ts:485](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L485) ___ @@ -887,7 +925,7 @@ ___ #### Defined in -[src/constants.ts:475](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L475) +[src/constants.ts:487](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L487) ___ @@ -897,7 +935,7 @@ ___ #### Defined in -[src/constants.ts:474](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L474) +[src/constants.ts:486](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L486) ___ @@ -907,7 +945,7 @@ ___ #### Defined in -[src/constants.ts:451](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L451) +[src/constants.ts:463](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L463) ___ @@ -925,7 +963,7 @@ ___ #### Defined in -[src/constants.ts:153](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L153) +[src/constants.ts:153](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L153) ___ @@ -944,7 +982,7 @@ ___ #### Defined in -[src/constants.ts:90](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L90) +[src/constants.ts:90](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L90) ___ @@ -962,7 +1000,7 @@ ___ #### Defined in -[src/constants.ts:110](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L110) +[src/constants.ts:110](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L110) ___ @@ -981,7 +1019,7 @@ ___ #### Defined in -[src/constants.ts:414](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L414) +[src/constants.ts:426](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L426) ___ @@ -1002,7 +1040,7 @@ ___ #### Defined in -[src/constants.ts:464](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L464) +[src/constants.ts:476](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L476) ___ @@ -1020,7 +1058,7 @@ ___ #### Defined in -[src/constants.ts:134](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L134) +[src/constants.ts:134](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L134) ___ @@ -1030,7 +1068,7 @@ ___ #### Defined in -[src/constants.ts:312](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L312) +[src/constants.ts:324](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L324) ___ @@ -1048,7 +1086,7 @@ ___ #### Defined in -[src/constants.ts:355](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L355) +[src/constants.ts:367](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L367) ___ @@ -1066,7 +1104,7 @@ ___ #### Defined in -[src/constants.ts:273](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L273) +[src/constants.ts:285](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L285) ___ @@ -1084,7 +1122,7 @@ ___ #### Defined in -[src/constants.ts:240](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L240) +[src/constants.ts:252](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L252) ___ @@ -1103,7 +1141,7 @@ ___ #### Defined in -[src/constants.ts:361](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L361) +[src/constants.ts:373](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L373) ___ @@ -1121,7 +1159,7 @@ ___ #### Defined in -[src/constants.ts:122](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L122) +[src/constants.ts:122](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L122) ___ @@ -1131,7 +1169,7 @@ ___ #### Defined in -[src/constants.ts:314](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L314) +[src/constants.ts:326](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L326) ___ @@ -1149,7 +1187,7 @@ ___ #### Defined in -[src/constants.ts:408](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L408) +[src/constants.ts:420](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L420) ___ @@ -1167,7 +1205,7 @@ ___ #### Defined in -[src/constants.ts:287](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L287) +[src/constants.ts:299](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L299) ___ @@ -1186,7 +1224,7 @@ ___ #### Defined in -[src/constants.ts:319](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L319) +[src/constants.ts:331](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L331) ___ @@ -1204,7 +1242,7 @@ ___ #### Defined in -[src/constants.ts:171](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L171) +[src/constants.ts:171](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L171) ___ @@ -1223,7 +1261,7 @@ ___ #### Defined in -[src/constants.ts:325](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L325) +[src/constants.ts:337](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L337) ___ @@ -1241,7 +1279,7 @@ ___ #### Defined in -[src/constants.ts:195](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L195) +[src/constants.ts:195](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L195) ___ @@ -1259,7 +1297,7 @@ ___ #### Defined in -[src/constants.ts:246](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L246) +[src/constants.ts:258](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L258) ___ @@ -1277,7 +1315,7 @@ ___ #### Defined in -[src/constants.ts:294](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L294) +[src/constants.ts:306](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L306) ___ @@ -1295,7 +1333,7 @@ ___ #### Defined in -[src/constants.ts:165](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L165) +[src/constants.ts:165](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L165) ___ @@ -1314,7 +1352,7 @@ ___ #### Defined in -[src/constants.ts:331](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L331) +[src/constants.ts:343](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L343) ___ @@ -1332,7 +1370,7 @@ ___ #### Defined in -[src/constants.ts:159](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L159) +[src/constants.ts:159](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L159) ___ @@ -1350,7 +1388,7 @@ ___ #### Defined in -[src/constants.ts:280](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L280) +[src/constants.ts:292](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L292) ___ @@ -1368,7 +1406,7 @@ ___ #### Defined in -[src/constants.ts:233](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L233) +[src/constants.ts:245](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L245) ___ @@ -1386,7 +1424,7 @@ ___ #### Defined in -[src/constants.ts:183](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L183) +[src/constants.ts:183](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L183) ___ @@ -1405,7 +1443,7 @@ ___ #### Defined in -[src/constants.ts:337](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L337) +[src/constants.ts:349](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L349) ___ @@ -1424,7 +1462,7 @@ ___ #### Defined in -[src/constants.ts:343](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L343) +[src/constants.ts:355](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L355) ___ @@ -1442,7 +1480,7 @@ ___ #### Defined in -[src/constants.ts:189](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L189) +[src/constants.ts:189](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L189) ___ @@ -1460,7 +1498,7 @@ ___ #### Defined in -[src/constants.ts:177](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L177) +[src/constants.ts:177](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L177) ___ @@ -1479,7 +1517,7 @@ ___ #### Defined in -[src/constants.ts:380](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L380) +[src/constants.ts:392](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L392) ___ @@ -1497,7 +1535,7 @@ ___ #### Defined in -[src/constants.ts:201](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L201) +[src/constants.ts:201](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L201) ___ @@ -1516,7 +1554,7 @@ ___ #### Defined in -[src/constants.ts:349](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L349) +[src/constants.ts:361](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L361) ___ @@ -1535,7 +1573,7 @@ ___ #### Defined in -[src/constants.ts:394](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L394) +[src/constants.ts:406](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L406) ___ @@ -1554,7 +1592,7 @@ ___ #### Defined in -[src/constants.ts:401](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L401) +[src/constants.ts:413](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L413) ___ @@ -1564,7 +1602,7 @@ ___ #### Defined in -[src/constants.ts:478](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L478) +[src/constants.ts:490](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L490) ___ @@ -1574,4 +1612,4 @@ ___ #### Defined in -[src/constants.ts:477](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/constants.ts#L477) +[src/constants.ts:489](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/constants.ts#L489) diff --git a/talawa-api-docs/modules/db.md b/talawa-api-docs/modules/db.md index 620561c975e..68b0e389185 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/fcc2f8f/src/db.ts#L5) +[src/db.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/db.ts#L5) ## Functions @@ -35,7 +35,7 @@ #### Defined in -[src/db.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/db.ts#L7) +[src/db.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/db.ts#L7) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/db.ts:50](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/db.ts#L50) +[src/db.ts:50](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 764e3775b2f..fae50d5781a 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/fcc2f8f/src/directives/directiveTransformer/authDirectiveTransformer.ts#L6) +[src/directives/directiveTransformer/authDirectiveTransformer.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 ccb9c1df95d..c7d0604881e 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/fcc2f8f/src/directives/directiveTransformer/roleDirectiveTransformer.ts#L11) +[src/directives/directiveTransformer/roleDirectiveTransformer.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/directives/directiveTransformer/roleDirectiveTransformer.ts#L11) diff --git a/talawa-api-docs/modules/env.md b/talawa-api-docs/modules/env.md index 9b096283624..b276c2b0ba9 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/fcc2f8f/src/env.ts#L3) +[src/env.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/env.ts#L3) ## Functions @@ -34,4 +34,4 @@ #### Defined in -[src/env.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/env.ts#L36) +[src/env.ts:36](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 0e998409d13..55f28ed5086 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/fcc2f8f/src/helpers/eventInstances/once.ts#L10) +[src/helpers/eventInstances/once.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 4af26000176..7c403d35737 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/fcc2f8f/src/helpers/eventInstances/weekly.ts#L18) +[src/helpers/eventInstances/weekly.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/helpers/eventInstances/weekly.ts#L18) diff --git a/talawa-api-docs/modules/index.md b/talawa-api-docs/modules/index.md index 6f850dcb5dd..0571b093c0b 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/fcc2f8f/src/index.ts#L25) +[src/index.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/index.ts#L25) diff --git a/talawa-api-docs/modules/libraries_dbLogger.md b/talawa-api-docs/modules/libraries_dbLogger.md index 80b1450ea1b..97837b391fc 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/fcc2f8f/src/libraries/dbLogger.ts#L5) +[src/libraries/dbLogger.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/dbLogger.ts#L5) ## Variables @@ -49,7 +49,7 @@ #### Defined in -[src/libraries/dbLogger.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/dbLogger.ts#L13) +[src/libraries/dbLogger.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/dbLogger.ts#L13) ## Functions @@ -76,4 +76,4 @@ #### Defined in -[src/libraries/dbLogger.ts:40](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/dbLogger.ts#L40) +[src/libraries/dbLogger.ts:40](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/dbLogger.ts#L40) diff --git a/talawa-api-docs/modules/libraries_logger.md b/talawa-api-docs/modules/libraries_logger.md index 9254c157cdd..139d9fabfda 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:42](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/logger.ts#L42) +[src/libraries/logger.ts:42](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/logger.ts#L42) ___ @@ -33,4 +33,4 @@ ___ #### Defined in -[src/libraries/logger.ts:55](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/logger.ts#L55) +[src/libraries/logger.ts:55](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/logger.ts#L55) diff --git a/talawa-api-docs/modules/libraries_requestContext.md b/talawa-api-docs/modules/libraries_requestContext.md index 46158951b64..fcaf9fb4c32 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/fcc2f8f/src/libraries/requestContext.ts#L8) +[src/libraries/requestContext.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/requestContext.ts#L8) ## Functions @@ -52,7 +52,7 @@ #### Defined in -[src/libraries/requestContext.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/requestContext.ts#L19) +[src/libraries/requestContext.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/requestContext.ts#L19) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[src/libraries/requestContext.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/requestContext.ts#L45) +[src/libraries/requestContext.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/requestContext.ts#L45) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[src/libraries/requestContext.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/requestContext.ts#L28) +[src/libraries/requestContext.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/requestContext.ts#L28) ___ @@ -126,7 +126,7 @@ ___ #### Defined in -[src/libraries/requestContext.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/requestContext.ts#L23) +[src/libraries/requestContext.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/requestContext.ts#L23) ___ @@ -153,7 +153,7 @@ ___ #### Defined in -[src/libraries/requestContext.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/requestContext.ts#L14) +[src/libraries/requestContext.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/requestContext.ts#L14) ___ @@ -173,7 +173,7 @@ ___ #### Defined in -[src/libraries/requestContext.ts:62](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/requestContext.ts#L62) +[src/libraries/requestContext.ts:62](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/requestContext.ts#L62) ___ @@ -193,4 +193,4 @@ ___ #### Defined in -[src/libraries/requestContext.ts:71](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/requestContext.ts#L71) +[src/libraries/requestContext.ts:71](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/requestContext.ts#L71) diff --git a/talawa-api-docs/modules/libraries_requestTracing.md b/talawa-api-docs/modules/libraries_requestTracing.md index 5f63ec34bbf..dbb30a0e546 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/fcc2f8f/src/libraries/requestTracing.ts#L17) +[src/libraries/requestTracing.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/requestTracing.ts#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/libraries/requestTracing.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/requestTracing.ts#L21) +[src/libraries/requestTracing.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/requestTracing.ts#L21) ## Functions @@ -48,7 +48,7 @@ ___ #### Defined in -[src/libraries/requestTracing.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/requestTracing.ts#L29) +[src/libraries/requestTracing.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/requestTracing.ts#L29) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[src/libraries/requestTracing.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/requestTracing.ts#L33) +[src/libraries/requestTracing.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/requestTracing.ts#L33) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[src/libraries/requestTracing.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/requestTracing.ts#L25) +[src/libraries/requestTracing.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/libraries/requestTracing.ts#L25) ___ @@ -123,4 +123,4 @@ ___ #### Defined in -[src/libraries/requestTracing.ts:50](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/libraries/requestTracing.ts#L50) +[src/libraries/requestTracing.ts:50](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 aafb2fe55cf..ed9f2ecf6d6 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/fcc2f8f/src/libraries/validators/compareDates.ts#L1) +[src/libraries/validators/compareDates.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 acf03b4c7f4..878b9c8f6c3 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/fcc2f8f/src/libraries/validators/validatePaginationArgs.ts#L7) +[src/libraries/validators/validatePaginationArgs.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 a6db46086b9..02d2fea798c 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/fcc2f8f/src/libraries/validators/validateString.ts#L1) +[src/libraries/validators/validateString.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 8c83a26175f..1f27b66e992 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/fcc2f8f/src/middleware/isAuth.ts#L17) +[src/middleware/isAuth.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/middleware/isAuth.ts#L17) diff --git a/talawa-api-docs/modules/models_Advertisement.md b/talawa-api-docs/modules/models_Advertisement.md index 22ce615aabe..55f0bf73d30 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/fcc2f8f/src/models/Advertisement.ts#L106) +[src/models/Advertisement.ts:106](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Advertisement.ts#L106) diff --git a/talawa-api-docs/modules/models_CheckIn.md b/talawa-api-docs/modules/models_CheckIn.md index e5f1696f1c0..d6bdef25590 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/fcc2f8f/src/models/CheckIn.ts#L64) +[src/models/CheckIn.ts:64](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/CheckIn.ts#L64) diff --git a/talawa-api-docs/modules/models_Comment.md b/talawa-api-docs/modules/models_Comment.md index d5c39633e14..636939582ef 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/fcc2f8f/src/models/Comment.ts#L72) +[src/models/Comment.ts:72](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Comment.ts#L72) diff --git a/talawa-api-docs/modules/models_DirectChat.md b/talawa-api-docs/modules/models_DirectChat.md index face3a47ea0..cc43d64be8d 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/fcc2f8f/src/models/DirectChat.ts#L70) +[src/models/DirectChat.ts:70](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChat.ts#L70) diff --git a/talawa-api-docs/modules/models_DirectChatMessage.md b/talawa-api-docs/modules/models_DirectChatMessage.md index f79a5831836..667083e1fed 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/fcc2f8f/src/models/DirectChatMessage.ts#L68) +[src/models/DirectChatMessage.ts:68](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/DirectChatMessage.ts#L68) diff --git a/talawa-api-docs/modules/models_Donation.md b/talawa-api-docs/modules/models_Donation.md index a77d3694276..85ad666bbc8 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/fcc2f8f/src/models/Donation.ts#L63) +[src/models/Donation.ts:63](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Donation.ts#L63) diff --git a/talawa-api-docs/modules/models_EncodedImage.md b/talawa-api-docs/modules/models_EncodedImage.md index 8b591256e73..84999565e8b 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/fcc2f8f/src/models/EncodedImage.ts#L38) +[src/models/EncodedImage.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/EncodedImage.ts#L38) diff --git a/talawa-api-docs/modules/models_EncodedVideo.md b/talawa-api-docs/modules/models_EncodedVideo.md index f0bf124e27c..36f3e0aee30 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/fcc2f8f/src/models/EncodedVideo.ts#L38) +[src/models/EncodedVideo.ts:38](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/EncodedVideo.ts#L38) diff --git a/talawa-api-docs/modules/models_Event.md b/talawa-api-docs/modules/models_Event.md index 8617fac3e59..7d1d8490a3f 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/fcc2f8f/src/models/Event.ts#L168) +[src/models/Event.ts:168](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Event.ts#L168) diff --git a/talawa-api-docs/modules/models_EventAttendee.md b/talawa-api-docs/modules/models_EventAttendee.md index 51fa007e192..83749bcfe5c 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/fcc2f8f/src/models/EventAttendee.ts#L39) +[src/models/EventAttendee.ts:39](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/EventAttendee.ts#L39) diff --git a/talawa-api-docs/modules/models_Feedback.md b/talawa-api-docs/modules/models_Feedback.md index 3b441ca0a97..df69ada3d00 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/fcc2f8f/src/models/Feedback.ts#L46) +[src/models/Feedback.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Feedback.ts#L46) diff --git a/talawa-api-docs/modules/models_File.md b/talawa-api-docs/modules/models_File.md index 2d097dbb893..ced376a8244 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/fcc2f8f/src/models/File.ts#L65) +[src/models/File.ts:65](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/File.ts#L65) diff --git a/talawa-api-docs/modules/models_Group.md b/talawa-api-docs/modules/models_Group.md index 343063e4b9b..d3fdbd909ff 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/fcc2f8f/src/models/Group.ts#L64) +[src/models/Group.ts:64](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Group.ts#L64) diff --git a/talawa-api-docs/modules/models_GroupChat.md b/talawa-api-docs/modules/models_GroupChat.md index c00d9ab3b8b..f11f410a234 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/fcc2f8f/src/models/GroupChat.ts#L76) +[src/models/GroupChat.ts:76](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChat.ts#L76) diff --git a/talawa-api-docs/modules/models_GroupChatMessage.md b/talawa-api-docs/modules/models_GroupChatMessage.md index 2ccce1aeb72..92c021ec1e7 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/fcc2f8f/src/models/GroupChatMessage.ts#L58) +[src/models/GroupChatMessage.ts:58](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/GroupChatMessage.ts#L58) diff --git a/talawa-api-docs/modules/models_ImageHash.md b/talawa-api-docs/modules/models_ImageHash.md index 9c66082e3dc..dd9952fcf80 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/fcc2f8f/src/models/ImageHash.ts#L46) +[src/models/ImageHash.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/ImageHash.ts#L46) diff --git a/talawa-api-docs/modules/models_Language.md b/talawa-api-docs/modules/models_Language.md index 72c0e899f1a..f7277be3933 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/fcc2f8f/src/models/Language.ts#L77) +[src/models/Language.ts:77](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Language.ts#L77) diff --git a/talawa-api-docs/modules/models_MembershipRequest.md b/talawa-api-docs/modules/models_MembershipRequest.md index 64f0d46307f..4633742c5a7 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/fcc2f8f/src/models/MembershipRequest.ts#L46) +[src/models/MembershipRequest.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/MembershipRequest.ts#L46) diff --git a/talawa-api-docs/modules/models_Message.md b/talawa-api-docs/modules/models_Message.md index 1e84896b5a4..eb02e879ff6 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/fcc2f8f/src/models/Message.ts#L70) +[src/models/Message.ts:70](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Message.ts#L70) diff --git a/talawa-api-docs/modules/models_MessageChat.md b/talawa-api-docs/modules/models_MessageChat.md index def98940d86..060047a4a27 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/fcc2f8f/src/models/MessageChat.ts#L56) +[src/models/MessageChat.ts:56](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/MessageChat.ts#L56) diff --git a/talawa-api-docs/modules/models_Organization.md b/talawa-api-docs/modules/models_Organization.md index 21849b074e7..e036b2a7a00 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/fcc2f8f/src/models/Organization.ts#L184) +[src/models/Organization.ts:184](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Organization.ts#L184) diff --git a/talawa-api-docs/modules/models_OrganizationCustomField.md b/talawa-api-docs/modules/models_OrganizationCustomField.md index 66b4b70e5fe..67669eb482e 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/fcc2f8f/src/models/OrganizationCustomField.ts#L29) +[src/models/OrganizationCustomField.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/OrganizationCustomField.ts#L29) diff --git a/talawa-api-docs/modules/models_OrganizationTagUser.md b/talawa-api-docs/modules/models_OrganizationTagUser.md index a5ab49728c7..6358e885b49 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/fcc2f8f/src/models/OrganizationTagUser.ts#L45) +[src/models/OrganizationTagUser.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/OrganizationTagUser.ts#L45) diff --git a/talawa-api-docs/modules/models_Plugin.md b/talawa-api-docs/modules/models_Plugin.md index 6d1072476af..f09839b39e1 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/fcc2f8f/src/models/Plugin.ts#L47) +[src/models/Plugin.ts:47](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Plugin.ts#L47) diff --git a/talawa-api-docs/modules/models_PluginField.md b/talawa-api-docs/modules/models_PluginField.md index c6f45df10c3..8101b29d0e8 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/fcc2f8f/src/models/PluginField.ts#L45) +[src/models/PluginField.ts:45](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/PluginField.ts#L45) diff --git a/talawa-api-docs/modules/models_Post.md b/talawa-api-docs/modules/models_Post.md index 8d715e1996f..4832c69c8da 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/fcc2f8f/src/models/Post.ts#L106) +[src/models/Post.ts:106](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/Post.ts#L106) diff --git a/talawa-api-docs/modules/models_SampleData.md b/talawa-api-docs/modules/models_SampleData.md index f497d350e4b..78acaa99f0b 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/fcc2f8f/src/models/SampleData.ts#L24) +[src/models/SampleData.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/SampleData.ts#L24) diff --git a/talawa-api-docs/modules/models_TagUser.md b/talawa-api-docs/modules/models_TagUser.md index 0b410d44caa..1d98c58446b 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/fcc2f8f/src/models/TagUser.ts#L32) +[src/models/TagUser.ts:32](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/TagUser.ts#L32) diff --git a/talawa-api-docs/modules/models_User.md b/talawa-api-docs/modules/models_User.md index ff2a80e54c1..bbd4a093792 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/fcc2f8f/src/models/User.ts#L292) +[src/models/User.ts:292](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/User.ts#L292) diff --git a/talawa-api-docs/modules/models_UserCustomData.md b/talawa-api-docs/modules/models_UserCustomData.md index 5569ad23aeb..0139bc46387 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/fcc2f8f/src/models/UserCustomData.ts#L43) +[src/models/UserCustomData.ts:43](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/models/UserCustomData.ts#L43) diff --git a/talawa-api-docs/modules/resolvers.md b/talawa-api-docs/modules/resolvers.md index d2a5e70465b..e37482ed14e 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:88](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/resolvers/index.ts#L88) +[src/resolvers/index.ts:88](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/resolvers/index.ts#L88) diff --git a/talawa-api-docs/modules/resolvers_CheckIn.md b/talawa-api-docs/modules/resolvers_CheckIn.md index af1d297a8dd..cc6a5207f40 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/fcc2f8f/src/resolvers/CheckIn/index.ts#L5) +[src/resolvers/CheckIn/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 68c0faf39ba..e30d4df7569 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/fcc2f8f/src/resolvers/CheckIn/event.ts#L4) +[src/resolvers/CheckIn/event.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 4e9c4435bdd..7b183b06ad9 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/fcc2f8f/src/resolvers/CheckIn/user.ts#L4) +[src/resolvers/CheckIn/user.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 0bf07aaae09..d61f583ac57 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/fcc2f8f/src/resolvers/Comment/index.ts#L4) +[src/resolvers/Comment/index.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 5d1ce0e69c3..948f7420b23 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/fcc2f8f/src/resolvers/Comment/creator.ts#L4) +[src/resolvers/Comment/creator.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 90dbc3876fd..c0628bf91ea 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/fcc2f8f/src/resolvers/DirectChat/index.ts#L7) +[src/resolvers/DirectChat/index.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 cfbbf3afa53..5e85f2b8b55 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/fcc2f8f/src/resolvers/DirectChatMessage/index.ts#L6) +[src/resolvers/DirectChatMessage/index.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 900f0567081..675b1044e86 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/fcc2f8f/src/resolvers/DirectChatMessage/directChatMessageBelongsTo.ts#L8) +[src/resolvers/DirectChatMessage/directChatMessageBelongsTo.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 8a5388631ce..140d6eacfbc 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/fcc2f8f/src/resolvers/DirectChatMessage/receiver.ts#L8) +[src/resolvers/DirectChatMessage/receiver.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 b220ab24f93..7586ca92d09 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/fcc2f8f/src/resolvers/DirectChatMessage/sender.ts#L8) +[src/resolvers/DirectChatMessage/sender.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 994a830143e..65306e59ca5 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/fcc2f8f/src/resolvers/DirectChat/creator.ts#L8) +[src/resolvers/DirectChat/creator.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 499b914e961..1dbccd8e728 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/fcc2f8f/src/resolvers/DirectChat/messages.ts#L8) +[src/resolvers/DirectChat/messages.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 de197e21338..e75a4da8b5a 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/fcc2f8f/src/resolvers/DirectChat/organization.ts#L10) +[src/resolvers/DirectChat/organization.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 21e02745c80..f7189473f04 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/fcc2f8f/src/resolvers/DirectChat/users.ts#L8) +[src/resolvers/DirectChat/users.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 29b93a62ee4..8bd8ce06ff6 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:9](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/resolvers/Event/index.ts#L9) +[src/resolvers/Event/index.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/resolvers/Event/index.ts#L9) diff --git a/talawa-api-docs/modules/resolvers_Event_attendees.md b/talawa-api-docs/modules/resolvers_Event_attendees.md index 25352ecc2e6..80ddab0330d 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/fcc2f8f/src/resolvers/Event/attendees.ts#L4) +[src/resolvers/Event/attendees.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 a49b3791980..4ca3771ff98 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/fcc2f8f/src/resolvers/Event/attendeesCheckInStatus.ts#L4) +[src/resolvers/Event/attendeesCheckInStatus.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 c3b53ed1cf7..cd319180779 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/fcc2f8f/src/resolvers/Event/averageFeedbackScore.ts#L4) +[src/resolvers/Event/averageFeedbackScore.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 751af119b74..b0d80b6c581 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/fcc2f8f/src/resolvers/Event/creator.ts#L4) +[src/resolvers/Event/creator.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 3d62b10e087..5286cd62e75 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/fcc2f8f/src/resolvers/Event/feedback.ts#L4) +[src/resolvers/Event/feedback.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 d848687c87b..a2380bd98ad 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/fcc2f8f/src/resolvers/Event/organization.ts#L4) +[src/resolvers/Event/organization.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 76b54557710..9d8aee6a553 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/fcc2f8f/src/resolvers/Feedback/index.ts#L4) +[src/resolvers/Feedback/index.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 fd1d0e0182f..c2235278002 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/fcc2f8f/src/resolvers/Feedback/event.ts#L4) +[src/resolvers/Feedback/event.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 5f48c5123d4..41acf58437c 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/fcc2f8f/src/resolvers/GroupChat/index.ts#L7) +[src/resolvers/GroupChat/index.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 9204322f6b4..f6e6733cd23 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/fcc2f8f/src/resolvers/GroupChatMessage/index.ts#L5) +[src/resolvers/GroupChatMessage/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 d6740010e9c..3ab3b224cee 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/fcc2f8f/src/resolvers/GroupChatMessage/groupChatMessageBelongsTo.ts#L8) +[src/resolvers/GroupChatMessage/groupChatMessageBelongsTo.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 e15093b67c3..74ba0263685 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/fcc2f8f/src/resolvers/GroupChatMessage/sender.ts#L8) +[src/resolvers/GroupChatMessage/sender.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 93c2fb06bd1..f507f5f8696 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/fcc2f8f/src/resolvers/GroupChat/creator.ts#L8) +[src/resolvers/GroupChat/creator.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 bdbbb619864..86d71690f07 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/fcc2f8f/src/resolvers/GroupChat/messages.ts#L8) +[src/resolvers/GroupChat/messages.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 c1088658492..4ecbe3a0c85 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/fcc2f8f/src/resolvers/GroupChat/organization.ts#L10) +[src/resolvers/GroupChat/organization.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 ff967119185..be16275d608 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/fcc2f8f/src/resolvers/GroupChat/users.ts#L8) +[src/resolvers/GroupChat/users.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 f96d4fb4a7e..53a73db9a65 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/fcc2f8f/src/resolvers/MembershipRequest/index.ts#L5) +[src/resolvers/MembershipRequest/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 cd899c65746..44e75b5631a 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/fcc2f8f/src/resolvers/MembershipRequest/organization.ts#L8) +[src/resolvers/MembershipRequest/organization.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 21c5cbacedb..c92110d61fd 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/fcc2f8f/src/resolvers/MembershipRequest/user.ts#L8) +[src/resolvers/MembershipRequest/user.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 926da502e45..44d7ca72951 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:89](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/resolvers/Mutation/index.ts#L89) +[src/resolvers/Mutation/index.ts:89](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/resolvers/Mutation/index.ts#L89) diff --git a/talawa-api-docs/modules/resolvers_Mutation_acceptAdmin.md b/talawa-api-docs/modules/resolvers_Mutation_acceptAdmin.md index 2b702837ee6..1ea38f25cdb 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/fcc2f8f/src/resolvers/Mutation/acceptAdmin.ts#L15) +[src/resolvers/Mutation/acceptAdmin.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 09813f26c33..d103f2267e4 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/fcc2f8f/src/resolvers/Mutation/acceptMembershipRequest.ts#L25) +[src/resolvers/Mutation/acceptMembershipRequest.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 4d4ed7e0f57..79f517aa22a 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/fcc2f8f/src/resolvers/Mutation/addEventAttendee.ts#L15) +[src/resolvers/Mutation/addEventAttendee.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 517f8dbafe6..bbe87e56d7d 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/fcc2f8f/src/resolvers/Mutation/addFeedback.ts#L11) +[src/resolvers/Mutation/addFeedback.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 348d42d5b96..cb5a1ca0033 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/fcc2f8f/src/resolvers/Mutation/addLanguageTranslation.ts#L14) +[src/resolvers/Mutation/addLanguageTranslation.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 e3e14e198fb..0b5e03b628f 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/fcc2f8f/src/resolvers/Mutation/addOrganizationCustomField.ts#L25) +[src/resolvers/Mutation/addOrganizationCustomField.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 6c04b4dcbf7..72781eef0b8 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/fcc2f8f/src/resolvers/Mutation/addOrganizationImage.ts#L21) +[src/resolvers/Mutation/addOrganizationImage.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 447084a7966..1e4ef965bdf 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/fcc2f8f/src/resolvers/Mutation/addUserCustomData.ts#L20) +[src/resolvers/Mutation/addUserCustomData.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 3dd8a0afa8a..966c6ab50f8 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/fcc2f8f/src/resolvers/Mutation/addUserImage.ts#L15) +[src/resolvers/Mutation/addUserImage.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 1ee87794efc..3144e6ac5f7 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/fcc2f8f/src/resolvers/Mutation/addUserToGroupChat.ts#L27) +[src/resolvers/Mutation/addUserToGroupChat.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 381bfd50b83..20190bf3312 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/fcc2f8f/src/resolvers/Mutation/adminRemoveEvent.ts#L27) +[src/resolvers/Mutation/adminRemoveEvent.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 cf60b66b926..f29dba8d7d9 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/fcc2f8f/src/resolvers/Mutation/adminRemoveGroup.ts#L25) +[src/resolvers/Mutation/adminRemoveGroup.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 ee1fcad8b32..058abe84dd9 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/fcc2f8f/src/resolvers/Mutation/assignUserTag.ts#L12) +[src/resolvers/Mutation/assignUserTag.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 db70071a037..0af33bcbe4a 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/fcc2f8f/src/resolvers/Mutation/blockPluginCreationBySuperadmin.ts#L16) +[src/resolvers/Mutation/blockPluginCreationBySuperadmin.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 dfae82aa273..7b8e5325b82 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/fcc2f8f/src/resolvers/Mutation/blockUser.ts#L27) +[src/resolvers/Mutation/blockUser.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 9b6b66ece2a..8e4a78ca97c 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/fcc2f8f/src/resolvers/Mutation/cancelMembershipRequest.ts#L24) +[src/resolvers/Mutation/cancelMembershipRequest.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 87d7f9434ec..75c7787b15c 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/fcc2f8f/src/resolvers/Mutation/checkIn.ts#L16) +[src/resolvers/Mutation/checkIn.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/resolvers/Mutation/checkIn.ts#L16) diff --git a/talawa-api-docs/modules/resolvers_Mutation_createAdmin.md b/talawa-api-docs/modules/resolvers_Mutation_createAdmin.md index a37aadc2e94..a0b388664d4 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/fcc2f8f/src/resolvers/Mutation/createAdmin.ts#L27) +[src/resolvers/Mutation/createAdmin.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 948183f4aa1..e3688b719c6 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/fcc2f8f/src/resolvers/Mutation/createAdvertisement.ts#L4) +[src/resolvers/Mutation/createAdvertisement.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 fe0906f44bb..51491187a5b 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/fcc2f8f/src/resolvers/Mutation/createComment.ts#L17) +[src/resolvers/Mutation/createComment.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 a88f941ac18..b2b49496da6 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/fcc2f8f/src/resolvers/Mutation/createDirectChat.ts#L20) +[src/resolvers/Mutation/createDirectChat.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 28f29a0d03e..3dd9176233b 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/fcc2f8f/src/resolvers/Mutation/createDonation.ts#L11) +[src/resolvers/Mutation/createDonation.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 bb16da9fe5d..5d06d7ed00a 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/fcc2f8f/src/resolvers/Mutation/createEvent.ts#L30) +[src/resolvers/Mutation/createEvent.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 55e79ffdac3..ddfc3587759 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/fcc2f8f/src/resolvers/Mutation/createGroupChat.ts#L20) +[src/resolvers/Mutation/createGroupChat.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 129f1ce4cea..31c2416967e 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/fcc2f8f/src/resolvers/Mutation/createMember.ts#L24) +[src/resolvers/Mutation/createMember.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 bd7ee41a9bd..f11529069b9 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/fcc2f8f/src/resolvers/Mutation/createMessageChat.ts#L15) +[src/resolvers/Mutation/createMessageChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 44ced6ef4e5..5e6e1de1b26 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/fcc2f8f/src/resolvers/Mutation/createOrganization.ts#L22) +[src/resolvers/Mutation/createOrganization.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 cb7f1ca3804..64a4072f322 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/fcc2f8f/src/resolvers/Mutation/createPlugin.ts#L12) +[src/resolvers/Mutation/createPlugin.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 9d09e88f3c6..2d90fd959c7 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:26](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/resolvers/Mutation/createPost.ts#L26) +[src/resolvers/Mutation/createPost.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 5cc8d53bf6d..7d90508c633 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/fcc2f8f/src/resolvers/Mutation/createSampleOrganization.ts#L15) +[src/resolvers/Mutation/createSampleOrganization.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 cdcf8610e54..9c6d7de2a35 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/fcc2f8f/src/resolvers/Mutation/createUserTag.ts#L13) +[src/resolvers/Mutation/createUserTag.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 196ff212ba3..f8de0682b0e 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/fcc2f8f/src/resolvers/Mutation/deleteAdvertisementById.ts#L10) +[src/resolvers/Mutation/deleteAdvertisementById.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 406fff56cad..f5a1ca1fafc 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/fcc2f8f/src/resolvers/Mutation/deleteDonationById.ts#L10) +[src/resolvers/Mutation/deleteDonationById.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 97c77a5f2bd..4ca74b0a844 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/fcc2f8f/src/resolvers/Mutation/forgotPassword.ts#L17) +[src/resolvers/Mutation/forgotPassword.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 63bfb90fed9..bd15ebe6e9a 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/fcc2f8f/src/resolvers/Mutation/joinPublicOrganization.ts#L25) +[src/resolvers/Mutation/joinPublicOrganization.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 b56bfcb62f0..c83ec21f119 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/fcc2f8f/src/resolvers/Mutation/leaveOrganization.ts#L24) +[src/resolvers/Mutation/leaveOrganization.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 af4a5828119..35a67f9e037 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/fcc2f8f/src/resolvers/Mutation/likeComment.ts#L18) +[src/resolvers/Mutation/likeComment.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 7ad221e3cc4..638a849fb89 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/fcc2f8f/src/resolvers/Mutation/likePost.ts#L18) +[src/resolvers/Mutation/likePost.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 f922238070d..eccc319d7de 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/fcc2f8f/src/resolvers/Mutation/login.ts#L25) +[src/resolvers/Mutation/login.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 85138f0a9e8..f548e718e61 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/fcc2f8f/src/resolvers/Mutation/logout.ts#L13) +[src/resolvers/Mutation/logout.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 ff1512f0530..e9fcae7d403 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/fcc2f8f/src/resolvers/Mutation/otp.ts#L16) +[src/resolvers/Mutation/otp.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 12a2ad8cb77..46c16bf2bf3 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/fcc2f8f/src/resolvers/Mutation/recaptcha.ts#L10) +[src/resolvers/Mutation/recaptcha.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 c17c77c7d9c..40bb3c486e0 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/fcc2f8f/src/resolvers/Mutation/refreshToken.ts#L23) +[src/resolvers/Mutation/refreshToken.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 a169be73066..395cd45be1f 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/fcc2f8f/src/resolvers/Mutation/registerForEvent.ts#L24) +[src/resolvers/Mutation/registerForEvent.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 5c22b2604af..4f22ee12d8a 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/fcc2f8f/src/resolvers/Mutation/rejectAdmin.ts#L17) +[src/resolvers/Mutation/rejectAdmin.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 8ee4dc2d464..e8475d3609c 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/fcc2f8f/src/resolvers/Mutation/rejectMembershipRequest.ts#L23) +[src/resolvers/Mutation/rejectMembershipRequest.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/resolvers/Mutation/rejectMembershipRequest.ts#L23) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeAdmin.md b/talawa-api-docs/modules/resolvers_Mutation_removeAdmin.md index 646a39cc5d4..7d7f18fd54c 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/fcc2f8f/src/resolvers/Mutation/removeAdmin.ts#L26) +[src/resolvers/Mutation/removeAdmin.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 fa81268be9f..886b81aa953 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/fcc2f8f/src/resolvers/Mutation/removeAdvertisement.ts#L7) +[src/resolvers/Mutation/removeAdvertisement.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 80859cb1a13..d3eec590a5a 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/fcc2f8f/src/resolvers/Mutation/removeComment.ts#L26) +[src/resolvers/Mutation/removeComment.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 eb408ed4257..31dfb5810c9 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/fcc2f8f/src/resolvers/Mutation/removeDirectChat.ts#L22) +[src/resolvers/Mutation/removeDirectChat.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 1b916b686fb..6b2ad414768 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/fcc2f8f/src/resolvers/Mutation/removeEvent.ts#L24) +[src/resolvers/Mutation/removeEvent.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 d7b3c846567..fb26b098176 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/fcc2f8f/src/resolvers/Mutation/removeEventAttendee.ts#L14) +[src/resolvers/Mutation/removeEventAttendee.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 9aff4817939..ce2638ce52a 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/fcc2f8f/src/resolvers/Mutation/removeGroupChat.ts#L22) +[src/resolvers/Mutation/removeGroupChat.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 caf0c62ec51..d0f7a66bba0 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/fcc2f8f/src/resolvers/Mutation/removeMember.ts#L29) +[src/resolvers/Mutation/removeMember.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 c56be9a0d41..56458730ce6 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:30](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/resolvers/Mutation/removeOrganization.ts#L30) +[src/resolvers/Mutation/removeOrganization.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/resolvers/Mutation/removeOrganization.ts#L30) diff --git a/talawa-api-docs/modules/resolvers_Mutation_removeOrganizationCustomField.md b/talawa-api-docs/modules/resolvers_Mutation_removeOrganizationCustomField.md index 8cee7f5d7b1..262e103a062 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/fcc2f8f/src/resolvers/Mutation/removeOrganizationCustomField.ts#L24) +[src/resolvers/Mutation/removeOrganizationCustomField.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 9543a762275..f4d1db77596 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/fcc2f8f/src/resolvers/Mutation/removeOrganizationImage.ts#L22) +[src/resolvers/Mutation/removeOrganizationImage.ts:22](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 e3254931ca9..f8c322cc69b 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/fcc2f8f/src/resolvers/Mutation/removePost.ts#L28) +[src/resolvers/Mutation/removePost.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 5b4ece6b5fb..a5244720976 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/fcc2f8f/src/resolvers/Mutation/removeSampleOrganization.ts#L11) +[src/resolvers/Mutation/removeSampleOrganization.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 ac07d8dc8c3..43f15dd37a6 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/fcc2f8f/src/resolvers/Mutation/removeUserCustomData.ts#L12) +[src/resolvers/Mutation/removeUserCustomData.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 fed2ae1dfe3..b84ce606531 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/fcc2f8f/src/resolvers/Mutation/removeUserFromGroupChat.ts#L24) +[src/resolvers/Mutation/removeUserFromGroupChat.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 e39daf6f4e8..3779e5e5ffe 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/fcc2f8f/src/resolvers/Mutation/removeUserImage.ts#L19) +[src/resolvers/Mutation/removeUserImage.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 2bc0075074a..a22f13c38e4 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/fcc2f8f/src/resolvers/Mutation/removeUserTag.ts#L10) +[src/resolvers/Mutation/removeUserTag.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 f3890d02628..d8b1bbfa939 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/fcc2f8f/src/resolvers/Mutation/revokeRefreshTokenForUser.ts#L9) +[src/resolvers/Mutation/revokeRefreshTokenForUser.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 0eaee85705f..7ab8cdcac63 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/fcc2f8f/src/resolvers/Mutation/saveFcmToken.ts#L12) +[src/resolvers/Mutation/saveFcmToken.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 deea3869264..226c34b09b3 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/fcc2f8f/src/resolvers/Mutation/sendMembershipRequest.ts#L21) +[src/resolvers/Mutation/sendMembershipRequest.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 b7ade1a8989..3a2d4e1d59e 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/fcc2f8f/src/resolvers/Mutation/sendMessageToDirectChat.ts#L15) +[src/resolvers/Mutation/sendMessageToDirectChat.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 5a9d9bd8a12..c36820ad8ad 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/fcc2f8f/src/resolvers/Mutation/sendMessageToGroupChat.ts#L20) +[src/resolvers/Mutation/sendMessageToGroupChat.ts:20](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 ead3e83856c..58bc2c141fe 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/fcc2f8f/src/resolvers/Mutation/signUp.ts#L28) +[src/resolvers/Mutation/signUp.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 4c046c44674..2eba74168d8 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:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/resolvers/Mutation/togglePostPin.ts#L16) +[src/resolvers/Mutation/togglePostPin.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 7b2523d02fa..289b8760bf1 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/fcc2f8f/src/resolvers/Mutation/unassignUserTag.ts#L11) +[src/resolvers/Mutation/unassignUserTag.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 26d475e0d70..6e0ba9241db 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/fcc2f8f/src/resolvers/Mutation/unblockUser.ts#L25) +[src/resolvers/Mutation/unblockUser.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 d2fd913ccfd..bd39cc5767b 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/fcc2f8f/src/resolvers/Mutation/unlikeComment.ts#L17) +[src/resolvers/Mutation/unlikeComment.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 976f85c3cf0..8b854ca6a40 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/fcc2f8f/src/resolvers/Mutation/unlikePost.ts#L18) +[src/resolvers/Mutation/unlikePost.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 b52db99d617..77f64390fe5 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/fcc2f8f/src/resolvers/Mutation/unregisterForEventByUser.ts#L24) +[src/resolvers/Mutation/unregisterForEventByUser.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/resolvers/Mutation/unregisterForEventByUser.ts#L24) diff --git a/talawa-api-docs/modules/resolvers_Mutation_updateAdvertisement.md b/talawa-api-docs/modules/resolvers_Mutation_updateAdvertisement.md index 88b9c7d0fcd..4cbbfb816ff 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/fcc2f8f/src/resolvers/Mutation/updateAdvertisement.ts#L14) +[src/resolvers/Mutation/updateAdvertisement.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 025ca5b2965..ef9b2961556 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/fcc2f8f/src/resolvers/Mutation/updateEvent.ts#L26) +[src/resolvers/Mutation/updateEvent.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 7fd0e077646..7e5b9f6dd99 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/fcc2f8f/src/resolvers/Mutation/updateLanguage.ts#L12) +[src/resolvers/Mutation/updateLanguage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 3e15410a30c..37ec15b4570 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/fcc2f8f/src/resolvers/Mutation/updateOrganization.ts#L21) +[src/resolvers/Mutation/updateOrganization.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 3b408cf89e5..93a7a4ace9d 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/fcc2f8f/src/resolvers/Mutation/updatePluginStatus.ts#L16) +[src/resolvers/Mutation/updatePluginStatus.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 2d2553743b2..168c3a3b0e1 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:16](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/resolvers/Mutation/updatePost.ts#L16) +[src/resolvers/Mutation/updatePost.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 e49fc5ee7f6..29d37de5923 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/fcc2f8f/src/resolvers/Mutation/updateUserPassword.ts#L10) +[src/resolvers/Mutation/updateUserPassword.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 bfad86413a7..ba4a7d065ed 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/fcc2f8f/src/resolvers/Mutation/updateUserProfile.ts#L19) +[src/resolvers/Mutation/updateUserProfile.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 13334a6a8fa..082c8f79e92 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/fcc2f8f/src/resolvers/Mutation/updateUserRoleInOrganization.ts#L23) +[src/resolvers/Mutation/updateUserRoleInOrganization.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 ec5117a4a58..532ab39a2b7 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/fcc2f8f/src/resolvers/Mutation/updateUserTag.ts#L12) +[src/resolvers/Mutation/updateUserTag.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 be9c3e433eb..e7e4b12f73c 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/fcc2f8f/src/resolvers/Mutation/updateUserType.ts#L18) +[src/resolvers/Mutation/updateUserType.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 32156187114..b444d5ce59c 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:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/resolvers/Organization/index.ts#L11) +[src/resolvers/Organization/index.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/resolvers/Organization/index.ts#L11) diff --git a/talawa-api-docs/modules/resolvers_Organization_admins.md b/talawa-api-docs/modules/resolvers_Organization_admins.md index c753f621385..fbdd84a86db 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/fcc2f8f/src/resolvers/Organization/admins.ts#L8) +[src/resolvers/Organization/admins.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 3088c4695f0..01f3cfc9073 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/fcc2f8f/src/resolvers/Organization/blockedUsers.ts#L8) +[src/resolvers/Organization/blockedUsers.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 e4150bb04d4..ee7cabd8f14 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/fcc2f8f/src/resolvers/Organization/creator.ts#L10) +[src/resolvers/Organization/creator.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 1ca87932f43..a1e76bcee74 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/fcc2f8f/src/resolvers/Organization/image.ts#L4) +[src/resolvers/Organization/image.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 3ba33e42683..afce3c9dbaa 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/fcc2f8f/src/resolvers/Organization/members.ts#L9) +[src/resolvers/Organization/members.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 b3379c53c8f..5ae1be8c17c 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/fcc2f8f/src/resolvers/Organization/membershipRequests.ts#L8) +[src/resolvers/Organization/membershipRequests.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 fcabd02694b..8c05ac35165 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/fcc2f8f/src/resolvers/Organization/pinnedPosts.ts#L6) +[src/resolvers/Organization/pinnedPosts.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 fdaf66e8bda..169df4ee55d 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/fcc2f8f/src/resolvers/Post/index.ts#L5) +[src/resolvers/Post/index.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 5b5b8d857a2..bab8dbf74bb 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/fcc2f8f/src/resolvers/Post/comments.ts#L6) +[src/resolvers/Post/comments.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 397eff51c81..8239e628f8f 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/fcc2f8f/src/resolvers/Post/creator.ts#L4) +[src/resolvers/Post/creator.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 2028e848a8f..2938b4dc5ed 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:31](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/resolvers/Query/index.ts#L31) +[src/resolvers/Query/index.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/resolvers/Query/index.ts#L31) diff --git a/talawa-api-docs/modules/resolvers_Query_checkAuth.md b/talawa-api-docs/modules/resolvers_Query_checkAuth.md index 8e6134b5610..724720c4424 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/fcc2f8f/src/resolvers/Query/checkAuth.ts#L13) +[src/resolvers/Query/checkAuth.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 390fbb98dd2..a4b783e8588 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/fcc2f8f/src/resolvers/Query/customDataByOrganization.ts#L13) +[src/resolvers/Query/customDataByOrganization.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 6065be91cbb..6729d2eeeab 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/fcc2f8f/src/resolvers/Query/customFieldsByOrganization.ts#L15) +[src/resolvers/Query/customFieldsByOrganization.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 bc006824e2c..91048d4ea8b 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/fcc2f8f/src/resolvers/Query/directChatsByUserID.ts#L13) +[src/resolvers/Query/directChatsByUserID.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 fb8ff1e61f5..6e06d287824 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/fcc2f8f/src/resolvers/Query/directChatsMessagesByChatID.ts#L16) +[src/resolvers/Query/directChatsMessagesByChatID.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 05931894873..8c6ce9f9231 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/fcc2f8f/src/resolvers/Query/event.ts#L13) +[src/resolvers/Query/event.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 acdd3a2dc90..9779afca6b9 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/fcc2f8f/src/resolvers/Query/eventsByOrganization.ts#L10) +[src/resolvers/Query/eventsByOrganization.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 fe0d4f02a14..b735ad800b4 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/fcc2f8f/src/resolvers/Query/eventsByOrganizationConnection.ts#L7) +[src/resolvers/Query/eventsByOrganizationConnection.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 cbe7aa11c6c..3a93e46bcb9 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/fcc2f8f/src/resolvers/Query/getAdvertisements.ts#L8) +[src/resolvers/Query/getAdvertisements.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 eefda23e077..4da092c7eb0 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/fcc2f8f/src/resolvers/Query/getDonationById.ts#L11) +[src/resolvers/Query/getDonationById.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 93354e97ae9..6bf846cfd22 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/fcc2f8f/src/resolvers/Query/getDonationByOrgId.ts#L10) +[src/resolvers/Query/getDonationByOrgId.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 e4fb9e1e3a3..d1f304c2568 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/fcc2f8f/src/resolvers/Query/getDonationByOrgIdConnection.ts#L6) +[src/resolvers/Query/getDonationByOrgIdConnection.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 2491a31cc27..e78b9640004 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/fcc2f8f/src/resolvers/Query/getPlugins.ts#L8) +[src/resolvers/Query/getPlugins.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 9620509b497..108400ca8a8 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/fcc2f8f/src/resolvers/Query/getlanguage.ts#L12) +[src/resolvers/Query/getlanguage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 fed92eb28f9..a031b0c0842 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/fcc2f8f/src/resolvers/Query/hasSubmittedFeedback.ts#L11) +[src/resolvers/Query/hasSubmittedFeedback.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 c59ddad5733..04d39706092 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/fcc2f8f/src/resolvers/Query/helperFunctions/getSort.ts#L9) +[src/resolvers/Query/helperFunctions/getSort.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 6a4f7a8d3e2..35770bf462f 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/fcc2f8f/src/resolvers/Query/helperFunctions/getWhere.ts#L24) +[src/resolvers/Query/helperFunctions/getWhere.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 51718d248dc..2cbfe9dbee0 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/fcc2f8f/src/resolvers/Query/me.ts#L13) +[src/resolvers/Query/me.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 e9b7d481868..1b9b3c641c2 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/fcc2f8f/src/resolvers/Query/myLanguage.ts#L13) +[src/resolvers/Query/myLanguage.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 583f4fafbdf..9b39f15d62a 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/fcc2f8f/src/resolvers/Query/organizationIsSample.ts#L6) +[src/resolvers/Query/organizationIsSample.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 9a8362b1ff1..04b637d42e3 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/fcc2f8f/src/resolvers/Query/organizations.ts#L16) +[src/resolvers/Query/organizations.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 6574b72fa90..800affd4074 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/fcc2f8f/src/resolvers/Query/organizationsConnection.ts#L18) +[src/resolvers/Query/organizationsConnection.ts:18](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 8b0322ef7aa..54a7ce6719d 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/fcc2f8f/src/resolvers/Query/organizationsMemberConnection.ts#L19) +[src/resolvers/Query/organizationsMemberConnection.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 d61bc81588b..99319c6e197 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/fcc2f8f/src/resolvers/Query/post.ts#L11) +[src/resolvers/Query/post.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 a34934986bd..d44af236546 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/fcc2f8f/src/resolvers/Query/postsByOrganization.ts#L13) +[src/resolvers/Query/postsByOrganization.ts:13](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 2958c825df9..eb821bfa22d 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/fcc2f8f/src/resolvers/Query/postsByOrganizationConnection.ts#L19) +[src/resolvers/Query/postsByOrganizationConnection.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 2ca6b6edeee..da771625992 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/fcc2f8f/src/resolvers/Query/registeredEventsByUser.ts#L12) +[src/resolvers/Query/registeredEventsByUser.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 24d1e1d2de4..d215fe2407a 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/fcc2f8f/src/resolvers/Query/user.ts#L12) +[src/resolvers/Query/user.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 dcd814eef65..7ec56b5a68c 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/fcc2f8f/src/resolvers/Query/userLanguage.ts#L11) +[src/resolvers/Query/userLanguage.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 f8253cea81f..f1434b8671c 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/fcc2f8f/src/resolvers/Query/users.ts#L17) +[src/resolvers/Query/users.ts:17](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 838958334d2..111da07abc2 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/fcc2f8f/src/resolvers/Query/usersConnection.ts#L15) +[src/resolvers/Query/usersConnection.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 2c82a9300a2..fffc0495959 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/fcc2f8f/src/resolvers/Subscription/index.ts#L6) +[src/resolvers/Subscription/index.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 75cecdacf7c..d7fe6cc9e72 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/fcc2f8f/src/resolvers/Subscription/directMessageChat.ts#L12) +[src/resolvers/Subscription/directMessageChat.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 ae03b4493f7..eed6b8ace5f 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/fcc2f8f/src/resolvers/Subscription/messageSentToDirectChat.ts#L21) +[src/resolvers/Subscription/messageSentToDirectChat.ts:21](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/resolvers/Subscription/messageSentToDirectChat.ts#L6) +[src/resolvers/Subscription/messageSentToDirectChat.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 66367e7d5b6..7bfaa38b589 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/fcc2f8f/src/resolvers/Subscription/messageSentToGroupChat.ts#L35) +[src/resolvers/Subscription/messageSentToGroupChat.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/resolvers/Subscription/messageSentToGroupChat.ts#L7) +[src/resolvers/Subscription/messageSentToGroupChat.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 0e1f254ebfa..421e68e9ea3 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/fcc2f8f/src/resolvers/Subscription/onPluginUpdate.ts#L28) +[src/resolvers/Subscription/onPluginUpdate.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/resolvers/Subscription/onPluginUpdate.ts#L19) +[src/resolvers/Subscription/onPluginUpdate.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 2eddd76b054..76f0945685f 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/fcc2f8f/src/resolvers/User/index.ts#L4) +[src/resolvers/User/index.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 ab12b5921ba..8287e622513 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/fcc2f8f/src/resolvers/UserTag/index.ts#L7) +[src/resolvers/UserTag/index.ts:7](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 00c1ce0f315..a612314c949 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/fcc2f8f/src/resolvers/UserTag/childTags.ts#L12) +[src/resolvers/UserTag/childTags.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 4498a54df19..bd5255a4128 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/fcc2f8f/src/resolvers/UserTag/organization.ts#L4) +[src/resolvers/UserTag/organization.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 999faed8dbf..a772d2fa9b8 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/fcc2f8f/src/resolvers/UserTag/parentTag.ts#L4) +[src/resolvers/UserTag/parentTag.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 633cb383aa8..faeb5211230 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/fcc2f8f/src/resolvers/UserTag/usersAssignedTo.ts#L12) +[src/resolvers/UserTag/usersAssignedTo.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 fc010811354..e6cb95a0632 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/fcc2f8f/src/resolvers/middleware/currentUserExists.ts#L8) +[src/resolvers/middleware/currentUserExists.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 5e9e8309166..fd4bc3deaa0 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/fcc2f8f/src/services/CommentCache/cacheComments.ts#L6) +[src/services/CommentCache/cacheComments.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 b0234668845..c032d984733 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/fcc2f8f/src/services/CommentCache/deleteCommentFromCache.ts#L4) +[src/services/CommentCache/deleteCommentFromCache.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 7955ed8a18d..26c140ae567 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/fcc2f8f/src/services/CommentCache/findCommentsByPostIdInCache.ts#L6) +[src/services/CommentCache/findCommentsByPostIdInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 18d4edc8ca1..9bf80379bcb 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/fcc2f8f/src/services/CommentCache/findCommentsInCache.ts#L6) +[src/services/CommentCache/findCommentsInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 54db5c4a175..6d9518dfbd3 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/fcc2f8f/src/services/EventCache/cacheEvents.ts#L6) +[src/services/EventCache/cacheEvents.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 95e23aa3d33..5ddfc9b11e7 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/fcc2f8f/src/services/EventCache/deleteEventFromCache.ts#L4) +[src/services/EventCache/deleteEventFromCache.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 c629eec867f..86394b0e54c 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/fcc2f8f/src/services/EventCache/findEventInCache.ts#L6) +[src/services/EventCache/findEventInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 251645a69ac..a19de89889b 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/fcc2f8f/src/services/OrganizationCache/cacheOrganizations.ts#L6) +[src/services/OrganizationCache/cacheOrganizations.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 c9ab77dd209..1508ba66a22 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/fcc2f8f/src/services/OrganizationCache/deleteOrganizationFromCache.ts#L4) +[src/services/OrganizationCache/deleteOrganizationFromCache.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 82da4056c36..4ab8bba6bab 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/fcc2f8f/src/services/OrganizationCache/findOrganizationsInCache.ts#L6) +[src/services/OrganizationCache/findOrganizationsInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 97b6acdc204..45f51af9db1 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/fcc2f8f/src/services/PostCache/cachePosts.ts#L6) +[src/services/PostCache/cachePosts.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 6a2caa81cbd..d76b06fdbf9 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/fcc2f8f/src/services/PostCache/deletePostFromCache.ts#L3) +[src/services/PostCache/deletePostFromCache.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 b203ae16ab2..d0098f334a0 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/fcc2f8f/src/services/PostCache/findPostsInCache.ts#L6) +[src/services/PostCache/findPostsInCache.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 76017036a6a..bb0fdd4be69 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/fcc2f8f/src/services/redisCache.ts#L4) +[src/services/redisCache.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/services/redisCache.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs.md b/talawa-api-docs/modules/typeDefs.md index a09a9f1863d..dd217b8936b 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/fcc2f8f/src/typeDefs/index.ts#L19) +[src/typeDefs/index.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/typeDefs/index.ts#L19) diff --git a/talawa-api-docs/modules/typeDefs_directives.md b/talawa-api-docs/modules/typeDefs_directives.md index dd43bd88164..618f1bcdb5e 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/fcc2f8f/src/typeDefs/directives.ts#L4) +[src/typeDefs/directives.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/typeDefs/directives.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_enums.md b/talawa-api-docs/modules/typeDefs_enums.md index 51d4e23df3e..27d4b3421b6 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/fcc2f8f/src/typeDefs/enums.ts#L4) +[src/typeDefs/enums.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/typeDefs/enums.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_errors.md b/talawa-api-docs/modules/typeDefs_errors.md index c7411770964..069ee0b7ab1 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/fcc2f8f/src/typeDefs/errors/index.ts#L4) +[src/typeDefs/errors/index.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 8eafcc0ee02..6a1807b3e05 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/fcc2f8f/src/typeDefs/errors/common.ts#L3) +[src/typeDefs/errors/common.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 ca46937b569..dfed22ea0db 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/fcc2f8f/src/typeDefs/errors/connectionError.ts#L3) +[src/typeDefs/errors/connectionError.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 9a455e7b995..c42ab50c73a 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/fcc2f8f/src/typeDefs/inputs.ts#L4) +[src/typeDefs/inputs.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/typeDefs/inputs.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_interfaces.md b/talawa-api-docs/modules/typeDefs_interfaces.md index 161b2d3deb0..ff1f2ec1d35 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/fcc2f8f/src/typeDefs/interfaces.ts#L4) +[src/typeDefs/interfaces.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/typeDefs/interfaces.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_mutations.md b/talawa-api-docs/modules/typeDefs_mutations.md index a3aa814e575..4202710f260 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/fcc2f8f/src/typeDefs/mutations.ts#L6) +[src/typeDefs/mutations.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/typeDefs/mutations.ts#L6) diff --git a/talawa-api-docs/modules/typeDefs_queries.md b/talawa-api-docs/modules/typeDefs_queries.md index d89b718c5c9..1be226617bd 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/fcc2f8f/src/typeDefs/queries.ts#L6) +[src/typeDefs/queries.ts:6](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/typeDefs/queries.ts#L6) diff --git a/talawa-api-docs/modules/typeDefs_scalars.md b/talawa-api-docs/modules/typeDefs_scalars.md index 2416cbee860..c12918ed8f2 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/fcc2f8f/src/typeDefs/scalars.ts#L4) +[src/typeDefs/scalars.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/typeDefs/scalars.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_subscriptions.md b/talawa-api-docs/modules/typeDefs_subscriptions.md index 4524c41136a..13abe855245 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/fcc2f8f/src/typeDefs/subscriptions.ts#L4) +[src/typeDefs/subscriptions.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/typeDefs/subscriptions.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_types.md b/talawa-api-docs/modules/typeDefs_types.md index 0042c057eeb..a7699c685c1 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/fcc2f8f/src/typeDefs/types.ts#L4) +[src/typeDefs/types.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/typeDefs/types.ts#L4) diff --git a/talawa-api-docs/modules/typeDefs_unions.md b/talawa-api-docs/modules/typeDefs_unions.md index 8891cf22451..3668ea80318 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/fcc2f8f/src/typeDefs/unions.ts#L4) +[src/typeDefs/unions.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/typeDefs/unions.ts#L4) diff --git a/talawa-api-docs/modules/types_generatedGraphQLTypes.md b/talawa-api-docs/modules/types_generatedGraphQLTypes.md index 35ef008237a..1a756326f19 100644 --- a/talawa-api-docs/modules/types_generatedGraphQLTypes.md +++ b/talawa-api-docs/modules/types_generatedGraphQLTypes.md @@ -364,7 +364,7 @@ #### Defined in -[src/types/generatedGraphQLTypes.ts:54](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L54) +[src/types/generatedGraphQLTypes.ts:54](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L54) ___ @@ -387,7 +387,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:66](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L66) +[src/types/generatedGraphQLTypes.ts:66](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L66) ___ @@ -418,7 +418,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2199](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2199) +[src/types/generatedGraphQLTypes.ts:2200](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2200) ___ @@ -444,7 +444,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:77](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L77) +[src/types/generatedGraphQLTypes.ts:77](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L77) ___ @@ -477,7 +477,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2211](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2211) +[src/types/generatedGraphQLTypes.ts:2212](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2212) ___ @@ -487,7 +487,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:91](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L91) +[src/types/generatedGraphQLTypes.ts:91](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L91) ___ @@ -504,7 +504,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:96](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L96) +[src/types/generatedGraphQLTypes.ts:96](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L96) ___ @@ -528,7 +528,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2225](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2225) +[src/types/generatedGraphQLTypes.ts:2226](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2226) ___ @@ -545,7 +545,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:101](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L101) +[src/types/generatedGraphQLTypes.ts:101](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L101) ___ @@ -569,7 +569,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2230](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2230) +[src/types/generatedGraphQLTypes.ts:2231](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2231) ___ @@ -588,7 +588,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:106](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L106) +[src/types/generatedGraphQLTypes.ts:106](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L106) ___ @@ -614,7 +614,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2239](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2239) +[src/types/generatedGraphQLTypes.ts:2240](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2240) ___ @@ -624,7 +624,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2189](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2189) +[src/types/generatedGraphQLTypes.ts:2190](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2190) ___ @@ -643,7 +643,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2191](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2191) +[src/types/generatedGraphQLTypes.ts:2192](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2192) ___ @@ -668,7 +668,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:113](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L113) +[src/types/generatedGraphQLTypes.ts:113](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L113) ___ @@ -687,7 +687,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:126](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L126) +[src/types/generatedGraphQLTypes.ts:126](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L126) ___ @@ -719,7 +719,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2246](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2246) +[src/types/generatedGraphQLTypes.ts:2247](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2247) ___ @@ -738,7 +738,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:133](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L133) +[src/types/generatedGraphQLTypes.ts:133](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L133) ___ @@ -764,7 +764,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2259](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2259) +[src/types/generatedGraphQLTypes.ts:2260](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2260) ___ @@ -788,7 +788,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:140](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L140) +[src/types/generatedGraphQLTypes.ts:140](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L140) ___ @@ -804,7 +804,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:152](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L152) +[src/types/generatedGraphQLTypes.ts:152](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L152) ___ @@ -835,7 +835,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2266](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2266) +[src/types/generatedGraphQLTypes.ts:2267](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2267) ___ @@ -845,7 +845,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:156](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L156) +[src/types/generatedGraphQLTypes.ts:156](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L156) ___ @@ -868,7 +868,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2278](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2278) +[src/types/generatedGraphQLTypes.ts:2279](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2279) ___ @@ -888,7 +888,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:158](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L158) +[src/types/generatedGraphQLTypes.ts:158](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L158) ___ @@ -915,7 +915,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2282](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2282) +[src/types/generatedGraphQLTypes.ts:2283](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2283) ___ @@ -932,7 +932,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1850](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1850) +[src/types/generatedGraphQLTypes.ts:1851](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1851) ___ @@ -950,7 +950,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1855](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1855) +[src/types/generatedGraphQLTypes.ts:1856](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1856) ___ @@ -968,7 +968,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:166](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L166) +[src/types/generatedGraphQLTypes.ts:166](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L166) ___ @@ -986,7 +986,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:172](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L172) +[src/types/generatedGraphQLTypes.ts:172](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L172) ___ @@ -1003,7 +1003,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:178](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L178) +[src/types/generatedGraphQLTypes.ts:178](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L178) ___ @@ -1027,7 +1027,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2302](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2302) +[src/types/generatedGraphQLTypes.ts:2303](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2303) ___ @@ -1050,7 +1050,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:183](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L183) +[src/types/generatedGraphQLTypes.ts:183](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L183) ___ @@ -1073,7 +1073,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:194](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L194) +[src/types/generatedGraphQLTypes.ts:194](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L194) ___ @@ -1103,7 +1103,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2318](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2318) +[src/types/generatedGraphQLTypes.ts:2319](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2319) ___ @@ -1133,7 +1133,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2307](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2307) +[src/types/generatedGraphQLTypes.ts:2308](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2308) ___ @@ -1170,7 +1170,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1916](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1916) +[src/types/generatedGraphQLTypes.ts:1917](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1917) ___ @@ -1193,7 +1193,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2973](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2973) +[src/types/generatedGraphQLTypes.ts:2974](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2974) ___ @@ -1218,7 +1218,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:205](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L205) +[src/types/generatedGraphQLTypes.ts:205](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L205) ___ @@ -1250,7 +1250,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2329](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2329) +[src/types/generatedGraphQLTypes.ts:2330](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2330) ___ @@ -1277,7 +1277,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:218](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L218) +[src/types/generatedGraphQLTypes.ts:218](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L218) ___ @@ -1287,7 +1287,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:233](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L233) +[src/types/generatedGraphQLTypes.ts:233](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L233) ___ @@ -1297,7 +1297,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:251](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L251) +[src/types/generatedGraphQLTypes.ts:251](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L251) ___ @@ -1313,7 +1313,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:256](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L256) +[src/types/generatedGraphQLTypes.ts:256](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L256) ___ @@ -1337,7 +1337,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2346](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2346) +[src/types/generatedGraphQLTypes.ts:2347](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2347) ___ @@ -1378,7 +1378,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:260](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L260) +[src/types/generatedGraphQLTypes.ts:260](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L260) ___ @@ -1394,7 +1394,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:290](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L290) +[src/types/generatedGraphQLTypes.ts:290](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L290) ___ @@ -1411,7 +1411,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:294](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L294) +[src/types/generatedGraphQLTypes.ts:294](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L294) ___ @@ -1441,7 +1441,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:299](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L299) +[src/types/generatedGraphQLTypes.ts:299](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L299) ___ @@ -1451,7 +1451,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:317](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L317) +[src/types/generatedGraphQLTypes.ts:317](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L317) ___ @@ -1499,7 +1499,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2351](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2351) +[src/types/generatedGraphQLTypes.ts:2352](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2352) ___ @@ -1539,7 +1539,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:339](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L339) +[src/types/generatedGraphQLTypes.ts:339](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L339) ___ @@ -1555,7 +1555,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L25) +[src/types/generatedGraphQLTypes.ts:25](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L25) ___ @@ -1573,7 +1573,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:367](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L367) +[src/types/generatedGraphQLTypes.ts:367](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L367) ___ @@ -1598,7 +1598,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2380](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2380) +[src/types/generatedGraphQLTypes.ts:2381](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2381) ___ @@ -1620,7 +1620,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:373](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L373) +[src/types/generatedGraphQLTypes.ts:373](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L373) ___ @@ -1638,7 +1638,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:383](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L383) +[src/types/generatedGraphQLTypes.ts:383](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L383) ___ @@ -1667,7 +1667,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2386](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2386) +[src/types/generatedGraphQLTypes.ts:2387](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2387) ___ @@ -1684,7 +1684,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:389](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L389) +[src/types/generatedGraphQLTypes.ts:389](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L389) ___ @@ -1709,7 +1709,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2396](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2396) +[src/types/generatedGraphQLTypes.ts:2397](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2397) ___ @@ -1727,7 +1727,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:394](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L394) +[src/types/generatedGraphQLTypes.ts:394](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L394) ___ @@ -1737,7 +1737,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:400](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L400) +[src/types/generatedGraphQLTypes.ts:400](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L400) ___ @@ -1760,7 +1760,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:405](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L405) +[src/types/generatedGraphQLTypes.ts:405](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L405) ___ @@ -1783,7 +1783,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:416](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L416) +[src/types/generatedGraphQLTypes.ts:416](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L416) ___ @@ -1805,7 +1805,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:427](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L427) +[src/types/generatedGraphQLTypes.ts:427](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L427) ___ @@ -1834,7 +1834,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2424](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2424) +[src/types/generatedGraphQLTypes.ts:2425](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2425) ___ @@ -1864,7 +1864,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2413](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2413) +[src/types/generatedGraphQLTypes.ts:2414](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2414) ___ @@ -1894,7 +1894,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2402](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2402) +[src/types/generatedGraphQLTypes.ts:2403](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2403) ___ @@ -1910,7 +1910,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L29) +[src/types/generatedGraphQLTypes.ts:29](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L29) ___ @@ -1926,7 +1926,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L24) +[src/types/generatedGraphQLTypes.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L24) ___ @@ -1936,7 +1936,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:437](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L437) +[src/types/generatedGraphQLTypes.ts:437](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L437) ___ @@ -1961,7 +1961,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2434](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2434) +[src/types/generatedGraphQLTypes.ts:2435](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2435) ___ @@ -1994,7 +1994,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1912](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1912) +[src/types/generatedGraphQLTypes.ts:1913](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1913) ___ @@ -2014,7 +2014,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:443](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L443) +[src/types/generatedGraphQLTypes.ts:443](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L443) ___ @@ -2032,7 +2032,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:451](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L451) +[src/types/generatedGraphQLTypes.ts:451](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L451) ___ @@ -2053,7 +2053,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:457](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L457) +[src/types/generatedGraphQLTypes.ts:457](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L457) ___ @@ -2081,7 +2081,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2452](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2452) +[src/types/generatedGraphQLTypes.ts:2453](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2453) ___ @@ -2108,7 +2108,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2444](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2444) +[src/types/generatedGraphQLTypes.ts:2445](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2445) ___ @@ -2125,7 +2125,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:466](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L466) +[src/types/generatedGraphQLTypes.ts:466](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L466) ___ @@ -2142,7 +2142,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L28) +[src/types/generatedGraphQLTypes.ts:28](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L28) ___ @@ -2159,7 +2159,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L27) +[src/types/generatedGraphQLTypes.ts:27](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L27) ___ @@ -2176,7 +2176,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L26) +[src/types/generatedGraphQLTypes.ts:26](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L26) ___ @@ -2186,7 +2186,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:471](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L471) +[src/types/generatedGraphQLTypes.ts:471](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L471) ___ @@ -2196,7 +2196,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:479](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L479) +[src/types/generatedGraphQLTypes.ts:479](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L479) ___ @@ -2221,7 +2221,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2469](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2469) +[src/types/generatedGraphQLTypes.ts:2470](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2470) ___ @@ -2231,7 +2231,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:485](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L485) +[src/types/generatedGraphQLTypes.ts:485](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L485) ___ @@ -2257,7 +2257,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2475](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2475) +[src/types/generatedGraphQLTypes.ts:2476](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2476) ___ @@ -2273,7 +2273,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L23) +[src/types/generatedGraphQLTypes.ts:23](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L23) ___ @@ -2292,7 +2292,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:492](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L492) +[src/types/generatedGraphQLTypes.ts:492](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L492) ___ @@ -2318,7 +2318,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2482](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2482) +[src/types/generatedGraphQLTypes.ts:2483](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2483) ___ @@ -2341,7 +2341,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:499](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L499) +[src/types/generatedGraphQLTypes.ts:499](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L499) ___ @@ -2364,7 +2364,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:510](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L510) +[src/types/generatedGraphQLTypes.ts:510](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L510) ___ @@ -2381,7 +2381,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:521](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L521) +[src/types/generatedGraphQLTypes.ts:521](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L521) ___ @@ -2411,7 +2411,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2500](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2500) +[src/types/generatedGraphQLTypes.ts:2501](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2501) ___ @@ -2441,7 +2441,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2489](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2489) +[src/types/generatedGraphQLTypes.ts:2490](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2490) ___ @@ -2451,7 +2451,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:526](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L526) +[src/types/generatedGraphQLTypes.ts:526](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L526) ___ @@ -2477,7 +2477,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2511](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2511) +[src/types/generatedGraphQLTypes.ts:2512](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2512) ___ @@ -2487,7 +2487,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:533](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L533) +[src/types/generatedGraphQLTypes.ts:533](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L533) ___ @@ -2512,7 +2512,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2518](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2518) +[src/types/generatedGraphQLTypes.ts:2519](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2519) ___ @@ -2614,7 +2614,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:539](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L539) +[src/types/generatedGraphQLTypes.ts:539](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L539) ___ @@ -2630,7 +2630,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:630](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L630) +[src/types/generatedGraphQLTypes.ts:630](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L630) ___ @@ -2646,7 +2646,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:635](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L635) +[src/types/generatedGraphQLTypes.ts:635](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L635) ___ @@ -2662,7 +2662,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:640](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L640) +[src/types/generatedGraphQLTypes.ts:640](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L640) ___ @@ -2678,7 +2678,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:645](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L645) +[src/types/generatedGraphQLTypes.ts:645](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L645) ___ @@ -2694,7 +2694,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:650](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L650) +[src/types/generatedGraphQLTypes.ts:650](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L650) ___ @@ -2712,7 +2712,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:655](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L655) +[src/types/generatedGraphQLTypes.ts:655](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L655) ___ @@ -2729,7 +2729,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:662](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L662) +[src/types/generatedGraphQLTypes.ts:662](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L662) ___ @@ -2747,7 +2747,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:668](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L668) +[src/types/generatedGraphQLTypes.ts:668](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L668) ___ @@ -2763,7 +2763,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:675](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L675) +[src/types/generatedGraphQLTypes.ts:675](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L675) ___ @@ -2780,7 +2780,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:680](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L680) +[src/types/generatedGraphQLTypes.ts:680](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L680) ___ @@ -2796,7 +2796,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:686](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L686) +[src/types/generatedGraphQLTypes.ts:686](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L686) ___ @@ -2812,7 +2812,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:691](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L691) +[src/types/generatedGraphQLTypes.ts:691](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L691) ___ @@ -2828,7 +2828,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:696](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L696) +[src/types/generatedGraphQLTypes.ts:696](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L696) ___ @@ -2845,7 +2845,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:701](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L701) +[src/types/generatedGraphQLTypes.ts:701](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L701) ___ @@ -2862,7 +2862,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:707](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L707) +[src/types/generatedGraphQLTypes.ts:707](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L707) ___ @@ -2878,7 +2878,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:713](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L713) +[src/types/generatedGraphQLTypes.ts:713](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L713) ___ @@ -2894,7 +2894,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:718](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L718) +[src/types/generatedGraphQLTypes.ts:718](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L718) ___ @@ -2910,7 +2910,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:723](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L723) +[src/types/generatedGraphQLTypes.ts:723](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L723) ___ @@ -2931,7 +2931,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:728](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L728) +[src/types/generatedGraphQLTypes.ts:728](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L728) ___ @@ -2948,7 +2948,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:738](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L738) +[src/types/generatedGraphQLTypes.ts:738](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L738) ___ @@ -2964,7 +2964,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:744](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L744) +[src/types/generatedGraphQLTypes.ts:744](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L744) ___ @@ -2985,7 +2985,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:749](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L749) +[src/types/generatedGraphQLTypes.ts:749](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L749) ___ @@ -3001,7 +3001,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:759](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L759) +[src/types/generatedGraphQLTypes.ts:759](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L759) ___ @@ -3017,7 +3017,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:764](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L764) +[src/types/generatedGraphQLTypes.ts:764](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L764) ___ @@ -3033,7 +3033,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:769](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L769) +[src/types/generatedGraphQLTypes.ts:769](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L769) ___ @@ -3049,7 +3049,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:774](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L774) +[src/types/generatedGraphQLTypes.ts:774](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L774) ___ @@ -3066,7 +3066,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:779](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L779) +[src/types/generatedGraphQLTypes.ts:779](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L779) ___ @@ -3085,7 +3085,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:785](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L785) +[src/types/generatedGraphQLTypes.ts:785](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L785) ___ @@ -3102,7 +3102,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:793](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L793) +[src/types/generatedGraphQLTypes.ts:793](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L793) ___ @@ -3118,7 +3118,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:799](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L799) +[src/types/generatedGraphQLTypes.ts:799](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L799) ___ @@ -3134,7 +3134,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:804](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L804) +[src/types/generatedGraphQLTypes.ts:804](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L804) ___ @@ -3150,7 +3150,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:809](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L809) +[src/types/generatedGraphQLTypes.ts:809](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L809) ___ @@ -3166,7 +3166,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:814](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L814) +[src/types/generatedGraphQLTypes.ts:814](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L814) ___ @@ -3182,7 +3182,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:819](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L819) +[src/types/generatedGraphQLTypes.ts:819](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L819) ___ @@ -3198,7 +3198,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:824](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L824) +[src/types/generatedGraphQLTypes.ts:824](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L824) ___ @@ -3214,7 +3214,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:829](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L829) +[src/types/generatedGraphQLTypes.ts:829](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L829) ___ @@ -3230,7 +3230,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:834](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L834) +[src/types/generatedGraphQLTypes.ts:834](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L834) ___ @@ -3246,7 +3246,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:839](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L839) +[src/types/generatedGraphQLTypes.ts:839](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L839) ___ @@ -3262,7 +3262,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:844](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L844) +[src/types/generatedGraphQLTypes.ts:844](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L844) ___ @@ -3278,7 +3278,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:849](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L849) +[src/types/generatedGraphQLTypes.ts:849](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L849) ___ @@ -3294,7 +3294,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:854](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L854) +[src/types/generatedGraphQLTypes.ts:854](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L854) ___ @@ -3310,7 +3310,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:859](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L859) +[src/types/generatedGraphQLTypes.ts:859](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L859) ___ @@ -3326,7 +3326,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:864](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L864) +[src/types/generatedGraphQLTypes.ts:864](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L864) ___ @@ -3342,7 +3342,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:869](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L869) +[src/types/generatedGraphQLTypes.ts:869](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L869) ___ @@ -3358,7 +3358,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:874](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L874) +[src/types/generatedGraphQLTypes.ts:874](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L874) ___ @@ -3374,7 +3374,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:879](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L879) +[src/types/generatedGraphQLTypes.ts:879](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L879) ___ @@ -3390,7 +3390,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:884](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L884) +[src/types/generatedGraphQLTypes.ts:884](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L884) ___ @@ -3407,7 +3407,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:889](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L889) +[src/types/generatedGraphQLTypes.ts:889](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L889) ___ @@ -3423,7 +3423,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:895](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L895) +[src/types/generatedGraphQLTypes.ts:895](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L895) ___ @@ -3439,7 +3439,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:900](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L900) +[src/types/generatedGraphQLTypes.ts:900](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L900) ___ @@ -3455,7 +3455,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:905](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L905) +[src/types/generatedGraphQLTypes.ts:905](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L905) ___ @@ -3471,7 +3471,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:910](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L910) +[src/types/generatedGraphQLTypes.ts:910](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L910) ___ @@ -3487,7 +3487,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:915](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L915) +[src/types/generatedGraphQLTypes.ts:915](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L915) ___ @@ -3504,7 +3504,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:920](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L920) +[src/types/generatedGraphQLTypes.ts:920](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L920) ___ @@ -3520,7 +3520,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:926](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L926) +[src/types/generatedGraphQLTypes.ts:926](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L926) ___ @@ -3536,7 +3536,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:931](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L931) +[src/types/generatedGraphQLTypes.ts:931](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L931) ___ @@ -3552,7 +3552,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:936](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L936) +[src/types/generatedGraphQLTypes.ts:936](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L936) ___ @@ -3569,7 +3569,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:941](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L941) +[src/types/generatedGraphQLTypes.ts:941](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L941) ___ @@ -3585,7 +3585,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:947](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L947) +[src/types/generatedGraphQLTypes.ts:947](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L947) ___ @@ -3693,7 +3693,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2524](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2524) +[src/types/generatedGraphQLTypes.ts:2525](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2525) ___ @@ -3709,7 +3709,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:952](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L952) +[src/types/generatedGraphQLTypes.ts:952](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L952) ___ @@ -3725,7 +3725,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:957](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L957) +[src/types/generatedGraphQLTypes.ts:957](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L957) ___ @@ -3742,7 +3742,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:962](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L962) +[src/types/generatedGraphQLTypes.ts:962](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L962) ___ @@ -3759,7 +3759,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:968](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L968) +[src/types/generatedGraphQLTypes.ts:968](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L968) ___ @@ -3776,7 +3776,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:974](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L974) +[src/types/generatedGraphQLTypes.ts:974](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L974) ___ @@ -3789,10 +3789,11 @@ ___ | Name | Type | | :------ | :------ | | `id` | [`Scalars`](types_generatedGraphQLTypes.md#scalars)[``"ID"``][``"input"``] | +| `title?` | [`InputMaybe`](types_generatedGraphQLTypes.md#inputmaybe)\<[`Scalars`](types_generatedGraphQLTypes.md#scalars)[``"String"``][``"input"``]\> | #### Defined in -[src/types/generatedGraphQLTypes.ts:980](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L980) +[src/types/generatedGraphQLTypes.ts:980](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L980) ___ @@ -3808,7 +3809,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:985](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L985) +[src/types/generatedGraphQLTypes.ts:986](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L986) ___ @@ -3825,7 +3826,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:990](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L990) +[src/types/generatedGraphQLTypes.ts:991](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L991) ___ @@ -3841,7 +3842,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:996](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L996) +[src/types/generatedGraphQLTypes.ts:997](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L997) ___ @@ -3857,7 +3858,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1001](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1001) +[src/types/generatedGraphQLTypes.ts:1002](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1002) ___ @@ -3873,7 +3874,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1006](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1006) +[src/types/generatedGraphQLTypes.ts:1007](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1007) ___ @@ -3889,7 +3890,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1011](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1011) +[src/types/generatedGraphQLTypes.ts:1012](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1012) ___ @@ -3906,7 +3907,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1016](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1016) +[src/types/generatedGraphQLTypes.ts:1017](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1017) ___ @@ -3922,7 +3923,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1022](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1022) +[src/types/generatedGraphQLTypes.ts:1023](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1023) ___ @@ -3940,7 +3941,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1027](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1027) +[src/types/generatedGraphQLTypes.ts:1028](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1028) ___ @@ -3957,7 +3958,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1034](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1034) +[src/types/generatedGraphQLTypes.ts:1035](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1035) ___ @@ -3974,7 +3975,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1040](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1040) +[src/types/generatedGraphQLTypes.ts:1041](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1041) ___ @@ -3990,7 +3991,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1046](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1046) +[src/types/generatedGraphQLTypes.ts:1047](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1047) ___ @@ -4007,7 +4008,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1051](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1051) +[src/types/generatedGraphQLTypes.ts:1052](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1052) ___ @@ -4025,7 +4026,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1057](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1057) +[src/types/generatedGraphQLTypes.ts:1058](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1058) ___ @@ -4041,7 +4042,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1064](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1064) +[src/types/generatedGraphQLTypes.ts:1065](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1065) ___ @@ -4057,7 +4058,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1069](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1069) +[src/types/generatedGraphQLTypes.ts:1070](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1070) ___ @@ -4081,7 +4082,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1914](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1914) +[src/types/generatedGraphQLTypes.ts:1915](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1915) ___ @@ -4098,7 +4099,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L30) +[src/types/generatedGraphQLTypes.ts:30](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L30) ___ @@ -4132,7 +4133,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1077](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1077) +[src/types/generatedGraphQLTypes.ts:1078](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1078) ___ @@ -4148,7 +4149,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1100](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1100) +[src/types/generatedGraphQLTypes.ts:1101](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1101) ___ @@ -4168,7 +4169,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1112](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1112) +[src/types/generatedGraphQLTypes.ts:1113](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1113) ___ @@ -4195,7 +4196,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2635](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2635) +[src/types/generatedGraphQLTypes.ts:2636](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2636) ___ @@ -4219,7 +4220,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1120](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1120) +[src/types/generatedGraphQLTypes.ts:1121](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1121) ___ @@ -4250,7 +4251,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2643](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2643) +[src/types/generatedGraphQLTypes.ts:2644](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2644) ___ @@ -4273,7 +4274,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1132](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1132) +[src/types/generatedGraphQLTypes.ts:1133](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1133) ___ @@ -4283,7 +4284,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1143](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1143) +[src/types/generatedGraphQLTypes.ts:1144](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1144) ___ @@ -4324,7 +4325,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2613](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2613) +[src/types/generatedGraphQLTypes.ts:2614](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2614) ___ @@ -4343,7 +4344,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1105](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1105) +[src/types/generatedGraphQLTypes.ts:1106](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1106) ___ @@ -4384,7 +4385,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1155](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1155) +[src/types/generatedGraphQLTypes.ts:1156](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1156) ___ @@ -4401,7 +4402,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1184](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1184) +[src/types/generatedGraphQLTypes.ts:1185](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1185) ___ @@ -4425,7 +4426,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2655](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2655) +[src/types/generatedGraphQLTypes.ts:2656](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2656) ___ @@ -4441,7 +4442,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1073](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1073) +[src/types/generatedGraphQLTypes.ts:1074](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1074) ___ @@ -4465,7 +4466,7 @@ Information about pagination in a connection. #### Defined in -[src/types/generatedGraphQLTypes.ts:1190](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1190) +[src/types/generatedGraphQLTypes.ts:1191](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1191) ___ @@ -4494,7 +4495,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2660](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2660) +[src/types/generatedGraphQLTypes.ts:2661](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2661) ___ @@ -4504,7 +4505,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1202](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1202) +[src/types/generatedGraphQLTypes.ts:1203](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1203) ___ @@ -4525,7 +4526,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1206](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1206) +[src/types/generatedGraphQLTypes.ts:1207](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1207) ___ @@ -4545,7 +4546,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1215](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1215) +[src/types/generatedGraphQLTypes.ts:1216](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1216) ___ @@ -4562,7 +4563,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1223](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1223) +[src/types/generatedGraphQLTypes.ts:1224](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1224) ___ @@ -4589,7 +4590,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2683](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2683) +[src/types/generatedGraphQLTypes.ts:2684](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2684) ___ @@ -4609,7 +4610,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1228](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1228) +[src/types/generatedGraphQLTypes.ts:1229](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1229) ___ @@ -4637,7 +4638,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2674](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2674) +[src/types/generatedGraphQLTypes.ts:2675](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2675) ___ @@ -4667,7 +4668,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1236](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1236) +[src/types/generatedGraphQLTypes.ts:1237](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1237) ___ @@ -4688,7 +4689,7 @@ A connection to a list of items. #### Defined in -[src/types/generatedGraphQLTypes.ts:1255](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1255) +[src/types/generatedGraphQLTypes.ts:1256](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1256) ___ @@ -4714,7 +4715,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2713](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2713) +[src/types/generatedGraphQLTypes.ts:2714](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2714) ___ @@ -4736,7 +4737,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1264](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1264) +[src/types/generatedGraphQLTypes.ts:1265](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1265) ___ @@ -4746,7 +4747,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1274](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1274) +[src/types/generatedGraphQLTypes.ts:1275](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1275) ___ @@ -4783,7 +4784,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2695](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2695) +[src/types/generatedGraphQLTypes.ts:2696](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2696) ___ @@ -4802,7 +4803,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1292](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1292) +[src/types/generatedGraphQLTypes.ts:1293](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1293) ___ @@ -4835,7 +4836,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1299](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1299) +[src/types/generatedGraphQLTypes.ts:1300](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1300) ___ @@ -4884,7 +4885,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1320](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1320) +[src/types/generatedGraphQLTypes.ts:1321](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1321) ___ @@ -4900,7 +4901,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1358](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1358) +[src/types/generatedGraphQLTypes.ts:1359](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1359) ___ @@ -4916,7 +4917,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1363](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1363) +[src/types/generatedGraphQLTypes.ts:1364](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1364) ___ @@ -4932,7 +4933,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1368](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1368) +[src/types/generatedGraphQLTypes.ts:1369](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1369) ___ @@ -4948,7 +4949,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1373](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1373) +[src/types/generatedGraphQLTypes.ts:1374](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1374) ___ @@ -4964,7 +4965,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1378](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1378) +[src/types/generatedGraphQLTypes.ts:1379](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1379) ___ @@ -4980,7 +4981,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1383](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1383) +[src/types/generatedGraphQLTypes.ts:1384](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1384) ___ @@ -4997,7 +4998,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1388](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1388) +[src/types/generatedGraphQLTypes.ts:1389](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1389) ___ @@ -5016,7 +5017,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1394](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1394) +[src/types/generatedGraphQLTypes.ts:1395](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1395) ___ @@ -5032,7 +5033,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1402](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1402) +[src/types/generatedGraphQLTypes.ts:1403](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1403) ___ @@ -5048,7 +5049,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1407](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1407) +[src/types/generatedGraphQLTypes.ts:1408](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1408) ___ @@ -5067,7 +5068,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1412](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1412) +[src/types/generatedGraphQLTypes.ts:1413](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1413) ___ @@ -5083,7 +5084,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1420](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1420) +[src/types/generatedGraphQLTypes.ts:1421](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1421) ___ @@ -5100,7 +5101,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1425](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1425) +[src/types/generatedGraphQLTypes.ts:1426](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1426) ___ @@ -5116,7 +5117,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1431](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1431) +[src/types/generatedGraphQLTypes.ts:1432](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1432) ___ @@ -5132,7 +5133,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1436](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1436) +[src/types/generatedGraphQLTypes.ts:1437](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1437) ___ @@ -5149,7 +5150,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1441](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1441) +[src/types/generatedGraphQLTypes.ts:1442](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1442) ___ @@ -5168,7 +5169,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1447](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1447) +[src/types/generatedGraphQLTypes.ts:1448](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1448) ___ @@ -5188,7 +5189,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1455](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1455) +[src/types/generatedGraphQLTypes.ts:1456](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1456) ___ @@ -5204,7 +5205,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1464](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1464) +[src/types/generatedGraphQLTypes.ts:1465](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1465) ___ @@ -5220,7 +5221,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1469](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1469) +[src/types/generatedGraphQLTypes.ts:1470](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1470) ___ @@ -5237,7 +5238,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1474](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1474) +[src/types/generatedGraphQLTypes.ts:1475](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1475) ___ @@ -5257,7 +5258,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1480](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1480) +[src/types/generatedGraphQLTypes.ts:1481](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1481) ___ @@ -5274,7 +5275,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1489](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1489) +[src/types/generatedGraphQLTypes.ts:1490](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1490) ___ @@ -5290,7 +5291,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1495](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1495) +[src/types/generatedGraphQLTypes.ts:1496](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1496) ___ @@ -5345,7 +5346,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2720](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2720) +[src/types/generatedGraphQLTypes.ts:2721](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2721) ___ @@ -5361,7 +5362,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1500](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1500) +[src/types/generatedGraphQLTypes.ts:1501](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1501) ___ @@ -5377,7 +5378,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1505](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1505) +[src/types/generatedGraphQLTypes.ts:1506](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1506) ___ @@ -5398,7 +5399,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1510](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1510) +[src/types/generatedGraphQLTypes.ts:1511](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1511) ___ @@ -5417,7 +5418,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1520](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1520) +[src/types/generatedGraphQLTypes.ts:1521](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1521) ___ @@ -5433,7 +5434,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1527](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1527) +[src/types/generatedGraphQLTypes.ts:1528](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1528) ___ @@ -5443,7 +5444,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1531](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1531) +[src/types/generatedGraphQLTypes.ts:1532](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1532) ___ @@ -5460,7 +5461,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L31) +[src/types/generatedGraphQLTypes.ts:31](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L31) ___ @@ -5479,7 +5480,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1865](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1865) +[src/types/generatedGraphQLTypes.ts:1866](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1866) ___ @@ -5515,7 +5516,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1867](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1867) +[src/types/generatedGraphQLTypes.ts:1868](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1868) ___ @@ -5531,7 +5532,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1863](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1863) +[src/types/generatedGraphQLTypes.ts:1864](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1864) ___ @@ -5624,7 +5625,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2898](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2898) +[src/types/generatedGraphQLTypes.ts:2899](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2899) ___ @@ -5649,7 +5650,7 @@ Mapping of interface types #### Defined in -[src/types/generatedGraphQLTypes.ts:1930](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1930) +[src/types/generatedGraphQLTypes.ts:1931](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1931) ___ @@ -5782,7 +5783,7 @@ Mapping between all available schema types and the resolvers parents #### Defined in -[src/types/generatedGraphQLTypes.ts:2070](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2070) +[src/types/generatedGraphQLTypes.ts:2071](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2071) ___ @@ -5929,7 +5930,7 @@ Mapping between all available schema types and the resolvers types #### Defined in -[src/types/generatedGraphQLTypes.ts:1936](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1936) +[src/types/generatedGraphQLTypes.ts:1937](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1937) ___ @@ -5953,7 +5954,7 @@ Mapping of union types #### Defined in -[src/types/generatedGraphQLTypes.ts:1925](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1925) +[src/types/generatedGraphQLTypes.ts:1926](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1926) ___ @@ -5969,7 +5970,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2193](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2193) +[src/types/generatedGraphQLTypes.ts:2194](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2194) ___ @@ -5988,7 +5989,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2197](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2197) +[src/types/generatedGraphQLTypes.ts:2198](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2198) ___ @@ -6059,7 +6060,7 @@ All built-in and custom scalars, mapped to their actual values #### Defined in -[src/types/generatedGraphQLTypes.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L33) +[src/types/generatedGraphQLTypes.ts:33](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L33) ___ @@ -6069,7 +6070,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1538](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1538) +[src/types/generatedGraphQLTypes.ts:1539](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1539) ___ @@ -6089,7 +6090,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1543](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1543) +[src/types/generatedGraphQLTypes.ts:1544](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1544) ___ @@ -6109,7 +6110,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1898](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1898) +[src/types/generatedGraphQLTypes.ts:1899](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1899) ___ @@ -6145,7 +6146,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1881](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1881) +[src/types/generatedGraphQLTypes.ts:1882](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1882) ___ @@ -6165,7 +6166,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1902](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1902) +[src/types/generatedGraphQLTypes.ts:1903](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1903) ___ @@ -6191,7 +6192,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2756](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2756) +[src/types/generatedGraphQLTypes.ts:2757](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2757) ___ @@ -6227,7 +6228,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1874](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1874) +[src/types/generatedGraphQLTypes.ts:1875](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1875) ___ @@ -6244,7 +6245,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1551](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1551) +[src/types/generatedGraphQLTypes.ts:1552](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1552) ___ @@ -6264,7 +6265,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1556](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1556) +[src/types/generatedGraphQLTypes.ts:1557](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1557) ___ @@ -6291,7 +6292,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2767](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2767) +[src/types/generatedGraphQLTypes.ts:2768](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2768) ___ @@ -6301,7 +6302,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1564](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1564) +[src/types/generatedGraphQLTypes.ts:1565](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1565) ___ @@ -6335,7 +6336,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1906](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1906) +[src/types/generatedGraphQLTypes.ts:1907](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1907) ___ @@ -6345,7 +6346,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1568](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1568) +[src/types/generatedGraphQLTypes.ts:1569](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1569) ___ @@ -6369,7 +6370,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2779](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2779) +[src/types/generatedGraphQLTypes.ts:2780](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2780) ___ @@ -6379,7 +6380,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1573](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1573) +[src/types/generatedGraphQLTypes.ts:1574](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1574) ___ @@ -6403,7 +6404,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2784](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2784) +[src/types/generatedGraphQLTypes.ts:2785](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2785) ___ @@ -6424,7 +6425,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1578](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1578) +[src/types/generatedGraphQLTypes.ts:1579](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1579) ___ @@ -6441,7 +6442,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1587](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1587) +[src/types/generatedGraphQLTypes.ts:1588](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1588) ___ @@ -6465,7 +6466,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2789](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2789) +[src/types/generatedGraphQLTypes.ts:2790](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2790) ___ @@ -6494,7 +6495,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1592](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1592) +[src/types/generatedGraphQLTypes.ts:1593](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1593) ___ @@ -6514,7 +6515,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1609](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1609) +[src/types/generatedGraphQLTypes.ts:1610](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1610) ___ @@ -6539,7 +6540,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1617](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1617) +[src/types/generatedGraphQLTypes.ts:1618](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1618) ___ @@ -6557,7 +6558,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1630](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1630) +[src/types/generatedGraphQLTypes.ts:1631](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1631) ___ @@ -6574,7 +6575,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1636](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1636) +[src/types/generatedGraphQLTypes.ts:1637](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1637) ___ @@ -6591,7 +6592,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1641](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1641) +[src/types/generatedGraphQLTypes.ts:1642](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1642) ___ @@ -6635,7 +6636,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1646](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1646) +[src/types/generatedGraphQLTypes.ts:1647](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1647) ___ @@ -6652,7 +6653,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1687](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1687) +[src/types/generatedGraphQLTypes.ts:1688](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1688) ___ @@ -6671,7 +6672,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1692](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1692) +[src/types/generatedGraphQLTypes.ts:1693](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1693) ___ @@ -6697,7 +6698,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2830](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2830) +[src/types/generatedGraphQLTypes.ts:2831](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2831) ___ @@ -6717,7 +6718,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1699](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1699) +[src/types/generatedGraphQLTypes.ts:1700](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1700) ___ @@ -6744,7 +6745,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2837](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2837) +[src/types/generatedGraphQLTypes.ts:2838](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2838) ___ @@ -6762,7 +6763,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1707](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1707) +[src/types/generatedGraphQLTypes.ts:1708](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1708) ___ @@ -6787,7 +6788,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2845](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2845) +[src/types/generatedGraphQLTypes.ts:2846](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2846) ___ @@ -6808,7 +6809,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1713](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1713) +[src/types/generatedGraphQLTypes.ts:1714](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1714) ___ @@ -6818,7 +6819,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1722](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1722) +[src/types/generatedGraphQLTypes.ts:1723](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1723) ___ @@ -6837,7 +6838,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1734](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1734) +[src/types/generatedGraphQLTypes.ts:1735](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1735) ___ @@ -6855,7 +6856,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1741](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1741) +[src/types/generatedGraphQLTypes.ts:1742](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1742) ___ @@ -6881,7 +6882,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2851](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2851) +[src/types/generatedGraphQLTypes.ts:2852](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2852) ___ @@ -6932,7 +6933,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2798](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2798) +[src/types/generatedGraphQLTypes.ts:2799](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2799) ___ @@ -6954,7 +6955,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1747](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1747) +[src/types/generatedGraphQLTypes.ts:1748](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1748) ___ @@ -6970,7 +6971,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1758](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1758) +[src/types/generatedGraphQLTypes.ts:1759](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1759) ___ @@ -6988,7 +6989,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1767](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1767) +[src/types/generatedGraphQLTypes.ts:1768](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1768) ___ @@ -7013,7 +7014,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2868](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2868) +[src/types/generatedGraphQLTypes.ts:2869](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2869) ___ @@ -7042,7 +7043,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2858](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2858) +[src/types/generatedGraphQLTypes.ts:2859](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2859) ___ @@ -7058,7 +7059,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1763](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1763) +[src/types/generatedGraphQLTypes.ts:1764](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1764) ___ @@ -7078,7 +7079,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1679](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1679) +[src/types/generatedGraphQLTypes.ts:1680](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1680) ___ @@ -7096,7 +7097,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1773](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1773) +[src/types/generatedGraphQLTypes.ts:1774](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1774) ___ @@ -7114,7 +7115,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1779](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1779) +[src/types/generatedGraphQLTypes.ts:1780](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1780) ___ @@ -7139,7 +7140,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2874](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2874) +[src/types/generatedGraphQLTypes.ts:2875](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2875) ___ @@ -7157,7 +7158,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1785](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1785) +[src/types/generatedGraphQLTypes.ts:1786](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1786) ___ @@ -7182,7 +7183,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2880](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2880) +[src/types/generatedGraphQLTypes.ts:2881](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2881) ___ @@ -7192,7 +7193,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1791](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1791) +[src/types/generatedGraphQLTypes.ts:1792](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1792) ___ @@ -7239,7 +7240,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1797](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1797) +[src/types/generatedGraphQLTypes.ts:1798](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1798) ___ @@ -7257,7 +7258,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1832](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1832) +[src/types/generatedGraphQLTypes.ts:1833](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1833) ___ @@ -7275,7 +7276,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1838](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1838) +[src/types/generatedGraphQLTypes.ts:1839](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1839) ___ @@ -7300,7 +7301,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2886](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2886) +[src/types/generatedGraphQLTypes.ts:2887](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2887) ___ @@ -7318,7 +7319,7 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:1844](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L1844) +[src/types/generatedGraphQLTypes.ts:1845](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L1845) ___ @@ -7343,4 +7344,4 @@ ___ #### Defined in -[src/types/generatedGraphQLTypes.ts:2892](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/types/generatedGraphQLTypes.ts#L2892) +[src/types/generatedGraphQLTypes.ts:2893](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/types/generatedGraphQLTypes.ts#L2893) diff --git a/talawa-api-docs/modules/utilities_PII_decryption.md b/talawa-api-docs/modules/utilities_PII_decryption.md index 7da89f34650..0c8e5cf153e 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/fcc2f8f/src/utilities/PII/decryption.ts#L4) +[src/utilities/PII/decryption.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 023baf9fe69..b86209d561a 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/fcc2f8f/src/utilities/PII/encryption.ts#L4) +[src/utilities/PII/encryption.ts:4](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 1385fe40445..b89f521f30e 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/fcc2f8f/src/utilities/PII/isAuthorised.ts#L3) +[src/utilities/PII/isAuthorised.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 0ac5c114e74..d716d7d82bf 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/fcc2f8f/src/utilities/adminCheck.ts#L14) +[src/utilities/adminCheck.ts:14](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/adminCheck.ts#L14) diff --git a/talawa-api-docs/modules/utilities_auth.md b/talawa-api-docs/modules/utilities_auth.md index ca0267ba419..58d9d594634 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/fcc2f8f/src/utilities/auth.ts#L19) +[src/utilities/auth.ts:19](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/auth.ts#L19) ___ @@ -57,7 +57,7 @@ ___ #### Defined in -[src/utilities/auth.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/auth.ts#L35) +[src/utilities/auth.ts:35](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/auth.ts#L35) ___ @@ -77,4 +77,4 @@ ___ #### Defined in -[src/utilities/auth.ts:51](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/auth.ts#L51) +[src/utilities/auth.ts:51](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/auth.ts#L51) diff --git a/talawa-api-docs/modules/utilities_copyToClipboard.md b/talawa-api-docs/modules/utilities_copyToClipboard.md index 81f422f52b7..0338ea4b462 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/fcc2f8f/src/utilities/copyToClipboard.ts#L9) +[src/utilities/copyToClipboard.ts:9](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/copyToClipboard.ts#L9) diff --git a/talawa-api-docs/modules/utilities_createSampleOrganizationUtil.md b/talawa-api-docs/modules/utilities_createSampleOrganizationUtil.md index 627dadb3e2b..9e57590f7f5 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/fcc2f8f/src/utilities/createSampleOrganizationUtil.ts#L215) +[src/utilities/createSampleOrganizationUtil.ts:215](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/createSampleOrganizationUtil.ts#L215) ___ @@ -45,7 +45,7 @@ ___ #### Defined in -[src/utilities/createSampleOrganizationUtil.ts:64](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/createSampleOrganizationUtil.ts#L64) +[src/utilities/createSampleOrganizationUtil.ts:64](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/createSampleOrganizationUtil.ts#L64) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[src/utilities/createSampleOrganizationUtil.ts:128](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/createSampleOrganizationUtil.ts#L128) +[src/utilities/createSampleOrganizationUtil.ts:128](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/createSampleOrganizationUtil.ts#L128) ___ @@ -87,7 +87,7 @@ ___ #### Defined in -[src/utilities/createSampleOrganizationUtil.ts:185](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/createSampleOrganizationUtil.ts#L185) +[src/utilities/createSampleOrganizationUtil.ts:185](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/createSampleOrganizationUtil.ts#L185) ___ @@ -108,4 +108,4 @@ ___ #### Defined in -[src/utilities/createSampleOrganizationUtil.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/createSampleOrganizationUtil.ts#L10) +[src/utilities/createSampleOrganizationUtil.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/createSampleOrganizationUtil.ts#L10) diff --git a/talawa-api-docs/modules/utilities_deleteDuplicatedImage.md b/talawa-api-docs/modules/utilities_deleteDuplicatedImage.md index d0d73c7a74f..228df55b76a 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/fcc2f8f/src/utilities/deleteDuplicatedImage.ts#L8) +[src/utilities/deleteDuplicatedImage.ts:8](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/deleteDuplicatedImage.ts#L8) diff --git a/talawa-api-docs/modules/utilities_deleteImage.md b/talawa-api-docs/modules/utilities_deleteImage.md index 71ba1709b6c..97eb9f9fe89 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/fcc2f8f/src/utilities/deleteImage.ts#L12) +[src/utilities/deleteImage.ts:12](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 f25da324900..5c47fe8dc52 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/fcc2f8f/src/utilities/encodedImageStorage/deletePreviousImage.ts#L5) +[src/utilities/encodedImageStorage/deletePreviousImage.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 08b0ad2cf75..63ec52a3c85 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/fcc2f8f/src/utilities/encodedImageStorage/encodedImageExtensionCheck.ts#L1) +[src/utilities/encodedImageStorage/encodedImageExtensionCheck.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 726e4bae441..60f28d3b9e6 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:11](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/encodedImageStorage/uploadEncodedImage.ts#L11) +[src/utilities/encodedImageStorage/uploadEncodedImage.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/encodedImageStorage/uploadEncodedImage.ts#L11) diff --git a/talawa-api-docs/modules/utilities_encodedVideoStorage_deletePreviousVideo.md b/talawa-api-docs/modules/utilities_encodedVideoStorage_deletePreviousVideo.md index fcd2bc8d338..f06216de665 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/fcc2f8f/src/utilities/encodedVideoStorage/deletePreviousVideo.ts#L5) +[src/utilities/encodedVideoStorage/deletePreviousVideo.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 41cbeac2968..f616d240a47 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/fcc2f8f/src/utilities/encodedVideoStorage/encodedVideoExtensionCheck.ts#L1) +[src/utilities/encodedVideoStorage/encodedVideoExtensionCheck.ts:1](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 40ef3fd9889..31ea31abe6d 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/fcc2f8f/src/utilities/encodedVideoStorage/uploadEncodedVideo.ts#L11) +[src/utilities/encodedVideoStorage/uploadEncodedVideo.ts:11](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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 a1c77562d9d..7a65aba2e5b 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/fcc2f8f/src/utilities/graphqlConnectionFactory.ts#L106) +[src/utilities/graphqlConnectionFactory.ts:106](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/graphqlConnectionFactory.ts#L106) ___ @@ -59,7 +59,7 @@ ___ #### Defined in -[src/utilities/graphqlConnectionFactory.ts:75](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/graphqlConnectionFactory.ts#L75) +[src/utilities/graphqlConnectionFactory.ts:75](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/graphqlConnectionFactory.ts#L75) ___ @@ -79,7 +79,7 @@ ___ #### Defined in -[src/utilities/graphqlConnectionFactory.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/graphqlConnectionFactory.ts#L46) +[src/utilities/graphqlConnectionFactory.ts:46](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/graphqlConnectionFactory.ts#L46) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[src/utilities/graphqlConnectionFactory.ts:53](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/graphqlConnectionFactory.ts#L53) +[src/utilities/graphqlConnectionFactory.ts:53](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/graphqlConnectionFactory.ts#L53) ___ @@ -120,4 +120,4 @@ ___ #### Defined in -[src/utilities/graphqlConnectionFactory.ts:34](https://github.com/PalisadoesFoundation/talawa-api/blob/fcc2f8f/src/utilities/graphqlConnectionFactory.ts#L34) +[src/utilities/graphqlConnectionFactory.ts:34](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/graphqlConnectionFactory.ts#L34) diff --git a/talawa-api-docs/modules/utilities_imageAlreadyInDbCheck.md b/talawa-api-docs/modules/utilities_imageAlreadyInDbCheck.md index 4d92e75eff5..e615d728f92 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/fcc2f8f/src/utilities/imageAlreadyInDbCheck.ts#L16) +[src/utilities/imageAlreadyInDbCheck.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/imageAlreadyInDbCheck.ts#L16) diff --git a/talawa-api-docs/modules/utilities_imageExtensionCheck.md b/talawa-api-docs/modules/utilities_imageExtensionCheck.md index dfb706786c6..6779032045e 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/fcc2f8f/src/utilities/imageExtensionCheck.ts#L10) +[src/utilities/imageExtensionCheck.ts:10](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/imageExtensionCheck.ts#L10) diff --git a/talawa-api-docs/modules/utilities_mailer.md b/talawa-api-docs/modules/utilities_mailer.md index f857a3811c0..4d1a5e73d6b 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/fcc2f8f/src/utilities/mailer.ts#L24) +[src/utilities/mailer.ts:24](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/mailer.ts#L24) diff --git a/talawa-api-docs/modules/utilities_removeSampleOrganizationUtil.md b/talawa-api-docs/modules/utilities_removeSampleOrganizationUtil.md index 4f7891ddc2d..9d6d0a10db5 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/fcc2f8f/src/utilities/removeSampleOrganizationUtil.ts#L3) +[src/utilities/removeSampleOrganizationUtil.ts:3](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/removeSampleOrganizationUtil.ts#L3) diff --git a/talawa-api-docs/modules/utilities_reuploadDuplicateCheck.md b/talawa-api-docs/modules/utilities_reuploadDuplicateCheck.md index 2b6c6c8e65b..2e24e56e6f6 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/fcc2f8f/src/utilities/reuploadDuplicateCheck.ts#L15) +[src/utilities/reuploadDuplicateCheck.ts:15](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/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/fcc2f8f/src/utilities/reuploadDuplicateCheck.ts#L42) +[src/utilities/reuploadDuplicateCheck.ts:42](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/reuploadDuplicateCheck.ts#L42) diff --git a/talawa-api-docs/modules/utilities_superAdminCheck.md b/talawa-api-docs/modules/utilities_superAdminCheck.md index 905683edef1..f824a1d5fbf 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/fcc2f8f/src/utilities/superAdminCheck.ts#L5) +[src/utilities/superAdminCheck.ts:5](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/superAdminCheck.ts#L5) diff --git a/talawa-api-docs/modules/utilities_uploadImage.md b/talawa-api-docs/modules/utilities_uploadImage.md index 178adc2dd06..de6d230ae4d 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/fcc2f8f/src/utilities/uploadImage.ts#L16) +[src/utilities/uploadImage.ts:16](https://github.com/PalisadoesFoundation/talawa-api/blob/ac416c4/src/utilities/uploadImage.ts#L16)