{"version":3,"sources":["../../src/social-groups-v2-group-role-roles.http.ts","../../src/social-groups-v2-group-role-roles.types.ts","../../src/social-groups-v2-group-role-roles.meta.ts"],"sourcesContent":["import { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveWixSocialGroupsApiV2GroupRolesServiceUrl(\n  opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n  const domainToMappings = {\n    'api._api_base_domain_': [\n      {\n        srcPath: '/roles-proxy',\n        destPath: '',\n      },\n    ],\n    _: [\n      {\n        srcPath: '/_api/roles-proxy',\n        destPath: '',\n      },\n      {\n        srcPath: '/_api/social-groups-proxy/roles',\n        destPath: '',\n      },\n    ],\n    '*.dev.wix-code.com': [\n      {\n        srcPath: '/_api/social-groups-proxy/roles',\n        destPath: '',\n      },\n    ],\n    'editor-flow.wixapps.net': [\n      {\n        srcPath: '/_api/social-groups-proxy/roles',\n        destPath: '',\n      },\n    ],\n    'editor._base_domain_': [\n      {\n        srcPath: '/_api/social-groups-proxy/roles',\n        destPath: '',\n      },\n    ],\n    'blocks._base_domain_': [\n      {\n        srcPath: '/_api/social-groups-proxy/roles',\n        destPath: '',\n      },\n    ],\n    'create.editorx': [\n      {\n        srcPath: '/_api/social-groups-proxy/roles',\n        destPath: '',\n      },\n    ],\n    'editor.wixapps.net': [\n      {\n        srcPath: '/_api/social-groups-proxy/roles',\n        destPath: '',\n      },\n    ],\n    'groups.wixapps.net': [\n      {\n        srcPath: '/_api/social-groups-proxy/roles',\n        destPath: '',\n      },\n    ],\n    'manage._base_domain_': [\n      {\n        srcPath: '/_api/social-groups-proxy/roles',\n        destPath: '',\n      },\n      {\n        srcPath: '/social-groups-proxy/api/roles',\n        destPath: '',\n      },\n    ],\n    'www._base_domain_': [\n      {\n        srcPath: '/_api/social-groups-proxy/roles',\n        destPath: '',\n      },\n    ],\n    'www.wixapis.com': [\n      {\n        srcPath: '/social-groups-proxy/roles',\n        destPath: '',\n      },\n    ],\n  };\n\n  return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_groups_roles';\n\n/**\n * Assigns a specific role to group members.\n *\n * Calling this method overrides the group member's current `role.value`.\n *\n * >**Notes:**\n * > + Only group admins can assign roles.\n * > + You cannot create new members with this method.\n */\nexport function assignRole(payload: object): RequestOptionsFactory<any> {\n  function __assignRole({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.social_groups.v2.group_role',\n      method: 'POST' as any,\n      methodFqn: 'wix.social.groups.api.v2.GroupRolesService.AssignRole',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixSocialGroupsApiV2GroupRolesServiceUrl({\n        protoPath: '/v2/groups/{groupId}/roles/assign',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __assignRole;\n}\n\n/**\n * Unassigns a role from group members.\n *\n * You can only unassign `ADMIN` roles. Calling this method with group members\n * with `role.value` set to `MEMBER` returns an error.\n *\n * > **Notes:**\n * > + Only group admins can assign roles.\n * > + You cannot remove members with this method.\n */\nexport function unassignRole(payload: object): RequestOptionsFactory<any> {\n  function __unassignRole({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.social_groups.v2.group_role',\n      method: 'POST' as any,\n      methodFqn: 'wix.social.groups.api.v2.GroupRolesService.UnassignRole',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixSocialGroupsApiV2GroupRolesServiceUrl({\n        protoPath: '/v2/groups/{groupId}/roles/unassign',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __unassignRole;\n}\n","/**\n * A group member may have multiple roles in a single group.\n * Currently, only `MEMBER` and `ADMIN` roles are supported, but more roles may be available in the future.\n */\nexport interface GroupRole {\n  /** Member's role. */\n  value?: RoleWithLiterals;\n}\n\nexport enum Role {\n  /** Regular group member. */\n  MEMBER = 'MEMBER',\n  /** Group administrator. */\n  ADMIN = 'ADMIN',\n}\n\n/** @enumType */\nexport type RoleWithLiterals = Role | 'MEMBER' | 'ADMIN';\n\nexport interface AssignRoleRequest {\n  /**\n   * Group ID.\n   * @format GUID\n   */\n  groupId: string;\n  /**\n   * Member IDs. Limited to 100 member IDs. See the Members API for details.\n   * @format GUID\n   * @maxSize 100\n   */\n  memberIds?: string[];\n  /** Role to assign. */\n  role?: GroupRole;\n}\n\nexport interface AssignRoleResponse {\n  /**\n   * Group ID.\n   * @format GUID\n   */\n  groupId?: string;\n  /**\n   * Member IDs. Limited to 100 member IDs. See the Members API for details.\n   * @format GUID\n   * @maxSize 100\n   */\n  memberIds?: string[];\n  /** Assigned role. */\n  role?: GroupRole;\n}\n\nexport interface RoleAssignedToGroupMember {\n  /**\n   * Group ID in which role was assigned.\n   * @format GUID\n   */\n  groupId?: string;\n  /** Group member to whom the role was assigned. */\n  groupMember?: GroupMember;\n  /** Assigned group role. */\n  role?: GroupRole;\n  /**\n   * ID of site member who assigned the role. It can be empty if the role was assigned by a third-party application.\n   * @format GUID\n   */\n  assignedById?: string | null;\n}\n\n/**\n * A group member represents an existing site member that has joined a group.\n * You can add, remove, and query group members.\n * Learn more about [group members](https://support.wix.com/en/article/wix-groups-adding-new-members-to-your-group).\n */\nexport interface GroupMember {\n  /**\n   * Member ID. See the Members API for more details.\n   * @readonly\n   * @format GUID\n   */\n  memberId?: string;\n  /** Group member role. */\n  role?: GroupRole;\n  /**\n   * Date and time the group Member joined the group.\n   * @readonly\n   */\n  joinedDate?: Date | null;\n}\n\nexport interface UnassignRoleRequest {\n  /**\n   * Group ID.\n   * @format GUID\n   */\n  groupId: string;\n  /**\n   * Member IDs. Limited to 100 member IDs. See the Members API for details.\n   * @format GUID\n   * @maxSize 100\n   */\n  memberIds?: string[];\n  /** Role to unassign. */\n  role?: GroupRole;\n}\n\nexport interface UnassignRoleResponse {\n  /**\n   * Group ID.\n   * @format GUID\n   */\n  groupId?: string;\n  /**\n   * Member IDs. Limited to 100 member IDs. See the Members API for details.\n   * @format GUID\n   * @maxSize 100\n   * @deprecated\n   */\n  siteMemberIds?: string[];\n  /**\n   * Member IDs. Limited to 100 member IDs. See the Members API for details.\n   * @format GUID\n   * @maxSize 100\n   */\n  memberIds?: string[];\n  /** Unassigned role. */\n  role?: GroupRole;\n}\n\nexport interface RoleUnassignedFromGroupMember {\n  /**\n   * Group ID in which role was unassigned.\n   * @format GUID\n   */\n  groupId?: string;\n  /** Group member from whom role was removed. */\n  groupMember?: GroupMember;\n  /** Unassigned group role. */\n  role?: GroupRole;\n  /**\n   * ID of site member who unassigned the role. It can be empty if the role was assigned by a third-party application.\n   * @format GUID\n   */\n  unassignedById?: string | null;\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 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 ambassadorWixSocialGroupsV2GroupRole from './social-groups-v2-group-role-roles.http.js';\nimport * as ambassadorWixSocialGroupsV2GroupRoleTypes from './social-groups-v2-group-role-roles.types.js';\nimport * as ambassadorWixSocialGroupsV2GroupRoleUniversalTypes from './social-groups-v2-group-role-roles.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 assignRole(): __PublicMethodMetaInfo<\n  'POST',\n  { groupId: string },\n  ambassadorWixSocialGroupsV2GroupRoleUniversalTypes.AssignRoleRequest,\n  ambassadorWixSocialGroupsV2GroupRoleTypes.AssignRoleRequest,\n  ambassadorWixSocialGroupsV2GroupRoleUniversalTypes.AssignRoleResponse,\n  ambassadorWixSocialGroupsV2GroupRoleTypes.AssignRoleResponse\n> {\n  const payload = { groupId: ':groupId' } as any;\n\n  const getRequestOptions =\n    ambassadorWixSocialGroupsV2GroupRole.assignRole(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: '/v2/groups/{groupId}/roles/assign',\n    pathParams: { groupId: 'groupId' },\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 unassignRole(): __PublicMethodMetaInfo<\n  'POST',\n  { groupId: string },\n  ambassadorWixSocialGroupsV2GroupRoleUniversalTypes.UnassignRoleRequest,\n  ambassadorWixSocialGroupsV2GroupRoleTypes.UnassignRoleRequest,\n  ambassadorWixSocialGroupsV2GroupRoleUniversalTypes.UnassignRoleResponse,\n  ambassadorWixSocialGroupsV2GroupRoleTypes.UnassignRoleResponse\n> {\n  const payload = { groupId: ':groupId' } as any;\n\n  const getRequestOptions =\n    ambassadorWixSocialGroupsV2GroupRole.unassignRole(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: '/v2/groups/{groupId}/roles/unassign',\n    pathParams: { groupId: 'groupId' },\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  GroupRole as GroupRoleOriginal,\n  Role as RoleOriginal,\n  RoleWithLiterals as RoleWithLiteralsOriginal,\n  AssignRoleRequest as AssignRoleRequestOriginal,\n  AssignRoleResponse as AssignRoleResponseOriginal,\n  RoleAssignedToGroupMember as RoleAssignedToGroupMemberOriginal,\n  GroupMember as GroupMemberOriginal,\n  UnassignRoleRequest as UnassignRoleRequestOriginal,\n  UnassignRoleResponse as UnassignRoleResponseOriginal,\n  RoleUnassignedFromGroupMember as RoleUnassignedFromGroupMemberOriginal,\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  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 './social-groups-v2-group-role-roles.types.js';\n"],"mappings":"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","names":["Role","WebhookIdentityType","assignRole","unassignRole"]}