@wix/auto_sdk_payments_dispute-history-records 1.0.17 → 1.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,317 @@
1
+ // src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.ts
2
+ import { transformError as sdkTransformError } from "@wix/sdk-runtime/transform-error";
3
+ import { queryBuilder } from "@wix/sdk-runtime/query-builder";
4
+ import {
5
+ renameKeysFromSDKRequestToRESTRequest,
6
+ renameKeysFromRESTResponseToSDKResponse
7
+ } from "@wix/sdk-runtime/rename-all-nested-keys";
8
+
9
+ // src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.http.ts
10
+ import { toURLSearchParams } from "@wix/sdk-runtime/rest-modules";
11
+ import { transformRESTTimestampToSDKTimestamp } from "@wix/sdk-runtime/transformations/timestamp";
12
+ import { transformPaths } from "@wix/sdk-runtime/transformations/transform-paths";
13
+ import { resolveUrl } from "@wix/sdk-runtime/rest-modules";
14
+ function resolveWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecordServiceUrl(opts) {
15
+ const domainToMappings = {};
16
+ return resolveUrl(Object.assign(opts, { domainToMappings }));
17
+ }
18
+ var PACKAGE_NAME = "@wix/auto_sdk_payments_dispute-history-records";
19
+ function getDisputeHistoryRecord(payload) {
20
+ function __getDisputeHistoryRecord({ host }) {
21
+ const metadata = {
22
+ entityFqdn: "wix.payments.dispute_history_records.v1.dispute_history_record",
23
+ method: "GET",
24
+ methodFqn: "wix.payments.dispute_history_records.v1.DisputeHistoryRecordService.GetDisputeHistoryRecord",
25
+ packageName: PACKAGE_NAME,
26
+ url: resolveWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecordServiceUrl(
27
+ {
28
+ protoPath: "/v1/dispute-history-records/{disputeHistoryRecordId}",
29
+ data: payload,
30
+ host
31
+ }
32
+ ),
33
+ params: toURLSearchParams(payload),
34
+ transformResponse: (payload2) => transformPaths(payload2, [
35
+ {
36
+ transformFn: transformRESTTimestampToSDKTimestamp,
37
+ paths: [
38
+ { path: "disputeHistoryRecord.createdDate" },
39
+ { path: "disputeHistoryRecord.updatedDate" },
40
+ { path: "disputeHistoryRecord.dueDate" }
41
+ ]
42
+ }
43
+ ])
44
+ };
45
+ return metadata;
46
+ }
47
+ return __getDisputeHistoryRecord;
48
+ }
49
+ function queryDisputeHistoryRecords(payload) {
50
+ function __queryDisputeHistoryRecords({ host }) {
51
+ const metadata = {
52
+ entityFqdn: "wix.payments.dispute_history_records.v1.dispute_history_record",
53
+ method: "POST",
54
+ methodFqn: "wix.payments.dispute_history_records.v1.DisputeHistoryRecordService.QueryDisputeHistoryRecords",
55
+ packageName: PACKAGE_NAME,
56
+ url: resolveWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecordServiceUrl(
57
+ { protoPath: "/v1/dispute-history-records/query", data: payload, host }
58
+ ),
59
+ data: payload,
60
+ transformResponse: (payload2) => transformPaths(payload2, [
61
+ {
62
+ transformFn: transformRESTTimestampToSDKTimestamp,
63
+ paths: [
64
+ { path: "disputeHistoryRecords.createdDate" },
65
+ { path: "disputeHistoryRecords.updatedDate" },
66
+ { path: "disputeHistoryRecords.dueDate" }
67
+ ]
68
+ }
69
+ ]),
70
+ fallback: [
71
+ {
72
+ method: "POST",
73
+ url: resolveWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecordServiceUrl(
74
+ {
75
+ protoPath: "/v1/dispute-history-records/query",
76
+ data: payload,
77
+ host
78
+ }
79
+ ),
80
+ data: payload
81
+ }
82
+ ]
83
+ };
84
+ return metadata;
85
+ }
86
+ return __queryDisputeHistoryRecords;
87
+ }
88
+ function bulkUpdateDisputeHistoryRecordTags(payload) {
89
+ function __bulkUpdateDisputeHistoryRecordTags({ host }) {
90
+ const metadata = {
91
+ entityFqdn: "wix.payments.dispute_history_records.v1.dispute_history_record",
92
+ method: "POST",
93
+ methodFqn: "wix.payments.dispute_history_records.v1.DisputeHistoryRecordService.BulkUpdateDisputeHistoryRecordTags",
94
+ packageName: PACKAGE_NAME,
95
+ url: resolveWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecordServiceUrl(
96
+ {
97
+ protoPath: "/v1/bulk/dispute-history-records/update-tags",
98
+ data: payload,
99
+ host
100
+ }
101
+ ),
102
+ data: payload
103
+ };
104
+ return metadata;
105
+ }
106
+ return __bulkUpdateDisputeHistoryRecordTags;
107
+ }
108
+ function bulkUpdateDisputeHistoryRecordTagsByFilter(payload) {
109
+ function __bulkUpdateDisputeHistoryRecordTagsByFilter({ host }) {
110
+ const metadata = {
111
+ entityFqdn: "wix.payments.dispute_history_records.v1.dispute_history_record",
112
+ method: "POST",
113
+ methodFqn: "wix.payments.dispute_history_records.v1.DisputeHistoryRecordService.BulkUpdateDisputeHistoryRecordTagsByFilter",
114
+ packageName: PACKAGE_NAME,
115
+ url: resolveWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecordServiceUrl(
116
+ {
117
+ protoPath: "/v1/bulk/dispute-history-records/update-tags-by-filter",
118
+ data: payload,
119
+ host
120
+ }
121
+ ),
122
+ data: payload
123
+ };
124
+ return metadata;
125
+ }
126
+ return __bulkUpdateDisputeHistoryRecordTagsByFilter;
127
+ }
128
+
129
+ // src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.ts
130
+ import { transformPaths as transformPaths2 } from "@wix/sdk-runtime/transformations/transform-paths";
131
+ var DisputeStage = /* @__PURE__ */ ((DisputeStage2) => {
132
+ DisputeStage2["UNKNOWN_DISPUTE_STAGE"] = "UNKNOWN_DISPUTE_STAGE";
133
+ DisputeStage2["NOTIFICATION_OF_FRAUD"] = "NOTIFICATION_OF_FRAUD";
134
+ DisputeStage2["RFI"] = "RFI";
135
+ DisputeStage2["CHARGEBACK"] = "CHARGEBACK";
136
+ return DisputeStage2;
137
+ })(DisputeStage || {});
138
+ var DisputeStatus = /* @__PURE__ */ ((DisputeStatus2) => {
139
+ DisputeStatus2["UNKNOWN_DISPUTE_STATUS"] = "UNKNOWN_DISPUTE_STATUS";
140
+ DisputeStatus2["WAITING_MERCHANT"] = "WAITING_MERCHANT";
141
+ DisputeStatus2["UNDER_REVIEW"] = "UNDER_REVIEW";
142
+ DisputeStatus2["WAITING_BUYER"] = "WAITING_BUYER";
143
+ DisputeStatus2["WON"] = "WON";
144
+ DisputeStatus2["LOST"] = "LOST";
145
+ return DisputeStatus2;
146
+ })(DisputeStatus || {});
147
+ var DisputeChannel = /* @__PURE__ */ ((DisputeChannel2) => {
148
+ DisputeChannel2["UNKNOWN_DISPUTE_CHANNEL"] = "UNKNOWN_DISPUTE_CHANNEL";
149
+ DisputeChannel2["INTERNAL"] = "INTERNAL";
150
+ DisputeChannel2["EXTERNAL"] = "EXTERNAL";
151
+ return DisputeChannel2;
152
+ })(DisputeChannel || {});
153
+ var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
154
+ SortOrder2["ASC"] = "ASC";
155
+ SortOrder2["DESC"] = "DESC";
156
+ return SortOrder2;
157
+ })(SortOrder || {});
158
+ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
159
+ WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
160
+ WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
161
+ WebhookIdentityType2["MEMBER"] = "MEMBER";
162
+ WebhookIdentityType2["WIX_USER"] = "WIX_USER";
163
+ WebhookIdentityType2["APP"] = "APP";
164
+ return WebhookIdentityType2;
165
+ })(WebhookIdentityType || {});
166
+ async function getDisputeHistoryRecord2(disputeHistoryRecordId) {
167
+ const { httpClient, sideEffects } = arguments[1];
168
+ const payload = renameKeysFromSDKRequestToRESTRequest({
169
+ disputeHistoryRecordId
170
+ });
171
+ const reqOpts = getDisputeHistoryRecord(
172
+ payload
173
+ );
174
+ sideEffects?.onSiteCall?.();
175
+ try {
176
+ const result = await httpClient.request(reqOpts);
177
+ sideEffects?.onSuccess?.(result);
178
+ return renameKeysFromRESTResponseToSDKResponse(result.data)?.disputeHistoryRecord;
179
+ } catch (err) {
180
+ const transformedError = sdkTransformError(
181
+ err,
182
+ {
183
+ spreadPathsToArguments: {},
184
+ explicitPathsToArguments: { disputeHistoryRecordId: "$[0]" },
185
+ singleArgumentUnchanged: false
186
+ },
187
+ ["disputeHistoryRecordId"]
188
+ );
189
+ sideEffects?.onError?.(err);
190
+ throw transformedError;
191
+ }
192
+ }
193
+ function queryDisputeHistoryRecords2() {
194
+ const { httpClient, sideEffects } = arguments[0];
195
+ return queryBuilder({
196
+ func: async (payload) => {
197
+ const reqOpts = queryDisputeHistoryRecords(
198
+ payload
199
+ );
200
+ sideEffects?.onSiteCall?.();
201
+ try {
202
+ const result = await httpClient.request(reqOpts);
203
+ sideEffects?.onSuccess?.(result);
204
+ return result;
205
+ } catch (err) {
206
+ sideEffects?.onError?.(err);
207
+ throw err;
208
+ }
209
+ },
210
+ requestTransformer: (query) => {
211
+ const args = [query, {}];
212
+ return renameKeysFromSDKRequestToRESTRequest({
213
+ ...args?.[1],
214
+ query: args?.[0]
215
+ });
216
+ },
217
+ responseTransformer: ({
218
+ data
219
+ }) => {
220
+ const transformedData = renameKeysFromRESTResponseToSDKResponse(
221
+ transformPaths2(data, [])
222
+ );
223
+ return {
224
+ items: transformedData?.disputeHistoryRecords,
225
+ pagingMetadata: transformedData?.pagingMetadata
226
+ };
227
+ },
228
+ errorTransformer: (err) => {
229
+ const transformedError = sdkTransformError(err, {
230
+ spreadPathsToArguments: {},
231
+ explicitPathsToArguments: { query: "$[0]" },
232
+ singleArgumentUnchanged: false
233
+ });
234
+ throw transformedError;
235
+ },
236
+ pagingMethod: "CURSOR",
237
+ transformationPaths: {}
238
+ });
239
+ }
240
+ async function bulkUpdateDisputeHistoryRecordTags2(ids, options) {
241
+ const { httpClient, sideEffects } = arguments[2];
242
+ const payload = renameKeysFromSDKRequestToRESTRequest({
243
+ ids,
244
+ assignTags: options?.assignTags,
245
+ unassignTags: options?.unassignTags
246
+ });
247
+ const reqOpts = bulkUpdateDisputeHistoryRecordTags(
248
+ payload
249
+ );
250
+ sideEffects?.onSiteCall?.();
251
+ try {
252
+ const result = await httpClient.request(reqOpts);
253
+ sideEffects?.onSuccess?.(result);
254
+ return renameKeysFromRESTResponseToSDKResponse(result.data);
255
+ } catch (err) {
256
+ const transformedError = sdkTransformError(
257
+ err,
258
+ {
259
+ spreadPathsToArguments: {},
260
+ explicitPathsToArguments: {
261
+ ids: "$[0]",
262
+ assignTags: "$[1].assignTags",
263
+ unassignTags: "$[1].unassignTags"
264
+ },
265
+ singleArgumentUnchanged: false
266
+ },
267
+ ["ids", "options"]
268
+ );
269
+ sideEffects?.onError?.(err);
270
+ throw transformedError;
271
+ }
272
+ }
273
+ async function bulkUpdateDisputeHistoryRecordTagsByFilter2(filter, options) {
274
+ const { httpClient, sideEffects } = arguments[2];
275
+ const payload = renameKeysFromSDKRequestToRESTRequest({
276
+ filter,
277
+ assignTags: options?.assignTags,
278
+ unassignTags: options?.unassignTags
279
+ });
280
+ const reqOpts = bulkUpdateDisputeHistoryRecordTagsByFilter(
281
+ payload
282
+ );
283
+ sideEffects?.onSiteCall?.();
284
+ try {
285
+ const result = await httpClient.request(reqOpts);
286
+ sideEffects?.onSuccess?.(result);
287
+ return renameKeysFromRESTResponseToSDKResponse(result.data);
288
+ } catch (err) {
289
+ const transformedError = sdkTransformError(
290
+ err,
291
+ {
292
+ spreadPathsToArguments: {},
293
+ explicitPathsToArguments: {
294
+ filter: "$[0]",
295
+ assignTags: "$[1].assignTags",
296
+ unassignTags: "$[1].unassignTags"
297
+ },
298
+ singleArgumentUnchanged: false
299
+ },
300
+ ["filter", "options"]
301
+ );
302
+ sideEffects?.onError?.(err);
303
+ throw transformedError;
304
+ }
305
+ }
306
+ export {
307
+ DisputeChannel,
308
+ DisputeStage,
309
+ DisputeStatus,
310
+ SortOrder,
311
+ WebhookIdentityType,
312
+ bulkUpdateDisputeHistoryRecordTags2 as bulkUpdateDisputeHistoryRecordTags,
313
+ bulkUpdateDisputeHistoryRecordTagsByFilter2 as bulkUpdateDisputeHistoryRecordTagsByFilter,
314
+ getDisputeHistoryRecord2 as getDisputeHistoryRecord,
315
+ queryDisputeHistoryRecords2 as queryDisputeHistoryRecords
316
+ };
317
+ //# sourceMappingURL=index.typings.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.ts","../../src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.http.ts"],"sourcesContent":["import { transformError as sdkTransformError } from '@wix/sdk-runtime/transform-error';\nimport { queryBuilder } from '@wix/sdk-runtime/query-builder';\nimport {\n renameKeysFromSDKRequestToRESTRequest,\n renameKeysFromRESTResponseToSDKResponse,\n} from '@wix/sdk-runtime/rename-all-nested-keys';\nimport { HttpClient, HttpResponse, NonNullablePaths } from '@wix/sdk-types';\nimport * as ambassadorWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecord from './payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.http.js';\n// @ts-ignore\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\n\n/** A DisputeHistoryRecord */\nexport interface DisputeHistoryRecord {\n /**\n * DisputeHistoryRecord ID.\n * @format GUID\n * @readonly\n * @immutable\n */\n _id?: string | null;\n /**\n * Revision number\n * @readonly\n */\n revision?: string | null;\n /**\n * Date and time the DisputeHistoryRecord was created.\n * @readonly\n * @immutable\n */\n _createdDate?: Date | null;\n /**\n * Date and time the DisputeHistoryRecord was last updated.\n * @readonly\n * @immutable\n */\n _updatedDate?: Date | null;\n /**\n * Dispute ID\n * @format GUID\n * @immutable\n */\n disputeId?: string;\n /**\n * Dispute stage (RFI, Chargeback, so on)\n * @readonly\n * @immutable\n */\n stage?: DisputeStageWithLiterals;\n /**\n * Dispute Status\n * @readonly\n * @immutable\n */\n status?: DisputeStatusWithLiterals;\n /**\n * Due Date\n * @readonly\n * @immutable\n */\n dueDate?: Date | null;\n /**\n * Charge ID\n * @format GUID\n * @readonly\n * @immutable\n */\n chargeId?: string;\n /**\n * Dispute Channel\n * Internal - this dispute is created on provider side\n * External - this dispute is created on bank side\n * @readonly\n * @immutable\n */\n channel?: DisputeChannelWithLiterals;\n /** Data Extensions */\n extendedFields?: ExtendedFields;\n /** Tags */\n tags?: Tags;\n}\n\nexport enum DisputeStage {\n UNKNOWN_DISPUTE_STAGE = 'UNKNOWN_DISPUTE_STAGE',\n /** Notification of Fraud, Pre-chargeback, Early Fraud Warning */\n NOTIFICATION_OF_FRAUD = 'NOTIFICATION_OF_FRAUD',\n /** Request for Information / Inquiry */\n RFI = 'RFI',\n /** Chargeback */\n CHARGEBACK = 'CHARGEBACK',\n}\n\n/** @enumType */\nexport type DisputeStageWithLiterals =\n | DisputeStage\n | 'UNKNOWN_DISPUTE_STAGE'\n | 'NOTIFICATION_OF_FRAUD'\n | 'RFI'\n | 'CHARGEBACK';\n\nexport enum DisputeStatus {\n /** Unknown status */\n UNKNOWN_DISPUTE_STATUS = 'UNKNOWN_DISPUTE_STATUS',\n /** Waiting for some merchant action */\n WAITING_MERCHANT = 'WAITING_MERCHANT',\n /** Dispute is under review by PSP (internal channel) or Bank (external channel) */\n UNDER_REVIEW = 'UNDER_REVIEW',\n /** Waiting for some buyer action */\n WAITING_BUYER = 'WAITING_BUYER',\n /** Dispute won */\n WON = 'WON',\n /** Dispute lost */\n LOST = 'LOST',\n}\n\n/** @enumType */\nexport type DisputeStatusWithLiterals =\n | DisputeStatus\n | 'UNKNOWN_DISPUTE_STATUS'\n | 'WAITING_MERCHANT'\n | 'UNDER_REVIEW'\n | 'WAITING_BUYER'\n | 'WON'\n | 'LOST';\n\nexport enum DisputeChannel {\n UNKNOWN_DISPUTE_CHANNEL = 'UNKNOWN_DISPUTE_CHANNEL',\n /** Internal, the dispute is reviewed by PSP */\n INTERNAL = 'INTERNAL',\n /** External, the dispute is reviewed by bank (or other financial institution) */\n EXTERNAL = 'EXTERNAL',\n}\n\n/** @enumType */\nexport type DisputeChannelWithLiterals =\n | DisputeChannel\n | 'UNKNOWN_DISPUTE_CHANNEL'\n | 'INTERNAL'\n | 'EXTERNAL';\n\nexport interface ExtendedFields {\n /**\n * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\n * The value of each key is structured according to the schema defined when the extended fields were configured.\n *\n * You can only access fields for which you have the appropriate permissions.\n *\n * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).\n */\n namespaces?: Record<string, Record<string, any>>;\n}\n\n/**\n * Common object for tags.\n * Should be use as in this example:\n * message Foo {\n * string id = 1;\n * ...\n * Tags tags = 5\n * }\n *\n * example of taggable entity\n * {\n * id: \"123\"\n * tags: {\n * tags: {\n * tag_ids:[\"11\",\"22\"]\n * },\n * private_tags: {\n * tag_ids: [\"33\", \"44\"]\n * }\n * }\n * }\n */\nexport interface Tags {\n /** Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. */\n tags?: TagList;\n}\n\nexport interface TagList {\n /**\n * List of tag IDs\n * @maxSize 100\n * @maxLength 5\n */\n tagIds?: string[];\n}\n\nexport interface GetDisputeHistoryRecordRequest {\n /**\n * ID of the DisputeHistoryRecord to retrieve.\n * @format GUID\n */\n disputeHistoryRecordId: string;\n}\n\nexport interface GetDisputeHistoryRecordResponse {\n /** The requested DisputeHistoryRecord. */\n disputeHistoryRecord?: DisputeHistoryRecord;\n}\n\nexport interface QueryDisputeHistoryRecordsRequest {\n /** WQL expression. */\n query?: CursorQuery;\n}\n\nexport interface CursorQuery extends CursorQueryPagingMethodOneOf {\n /** 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`. */\n cursorPaging?: CursorPaging;\n /**\n * Filter object in the following format:\n * `\"filter\" : {\n * \"fieldName1\": \"value1\",\n * \"fieldName2\":{\"$operator\":\"value2\"}\n * }`\n * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`\n */\n filter?: Record<string, any> | null;\n /**\n * Sort object in the following format:\n * `[{\"fieldName\":\"sortField1\",\"order\":\"ASC\"},{\"fieldName\":\"sortField2\",\"order\":\"DESC\"}]`\n * @maxSize 5\n */\n sort?: Sorting[];\n}\n\n/** @oneof */\nexport interface CursorQueryPagingMethodOneOf {\n /** 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`. */\n cursorPaging?: CursorPaging;\n}\n\nexport interface Sorting {\n /**\n * Name of the field to sort by.\n * @maxLength 512\n */\n fieldName?: string;\n /** Sort order. */\n order?: SortOrderWithLiterals;\n}\n\nexport enum SortOrder {\n ASC = 'ASC',\n DESC = 'DESC',\n}\n\n/** @enumType */\nexport type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';\n\nexport interface CursorPaging {\n /**\n * Maximum number of items to return in the results.\n * @max 100\n */\n limit?: number | null;\n /**\n * Pointer to the next or previous page in the list of results.\n *\n * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\n * Not relevant for the first request.\n * @maxLength 16000\n */\n cursor?: string | null;\n}\n\nexport interface QueryDisputeHistoryRecordsResponse {\n /** List of DisputeHistoryRecords. */\n disputeHistoryRecords?: DisputeHistoryRecord[];\n /** Paging metadata */\n pagingMetadata?: CursorPagingMetadata;\n}\n\nexport interface CursorPagingMetadata {\n /** Number of items returned in the response. */\n count?: number | null;\n /** Cursor strings that point to the next page, previous page, or both. */\n cursors?: Cursors;\n /**\n * Whether there are more pages to retrieve following the current page.\n *\n * + `true`: Another page of results can be retrieved.\n * + `false`: This is the last page.\n */\n hasNext?: boolean | null;\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 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 entity?: string;\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 currentEntity?: string;\n}\n\nexport interface EntityDeletedEvent {\n /** Entity that was deleted. */\n deletedEntity?: string | null;\n}\n\nexport interface ActionEvent {\n body?: string;\n}\n\nexport interface Empty {}\n\nexport interface BulkUpdateDisputeHistoryRecordTagsRequest {\n /**\n * List of NileProtoTagsEntities that their tags will update.\n * @minSize 1\n * @maxSize 100\n * @format GUID\n */\n ids: string[];\n /** List of Tags to assign */\n assignTags?: Tags;\n /** List of Tags to unAssign */\n unassignTags?: Tags;\n}\n\nexport interface BulkUpdateDisputeHistoryRecordTagsResponse {\n /**\n * Results\n * @minSize 1\n * @maxSize 100\n */\n results?: BulkUpdateDisputeHistoryRecordTagsResult[];\n /** Metadata regarding the bulk update operation */\n bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface ItemMetadata {\n /**\n * Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).\n * @format GUID\n */\n _id?: string | null;\n /** Index of the item within the request array. Allows for correlation between request and response items. */\n originalIndex?: number;\n /** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */\n success?: boolean;\n /** Details about the error in case of failure. */\n error?: ApplicationError;\n}\n\nexport interface ApplicationError {\n /** Error code. */\n code?: string;\n /** Description of the error. */\n description?: string;\n /** Data related to the error. */\n data?: Record<string, any> | null;\n}\n\nexport interface BulkUpdateDisputeHistoryRecordTagsResult {\n /** Metadata regarding the specific single update operation */\n itemMetadata?: ItemMetadata;\n}\n\nexport interface BulkActionMetadata {\n /** Number of items that were successfully processed. */\n totalSuccesses?: number;\n /** Number of items that couldn't be processed. */\n totalFailures?: number;\n /** Number of failures without details because detailed failure threshold was exceeded. */\n undetailedFailures?: number;\n}\n\nexport interface BulkUpdateDisputeHistoryRecordTagsByFilterRequest {\n /** Filter */\n filter: Record<string, any> | null;\n /** List of Tags to assign */\n assignTags?: Tags;\n /** List of Tags to unAssign */\n unassignTags?: Tags;\n}\n\nexport interface BulkUpdateDisputeHistoryRecordTagsByFilterResponse {\n /**\n * Job ID\n * @format GUID\n */\n jobId?: 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}\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';\nexport type BulkUpdateDisputeHistoryRecordTagsApplicationErrors = {\n code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';\n description?: string;\n data?: Record<string, any>;\n};\nexport type BulkUpdateDisputeHistoryRecordTagsByFilterApplicationErrors = {\n code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';\n description?: string;\n data?: Record<string, any>;\n};\n\ntype DisputeHistoryRecordNonNullablePaths =\n | `disputeId`\n | `stage`\n | `status`\n | `chargeId`\n | `channel`\n | `tags.tags.tagIds`;\n\n/**\n * Retrieves a DisputeHistoryRecord.\n * @param disputeHistoryRecordId - ID of the DisputeHistoryRecord to retrieve.\n * @internal\n * @documentationMaturity preview\n * @requiredField disputeHistoryRecordId\n * @permissionId PAYMENTS.DISPUTE_HISTORY_RECORD_READ\n * @returns The requested DisputeHistoryRecord.\n * @fqn wix.payments.dispute_history_records.v1.DisputeHistoryRecordService.GetDisputeHistoryRecord\n */\nexport async function getDisputeHistoryRecord(\n disputeHistoryRecordId: string\n): Promise<\n NonNullablePaths<DisputeHistoryRecord, DisputeHistoryRecordNonNullablePaths>\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n disputeHistoryRecordId: disputeHistoryRecordId,\n });\n\n const reqOpts =\n ambassadorWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecord.getDisputeHistoryRecord(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)\n ?.disputeHistoryRecord!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { disputeHistoryRecordId: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['disputeHistoryRecordId']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\n/**\n * Retrieves a list of DisputeHistoryRecords, given the provided [paging, filtering, and sorting][1].\n * @internal\n * @documentationMaturity preview\n * @permissionId PAYMENTS.DISPUTE_HISTORY_RECORD_READ\n * @fqn wix.payments.dispute_history_records.v1.DisputeHistoryRecordService.QueryDisputeHistoryRecords\n */\nexport function queryDisputeHistoryRecords(): DisputeHistoryRecordsQueryBuilder {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[0] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n return queryBuilder<\n DisputeHistoryRecord,\n 'CURSOR',\n QueryDisputeHistoryRecordsRequest,\n QueryDisputeHistoryRecordsResponse\n >({\n func: async (payload: QueryDisputeHistoryRecordsRequest) => {\n const reqOpts =\n ambassadorWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecord.queryDisputeHistoryRecords(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n return result;\n } catch (err) {\n sideEffects?.onError?.(err);\n throw err;\n }\n },\n requestTransformer: (query: QueryDisputeHistoryRecordsRequest['query']) => {\n const args = [query, {}] as [\n QueryDisputeHistoryRecordsRequest['query'],\n {}\n ];\n return renameKeysFromSDKRequestToRESTRequest({\n ...args?.[1],\n query: args?.[0],\n });\n },\n responseTransformer: ({\n data,\n }: HttpResponse<QueryDisputeHistoryRecordsResponse>) => {\n const transformedData = renameKeysFromRESTResponseToSDKResponse(\n transformPaths(data, [])\n );\n\n return {\n items: transformedData?.disputeHistoryRecords,\n pagingMetadata: transformedData?.pagingMetadata,\n };\n },\n errorTransformer: (err: unknown) => {\n const transformedError = sdkTransformError(err, {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { query: '$[0]' },\n singleArgumentUnchanged: false,\n });\n\n throw transformedError;\n },\n pagingMethod: 'CURSOR',\n transformationPaths: {},\n });\n}\n\ninterface QueryCursorResult {\n cursors: Cursors;\n hasNext: () => boolean;\n hasPrev: () => boolean;\n length: number;\n pageSize: number;\n}\n\nexport interface DisputeHistoryRecordsQueryResult extends QueryCursorResult {\n items: DisputeHistoryRecord[];\n query: DisputeHistoryRecordsQueryBuilder;\n next: () => Promise<DisputeHistoryRecordsQueryResult>;\n prev: () => Promise<DisputeHistoryRecordsQueryResult>;\n}\n\nexport interface DisputeHistoryRecordsQueryBuilder {\n /** @param propertyName - Property whose value is compared with `value`.\n * @param value - Value to compare against.\n * @documentationMaturity preview\n */\n eq: (\n propertyName: 'disputeId',\n value: any\n ) => DisputeHistoryRecordsQueryBuilder;\n /** @param propertyName - Property whose value is compared with `value`.\n * @param value - Value to compare against.\n * @documentationMaturity preview\n */\n ne: (\n propertyName: 'disputeId',\n value: any\n ) => DisputeHistoryRecordsQueryBuilder;\n /** @param propertyName - Property whose value is compared with `value`.\n * @param value - Value to compare against.\n * @documentationMaturity preview\n */\n ge: (\n propertyName: 'disputeId',\n value: any\n ) => DisputeHistoryRecordsQueryBuilder;\n /** @param propertyName - Property whose value is compared with `value`.\n * @param value - Value to compare against.\n * @documentationMaturity preview\n */\n gt: (\n propertyName: 'disputeId',\n value: any\n ) => DisputeHistoryRecordsQueryBuilder;\n /** @param propertyName - Property whose value is compared with `value`.\n * @param value - Value to compare against.\n * @documentationMaturity preview\n */\n le: (\n propertyName: 'disputeId',\n value: any\n ) => DisputeHistoryRecordsQueryBuilder;\n /** @param propertyName - Property whose value is compared with `value`.\n * @param value - Value to compare against.\n * @documentationMaturity preview\n */\n lt: (\n propertyName: 'disputeId',\n value: any\n ) => DisputeHistoryRecordsQueryBuilder;\n /** @param propertyName - Property whose value is compared with `string`.\n * @param string - String to compare against. Case-insensitive.\n * @documentationMaturity preview\n */\n startsWith: (\n propertyName: 'disputeId',\n value: string\n ) => DisputeHistoryRecordsQueryBuilder;\n /** @param propertyName - Property whose value is compared with `values`.\n * @param values - List of values to compare against.\n * @documentationMaturity preview\n */\n hasSome: (\n propertyName: 'disputeId',\n value: any[]\n ) => DisputeHistoryRecordsQueryBuilder;\n /** @documentationMaturity preview */\n in: (\n propertyName: 'disputeId',\n value: any\n ) => DisputeHistoryRecordsQueryBuilder;\n /** @documentationMaturity preview */\n exists: (\n propertyName: 'disputeId',\n value: boolean\n ) => DisputeHistoryRecordsQueryBuilder;\n /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.\n * @documentationMaturity preview\n */\n ascending: (\n ...propertyNames: Array<'disputeId'>\n ) => DisputeHistoryRecordsQueryBuilder;\n /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.\n * @documentationMaturity preview\n */\n descending: (\n ...propertyNames: Array<'disputeId'>\n ) => DisputeHistoryRecordsQueryBuilder;\n /** @param limit - Number of items to return, which is also the `pageSize` of the results object.\n * @documentationMaturity preview\n */\n limit: (limit: number) => DisputeHistoryRecordsQueryBuilder;\n /** @param cursor - A pointer to specific record\n * @documentationMaturity preview\n */\n skipTo: (cursor: string) => DisputeHistoryRecordsQueryBuilder;\n /** @documentationMaturity preview */\n find: () => Promise<DisputeHistoryRecordsQueryResult>;\n}\n\n/**\n * Synchronously update tags on multiple products, by list of product ids\n * A tag that appears both in the list of assign and unassign tags, will be assigned\n * @param ids - List of NileProtoTagsEntities that their tags will update.\n * @internal\n * @documentationMaturity preview\n * @requiredField ids\n * @permissionId PAYMENTS.DISPUTE_HISTORY_RECORD_UPDATE_TAGS\n * @fqn wix.payments.dispute_history_records.v1.DisputeHistoryRecordService.BulkUpdateDisputeHistoryRecordTags\n */\nexport async function bulkUpdateDisputeHistoryRecordTags(\n ids: string[],\n options?: BulkUpdateDisputeHistoryRecordTagsOptions\n): Promise<\n NonNullablePaths<\n BulkUpdateDisputeHistoryRecordTagsResponse,\n | `results`\n | `results.${number}.itemMetadata.originalIndex`\n | `results.${number}.itemMetadata.success`\n | `results.${number}.itemMetadata.error.code`\n | `results.${number}.itemMetadata.error.description`\n | `bulkActionMetadata.totalSuccesses`\n | `bulkActionMetadata.totalFailures`\n | `bulkActionMetadata.undetailedFailures`\n > & {\n __applicationErrorsType?: BulkUpdateDisputeHistoryRecordTagsApplicationErrors;\n }\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n ids: ids,\n assignTags: options?.assignTags,\n unassignTags: options?.unassignTags,\n });\n\n const reqOpts =\n ambassadorWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecord.bulkUpdateDisputeHistoryRecordTags(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n ids: '$[0]',\n assignTags: '$[1].assignTags',\n unassignTags: '$[1].unassignTags',\n },\n singleArgumentUnchanged: false,\n },\n ['ids', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface BulkUpdateDisputeHistoryRecordTagsOptions {\n /** List of Tags to assign */\n assignTags?: Tags;\n /** List of Tags to unAssign */\n unassignTags?: Tags;\n}\n\n/**\n * Asynchronously update tags on multiple products, by provided filter\n * An empty filter will update all products\n * A tag that appears both in the list of assign and unassign tags, will be assigned\n * @param filter - Filter\n * @internal\n * @documentationMaturity preview\n * @requiredField filter\n * @permissionId PAYMENTS.DISPUTE_HISTORY_RECORD_UPDATE_TAGS\n * @fqn wix.payments.dispute_history_records.v1.DisputeHistoryRecordService.BulkUpdateDisputeHistoryRecordTagsByFilter\n */\nexport async function bulkUpdateDisputeHistoryRecordTagsByFilter(\n filter: Record<string, any>,\n options?: BulkUpdateDisputeHistoryRecordTagsByFilterOptions\n): Promise<\n NonNullablePaths<\n BulkUpdateDisputeHistoryRecordTagsByFilterResponse,\n `jobId`\n > & {\n __applicationErrorsType?: BulkUpdateDisputeHistoryRecordTagsByFilterApplicationErrors;\n }\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n filter: filter,\n assignTags: options?.assignTags,\n unassignTags: options?.unassignTags,\n });\n\n const reqOpts =\n ambassadorWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecord.bulkUpdateDisputeHistoryRecordTagsByFilter(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n filter: '$[0]',\n assignTags: '$[1].assignTags',\n unassignTags: '$[1].unassignTags',\n },\n singleArgumentUnchanged: false,\n },\n ['filter', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface BulkUpdateDisputeHistoryRecordTagsByFilterOptions {\n /** List of Tags to assign */\n assignTags?: Tags;\n /** List of Tags to unAssign */\n unassignTags?: Tags;\n}\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecordServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {};\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_payments_dispute-history-records';\n\n/** Retrieves a DisputeHistoryRecord. */\nexport function getDisputeHistoryRecord(\n payload: object\n): RequestOptionsFactory<any> {\n function __getDisputeHistoryRecord({ host }: any) {\n const metadata = {\n entityFqdn:\n 'wix.payments.dispute_history_records.v1.dispute_history_record',\n method: 'GET' as any,\n methodFqn:\n 'wix.payments.dispute_history_records.v1.DisputeHistoryRecordService.GetDisputeHistoryRecord',\n packageName: PACKAGE_NAME,\n url: resolveWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecordServiceUrl(\n {\n protoPath: '/v1/dispute-history-records/{disputeHistoryRecordId}',\n data: payload,\n host,\n }\n ),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'disputeHistoryRecord.createdDate' },\n { path: 'disputeHistoryRecord.updatedDate' },\n { path: 'disputeHistoryRecord.dueDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __getDisputeHistoryRecord;\n}\n\n/** Retrieves a list of DisputeHistoryRecords, given the provided [paging, filtering, and sorting][1]. */\nexport function queryDisputeHistoryRecords(\n payload: object\n): RequestOptionsFactory<any> {\n function __queryDisputeHistoryRecords({ host }: any) {\n const metadata = {\n entityFqdn:\n 'wix.payments.dispute_history_records.v1.dispute_history_record',\n method: 'POST' as any,\n methodFqn:\n 'wix.payments.dispute_history_records.v1.DisputeHistoryRecordService.QueryDisputeHistoryRecords',\n packageName: PACKAGE_NAME,\n url: resolveWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecordServiceUrl(\n { protoPath: '/v1/dispute-history-records/query', data: payload, host }\n ),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'disputeHistoryRecords.createdDate' },\n { path: 'disputeHistoryRecords.updatedDate' },\n { path: 'disputeHistoryRecords.dueDate' },\n ],\n },\n ]),\n fallback: [\n {\n method: 'POST' as any,\n url: resolveWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecordServiceUrl(\n {\n protoPath: '/v1/dispute-history-records/query',\n data: payload,\n host,\n }\n ),\n data: payload,\n },\n ],\n };\n\n return metadata;\n }\n\n return __queryDisputeHistoryRecords;\n}\n\n/**\n * Synchronously update tags on multiple products, by list of product ids\n * A tag that appears both in the list of assign and unassign tags, will be assigned\n */\nexport function bulkUpdateDisputeHistoryRecordTags(\n payload: object\n): RequestOptionsFactory<any> {\n function __bulkUpdateDisputeHistoryRecordTags({ host }: any) {\n const metadata = {\n entityFqdn:\n 'wix.payments.dispute_history_records.v1.dispute_history_record',\n method: 'POST' as any,\n methodFqn:\n 'wix.payments.dispute_history_records.v1.DisputeHistoryRecordService.BulkUpdateDisputeHistoryRecordTags',\n packageName: PACKAGE_NAME,\n url: resolveWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecordServiceUrl(\n {\n protoPath: '/v1/bulk/dispute-history-records/update-tags',\n data: payload,\n host,\n }\n ),\n data: payload,\n };\n\n return metadata;\n }\n\n return __bulkUpdateDisputeHistoryRecordTags;\n}\n\n/**\n * Asynchronously update tags on multiple products, by provided filter\n * An empty filter will update all products\n * A tag that appears both in the list of assign and unassign tags, will be assigned\n */\nexport function bulkUpdateDisputeHistoryRecordTagsByFilter(\n payload: object\n): RequestOptionsFactory<any> {\n function __bulkUpdateDisputeHistoryRecordTagsByFilter({ host }: any) {\n const metadata = {\n entityFqdn:\n 'wix.payments.dispute_history_records.v1.dispute_history_record',\n method: 'POST' as any,\n methodFqn:\n 'wix.payments.dispute_history_records.v1.DisputeHistoryRecordService.BulkUpdateDisputeHistoryRecordTagsByFilter',\n packageName: PACKAGE_NAME,\n url: resolveWixPaymentsDisputeHistoryRecordsV1DisputeHistoryRecordServiceUrl(\n {\n protoPath: '/v1/bulk/dispute-history-records/update-tags-by-filter',\n data: payload,\n host,\n }\n ),\n data: payload,\n };\n\n return metadata;\n }\n\n return __bulkUpdateDisputeHistoryRecordTagsByFilter;\n}\n"],"mappings":"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","names":["payload","transformPaths","DisputeStage","DisputeStatus","DisputeChannel","SortOrder","WebhookIdentityType","getDisputeHistoryRecord","queryDisputeHistoryRecords","bulkUpdateDisputeHistoryRecordTags","bulkUpdateDisputeHistoryRecordTagsByFilter"]}
@@ -1,7 +1,8 @@
1
- import { HttpClient, MaybeContext, BuildRESTFunction } from '@wix/sdk-types';
2
- import { D as DisputeHistoryRecord, a as DisputeHistoryRecordsQueryBuilder, B as BulkUpdateDisputeHistoryRecordTagsOptions, b as BulkUpdateDisputeHistoryRecordTagsResponse, c as BulkUpdateDisputeHistoryRecordTagsByFilterOptions, d as BulkUpdateDisputeHistoryRecordTagsByFilterResponse } from './payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal-BpPZdD2w.js';
3
- export { A as ActionEvent, w as ApplicationError, y as BulkActionMetadata, z as BulkUpdateDisputeHistoryRecordTagsByFilterRequest, v as BulkUpdateDisputeHistoryRecordTagsRequest, x as BulkUpdateDisputeHistoryRecordTagsResult, l as CursorPaging, n as CursorPagingMetadata, C as CursorQuery, j as CursorQueryPagingMethodOneOf, o as Cursors, g as DisputeChannel, J as DisputeHistoryRecordsQueryResult, e as DisputeStage, f as DisputeStatus, p as DomainEvent, q as DomainEventBodyOneOf, u as Empty, r as EntityCreatedEvent, t as EntityDeletedEvent, s as EntityUpdatedEvent, E as ExtendedFields, G as GetDisputeHistoryRecordRequest, i as GetDisputeHistoryRecordResponse, F as IdentificationData, H as IdentificationDataIdOneOf, I as ItemMetadata, M as MessageEnvelope, Q as QueryDisputeHistoryRecordsRequest, m as QueryDisputeHistoryRecordsResponse, R as RestoreInfo, S as SortOrder, k as Sorting, h as TagList, T as Tags, W as WebhookIdentityType } from './payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal-BpPZdD2w.js';
1
+ import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types';
2
+ import { DisputeHistoryRecord, DisputeHistoryRecordsQueryBuilder, BulkUpdateDisputeHistoryRecordTagsOptions, BulkUpdateDisputeHistoryRecordTagsResponse, BulkUpdateDisputeHistoryRecordTagsApplicationErrors, BulkUpdateDisputeHistoryRecordTagsByFilterOptions, BulkUpdateDisputeHistoryRecordTagsByFilterResponse, BulkUpdateDisputeHistoryRecordTagsByFilterApplicationErrors } from './index.typings.js';
3
+ export { ActionEvent, ApplicationError, BulkActionMetadata, BulkUpdateDisputeHistoryRecordTagsByFilterRequest, BulkUpdateDisputeHistoryRecordTagsRequest, BulkUpdateDisputeHistoryRecordTagsResult, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, DisputeChannel, DisputeHistoryRecordsQueryResult, DisputeStage, DisputeStatus, DomainEvent, DomainEventBodyOneOf, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, ExtendedFields, GetDisputeHistoryRecordRequest, GetDisputeHistoryRecordResponse, IdentificationData, IdentificationDataIdOneOf, ItemMetadata, MessageEnvelope, QueryDisputeHistoryRecordsRequest, QueryDisputeHistoryRecordsResponse, RestoreInfo, SortOrder, Sorting, TagList, Tags, WebhookIdentityType } from './index.typings.js';
4
4
 
