import { GetDisputeRequest as GetDisputeRequest$1, GetDisputeResponse as GetDisputeResponse$1, QueryDisputesRequest as QueryDisputesRequest$1, QueryDisputesResponse as QueryDisputesResponse$1, AcceptDisputeRequest as AcceptDisputeRequest$1, AcceptDisputeResponse as AcceptDisputeResponse$1, DefendDisputeRequest as DefendDisputeRequest$1, DefendDisputeResponse as DefendDisputeResponse$1, BulkUpdateDisputeTagsRequest as BulkUpdateDisputeTagsRequest$1, BulkUpdateDisputeTagsResponse as BulkUpdateDisputeTagsResponse$1, BulkUpdateDisputeTagsByFilterRequest as BulkUpdateDisputeTagsByFilterRequest$1, BulkUpdateDisputeTagsByFilterResponse as BulkUpdateDisputeTagsByFilterResponse$1 } from './index.typings.js'; import '@wix/sdk-types'; /** A dispute is a customer-initiated challenge of a payment through their payment service provider (PSP) or bank. */ interface Dispute { /** * Dispute ID. * @format GUID * @immutable */ id?: string; /** * ID of the charge that is being disputed. * @format GUID * @immutable */ chargeId?: string; /** * Unique identifier assigned by the payment service provider for this dispute. * @format GUID * @immutable */ providerDisputeId?: string; /** * Stage of the dispute process. * @readonly */ stage?: DisputeStageWithLiterals; /** * Reason why the customer initiated the dispute. * @readonly */ reason?: DisputeReasonWithLiterals; /** * Three-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format. Matches the currency of the disputed charge. * @immutable * @format CURRENCY */ currencyCode?: string | null; /** * Disputed amount in the currency's main units. For example, `"12.95"` for $12.95. * @immutable * @decimalValue options { gt:0, maxScale:8 } */ amount?: string | null; /** * Current status of the dispute. This indicates what action is required and who needs to take it. * @readonly */ status?: DisputeStatusWithLiterals; /** * Level of seller protection coverage for this dispute. * * Seller protection is set by the payment provider. For example, PayPal offers a [seller protection program](https://www.paypal.com/ua/legalhub/paypal/seller-protection). * @readonly */ sellerProtection?: SellerProtectionWithLiterals; /** * Channel through which the dispute is being processed. * @readonly */ channel?: DisputeChannelWithLiterals; /** * The latest date and time until which the dispute can remain in its current status. * * If this date passes, the dispute will be resolved against the party that is required to take action. For example, if the status is `WAITING_MERCHANT`, and the due date passes, the dispute will be `LOST` and a refund will be processed automatically. * @readonly */ dueDate?: Date | null; /** * Network reason code provided by the card network or issuing bank that initiated the dispute. * @minLength 1 * @maxLength 64 */ networkReasonCode?: string | null; /** * Whether the dispute can be defended with evidence. * @readonly */ defendable?: boolean | null; /** * Whether the dispute was automatically defended by the payment processor. * @readonly */ autoDefended?: boolean | null; /** * Date and time at which the dispute was defended. * @readonly */ defendedDate?: Date | null; /** * Date and time at which the dispute was accepted. * @readonly */ acceptedDate?: Date | null; /** * List of actions that can be performed on the dispute. * Each action has a specific due date by which it must be completed. * Available actions depend on the dispute's current status and stage. * @readonly * @maxSize 20 */ actions?: DisputeAction[]; /** * Date and time the dispute was created. * @readonly * @immutable */ createdDate?: Date | null; /** * Date and time the dispute was updated. * @readonly */ updatedDate?: Date | null; /** * Revision number, which increments by 1 each time the dispute is updated. To prevent conflicting changes, the current revision must be passed when updating the dispute. Ignored when creating a dispute. * @readonly */ revision?: string | null; /** * Custom field data for the dispute object. * * [Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must be configured in the app dashboard before they can be accessed with API calls. */ extendedFields?: ExtendedFields; /** Tags assigned to the dispute for organization and filtering purposes. */ tags?: Tags; } declare enum DisputeStage { /** Formal dispute filed through the card network or issuing bank. */ CHARGEBACK = "CHARGEBACK", /** Initial inquiry from the customer requesting information about the charge. */ INQUIRY = "INQUIRY" } /** @enumType */ type DisputeStageWithLiterals = DisputeStage | 'CHARGEBACK' | 'INQUIRY'; declare enum DisputeReason { /** Fraudulent use of a physical card. */ FRAUD_CARD_PRESENT = "FRAUD_CARD_PRESENT", /** Fraudulent use without the physical card present. */ FRAUD_CARD_ABSENT = "FRAUD_CARD_ABSENT", /** Duplicate charge processing. */ DUPLICATE_PROCESSING = "DUPLICATE_PROCESSING", /** Services or goods were not provided as promised. */ SERVICES_NOT_PROVIDED = "SERVICES_NOT_PROVIDED", /** Recurring payment that should have been canceled. */ CANCELED_RECURRING = "CANCELED_RECURRING", /** Item received was not as described. */ NOT_AS_DESCRIBED = "NOT_AS_DESCRIBED", /** Item received was counterfeit. */ COUNTERFEIT = "COUNTERFEIT", /** Merchant misrepresented the transaction. */ MISREPRESENTATION = "MISREPRESENTATION", /** Transaction was canceled but still charged. */ CANCELED = "CANCELED", /** Other dispute reason not covered by specific categories. */ OTHER = "OTHER" } /** @enumType */ type DisputeReasonWithLiterals = DisputeReason | 'FRAUD_CARD_PRESENT' | 'FRAUD_CARD_ABSENT' | 'DUPLICATE_PROCESSING' | 'SERVICES_NOT_PROVIDED' | 'CANCELED_RECURRING' | 'NOT_AS_DESCRIBED' | 'COUNTERFEIT' | 'MISREPRESENTATION' | 'CANCELED' | 'OTHER'; declare enum DisputeStatus { /** Merchant action required to proceed with the dispute. */ WAITING_MERCHANT = "WAITING_MERCHANT", /** Dispute is being reviewed by the payment service provider or bank. */ UNDER_REVIEW = "UNDER_REVIEW", /** Customer action required to proceed with the dispute. */ WAITING_BUYER = "WAITING_BUYER", /** Dispute resolved in favor of the merchant. */ WON = "WON", /** Dispute resolved in favor of the customer. When a dispute is lost, the refund is processed automatically. */ LOST = "LOST" } /** @enumType */ type DisputeStatusWithLiterals = DisputeStatus | 'WAITING_MERCHANT' | 'UNDER_REVIEW' | 'WAITING_BUYER' | 'WON' | 'LOST'; declare enum SellerProtection { /** Transaction is not eligible for seller protection. */ NOT_ELIGIBLE = "NOT_ELIGIBLE", /** Transaction is eligible for basic seller protection. */ ELIGIBLE = "ELIGIBLE", /** Transaction is eligible for extended seller protection coverage. */ EXTENDED = "EXTENDED" } /** @enumType */ type SellerProtectionWithLiterals = SellerProtection | 'NOT_ELIGIBLE' | 'ELIGIBLE' | 'EXTENDED'; declare enum DisputeChannel { /** Dispute is processed by the payment service provider. */ INTERNAL = "INTERNAL", /** Dispute is processed through the card network or issuing bank. */ EXTERNAL = "EXTERNAL" } /** @enumType */ type DisputeChannelWithLiterals = DisputeChannel | 'INTERNAL' | 'EXTERNAL'; interface DisputeAction { /** Type of action that can be performed. */ type?: DisputeActionTypeWithLiterals; /** Latest date and time by which this action must be performed. */ dueDate?: Date | null; } declare enum DisputeActionType { /** Dispute can be accepted. */ ACCEPT = "ACCEPT", /** Dispute can be defended. */ DEFEND = "DEFEND" } /** @enumType */ type DisputeActionTypeWithLiterals = DisputeActionType | 'ACCEPT' | 'DEFEND'; interface ExtendedFields { /** * Extended field data. Each key corresponds to the namespace of the app that created the extended fields. * The value of each key is structured according to the schema defined when the extended fields were configured. * * You can only access fields for which you have the appropriate permissions. * * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields). */ namespaces?: Record>; } /** * Common object for tags. * Should be use as in this example: * message Foo { * option (.wix.api.decomposite_of) = "wix.commons.v2.tags.Foo"; * string id = 1; * ... * Tags tags = 5 * } * * example of taggable entity * { * id: "123" * tags: { * public_tags: { * tag_ids:["11","22"] * }, * private_tags: { * tag_ids: ["33", "44"] * } * } * } */ interface Tags { /** Tags that require an additional permission in order to access them, normally not given to site members or visitors. */ privateTags?: TagList; /** Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. */ publicTags?: TagList; } interface TagList { /** * List of tag IDs. * @maxSize 100 * @maxLength 5 */ tagIds?: string[]; } /** Triggered when tags are assigned to or unassigned from a dispute. */ interface TagsModified { /** Updated dispute. */ dispute?: Dispute; /** Tags that were assigned to the dispute. */ assignedTags?: Tags; /** Tags that were unassigned from the dispute. */ unassignedTags?: Tags; } interface GetDisputeRequest { /** * ID of the dispute to retrieve. * @format GUID */ disputeId: string; } interface GetDisputeResponse { /** The retrieved dispute. */ dispute?: Dispute; } interface QueryDisputesRequest { /** WQL expression for filtering and sorting disputes. */ query?: CursorQuery; } interface CursorQuery extends CursorQueryPagingMethodOneOf { /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */ cursorPaging?: CursorPaging; /** * Filter object in the following format: * `"filter" : { * "fieldName1": "value1", * "fieldName2":{"$operator":"value2"} * }` * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains` */ filter?: Record | null; /** * Sort object in the following format: * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]` * @maxSize 5 */ sort?: Sorting[]; } /** @oneof */ interface CursorQueryPagingMethodOneOf { /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */ cursorPaging?: CursorPaging; } interface Sorting { /** * Name of the field to sort by. * @maxLength 512 */ fieldName?: string; /** Sort order. */ order?: SortOrderWithLiterals; } declare enum SortOrder { ASC = "ASC", DESC = "DESC" } /** @enumType */ type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC'; interface CursorPaging { /** * Maximum number of items to return in the results. * @max 100 */ limit?: number | null; /** * Pointer to the next or previous page in the list of results. * * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response. * Not relevant for the first request. * @maxLength 16000 */ cursor?: string | null; } interface QueryDisputesResponse { /** List of retrieved disputes. */ disputes?: Dispute[]; /** Paging metadata for cursor-based pagination. */ pagingMetadata?: CursorPagingMetadata; } interface CursorPagingMetadata { /** Number of items returned in the response. */ count?: number | null; /** Cursor strings that point to the next page, previous page, or both. */ cursors?: Cursors; /** * Whether there are more pages to retrieve following the current page. * * + `true`: Another page of results can be retrieved. * + `false`: This is the last page. */ hasNext?: boolean | null; } interface Cursors { /** * Cursor string pointing to the next page in the list of results. * @maxLength 16000 */ next?: string | null; /** * Cursor pointing to the previous page in the list of results. * @maxLength 16000 */ prev?: string | null; } interface AcceptDisputeRequest { /** * ID of the dispute to accept. * @format GUID */ disputeId: string; } interface AcceptDisputeResponse { /** Updated dispute after acceptance. */ dispute?: Dispute; } interface DefendDisputeRequest { /** * ID of the dispute to defend. * @format GUID */ disputeId: string; } interface DefendDisputeResponse { /** Updated dispute after submitting evidence. */ dispute?: Dispute; } interface BulkUpdateDisputeTagsRequest { /** * List of dispute IDs to update tags for. * @minSize 1 * @maxSize 100 * @format GUID */ ids: string[]; /** Tags to assign to the disputes. */ assignTags?: Tags; /** Tags to remove from the disputes. */ unassignTags?: Tags; } interface BulkUpdateDisputeTagsResponse { /** * Results of the bulk tag update operation. * @minSize 1 * @maxSize 100 */ results?: BulkUpdateDisputeTagsResult[]; /** Metadata about the bulk operation. */ bulkActionMetadata?: BulkActionMetadata; } interface ItemMetadata { /** * Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). * @format GUID */ id?: string | null; /** Index of the item within the request array. Allows for correlation between request and response items. */ originalIndex?: number; /** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */ success?: boolean; /** Details about the error in case of failure. */ error?: ApplicationError; } interface ApplicationError { /** Error code. */ code?: string; /** Description of the error. */ description?: string; /** Data related to the error. */ data?: Record | null; } interface BulkUpdateDisputeTagsResult { /** Metadata for the individual dispute update. */ itemMetadata?: ItemMetadata; } interface BulkActionMetadata { /** Number of items that were successfully processed. */ totalSuccesses?: number; /** Number of items that couldn't be processed. */ totalFailures?: number; /** Number of failures without details because detailed failure threshold was exceeded. */ undetailedFailures?: number; } interface BulkUpdateDisputeTagsByFilterRequest { /** * Filter that determines which disputes to update tags for. * * An empty filter updates all disputes. */ filter: Record | null; /** Tags to assign to the filtered disputes. */ assignTags?: Tags; /** Tags to remove from the filtered disputes. */ unassignTags?: Tags; } interface BulkUpdateDisputeTagsByFilterResponse { /** * Job ID for tracking the asynchronous bulk update operation. * @format GUID */ jobId?: string; } interface DomainEvent extends DomainEventBodyOneOf { createdEvent?: EntityCreatedEvent; updatedEvent?: EntityUpdatedEvent; deletedEvent?: EntityDeletedEvent; actionEvent?: ActionEvent; /** Event ID. With this ID you can easily spot duplicated events and ignore them. */ id?: string; /** * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities. * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`. */ entityFqdn?: string; /** * Event action name, placed at the top level to make it easier for users to dispatch messages. * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`. */ slug?: string; /** ID of the entity associated with the event. */ entityId?: string; /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */ eventTime?: Date | null; /** * Whether the event was triggered as a result of a privacy regulation application * (for example, GDPR). */ triggeredByAnonymizeRequest?: boolean | null; /** If present, indicates the action that triggered the event. */ originatedFrom?: string | null; /** * 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. * 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. */ entityEventSequence?: string | null; } /** @oneof */ interface DomainEventBodyOneOf { createdEvent?: EntityCreatedEvent; updatedEvent?: EntityUpdatedEvent; deletedEvent?: EntityDeletedEvent; actionEvent?: ActionEvent; } interface EntityCreatedEvent { entityAsJson?: string; /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */ restoreInfo?: RestoreInfo; } interface RestoreInfo { deletedDate?: Date | null; } interface EntityUpdatedEvent { /** * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff. * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects. * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it. */ currentEntityAsJson?: string; } interface EntityDeletedEvent { /** Entity that was deleted. */ deletedEntityAsJson?: string | null; } interface ActionEvent { bodyAsJson?: string; } interface MessageEnvelope { /** * App instance ID. * @format GUID */ instanceId?: string | null; /** * Event type. * @maxLength 150 */ eventType?: string; /** The identification type and identity data. */ identity?: IdentificationData; /** Stringify payload. */ data?: string; /** Details related to the account */ accountInfo?: AccountInfo; } interface IdentificationData extends IdentificationDataIdOneOf { /** * ID of a site visitor that has not logged in to the site. * @format GUID */ anonymousVisitorId?: string; /** * ID of a site visitor that has logged in to the site. * @format GUID */ memberId?: string; /** * ID of a Wix user (site owner, contributor, etc.). * @format GUID */ wixUserId?: string; /** * ID of an app. * @format GUID */ appId?: string; /** @readonly */ identityType?: WebhookIdentityTypeWithLiterals; } /** @oneof */ interface IdentificationDataIdOneOf { /** * ID of a site visitor that has not logged in to the site. * @format GUID */ anonymousVisitorId?: string; /** * ID of a site visitor that has logged in to the site. * @format GUID */ memberId?: string; /** * ID of a Wix user (site owner, contributor, etc.). * @format GUID */ wixUserId?: string; /** * ID of an app. * @format GUID */ appId?: string; } declare enum WebhookIdentityType { UNKNOWN = "UNKNOWN", ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR", MEMBER = "MEMBER", WIX_USER = "WIX_USER", APP = "APP" } /** @enumType */ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP'; interface AccountInfo { /** * ID of the Wix account associated with the event. * @format GUID */ accountId?: string | null; /** * ID of the parent Wix account. Only included when accountId belongs to a child account. * @format GUID */ parentAccountId?: string | null; /** * ID of the Wix site associated with the event. Only included when the event is tied to a specific site. * @format GUID */ siteId?: string | null; } /** @docsIgnore */ type BulkUpdateDisputeTagsApplicationErrors = { code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS'; description?: string; data?: Record; }; /** @docsIgnore */ type BulkUpdateDisputeTagsByFilterApplicationErrors = { code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS'; description?: string; data?: Record; }; type __PublicMethodMetaInfo = { getUrl: (context: any) => string; httpMethod: K; path: string; pathParams: M; __requestType: T; __originalRequestType: S; __responseType: Q; __originalResponseType: R; }; declare function getDispute(): __PublicMethodMetaInfo<'GET', { disputeId: string; }, GetDisputeRequest$1, GetDisputeRequest, GetDisputeResponse$1, GetDisputeResponse>; declare function queryDisputes(): __PublicMethodMetaInfo<'GET', {}, QueryDisputesRequest$1, QueryDisputesRequest, QueryDisputesResponse$1, QueryDisputesResponse>; declare function acceptDispute(): __PublicMethodMetaInfo<'POST', { disputeId: string; }, AcceptDisputeRequest$1, AcceptDisputeRequest, AcceptDisputeResponse$1, AcceptDisputeResponse>; declare function defendDispute(): __PublicMethodMetaInfo<'POST', { disputeId: string; }, DefendDisputeRequest$1, DefendDisputeRequest, DefendDisputeResponse$1, DefendDisputeResponse>; declare function bulkUpdateDisputeTags(): __PublicMethodMetaInfo<'POST', {}, BulkUpdateDisputeTagsRequest$1, BulkUpdateDisputeTagsRequest, BulkUpdateDisputeTagsResponse$1, BulkUpdateDisputeTagsResponse>; declare function bulkUpdateDisputeTagsByFilter(): __PublicMethodMetaInfo<'POST', {}, BulkUpdateDisputeTagsByFilterRequest$1, BulkUpdateDisputeTagsByFilterRequest, BulkUpdateDisputeTagsByFilterResponse$1, BulkUpdateDisputeTagsByFilterResponse>; export { type AcceptDisputeRequest as AcceptDisputeRequestOriginal, type AcceptDisputeResponse as AcceptDisputeResponseOriginal, type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type ApplicationError as ApplicationErrorOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkUpdateDisputeTagsApplicationErrors as BulkUpdateDisputeTagsApplicationErrorsOriginal, type BulkUpdateDisputeTagsByFilterApplicationErrors as BulkUpdateDisputeTagsByFilterApplicationErrorsOriginal, type BulkUpdateDisputeTagsByFilterRequest as BulkUpdateDisputeTagsByFilterRequestOriginal, type BulkUpdateDisputeTagsByFilterResponse as BulkUpdateDisputeTagsByFilterResponseOriginal, type BulkUpdateDisputeTagsRequest as BulkUpdateDisputeTagsRequestOriginal, type BulkUpdateDisputeTagsResponse as BulkUpdateDisputeTagsResponseOriginal, type BulkUpdateDisputeTagsResult as BulkUpdateDisputeTagsResultOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DefendDisputeRequest as DefendDisputeRequestOriginal, type DefendDisputeResponse as DefendDisputeResponseOriginal, type DisputeAction as DisputeActionOriginal, DisputeActionType as DisputeActionTypeOriginal, type DisputeActionTypeWithLiterals as DisputeActionTypeWithLiteralsOriginal, DisputeChannel as DisputeChannelOriginal, type DisputeChannelWithLiterals as DisputeChannelWithLiteralsOriginal, type Dispute as DisputeOriginal, DisputeReason as DisputeReasonOriginal, type DisputeReasonWithLiterals as DisputeReasonWithLiteralsOriginal, DisputeStage as DisputeStageOriginal, type DisputeStageWithLiterals as DisputeStageWithLiteralsOriginal, DisputeStatus as DisputeStatusOriginal, type DisputeStatusWithLiterals as DisputeStatusWithLiteralsOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type GetDisputeRequest as GetDisputeRequestOriginal, type GetDisputeResponse as GetDisputeResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ItemMetadata as ItemMetadataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type QueryDisputesRequest as QueryDisputesRequestOriginal, type QueryDisputesResponse as QueryDisputesResponseOriginal, type RestoreInfo as RestoreInfoOriginal, SellerProtection as SellerProtectionOriginal, type SellerProtectionWithLiterals as SellerProtectionWithLiteralsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, type TagList as TagListOriginal, type TagsModified as TagsModifiedOriginal, type Tags as TagsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, acceptDispute, bulkUpdateDisputeTags, bulkUpdateDisputeTagsByFilter, defendDispute, getDispute, queryDisputes };