{"version":3,"sources":["../../../src/members-v3-follow-member-followers.http.ts","../../../src/members-v3-follow-member-followers.types.ts","../../../src/members-v3-follow-member-followers.meta.ts"],"sourcesContent":["import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveComWixpressMembersFollowV3MemberFollowersUrl(\n  opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n  const domainToMappings = {\n    'www.wixapis.com': [\n      {\n        srcPath: '/members/v3/followers',\n        destPath: '/v3/followers',\n      },\n    ],\n    'www._base_domain_': [\n      {\n        srcPath: '/_api/members/v3/followers',\n        destPath: '/v3/followers',\n      },\n      {\n        srcPath: '/members/v3/followers',\n        destPath: '/v3/followers',\n      },\n    ],\n    _: [\n      {\n        srcPath: '/_api/members/v3/followers',\n        destPath: '/v3/followers',\n      },\n    ],\n    'editor._base_domain_': [\n      {\n        srcPath: '/_api/members/v3/followers',\n        destPath: '/v3/followers',\n      },\n    ],\n    'blocks._base_domain_': [\n      {\n        srcPath: '/_api/members/v3/followers',\n        destPath: '/v3/followers',\n      },\n    ],\n    'create.editorx': [\n      {\n        srcPath: '/_api/members/v3/followers',\n        destPath: '/v3/followers',\n      },\n    ],\n    'manage._base_domain_': [\n      {\n        srcPath: '/_api/members/v3/followers',\n        destPath: '/v3/followers',\n      },\n    ],\n    '*.dev.wix-code.com': [\n      {\n        srcPath: '/_api/members/v3/followers',\n        destPath: '/v3/followers',\n      },\n    ],\n  };\n\n  return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_members_member-followers';\n\n/** Sets the current member to follow another, specified member. */\nexport function followMember(payload: object): RequestOptionsFactory<any> {\n  function __followMember({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.members.v3.follow',\n      method: 'POST' as any,\n      methodFqn: 'com.wixpress.members.follow.v3.MemberFollowers.FollowMember',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveComWixpressMembersFollowV3MemberFollowersUrl({\n        protoPath: '/v3/followers/{memberId}',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __followMember;\n}\n\n/** Sets the current member to unfollow another, specified member. */\nexport function unfollowMember(payload: object): RequestOptionsFactory<any> {\n  function __unfollowMember({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.members.v3.follow',\n      method: 'DELETE' as any,\n      methodFqn:\n        'com.wixpress.members.follow.v3.MemberFollowers.UnfollowMember',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveComWixpressMembersFollowV3MemberFollowersUrl({\n        protoPath: '/v3/followers/{memberId}',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n    };\n\n    return metadata;\n  }\n\n  return __unfollowMember;\n}\n\n/** Retrieves a list of members who are followed by the current member. */\nexport function listMyMemberFollowing(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __listMyMemberFollowing({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.members.v3.follow',\n      method: 'GET' as any,\n      methodFqn:\n        'com.wixpress.members.follow.v3.MemberFollowers.ListMyMemberFollowing',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveComWixpressMembersFollowV3MemberFollowersUrl({\n        protoPath: '/v3/followers/my/following',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n    };\n\n    return metadata;\n  }\n\n  return __listMyMemberFollowing;\n}\n\n/** Retrieves a list of members who are followed by the given member. */\nexport function listMemberFollowing(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __listMemberFollowing({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.members.v3.follow',\n      method: 'GET' as any,\n      methodFqn:\n        'com.wixpress.members.follow.v3.MemberFollowers.ListMemberFollowing',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveComWixpressMembersFollowV3MemberFollowersUrl({\n        protoPath: '/v3/followers/{memberId}/following',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n    };\n\n    return metadata;\n  }\n\n  return __listMemberFollowing;\n}\n\n/** Retrieves a list of members who are following the current member. */\nexport function listMyMemberFollowers(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __listMyMemberFollowers({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.members.v3.follow',\n      method: 'GET' as any,\n      methodFqn:\n        'com.wixpress.members.follow.v3.MemberFollowers.ListMyMemberFollowers',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveComWixpressMembersFollowV3MemberFollowersUrl({\n        protoPath: '/v3/followers/my',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n    };\n\n    return metadata;\n  }\n\n  return __listMyMemberFollowers;\n}\n\n/** Retrieves a list of members who are following the given member. */\nexport function listMemberFollowers(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __listMemberFollowers({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.members.v3.follow',\n      method: 'GET' as any,\n      methodFqn:\n        'com.wixpress.members.follow.v3.MemberFollowers.ListMemberFollowers',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveComWixpressMembersFollowV3MemberFollowersUrl({\n        protoPath: '/v3/followers/{memberId}',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n    };\n\n    return metadata;\n  }\n\n  return __listMemberFollowers;\n}\n\n/** Retrieves a list of members and their connections to the current member. */\nexport function queryMyMemberConnections(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __queryMyMemberConnections({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.members.v3.follow',\n      method: 'POST' as any,\n      methodFqn:\n        'com.wixpress.members.follow.v3.MemberFollowers.QueryMyMemberConnections',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveComWixpressMembersFollowV3MemberFollowersUrl({\n        protoPath: '/v3/followers/my/connections',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __queryMyMemberConnections;\n}\n\n/**\n * Retrieves a list of members and their connections to the given member.\n * > **Note:** If an empty array is passed as `connectedMemberIds`, the call will succeed, but it will not return any data.\n */\nexport function queryMemberConnections(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __queryMemberConnections({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.members.v3.follow',\n      method: 'POST' as any,\n      methodFqn:\n        'com.wixpress.members.follow.v3.MemberFollowers.QueryMemberConnections',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveComWixpressMembersFollowV3MemberFollowersUrl({\n        protoPath: '/v3/followers/{memberId}/connections',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __queryMemberConnections;\n}\n","/**\n * A follower represents a connection between 2 members, where 1 member follows another.\n * This relationship enables members to track updates and activities from members they follow, creating a social network on the site.\n */\nexport interface Follower {\n  /**\n   * Member ID of the member who performed the action.\n   * @format GUID\n   */\n  memberId?: string;\n  /**\n   * Member ID of the member being followed or unfollowed.\n   * @format GUID\n   */\n  affectedMemberId?: string;\n}\n\nexport interface InvalidateCache extends InvalidateCacheGetByOneOf {\n  /**\n   * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!\n   * @format GUID\n   */\n  siteId?: string;\n  /** Invalidate by App */\n  app?: App;\n  /** Invalidate by page id */\n  page?: Page;\n  /** Invalidate by URI path */\n  uri?: URI;\n  /** Invalidate by file (for media files such as PDFs) */\n  file?: File;\n  /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */\n  customTag?: CustomTag;\n  /** Invalidate by multiple page ids */\n  pages?: Pages;\n  /** Invalidate by multiple URI paths */\n  uris?: URIs;\n  /**\n   * tell us why you're invalidating the cache. You don't need to add your app name\n   * @maxLength 256\n   */\n  reason?: string | null;\n  /** Is local DS */\n  localDc?: boolean;\n  hardPurge?: boolean;\n  /**\n   * Optional caller-provided ID for tracking this invalidation through the system.\n   * When set, the corresponding CDN purge completion event will include this ID,\n   * allowing you to confirm when the invalidation has fully propagated.\n   * Example: generate a UUID, pass it here, and later match it in the CDN purge completion event.\n   * @maxLength 256\n   */\n  correlationId?: string | null;\n}\n\n/** @oneof */\nexport interface InvalidateCacheGetByOneOf {\n  /**\n   * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!\n   * @format GUID\n   */\n  siteId?: string;\n  /** Invalidate by App */\n  app?: App;\n  /** Invalidate by page id */\n  page?: Page;\n  /** Invalidate by URI path */\n  uri?: URI;\n  /** Invalidate by file (for media files such as PDFs) */\n  file?: File;\n  /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */\n  customTag?: CustomTag;\n  /** Invalidate by multiple page ids */\n  pages?: Pages;\n  /** Invalidate by multiple URI paths */\n  uris?: URIs;\n}\n\nexport interface App {\n  /**\n   * The AppDefId\n   * @minLength 1\n   */\n  appDefId?: string;\n  /**\n   * The instance Id\n   * @format GUID\n   */\n  instanceId?: string;\n}\n\nexport interface Page {\n  /**\n   * the msid the page is on\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * Invalidate by Page ID\n   * @minLength 1\n   */\n  pageId?: string;\n}\n\nexport interface URI {\n  /**\n   * the msid the URI is on\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes\n   * @minLength 1\n   */\n  uriPath?: string;\n}\n\nexport interface File {\n  /**\n   * the msid the file is related to\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * Invalidate by filename (for media files such as PDFs)\n   * @minLength 1\n   * @maxLength 256\n   */\n  fileName?: string;\n}\n\nexport interface CustomTag {\n  /**\n   * the msid the tag is related to\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * Tag to invalidate by\n   * @minLength 1\n   * @maxLength 256\n   */\n  tag?: string;\n}\n\nexport interface Pages {\n  /**\n   * the msid the pages are on\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * Invalidate by multiple Page IDs in a single message\n   * @maxSize 100\n   * @minLength 1\n   */\n  pageIds?: string[];\n}\n\nexport interface URIs {\n  /**\n   * the msid the URIs are on\n   * @format GUID\n   */\n  metaSiteId?: string;\n  /**\n   * URI paths to invalidate (e.g. page/my/path) - without leading/trailing slashes\n   * @maxSize 100\n   * @minLength 1\n   */\n  uriPaths?: string[];\n}\n\nexport interface FollowMemberRequest {\n  /**\n   * ID of the member to follow.\n   * @format GUID\n   */\n  memberId: string;\n}\n\nexport interface FollowMemberResponse {}\n\nexport interface MemberFollowed {\n  /** Member who is following the other member. */\n  memberConnection?: Follower;\n}\n\nexport interface UnfollowMemberRequest {\n  /**\n   * ID of the member to unfollow.\n   * @format GUID\n   */\n  memberId: string;\n}\n\nexport interface UnfollowMemberResponse {}\n\nexport interface MemberUnfollowed {\n  /** Member who is unfollowing the other member. */\n  memberConnection?: Follower;\n}\n\nexport interface ListMyMemberFollowingRequest {\n  /**\n   * Pagination options. For more information, see\n   * [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging).\n   */\n  paging?: CursorPaging;\n}\n\nexport interface CursorPaging {\n  /**\n   * Number of items to return. See [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging).\n   * @min 1\n   * @max 100\n   */\n  limit?: number | null;\n  /** Cursor returned from last query response. */\n  cursor?: string | null;\n}\n\nexport interface ListMyMemberFollowingResponse {\n  /**\n   * Retrieved list of members followed by the current member.\n   * @format GUID\n   */\n  memberIds?: string[];\n  /** Details on the paged set of results returned. */\n  pagingMetadata?: PagingMetadataV2;\n}\n\nexport interface PagingMetadataV2 {\n  /** Number of items starting from given cursor. */\n  count?: number | null;\n  /** Cursors to navigate through the result pages using `next` and `prev`. */\n  cursors?: Cursors;\n}\n\nexport interface Cursors {\n  /**\n   * Cursor string pointing to the next page in the list of results.\n   * @maxLength 16000\n   */\n  next?: string | null;\n  /**\n   * Cursor pointing to the previous page in the list of results.\n   * @maxLength 16000\n   */\n  prev?: string | null;\n}\n\nexport interface ListMemberFollowingRequest {\n  /**\n   * ID of the member whose followers to list.\n   * @format GUID\n   */\n  memberId: string;\n  /**\n   * Pagination options. For more information, see\n   * [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging).\n   */\n  paging?: CursorPaging;\n}\n\nexport interface ListMemberFollowingResponse {\n  /**\n   * Retrieved list of members who are followed by the given member.\n   * @format GUID\n   */\n  memberIds?: string[];\n  /** Details on the paged set of results returned. */\n  pagingMetadata?: PagingMetadataV2;\n}\n\nexport interface ListMyMemberFollowersRequest {\n  /**\n   * Pagination options. For more information, see\n   * [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging).\n   */\n  paging?: CursorPaging;\n}\n\nexport interface ListMyMemberFollowersResponse {\n  /**\n   * Retrieved list of members who are following the current member.\n   * @format GUID\n   */\n  memberIds?: string[];\n  /** Details on the paged set of results returned. */\n  pagingMetadata?: PagingMetadataV2;\n}\n\nexport interface ListMemberFollowersRequest {\n  /**\n   * ID of the member whose followed members to list.\n   * @format GUID\n   */\n  memberId: string;\n  /**\n   * Pagination options. For more information, see\n   * [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging).\n   */\n  paging?: CursorPaging;\n}\n\nexport interface ListMemberFollowersResponse {\n  /**\n   * Retrieved list of members who are following the given member.\n   * @format GUID\n   */\n  memberIds?: string[];\n  /** Details on the paged set of results returned. */\n  pagingMetadata?: PagingMetadataV2;\n}\n\nexport interface QueryMyMemberConnectionsRequest {\n  /**\n   * List of member IDs whose connections to the current member will be retrieved.\n   * @format GUID\n   * @maxSize 100\n   */\n  connectedMemberIds: string[];\n}\n\nexport interface QueryMyMemberConnectionsResponse {\n  /** Retrieved list of members whose connections to the current member were retrieved. */\n  connectedMembers?: ConnectedMembers[];\n}\n\nexport interface ConnectedMembers {\n  /**\n   * Site member ID.\n   * @format GUID\n   */\n  connectedMemberId?: string;\n  /** Whether the listed member is followed by the given member. */\n  followedByMember?: boolean;\n  /** Whether the listed member follows the given member. */\n  followingMember?: boolean;\n}\n\nexport interface QueryMemberConnectionsRequest {\n  /**\n   * List of member IDs whose connections to the given member will be retrieved.\n   * @format GUID\n   * @maxSize 100\n   */\n  connectedMemberIds: string[];\n  /**\n   * Member ID.\n   * @format GUID\n   */\n  memberId: string;\n}\n\nexport interface QueryMemberConnectionsResponse {\n  /** Retrieved list of members whose connections to the given member were retrieved. */\n  connectedMembers?: ConnectedMembers[];\n}\n\nexport interface DomainEvent extends DomainEventBodyOneOf {\n  createdEvent?: EntityCreatedEvent;\n  updatedEvent?: EntityUpdatedEvent;\n  deletedEvent?: EntityDeletedEvent;\n  actionEvent?: ActionEvent;\n  /** Event ID. With this ID you can easily spot duplicated events and ignore them. */\n  id?: string;\n  /**\n   * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.\n   * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.\n   */\n  entityFqdn?: string;\n  /**\n   * Event action name, placed at the top level to make it easier for users to dispatch messages.\n   * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.\n   */\n  slug?: string;\n  /** ID of the entity associated with the event. */\n  entityId?: string;\n  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */\n  eventTime?: Date | null;\n  /**\n   * Whether the event was triggered as a result of a privacy regulation application\n   * (for example, GDPR).\n   */\n  triggeredByAnonymizeRequest?: boolean | null;\n  /** If present, indicates the action that triggered the event. */\n  originatedFrom?: string | null;\n  /**\n   * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.\n   * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.\n   */\n  entityEventSequence?: string | null;\n}\n\n/** @oneof */\nexport interface DomainEventBodyOneOf {\n  createdEvent?: EntityCreatedEvent;\n  updatedEvent?: EntityUpdatedEvent;\n  deletedEvent?: EntityDeletedEvent;\n  actionEvent?: ActionEvent;\n}\n\nexport interface EntityCreatedEvent {\n  entityAsJson?: string;\n  /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */\n  restoreInfo?: RestoreInfo;\n}\n\nexport interface RestoreInfo {\n  deletedDate?: Date | null;\n}\n\nexport interface EntityUpdatedEvent {\n  /**\n   * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.\n   * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.\n   * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.\n   */\n  currentEntityAsJson?: string;\n}\n\nexport interface EntityDeletedEvent {\n  /** Entity that was deleted. */\n  deletedEntityAsJson?: string | null;\n}\n\nexport interface ActionEvent {\n  bodyAsJson?: string;\n}\n\nexport interface Empty {}\n\nexport interface MessageEnvelope {\n  /**\n   * App instance ID.\n   * @format GUID\n   */\n  instanceId?: string | null;\n  /**\n   * Event type.\n   * @maxLength 150\n   */\n  eventType?: string;\n  /** The identification type and identity data. */\n  identity?: IdentificationData;\n  /** Stringify payload. */\n  data?: string;\n  /** Details related to the account */\n  accountInfo?: AccountInfo;\n}\n\nexport interface IdentificationData extends IdentificationDataIdOneOf {\n  /**\n   * ID of a site visitor that has not logged in to the site.\n   * @format GUID\n   */\n  anonymousVisitorId?: string;\n  /**\n   * ID of a site visitor that has logged in to the site.\n   * @format GUID\n   */\n  memberId?: string;\n  /**\n   * ID of a Wix user (site owner, contributor, etc.).\n   * @format GUID\n   */\n  wixUserId?: string;\n  /**\n   * ID of an app.\n   * @format GUID\n   */\n  appId?: string;\n  /** @readonly */\n  identityType?: WebhookIdentityTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface IdentificationDataIdOneOf {\n  /**\n   * ID of a site visitor that has not logged in to the site.\n   * @format GUID\n   */\n  anonymousVisitorId?: string;\n  /**\n   * ID of a site visitor that has logged in to the site.\n   * @format GUID\n   */\n  memberId?: string;\n  /**\n   * ID of a Wix user (site owner, contributor, etc.).\n   * @format GUID\n   */\n  wixUserId?: string;\n  /**\n   * ID of an app.\n   * @format GUID\n   */\n  appId?: string;\n}\n\nexport enum WebhookIdentityType {\n  UNKNOWN = 'UNKNOWN',\n  ANONYMOUS_VISITOR = 'ANONYMOUS_VISITOR',\n  MEMBER = 'MEMBER',\n  WIX_USER = 'WIX_USER',\n  APP = 'APP',\n}\n\n/** @enumType */\nexport type WebhookIdentityTypeWithLiterals =\n  | WebhookIdentityType\n  | 'UNKNOWN'\n  | 'ANONYMOUS_VISITOR'\n  | 'MEMBER'\n  | 'WIX_USER'\n  | 'APP';\n\nexport interface AccountInfo {\n  /**\n   * ID of the Wix account associated with the event.\n   * @format GUID\n   */\n  accountId?: string | null;\n  /**\n   * ID of the parent Wix account. Only included when accountId belongs to a child account.\n   * @format GUID\n   */\n  parentAccountId?: string | null;\n  /**\n   * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.\n   * @format GUID\n   */\n  siteId?: string | null;\n}\n","import * as ambassadorWixMembersV3Follow from './members-v3-follow-member-followers.http.js';\nimport * as ambassadorWixMembersV3FollowTypes from './members-v3-follow-member-followers.types.js';\nimport * as ambassadorWixMembersV3FollowUniversalTypes from './members-v3-follow-member-followers.universal.js';\n\nexport type __PublicMethodMetaInfo<\n  K = string,\n  M = unknown,\n  T = unknown,\n  S = unknown,\n  Q = unknown,\n  R = unknown\n> = {\n  getUrl: (context: any) => string;\n  httpMethod: K;\n  path: string;\n  pathParams: M;\n  __requestType: T;\n  __originalRequestType: S;\n  __responseType: Q;\n  __originalResponseType: R;\n};\n\nexport function followMember(): __PublicMethodMetaInfo<\n  'POST',\n  { memberId: string },\n  ambassadorWixMembersV3FollowUniversalTypes.FollowMemberRequest,\n  ambassadorWixMembersV3FollowTypes.FollowMemberRequest,\n  ambassadorWixMembersV3FollowUniversalTypes.FollowMemberResponse,\n  ambassadorWixMembersV3FollowTypes.FollowMemberResponse\n> {\n  const payload = { memberId: ':memberId' } as any;\n\n  const getRequestOptions = ambassadorWixMembersV3Follow.followMember(payload);\n\n  const getUrl = (context: any): string => {\n    const { url } = getRequestOptions(context);\n    return url!;\n  };\n\n  return {\n    getUrl,\n    httpMethod: 'POST',\n    path: '/v3/followers/{memberId}',\n    pathParams: { memberId: 'memberId' },\n    __requestType: null as any,\n    __originalRequestType: null as any,\n    __responseType: null as any,\n    __originalResponseType: null as any,\n  };\n}\n\nexport function unfollowMember(): __PublicMethodMetaInfo<\n  'DELETE',\n  { memberId: string },\n  ambassadorWixMembersV3FollowUniversalTypes.UnfollowMemberRequest,\n  ambassadorWixMembersV3FollowTypes.UnfollowMemberRequest,\n  ambassadorWixMembersV3FollowUniversalTypes.UnfollowMemberResponse,\n  ambassadorWixMembersV3FollowTypes.UnfollowMemberResponse\n> {\n  const payload = { memberId: ':memberId' } as any;\n\n  const getRequestOptions =\n    ambassadorWixMembersV3Follow.unfollowMember(payload);\n\n  const getUrl = (context: any): string => {\n    const { url } = getRequestOptions(context);\n    return url!;\n  };\n\n  return {\n    getUrl,\n    httpMethod: 'DELETE',\n    path: '/v3/followers/{memberId}',\n    pathParams: { memberId: 'memberId' },\n    __requestType: null as any,\n    __originalRequestType: null as any,\n    __responseType: null as any,\n    __originalResponseType: null as any,\n  };\n}\n\nexport function listCurrentMemberFollowing(): __PublicMethodMetaInfo<\n  'GET',\n  {},\n  ambassadorWixMembersV3FollowUniversalTypes.ListMyMemberFollowingRequest,\n  ambassadorWixMembersV3FollowTypes.ListMyMemberFollowingRequest,\n  ambassadorWixMembersV3FollowUniversalTypes.ListMyMemberFollowingResponse,\n  ambassadorWixMembersV3FollowTypes.ListMyMemberFollowingResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixMembersV3Follow.listMyMemberFollowing(payload);\n\n  const getUrl = (context: any): string => {\n    const { url } = getRequestOptions(context);\n    return url!;\n  };\n\n  return {\n    getUrl,\n    httpMethod: 'GET',\n    path: '/v3/followers/my/following',\n    pathParams: {},\n    __requestType: null as any,\n    __originalRequestType: null as any,\n    __responseType: null as any,\n    __originalResponseType: null as any,\n  };\n}\n\nexport function listMemberFollowing(): __PublicMethodMetaInfo<\n  'GET',\n  { memberId: string },\n  ambassadorWixMembersV3FollowUniversalTypes.ListMemberFollowingRequest,\n  ambassadorWixMembersV3FollowTypes.ListMemberFollowingRequest,\n  ambassadorWixMembersV3FollowUniversalTypes.ListMemberFollowingResponse,\n  ambassadorWixMembersV3FollowTypes.ListMemberFollowingResponse\n> {\n  const payload = { memberId: ':memberId' } as any;\n\n  const getRequestOptions =\n    ambassadorWixMembersV3Follow.listMemberFollowing(payload);\n\n  const getUrl = (context: any): string => {\n    const { url } = getRequestOptions(context);\n    return url!;\n  };\n\n  return {\n    getUrl,\n    httpMethod: 'GET',\n    path: '/v3/followers/{memberId}/following',\n    pathParams: { memberId: 'memberId' },\n    __requestType: null as any,\n    __originalRequestType: null as any,\n    __responseType: null as any,\n    __originalResponseType: null as any,\n  };\n}\n\nexport function listCurrentMemberFollowers(): __PublicMethodMetaInfo<\n  'GET',\n  {},\n  ambassadorWixMembersV3FollowUniversalTypes.ListMyMemberFollowersRequest,\n  ambassadorWixMembersV3FollowTypes.ListMyMemberFollowersRequest,\n  ambassadorWixMembersV3FollowUniversalTypes.ListMyMemberFollowersResponse,\n  ambassadorWixMembersV3FollowTypes.ListMyMemberFollowersResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixMembersV3Follow.listMyMemberFollowers(payload);\n\n  const getUrl = (context: any): string => {\n    const { url } = getRequestOptions(context);\n    return url!;\n  };\n\n  return {\n    getUrl,\n    httpMethod: 'GET',\n    path: '/v3/followers/my',\n    pathParams: {},\n    __requestType: null as any,\n    __originalRequestType: null as any,\n    __responseType: null as any,\n    __originalResponseType: null as any,\n  };\n}\n\nexport function listMemberFollowers(): __PublicMethodMetaInfo<\n  'GET',\n  { memberId: string },\n  ambassadorWixMembersV3FollowUniversalTypes.ListMemberFollowersRequest,\n  ambassadorWixMembersV3FollowTypes.ListMemberFollowersRequest,\n  ambassadorWixMembersV3FollowUniversalTypes.ListMemberFollowersResponse,\n  ambassadorWixMembersV3FollowTypes.ListMemberFollowersResponse\n> {\n  const payload = { memberId: ':memberId' } as any;\n\n  const getRequestOptions =\n    ambassadorWixMembersV3Follow.listMemberFollowers(payload);\n\n  const getUrl = (context: any): string => {\n    const { url } = getRequestOptions(context);\n    return url!;\n  };\n\n  return {\n    getUrl,\n    httpMethod: 'GET',\n    path: '/v3/followers/{memberId}',\n    pathParams: { memberId: 'memberId' },\n    __requestType: null as any,\n    __originalRequestType: null as any,\n    __responseType: null as any,\n    __originalResponseType: null as any,\n  };\n}\n\nexport function queryCurrentMemberConnections(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixMembersV3FollowUniversalTypes.QueryMyMemberConnectionsRequest,\n  ambassadorWixMembersV3FollowTypes.QueryMyMemberConnectionsRequest,\n  ambassadorWixMembersV3FollowUniversalTypes.QueryMyMemberConnectionsResponse,\n  ambassadorWixMembersV3FollowTypes.QueryMyMemberConnectionsResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixMembersV3Follow.queryMyMemberConnections(payload);\n\n  const getUrl = (context: any): string => {\n    const { url } = getRequestOptions(context);\n    return url!;\n  };\n\n  return {\n    getUrl,\n    httpMethod: 'POST',\n    path: '/v3/followers/my/connections',\n    pathParams: {},\n    __requestType: null as any,\n    __originalRequestType: null as any,\n    __responseType: null as any,\n    __originalResponseType: null as any,\n  };\n}\n\nexport function queryMemberConnections(): __PublicMethodMetaInfo<\n  'POST',\n  { memberId: string },\n  ambassadorWixMembersV3FollowUniversalTypes.QueryMemberConnectionsRequest,\n  ambassadorWixMembersV3FollowTypes.QueryMemberConnectionsRequest,\n  ambassadorWixMembersV3FollowUniversalTypes.QueryMemberConnectionsResponse,\n  ambassadorWixMembersV3FollowTypes.QueryMemberConnectionsResponse\n> {\n  const payload = { memberId: ':memberId' } as any;\n\n  const getRequestOptions =\n    ambassadorWixMembersV3Follow.queryMemberConnections(payload);\n\n  const getUrl = (context: any): string => {\n    const { url } = getRequestOptions(context);\n    return url!;\n  };\n\n  return {\n    getUrl,\n    httpMethod: 'POST',\n    path: '/v3/followers/{memberId}/connections',\n    pathParams: { memberId: 'memberId' },\n    __requestType: null as any,\n    __originalRequestType: null as any,\n    __responseType: null as any,\n    __originalResponseType: null as any,\n  };\n}\n\nexport {\n  Follower as FollowerOriginal,\n  InvalidateCache as InvalidateCacheOriginal,\n  InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOfOriginal,\n  App as AppOriginal,\n  Page as PageOriginal,\n  URI as URIOriginal,\n  File as FileOriginal,\n  CustomTag as CustomTagOriginal,\n  Pages as PagesOriginal,\n  URIs as URIsOriginal,\n  FollowMemberRequest as FollowMemberRequestOriginal,\n  FollowMemberResponse as FollowMemberResponseOriginal,\n  MemberFollowed as MemberFollowedOriginal,\n  UnfollowMemberRequest as UnfollowMemberRequestOriginal,\n  UnfollowMemberResponse as UnfollowMemberResponseOriginal,\n  MemberUnfollowed as MemberUnfollowedOriginal,\n  ListMyMemberFollowingRequest as ListMyMemberFollowingRequestOriginal,\n  CursorPaging as CursorPagingOriginal,\n  ListMyMemberFollowingResponse as ListMyMemberFollowingResponseOriginal,\n  PagingMetadataV2 as PagingMetadataV2Original,\n  Cursors as CursorsOriginal,\n  ListMemberFollowingRequest as ListMemberFollowingRequestOriginal,\n  ListMemberFollowingResponse as ListMemberFollowingResponseOriginal,\n  ListMyMemberFollowersRequest as ListMyMemberFollowersRequestOriginal,\n  ListMyMemberFollowersResponse as ListMyMemberFollowersResponseOriginal,\n  ListMemberFollowersRequest as ListMemberFollowersRequestOriginal,\n  ListMemberFollowersResponse as ListMemberFollowersResponseOriginal,\n  QueryMyMemberConnectionsRequest as QueryMyMemberConnectionsRequestOriginal,\n  QueryMyMemberConnectionsResponse as QueryMyMemberConnectionsResponseOriginal,\n  ConnectedMembers as ConnectedMembersOriginal,\n  QueryMemberConnectionsRequest as QueryMemberConnectionsRequestOriginal,\n  QueryMemberConnectionsResponse as QueryMemberConnectionsResponseOriginal,\n  DomainEvent as DomainEventOriginal,\n  DomainEventBodyOneOf as DomainEventBodyOneOfOriginal,\n  EntityCreatedEvent as EntityCreatedEventOriginal,\n  RestoreInfo as RestoreInfoOriginal,\n  EntityUpdatedEvent as EntityUpdatedEventOriginal,\n  EntityDeletedEvent as EntityDeletedEventOriginal,\n  ActionEvent as ActionEventOriginal,\n  Empty as EmptyOriginal,\n  MessageEnvelope as MessageEnvelopeOriginal,\n  IdentificationData as IdentificationDataOriginal,\n  IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal,\n  WebhookIdentityType as WebhookIdentityTypeOriginal,\n  WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal,\n  AccountInfo as AccountInfoOriginal,\n} from './members-v3-follow-member-followers.types.js';\n"],"mappings":"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","names":["WebhookIdentityType","followMember","unfollowMember","listMemberFollowing","listMemberFollowers","queryMemberConnections"]}