5
+ type DisputeHistoryRecordNonNullablePaths = `disputeId` | `stage` | `status` | `chargeId` | `channel` | `tags.tags.tagIds`;
5
6
  /** @internal */
6
7
  declare function getDisputeHistoryRecord$1(httpClient: HttpClient): GetDisputeHistoryRecordSignature;
7
8
  interface GetDisputeHistoryRecordSignature {
@@ -10,7 +11,7 @@ interface GetDisputeHistoryRecordSignature {
10
11
  * @param - ID of the DisputeHistoryRecord to retrieve.
11
12
  * @returns The requested DisputeHistoryRecord.
12
13
  */
13
- (disputeHistoryRecordId: string): Promise<DisputeHistoryRecord>;
14
+ (disputeHistoryRecordId: string): Promise<NonNullablePaths<DisputeHistoryRecord, DisputeHistoryRecordNonNullablePaths>>;
14
15
  }
15
16
  /** @internal */
16
17
  declare function queryDisputeHistoryRecords$1(httpClient: HttpClient): QueryDisputeHistoryRecordsSignature;
@@ -28,7 +29,9 @@ interface BulkUpdateDisputeHistoryRecordTagsSignature {
28
29
  * A tag that appears both in the list of assign and unassign tags, will be assigned
29
30
  * @param - List of NileProtoTagsEntities that their tags will update.
30
31
  */
31
- (ids: string[], options?: BulkUpdateDisputeHistoryRecordTagsOptions | undefined): Promise<BulkUpdateDisputeHistoryRecordTagsResponse>;
32
+ (ids: string[], options?: BulkUpdateDisputeHistoryRecordTagsOptions): Promise<NonNullablePaths<BulkUpdateDisputeHistoryRecordTagsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`> & {
33
+ __applicationErrorsType?: BulkUpdateDisputeHistoryRecordTagsApplicationErrors;
34
+ }>;
32
35
  }
33
36
  /** @internal */
34
37
  declare function bulkUpdateDisputeHistoryRecordTagsByFilter$1(httpClient: HttpClient): BulkUpdateDisputeHistoryRecordTagsByFilterSignature;
@@ -39,7 +42,9 @@ interface BulkUpdateDisputeHistoryRecordTagsByFilterSignature {
39
42
  * A tag that appears both in the list of assign and unassign tags, will be assigned
40
43
  * @param - Filter
41
44
  */
42
- (filter: Record<string, any>, options?: BulkUpdateDisputeHistoryRecordTagsByFilterOptions | undefined): Promise<BulkUpdateDisputeHistoryRecordTagsByFilterResponse>;
45
+ (filter: Record<string, any>, options?: BulkUpdateDisputeHistoryRecordTagsByFilterOptions): Promise<NonNullablePaths<BulkUpdateDisputeHistoryRecordTagsByFilterResponse, `jobId`> & {
46
+ __applicationErrorsType?: BulkUpdateDisputeHistoryRecordTagsByFilterApplicationErrors;
47
+ }>;
43
48
  }
44
49
 
45
50
  /** @internal */