@wix/auto_sdk_blog_likes 1.0.0
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.
- package/build/cjs/index.d.ts +64 -0
- package/build/cjs/index.js +517 -0
- package/build/cjs/index.js.map +1 -0
- package/build/cjs/index.typings.d.ts +629 -0
- package/build/cjs/index.typings.js +413 -0
- package/build/cjs/index.typings.js.map +1 -0
- package/build/cjs/meta.d.ts +440 -0
- package/build/cjs/meta.js +333 -0
- package/build/cjs/meta.js.map +1 -0
- package/build/es/index.d.mts +64 -0
- package/build/es/index.mjs +485 -0
- package/build/es/index.mjs.map +1 -0
- package/build/es/index.typings.d.mts +629 -0
- package/build/es/index.typings.mjs +382 -0
- package/build/es/index.typings.mjs.map +1 -0
- package/build/es/meta.d.mts +440 -0
- package/build/es/meta.mjs +300 -0
- package/build/es/meta.mjs.map +1 -0
- package/build/es/package.json +3 -0
- package/build/internal/cjs/index.d.ts +64 -0
- package/build/internal/cjs/index.js +517 -0
- package/build/internal/cjs/index.js.map +1 -0
- package/build/internal/cjs/index.typings.d.ts +629 -0
- package/build/internal/cjs/index.typings.js +413 -0
- package/build/internal/cjs/index.typings.js.map +1 -0
- package/build/internal/cjs/meta.d.ts +440 -0
- package/build/internal/cjs/meta.js +333 -0
- package/build/internal/cjs/meta.js.map +1 -0
- package/build/internal/es/index.d.mts +64 -0
- package/build/internal/es/index.mjs +485 -0
- package/build/internal/es/index.mjs.map +1 -0
- package/build/internal/es/index.typings.d.mts +629 -0
- package/build/internal/es/index.typings.mjs +382 -0
- package/build/internal/es/index.typings.mjs.map +1 -0
- package/build/internal/es/meta.d.mts +440 -0
- package/build/internal/es/meta.mjs +300 -0
- package/build/internal/es/meta.mjs.map +1 -0
- package/meta/package.json +3 -0
- package/package.json +54 -0
|
@@ -0,0 +1,440 @@
|
|
|
1
|
+
import { CreateLikeRequest as CreateLikeRequest$1, CreateLikeResponse as CreateLikeResponse$1, GetLikeRequest as GetLikeRequest$1, GetLikeResponse as GetLikeResponse$1, QueryLikesRequest as QueryLikesRequest$1, QueryLikesResponse as QueryLikesResponse$1, DeleteLikeRequest as DeleteLikeRequest$1, DeleteLikeResponse as DeleteLikeResponse$1, DeleteLikeByFqdnAndEntityIdRequest as DeleteLikeByFqdnAndEntityIdRequest$1, DeleteLikeByFqdnAndEntityIdResponse as DeleteLikeByFqdnAndEntityIdResponse$1 } from './index.typings.js';
|
|
2
|
+
import '@wix/sdk-types';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* A like represents a user's positive reaction to blog content.
|
|
6
|
+
*
|
|
7
|
+
* Likes are associated with specific blog content using their FQDN (fully qualified domain name) and entity ID,
|
|
8
|
+
* allowing likes to be created for various types of blog content such as posts or comments.
|
|
9
|
+
*/
|
|
10
|
+
interface Like {
|
|
11
|
+
/**
|
|
12
|
+
* Like ID.
|
|
13
|
+
* @immutable
|
|
14
|
+
* @format GUID
|
|
15
|
+
*/
|
|
16
|
+
id?: string | null;
|
|
17
|
+
/**
|
|
18
|
+
* Date and time the like was created.
|
|
19
|
+
* @readonly
|
|
20
|
+
*/
|
|
21
|
+
createdDate?: Date | null;
|
|
22
|
+
/**
|
|
23
|
+
* ID of the specific blog content being liked, such as a blog post or comment.
|
|
24
|
+
* @format GUID
|
|
25
|
+
*/
|
|
26
|
+
entityId?: string | null;
|
|
27
|
+
/**
|
|
28
|
+
* Fully qualified domain name that identifies the type of blog content being liked. For example, `wix.blog.v3.post` for blog posts.
|
|
29
|
+
* @maxLength 256
|
|
30
|
+
*/
|
|
31
|
+
fqdn?: string | null;
|
|
32
|
+
}
|
|
33
|
+
interface CreateLikeRequest {
|
|
34
|
+
/** Like to create. */
|
|
35
|
+
like?: Like;
|
|
36
|
+
}
|
|
37
|
+
interface CreateLikeResponse {
|
|
38
|
+
/** Created like. */
|
|
39
|
+
like?: Like;
|
|
40
|
+
}
|
|
41
|
+
interface GetLikeRequest {
|
|
42
|
+
/**
|
|
43
|
+
* Like ID.
|
|
44
|
+
* @format GUID
|
|
45
|
+
*/
|
|
46
|
+
likeId: string | null;
|
|
47
|
+
}
|
|
48
|
+
interface GetLikeResponse {
|
|
49
|
+
/** Retrieved like. */
|
|
50
|
+
like?: Like;
|
|
51
|
+
}
|
|
52
|
+
interface GetLikeByFqdnAndEntityIdRequest {
|
|
53
|
+
/**
|
|
54
|
+
* Fully qualified domain name that identifies the type of blog content being liked. For example, `wix.blog.v3.post` for blog posts.
|
|
55
|
+
* @maxLength 256
|
|
56
|
+
*/
|
|
57
|
+
fqdn?: string | null;
|
|
58
|
+
/**
|
|
59
|
+
* ID of the liked entity.
|
|
60
|
+
* @format GUID
|
|
61
|
+
*/
|
|
62
|
+
entityId?: string | null;
|
|
63
|
+
}
|
|
64
|
+
interface GetLikeByFqdnAndEntityIdResponse {
|
|
65
|
+
/** Retrieved like. */
|
|
66
|
+
like?: Like;
|
|
67
|
+
}
|
|
68
|
+
interface QueryLikesRequest {
|
|
69
|
+
/** Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language) for more details. */
|
|
70
|
+
query?: CursorQuery;
|
|
71
|
+
}
|
|
72
|
+
interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
73
|
+
/**
|
|
74
|
+
* Cursor paging options.
|
|
75
|
+
*
|
|
76
|
+
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
77
|
+
*/
|
|
78
|
+
cursorPaging?: CursorPaging;
|
|
79
|
+
/**
|
|
80
|
+
* Filter object.
|
|
81
|
+
*
|
|
82
|
+
* Learn more about [filtering](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters).
|
|
83
|
+
*/
|
|
84
|
+
filter?: Record<string, any> | null;
|
|
85
|
+
/**
|
|
86
|
+
* Sort object.
|
|
87
|
+
*
|
|
88
|
+
* Learn more about [sorting](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#sorting).
|
|
89
|
+
* @maxSize 5
|
|
90
|
+
*/
|
|
91
|
+
sort?: Sorting[];
|
|
92
|
+
}
|
|
93
|
+
/** @oneof */
|
|
94
|
+
interface CursorQueryPagingMethodOneOf {
|
|
95
|
+
/**
|
|
96
|
+
* Cursor paging options.
|
|
97
|
+
*
|
|
98
|
+
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
99
|
+
*/
|
|
100
|
+
cursorPaging?: CursorPaging;
|
|
101
|
+
}
|
|
102
|
+
interface Sorting {
|
|
103
|
+
/**
|
|
104
|
+
* Name of the field to sort by.
|
|
105
|
+
* @maxLength 512
|
|
106
|
+
*/
|
|
107
|
+
fieldName?: string;
|
|
108
|
+
/** Sort order. */
|
|
109
|
+
order?: SortOrderWithLiterals;
|
|
110
|
+
}
|
|
111
|
+
declare enum SortOrder {
|
|
112
|
+
ASC = "ASC",
|
|
113
|
+
DESC = "DESC"
|
|
114
|
+
}
|
|
115
|
+
/** @enumType */
|
|
116
|
+
type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
117
|
+
interface CursorPaging {
|
|
118
|
+
/**
|
|
119
|
+
* Maximum number of items to return in the results.
|
|
120
|
+
* @max 100
|
|
121
|
+
*/
|
|
122
|
+
limit?: number | null;
|
|
123
|
+
/**
|
|
124
|
+
* Pointer to the next or previous page in the list of results.
|
|
125
|
+
*
|
|
126
|
+
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
127
|
+
* Not relevant for the first request.
|
|
128
|
+
* @maxLength 16000
|
|
129
|
+
*/
|
|
130
|
+
cursor?: string | null;
|
|
131
|
+
}
|
|
132
|
+
interface QueryLikesResponse {
|
|
133
|
+
/** Retrieved likes. */
|
|
134
|
+
likes?: Like[];
|
|
135
|
+
/** Paging metadata. */
|
|
136
|
+
pagingMetadata?: CursorPagingMetadata;
|
|
137
|
+
}
|
|
138
|
+
interface CursorPagingMetadata {
|
|
139
|
+
/** Number of items returned in current page. */
|
|
140
|
+
count?: number | null;
|
|
141
|
+
/** Cursor strings that point to the next page, previous page, or both. */
|
|
142
|
+
cursors?: Cursors;
|
|
143
|
+
/**
|
|
144
|
+
* Whether there are more pages to retrieve following the current page.
|
|
145
|
+
*
|
|
146
|
+
* + `true`: Another page of results can be retrieved.
|
|
147
|
+
* + `false`: This is the last page.
|
|
148
|
+
*/
|
|
149
|
+
hasNext?: boolean | null;
|
|
150
|
+
}
|
|
151
|
+
interface Cursors {
|
|
152
|
+
/**
|
|
153
|
+
* Cursor string pointing to the next page in the list of results.
|
|
154
|
+
* @maxLength 16000
|
|
155
|
+
*/
|
|
156
|
+
next?: string | null;
|
|
157
|
+
/**
|
|
158
|
+
* Cursor pointing to the previous page in the list of results.
|
|
159
|
+
* @maxLength 16000
|
|
160
|
+
*/
|
|
161
|
+
prev?: string | null;
|
|
162
|
+
}
|
|
163
|
+
interface CountLikesRequest {
|
|
164
|
+
/**
|
|
165
|
+
* Fully qualified domain name of the liked entity. For example, `wix.blog.v3.post`.
|
|
166
|
+
* @maxLength 256
|
|
167
|
+
*/
|
|
168
|
+
fqdn?: string | null;
|
|
169
|
+
/**
|
|
170
|
+
* User identity ID.
|
|
171
|
+
* @format GUID
|
|
172
|
+
*/
|
|
173
|
+
identityId?: string | null;
|
|
174
|
+
}
|
|
175
|
+
interface CountLikesResponse {
|
|
176
|
+
/** Number of likes. */
|
|
177
|
+
count?: number;
|
|
178
|
+
}
|
|
179
|
+
interface DeleteLikeRequest {
|
|
180
|
+
/**
|
|
181
|
+
* ID of the like to delete.
|
|
182
|
+
* @format GUID
|
|
183
|
+
*/
|
|
184
|
+
likeId: string | null;
|
|
185
|
+
}
|
|
186
|
+
interface DeleteLikeResponse {
|
|
187
|
+
}
|
|
188
|
+
interface DeleteLikeByFqdnAndEntityIdRequest {
|
|
189
|
+
/**
|
|
190
|
+
* Fully qualified domain name that identifies the type of blog content being liked. For example, `wix.blog.v3.post` for blog posts.
|
|
191
|
+
* @maxLength 256
|
|
192
|
+
*/
|
|
193
|
+
fqdn: string | null;
|
|
194
|
+
/**
|
|
195
|
+
* ID of the specific blog content being liked.
|
|
196
|
+
* @format GUID
|
|
197
|
+
*/
|
|
198
|
+
entityId: string | null;
|
|
199
|
+
}
|
|
200
|
+
interface DeleteLikeByFqdnAndEntityIdResponse {
|
|
201
|
+
}
|
|
202
|
+
interface BulkCreateLikesMigrationRequest {
|
|
203
|
+
/**
|
|
204
|
+
* Likes to create.
|
|
205
|
+
* @minSize 1
|
|
206
|
+
* @maxSize 50
|
|
207
|
+
*/
|
|
208
|
+
likes?: MigrationLike[];
|
|
209
|
+
}
|
|
210
|
+
/** Like object used for migration purposes with additional user identity fields. */
|
|
211
|
+
interface MigrationLike {
|
|
212
|
+
/** Date and time the like was created. */
|
|
213
|
+
createdDate?: Date | null;
|
|
214
|
+
/**
|
|
215
|
+
* ID of the liked entity.
|
|
216
|
+
* @format GUID
|
|
217
|
+
*/
|
|
218
|
+
entityId?: string | null;
|
|
219
|
+
/**
|
|
220
|
+
* ID of the member who created the like.
|
|
221
|
+
* @format GUID
|
|
222
|
+
*/
|
|
223
|
+
memberId?: string | null;
|
|
224
|
+
/**
|
|
225
|
+
* ID of the anonymous user who created the like.
|
|
226
|
+
* @format GUID
|
|
227
|
+
*/
|
|
228
|
+
anonymousUserId?: string | null;
|
|
229
|
+
}
|
|
230
|
+
interface BulkCreateLikesMigrationResponse {
|
|
231
|
+
/** Bulk action metadata. */
|
|
232
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
233
|
+
/** Metadata for each created like. */
|
|
234
|
+
itemMetadata?: ItemMetadata[];
|
|
235
|
+
}
|
|
236
|
+
interface BulkActionMetadata {
|
|
237
|
+
/** Number of items that were successfully processed. */
|
|
238
|
+
totalSuccesses?: number;
|
|
239
|
+
/** Number of items that couldn't be processed. */
|
|
240
|
+
totalFailures?: number;
|
|
241
|
+
/** Number of failures without details because detailed failure threshold was exceeded. */
|
|
242
|
+
undetailedFailures?: number;
|
|
243
|
+
}
|
|
244
|
+
interface ItemMetadata {
|
|
245
|
+
/** Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). */
|
|
246
|
+
id?: string | null;
|
|
247
|
+
/** Index of the item within the request array. Allows for correlation between request and response items. */
|
|
248
|
+
originalIndex?: number;
|
|
249
|
+
/** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */
|
|
250
|
+
success?: boolean;
|
|
251
|
+
/** Details about the error in case of failure. */
|
|
252
|
+
error?: ApplicationError;
|
|
253
|
+
}
|
|
254
|
+
interface ApplicationError {
|
|
255
|
+
/** Error code. */
|
|
256
|
+
code?: string;
|
|
257
|
+
/** Description of the error. */
|
|
258
|
+
description?: string;
|
|
259
|
+
/** Data related to the error. */
|
|
260
|
+
data?: Record<string, any> | null;
|
|
261
|
+
}
|
|
262
|
+
interface CountLikesMigrationRequest {
|
|
263
|
+
}
|
|
264
|
+
interface CountLikesMigrationResponse {
|
|
265
|
+
/** Total number of likes. */
|
|
266
|
+
count?: number;
|
|
267
|
+
}
|
|
268
|
+
interface QueryLikesMigrationRequest {
|
|
269
|
+
/** Query options. */
|
|
270
|
+
query?: CursorQuery;
|
|
271
|
+
}
|
|
272
|
+
interface QueryLikesMigrationResponse {
|
|
273
|
+
/** Retrieved likes. */
|
|
274
|
+
likes?: Like[];
|
|
275
|
+
/** Paging metadata. */
|
|
276
|
+
pagingMetadata?: CursorPagingMetadata;
|
|
277
|
+
}
|
|
278
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
279
|
+
createdEvent?: EntityCreatedEvent;
|
|
280
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
281
|
+
deletedEvent?: EntityDeletedEvent;
|
|
282
|
+
actionEvent?: ActionEvent;
|
|
283
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
284
|
+
id?: string;
|
|
285
|
+
/**
|
|
286
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
287
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
288
|
+
*/
|
|
289
|
+
entityFqdn?: string;
|
|
290
|
+
/**
|
|
291
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
292
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
293
|
+
*/
|
|
294
|
+
slug?: string;
|
|
295
|
+
/** ID of the entity associated with the event. */
|
|
296
|
+
entityId?: string;
|
|
297
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
298
|
+
eventTime?: Date | null;
|
|
299
|
+
/**
|
|
300
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
301
|
+
* (for example, GDPR).
|
|
302
|
+
*/
|
|
303
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
304
|
+
/** If present, indicates the action that triggered the event. */
|
|
305
|
+
originatedFrom?: string | null;
|
|
306
|
+
/**
|
|
307
|
+
* 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.
|
|
308
|
+
* 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.
|
|
309
|
+
*/
|
|
310
|
+
entityEventSequence?: string | null;
|
|
311
|
+
}
|
|
312
|
+
/** @oneof */
|
|
313
|
+
interface DomainEventBodyOneOf {
|
|
314
|
+
createdEvent?: EntityCreatedEvent;
|
|
315
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
316
|
+
deletedEvent?: EntityDeletedEvent;
|
|
317
|
+
actionEvent?: ActionEvent;
|
|
318
|
+
}
|
|
319
|
+
interface EntityCreatedEvent {
|
|
320
|
+
entityAsJson?: string;
|
|
321
|
+
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
322
|
+
restoreInfo?: RestoreInfo;
|
|
323
|
+
}
|
|
324
|
+
interface RestoreInfo {
|
|
325
|
+
deletedDate?: Date | null;
|
|
326
|
+
}
|
|
327
|
+
interface EntityUpdatedEvent {
|
|
328
|
+
/**
|
|
329
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
330
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
331
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
332
|
+
*/
|
|
333
|
+
currentEntityAsJson?: string;
|
|
334
|
+
}
|
|
335
|
+
interface EntityDeletedEvent {
|
|
336
|
+
/** Entity that was deleted. */
|
|
337
|
+
deletedEntityAsJson?: string | null;
|
|
338
|
+
}
|
|
339
|
+
interface ActionEvent {
|
|
340
|
+
bodyAsJson?: string;
|
|
341
|
+
}
|
|
342
|
+
interface Empty {
|
|
343
|
+
}
|
|
344
|
+
interface MessageEnvelope {
|
|
345
|
+
/**
|
|
346
|
+
* App instance ID.
|
|
347
|
+
* @format GUID
|
|
348
|
+
*/
|
|
349
|
+
instanceId?: string | null;
|
|
350
|
+
/**
|
|
351
|
+
* Event type.
|
|
352
|
+
* @maxLength 150
|
|
353
|
+
*/
|
|
354
|
+
eventType?: string;
|
|
355
|
+
/** The identification type and identity data. */
|
|
356
|
+
identity?: IdentificationData;
|
|
357
|
+
/** Stringify payload. */
|
|
358
|
+
data?: string;
|
|
359
|
+
}
|
|
360
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
361
|
+
/**
|
|
362
|
+
* ID of a site visitor that has not logged in to the site.
|
|
363
|
+
* @format GUID
|
|
364
|
+
*/
|
|
365
|
+
anonymousVisitorId?: string;
|
|
366
|
+
/**
|
|
367
|
+
* ID of a site visitor that has logged in to the site.
|
|
368
|
+
* @format GUID
|
|
369
|
+
*/
|
|
370
|
+
memberId?: string;
|
|
371
|
+
/**
|
|
372
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
373
|
+
* @format GUID
|
|
374
|
+
*/
|
|
375
|
+
wixUserId?: string;
|
|
376
|
+
/**
|
|
377
|
+
* ID of an app.
|
|
378
|
+
* @format GUID
|
|
379
|
+
*/
|
|
380
|
+
appId?: string;
|
|
381
|
+
/** @readonly */
|
|
382
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
383
|
+
}
|
|
384
|
+
/** @oneof */
|
|
385
|
+
interface IdentificationDataIdOneOf {
|
|
386
|
+
/**
|
|
387
|
+
* ID of a site visitor that has not logged in to the site.
|
|
388
|
+
* @format GUID
|
|
389
|
+
*/
|
|
390
|
+
anonymousVisitorId?: string;
|
|
391
|
+
/**
|
|
392
|
+
* ID of a site visitor that has logged in to the site.
|
|
393
|
+
* @format GUID
|
|
394
|
+
*/
|
|
395
|
+
memberId?: string;
|
|
396
|
+
/**
|
|
397
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
398
|
+
* @format GUID
|
|
399
|
+
*/
|
|
400
|
+
wixUserId?: string;
|
|
401
|
+
/**
|
|
402
|
+
* ID of an app.
|
|
403
|
+
* @format GUID
|
|
404
|
+
*/
|
|
405
|
+
appId?: string;
|
|
406
|
+
}
|
|
407
|
+
declare enum WebhookIdentityType {
|
|
408
|
+
UNKNOWN = "UNKNOWN",
|
|
409
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
410
|
+
MEMBER = "MEMBER",
|
|
411
|
+
WIX_USER = "WIX_USER",
|
|
412
|
+
APP = "APP"
|
|
413
|
+
}
|
|
414
|
+
/** @enumType */
|
|
415
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
416
|
+
|
|
417
|
+
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
418
|
+
getUrl: (context: any) => string;
|
|
419
|
+
httpMethod: K;
|
|
420
|
+
path: string;
|
|
421
|
+
pathParams: M;
|
|
422
|
+
__requestType: T;
|
|
423
|
+
__originalRequestType: S;
|
|
424
|
+
__responseType: Q;
|
|
425
|
+
__originalResponseType: R;
|
|
426
|
+
};
|
|
427
|
+
declare function createLike(): __PublicMethodMetaInfo<'POST', {}, CreateLikeRequest$1, CreateLikeRequest, CreateLikeResponse$1, CreateLikeResponse>;
|
|
428
|
+
declare function getLike(): __PublicMethodMetaInfo<'GET', {
|
|
429
|
+
likeId: string;
|
|
430
|
+
}, GetLikeRequest$1, GetLikeRequest, GetLikeResponse$1, GetLikeResponse>;
|
|
431
|
+
declare function queryLikes(): __PublicMethodMetaInfo<'POST', {}, QueryLikesRequest$1, QueryLikesRequest, QueryLikesResponse$1, QueryLikesResponse>;
|
|
432
|
+
declare function deleteLike(): __PublicMethodMetaInfo<'DELETE', {
|
|
433
|
+
likeId: string;
|
|
434
|
+
}, DeleteLikeRequest$1, DeleteLikeRequest, DeleteLikeResponse$1, DeleteLikeResponse>;
|
|
435
|
+
declare function deleteLikeByFqdnAndEntityId(): __PublicMethodMetaInfo<'DELETE', {
|
|
436
|
+
fqdn: string;
|
|
437
|
+
entityId: string;
|
|
438
|
+
}, DeleteLikeByFqdnAndEntityIdRequest$1, DeleteLikeByFqdnAndEntityIdRequest, DeleteLikeByFqdnAndEntityIdResponse$1, DeleteLikeByFqdnAndEntityIdResponse>;
|
|
439
|
+
|
|
440
|
+
export { type ActionEvent as ActionEventOriginal, type ApplicationError as ApplicationErrorOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreateLikesMigrationRequest as BulkCreateLikesMigrationRequestOriginal, type BulkCreateLikesMigrationResponse as BulkCreateLikesMigrationResponseOriginal, type CountLikesMigrationRequest as CountLikesMigrationRequestOriginal, type CountLikesMigrationResponse as CountLikesMigrationResponseOriginal, type CountLikesRequest as CountLikesRequestOriginal, type CountLikesResponse as CountLikesResponseOriginal, type CreateLikeRequest as CreateLikeRequestOriginal, type CreateLikeResponse as CreateLikeResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DeleteLikeByFqdnAndEntityIdRequest as DeleteLikeByFqdnAndEntityIdRequestOriginal, type DeleteLikeByFqdnAndEntityIdResponse as DeleteLikeByFqdnAndEntityIdResponseOriginal, type DeleteLikeRequest as DeleteLikeRequestOriginal, type DeleteLikeResponse as DeleteLikeResponseOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type GetLikeByFqdnAndEntityIdRequest as GetLikeByFqdnAndEntityIdRequestOriginal, type GetLikeByFqdnAndEntityIdResponse as GetLikeByFqdnAndEntityIdResponseOriginal, type GetLikeRequest as GetLikeRequestOriginal, type GetLikeResponse as GetLikeResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ItemMetadata as ItemMetadataOriginal, type Like as LikeOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MigrationLike as MigrationLikeOriginal, type QueryLikesMigrationRequest as QueryLikesMigrationRequestOriginal, type QueryLikesMigrationResponse as QueryLikesMigrationResponseOriginal, type QueryLikesRequest as QueryLikesRequestOriginal, type QueryLikesResponse as QueryLikesResponseOriginal, type RestoreInfo as RestoreInfoOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, createLike, deleteLike, deleteLikeByFqdnAndEntityId, getLike, queryLikes };
|