@wix/auto_sdk_widgets_widget-store 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.
Files changed (39) hide show
  1. package/build/cjs/index.d.ts +11 -0
  2. package/build/cjs/index.js +609 -0
  3. package/build/cjs/index.js.map +1 -0
  4. package/build/cjs/index.typings.d.ts +750 -0
  5. package/build/cjs/index.typings.js +529 -0
  6. package/build/cjs/index.typings.js.map +1 -0
  7. package/build/cjs/meta.d.ts +531 -0
  8. package/build/cjs/meta.js +420 -0
  9. package/build/cjs/meta.js.map +1 -0
  10. package/build/es/index.d.mts +11 -0
  11. package/build/es/index.mjs +575 -0
  12. package/build/es/index.mjs.map +1 -0
  13. package/build/es/index.typings.d.mts +750 -0
  14. package/build/es/index.typings.mjs +494 -0
  15. package/build/es/index.typings.mjs.map +1 -0
  16. package/build/es/meta.d.mts +531 -0
  17. package/build/es/meta.mjs +384 -0
  18. package/build/es/meta.mjs.map +1 -0
  19. package/build/es/package.json +3 -0
  20. package/build/internal/cjs/index.d.ts +85 -0
  21. package/build/internal/cjs/index.js +609 -0
  22. package/build/internal/cjs/index.js.map +1 -0
  23. package/build/internal/cjs/index.typings.d.ts +831 -0
  24. package/build/internal/cjs/index.typings.js +529 -0
  25. package/build/internal/cjs/index.typings.js.map +1 -0
  26. package/build/internal/cjs/meta.d.ts +531 -0
  27. package/build/internal/cjs/meta.js +420 -0
  28. package/build/internal/cjs/meta.js.map +1 -0
  29. package/build/internal/es/index.d.mts +85 -0
  30. package/build/internal/es/index.mjs +575 -0
  31. package/build/internal/es/index.mjs.map +1 -0
  32. package/build/internal/es/index.typings.d.mts +831 -0
  33. package/build/internal/es/index.typings.mjs +494 -0
  34. package/build/internal/es/index.typings.mjs.map +1 -0
  35. package/build/internal/es/meta.d.mts +531 -0
  36. package/build/internal/es/meta.mjs +384 -0
  37. package/build/internal/es/meta.mjs.map +1 -0
  38. package/meta/package.json +3 -0
  39. package/package.json +55 -0
@@ -0,0 +1,531 @@
1
+ import { CreateWidgetRequest as CreateWidgetRequest$1, CreateWidgetResponse as CreateWidgetResponse$1, GetWidgetRequest as GetWidgetRequest$1, GetWidgetResponse as GetWidgetResponse$1, UpdateWidgetRequest as UpdateWidgetRequest$1, UpdateWidgetResponse as UpdateWidgetResponse$1, DeleteWidgetRequest as DeleteWidgetRequest$1, DeleteWidgetResponse as DeleteWidgetResponse$1, QueryWidgetsRequest as QueryWidgetsRequest$1, QueryWidgetsResponse as QueryWidgetsResponse$1, BulkUpdateWidgetTagsRequest as BulkUpdateWidgetTagsRequest$1, BulkUpdateWidgetTagsResponse as BulkUpdateWidgetTagsResponse$1, BulkUpdateWidgetTagsByFilterRequest as BulkUpdateWidgetTagsByFilterRequest$1, BulkUpdateWidgetTagsByFilterResponse as BulkUpdateWidgetTagsByFilterResponse$1 } from './index.typings.js';
2
+ import '@wix/sdk-types';
3
+
4
+ /** Registry entry describing a widget that can be offered within an app instance. */
5
+ interface Widget {
6
+ /**
7
+ * Widget ID.
8
+ * @format GUID
9
+ * @readonly
10
+ */
11
+ id?: string | null;
12
+ /**
13
+ * Revision number, which increments by 1 each time the Widget is updated.
14
+ * @readonly
15
+ */
16
+ revision?: string | null;
17
+ /**
18
+ * Date and time the Widget was created.
19
+ * @readonly
20
+ */
21
+ createdDate?: Date | null;
22
+ /**
23
+ * Date and time the Widget was last updated.
24
+ * @readonly
25
+ */
26
+ updatedDate?: Date | null;
27
+ /**
28
+ * Stable machine-readable key for the widget.
29
+ * @minLength 1
30
+ * @maxLength 120
31
+ */
32
+ key?: string;
33
+ /**
34
+ * Human-readable widget name.
35
+ * @minLength 1
36
+ * @maxLength 120
37
+ */
38
+ displayName?: string;
39
+ /**
40
+ * Short explanation of what the widget does.
41
+ * @maxLength 1000
42
+ */
43
+ description?: string | null;
44
+ /**
45
+ * Platform or vendor that provides the widget.
46
+ * @minLength 1
47
+ * @maxLength 120
48
+ */
49
+ provider?: string;
50
+ /**
51
+ * Runtime used to execute the widget.
52
+ * @minLength 1
53
+ * @maxLength 120
54
+ */
55
+ runtime?: string;
56
+ /**
57
+ * Widget package or configuration version.
58
+ * @maxLength 80
59
+ */
60
+ version?: string | null;
61
+ /** Current lifecycle state of the widget. */
62
+ status?: WidgetStatusWithLiterals;
63
+ /**
64
+ * Capability identifiers supported by the widget.
65
+ * @maxSize 100
66
+ * @maxLength 120
67
+ */
68
+ capabilities?: string[];
69
+ /** Data Extensions. */
70
+ extendedFields?: ExtendedFields;
71
+ /** Tags. */
72
+ tags?: Tags;
73
+ }
74
+ declare enum WidgetStatus {
75
+ ACTIVE = "ACTIVE",
76
+ PAUSED = "PAUSED",
77
+ DEPRECATED = "DEPRECATED"
78
+ }
79
+ /** @enumType */
80
+ type WidgetStatusWithLiterals = WidgetStatus | 'ACTIVE' | 'PAUSED' | 'DEPRECATED';
81
+ interface ExtendedFields {
82
+ /**
83
+ * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
84
+ * The value of each key is structured according to the schema defined when the extended fields were configured.
85
+ *
86
+ * You can only access fields for which you have the appropriate permissions.
87
+ *
88
+ * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
89
+ */
90
+ namespaces?: Record<string, Record<string, any>>;
91
+ }
92
+ /**
93
+ * Common object for tags.
94
+ * Should be use as in this example:
95
+ * message Foo {
96
+ * option (.wix.api.decomposite_of) = "wix.commons.v2.tags.Foo";
97
+ * string id = 1;
98
+ * ...
99
+ * Tags tags = 5
100
+ * }
101
+ *
102
+ * example of taggable entity
103
+ * {
104
+ * id: "123"
105
+ * tags: {
106
+ * public_tags: {
107
+ * tag_ids:["11","22"]
108
+ * },
109
+ * private_tags: {
110
+ * tag_ids: ["33", "44"]
111
+ * }
112
+ * }
113
+ * }
114
+ */
115
+ interface Tags {
116
+ /** Tags that require an additional permission in order to access them, normally not given to site members or visitors. */
117
+ privateTags?: TagList;
118
+ /** Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. */
119
+ publicTags?: TagList;
120
+ }
121
+ interface TagList {
122
+ /**
123
+ * List of tag IDs.
124
+ * @maxSize 100
125
+ * @maxLength 5
126
+ */
127
+ tagIds?: string[];
128
+ }
129
+ interface WidgetTagsModified {
130
+ /** Updated Widget. */
131
+ widget?: Widget;
132
+ /** Tags that were assigned to the Widget. */
133
+ assignedTags?: Tags;
134
+ /** Tags that were unassigned from the Widget. */
135
+ unassignedTags?: Tags;
136
+ }
137
+ interface CreateWidgetRequest {
138
+ /** Widget to be created. */
139
+ widget: Widget;
140
+ }
141
+ interface CreateWidgetResponse {
142
+ /** The created Widget. */
143
+ widget?: Widget;
144
+ }
145
+ interface GetWidgetRequest {
146
+ /**
147
+ * ID of the Widget to retrieve.
148
+ * @format GUID
149
+ */
150
+ widgetId: string;
151
+ }
152
+ interface GetWidgetResponse {
153
+ /** The requested Widget. */
154
+ widget?: Widget;
155
+ }
156
+ interface UpdateWidgetRequest {
157
+ /** Widget to be updated, may be partial. */
158
+ widget: Widget;
159
+ }
160
+ interface UpdateWidgetResponse {
161
+ /** Updated Widget. */
162
+ widget?: Widget;
163
+ }
164
+ interface DeleteWidgetRequest {
165
+ /**
166
+ * ID of the Widget to delete.
167
+ * @format GUID
168
+ */
169
+ widgetId: string;
170
+ }
171
+ interface DeleteWidgetResponse {
172
+ }
173
+ interface QueryWidgetsRequest {
174
+ /** WQL expression. */
175
+ query?: CursorQuery;
176
+ }
177
+ interface CursorQuery extends CursorQueryPagingMethodOneOf {
178
+ /**
179
+ * Cursor paging options.
180
+ *
181
+ * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
182
+ */
183
+ cursorPaging?: CursorPaging;
184
+ /**
185
+ * Filter object.
186
+ *
187
+ * Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
188
+ */
189
+ filter?: Record<string, any> | null;
190
+ /**
191
+ * Sort object.
192
+ *
193
+ * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
194
+ * @maxSize 5
195
+ */
196
+ sort?: Sorting[];
197
+ }
198
+ /** @oneof */
199
+ interface CursorQueryPagingMethodOneOf {
200
+ /**
201
+ * Cursor paging options.
202
+ *
203
+ * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
204
+ */
205
+ cursorPaging?: CursorPaging;
206
+ }
207
+ interface Sorting {
208
+ /**
209
+ * Name of the field to sort by.
210
+ * @maxLength 512
211
+ */
212
+ fieldName?: string;
213
+ /** Sort order. */
214
+ order?: SortOrderWithLiterals;
215
+ }
216
+ declare enum SortOrder {
217
+ ASC = "ASC",
218
+ DESC = "DESC"
219
+ }
220
+ /** @enumType */
221
+ type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
222
+ interface CursorPaging {
223
+ /**
224
+ * Maximum number of items to return in the results.
225
+ * @max 100
226
+ */
227
+ limit?: number | null;
228
+ /**
229
+ * Pointer to the next or previous page in the list of results.
230
+ *
231
+ * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
232
+ * Not relevant for the first request.
233
+ * @maxLength 16000
234
+ */
235
+ cursor?: string | null;
236
+ }
237
+ interface QueryWidgetsResponse {
238
+ /** List of Widgets. */
239
+ widgets?: Widget[];
240
+ /** Paging metadata. */
241
+ pagingMetadata?: CursorPagingMetadata;
242
+ }
243
+ interface CursorPagingMetadata {
244
+ /** Number of items returned in current page. */
245
+ count?: number | null;
246
+ /** Cursor strings that point to the next page, previous page, or both. */
247
+ cursors?: Cursors;
248
+ /**
249
+ * Whether there are more pages to retrieve following the current page.
250
+ *
251
+ * + `true`: Another page of results can be retrieved.
252
+ * + `false`: This is the last page.
253
+ */
254
+ hasNext?: boolean | null;
255
+ }
256
+ interface Cursors {
257
+ /**
258
+ * Cursor string pointing to the next page in the list of results.
259
+ * @maxLength 16000
260
+ */
261
+ next?: string | null;
262
+ /**
263
+ * Cursor pointing to the previous page in the list of results.
264
+ * @maxLength 16000
265
+ */
266
+ prev?: string | null;
267
+ }
268
+ interface BulkUpdateWidgetTagsRequest {
269
+ /**
270
+ * IDs of Widgets whose tags will be updated.
271
+ * @minSize 1
272
+ * @maxSize 100
273
+ * @format GUID
274
+ */
275
+ widgetIds: string[];
276
+ /** Tags to assign. */
277
+ assignTags?: Tags;
278
+ /** Tags to unassign. */
279
+ unassignTags?: Tags;
280
+ }
281
+ interface BulkUpdateWidgetTagsResponse {
282
+ /**
283
+ * Results.
284
+ * @minSize 1
285
+ * @maxSize 100
286
+ */
287
+ results?: BulkUpdateWidgetTagsResult[];
288
+ /** Metadata regarding the bulk update operation. */
289
+ bulkActionMetadata?: BulkActionMetadata;
290
+ }
291
+ interface ItemMetadata {
292
+ /**
293
+ * Item ID. Provided only whenever possible. For example, `itemId` can't be provided when item creation has failed.
294
+ * @format GUID
295
+ */
296
+ id?: string | null;
297
+ /** Index of the item within the request array. Allows for correlation between request and response items. */
298
+ originalIndex?: number;
299
+ /** Whether the requested action for this item was successful. When `false`, the `error` field is returned. */
300
+ success?: boolean;
301
+ /** Details about the error in case of failure. */
302
+ error?: ApplicationError;
303
+ }
304
+ interface ApplicationError {
305
+ /** Error code. */
306
+ code?: string;
307
+ /** Description of the error. */
308
+ description?: string;
309
+ /** Data related to the error. */
310
+ data?: Record<string, any> | null;
311
+ }
312
+ interface BulkUpdateWidgetTagsResult {
313
+ /** Metadata regarding the specific single update operation. */
314
+ itemMetadata?: ItemMetadata;
315
+ }
316
+ interface BulkActionMetadata {
317
+ /** Number of items that were successfully processed. */
318
+ totalSuccesses?: number;
319
+ /** Number of items that couldn't be processed. */
320
+ totalFailures?: number;
321
+ /** Number of failures without details because detailed failure threshold was exceeded. */
322
+ undetailedFailures?: number;
323
+ }
324
+ interface BulkUpdateWidgetTagsByFilterRequest {
325
+ /** Filter that selects Widgets whose tags will be updated. */
326
+ filter: Record<string, any> | null;
327
+ /** Tags to assign. */
328
+ assignTags?: Tags;
329
+ /** Tags to unassign. */
330
+ unassignTags?: Tags;
331
+ }
332
+ interface BulkUpdateWidgetTagsByFilterResponse {
333
+ /**
334
+ * Job ID.
335
+ * @format GUID
336
+ */
337
+ jobId?: string;
338
+ }
339
+ interface DomainEvent extends DomainEventBodyOneOf {
340
+ createdEvent?: EntityCreatedEvent;
341
+ updatedEvent?: EntityUpdatedEvent;
342
+ deletedEvent?: EntityDeletedEvent;
343
+ actionEvent?: ActionEvent;
344
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
345
+ id?: string;
346
+ /**
347
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
348
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
349
+ */
350
+ entityFqdn?: string;
351
+ /**
352
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
353
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
354
+ */
355
+ slug?: string;
356
+ /** ID of the entity associated with the event. */
357
+ entityId?: string;
358
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
359
+ eventTime?: Date | null;
360
+ /**
361
+ * Whether the event was triggered as a result of a privacy regulation application
362
+ * (for example, GDPR).
363
+ */
364
+ triggeredByAnonymizeRequest?: boolean | null;
365
+ /** If present, indicates the action that triggered the event. */
366
+ originatedFrom?: string | null;
367
+ /**
368
+ * 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.
369
+ * 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.
370
+ */
371
+ entityEventSequence?: string | null;
372
+ }
373
+ /** @oneof */
374
+ interface DomainEventBodyOneOf {
375
+ createdEvent?: EntityCreatedEvent;
376
+ updatedEvent?: EntityUpdatedEvent;
377
+ deletedEvent?: EntityDeletedEvent;
378
+ actionEvent?: ActionEvent;
379
+ }
380
+ interface EntityCreatedEvent {
381
+ entityAsJson?: string;
382
+ /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
383
+ restoreInfo?: RestoreInfo;
384
+ }
385
+ interface RestoreInfo {
386
+ deletedDate?: Date | null;
387
+ }
388
+ interface EntityUpdatedEvent {
389
+ /**
390
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
391
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
392
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
393
+ */
394
+ currentEntityAsJson?: string;
395
+ }
396
+ interface EntityDeletedEvent {
397
+ /** Entity that was deleted. */
398
+ deletedEntityAsJson?: string | null;
399
+ }
400
+ interface ActionEvent {
401
+ bodyAsJson?: string;
402
+ }
403
+ interface MessageEnvelope {
404
+ /**
405
+ * App instance ID.
406
+ * @format GUID
407
+ */
408
+ instanceId?: string | null;
409
+ /**
410
+ * Event type.
411
+ * @maxLength 150
412
+ */
413
+ eventType?: string;
414
+ /** The identification type and identity data. */
415
+ identity?: IdentificationData;
416
+ /** Stringify payload. */
417
+ data?: string;
418
+ /** Details related to the account */
419
+ accountInfo?: AccountInfo;
420
+ }
421
+ interface IdentificationData extends IdentificationDataIdOneOf {
422
+ /**
423
+ * ID of a site visitor that has not logged in to the site.
424
+ * @format GUID
425
+ */
426
+ anonymousVisitorId?: string;
427
+ /**
428
+ * ID of a site visitor that has logged in to the site.
429
+ * @format GUID
430
+ */
431
+ memberId?: string;
432
+ /**
433
+ * ID of a Wix user (site owner, contributor, etc.).
434
+ * @format GUID
435
+ */
436
+ wixUserId?: string;
437
+ /**
438
+ * ID of an app.
439
+ * @format GUID
440
+ */
441
+ appId?: string;
442
+ /** @readonly */
443
+ identityType?: WebhookIdentityTypeWithLiterals;
444
+ }
445
+ /** @oneof */
446
+ interface IdentificationDataIdOneOf {
447
+ /**
448
+ * ID of a site visitor that has not logged in to the site.
449
+ * @format GUID
450
+ */
451
+ anonymousVisitorId?: string;
452
+ /**
453
+ * ID of a site visitor that has logged in to the site.
454
+ * @format GUID
455
+ */
456
+ memberId?: string;
457
+ /**
458
+ * ID of a Wix user (site owner, contributor, etc.).
459
+ * @format GUID
460
+ */
461
+ wixUserId?: string;
462
+ /**
463
+ * ID of an app.
464
+ * @format GUID
465
+ */
466
+ appId?: string;
467
+ }
468
+ declare enum WebhookIdentityType {
469
+ UNKNOWN = "UNKNOWN",
470
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
471
+ MEMBER = "MEMBER",
472
+ WIX_USER = "WIX_USER",
473
+ APP = "APP"
474
+ }
475
+ /** @enumType */
476
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
477
+ interface AccountInfo {
478
+ /**
479
+ * ID of the Wix account associated with the event.
480
+ * @format GUID
481
+ */
482
+ accountId?: string | null;
483
+ /**
484
+ * ID of the parent Wix account. Only included when accountId belongs to a child account.
485
+ * @format GUID
486
+ */
487
+ parentAccountId?: string | null;
488
+ /**
489
+ * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
490
+ * @format GUID
491
+ */
492
+ siteId?: string | null;
493
+ }
494
+ /** @docsIgnore */
495
+ type BulkUpdateWidgetTagsApplicationErrors = {
496
+ code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';
497
+ description?: string;
498
+ data?: Record<string, any>;
499
+ };
500
+ /** @docsIgnore */
501
+ type BulkUpdateWidgetTagsByFilterApplicationErrors = {
502
+ code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';
503
+ description?: string;
504
+ data?: Record<string, any>;
505
+ };
506
+
507
+ type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
508
+ getUrl: (context: any) => string;
509
+ httpMethod: K;
510
+ path: string;
511
+ pathParams: M;
512
+ __requestType: T;
513
+ __originalRequestType: S;
514
+ __responseType: Q;
515
+ __originalResponseType: R;
516
+ };
517
+ declare function createWidget(): __PublicMethodMetaInfo<'POST', {}, CreateWidgetRequest$1, CreateWidgetRequest, CreateWidgetResponse$1, CreateWidgetResponse>;
518
+ declare function getWidget(): __PublicMethodMetaInfo<'GET', {
519
+ widgetId: string;
520
+ }, GetWidgetRequest$1, GetWidgetRequest, GetWidgetResponse$1, GetWidgetResponse>;
521
+ declare function updateWidget(): __PublicMethodMetaInfo<'PATCH', {
522
+ widgetId: string;
523
+ }, UpdateWidgetRequest$1, UpdateWidgetRequest, UpdateWidgetResponse$1, UpdateWidgetResponse>;
524
+ declare function deleteWidget(): __PublicMethodMetaInfo<'DELETE', {
525
+ widgetId: string;
526
+ }, DeleteWidgetRequest$1, DeleteWidgetRequest, DeleteWidgetResponse$1, DeleteWidgetResponse>;
527
+ declare function queryWidgets(): __PublicMethodMetaInfo<'GET', {}, QueryWidgetsRequest$1, QueryWidgetsRequest, QueryWidgetsResponse$1, QueryWidgetsResponse>;
528
+ declare function bulkUpdateWidgetTags(): __PublicMethodMetaInfo<'POST', {}, BulkUpdateWidgetTagsRequest$1, BulkUpdateWidgetTagsRequest, BulkUpdateWidgetTagsResponse$1, BulkUpdateWidgetTagsResponse>;
529
+ declare function bulkUpdateWidgetTagsByFilter(): __PublicMethodMetaInfo<'POST', {}, BulkUpdateWidgetTagsByFilterRequest$1, BulkUpdateWidgetTagsByFilterRequest, BulkUpdateWidgetTagsByFilterResponse$1, BulkUpdateWidgetTagsByFilterResponse>;
530
+
531
+ export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type ApplicationError as ApplicationErrorOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkUpdateWidgetTagsApplicationErrors as BulkUpdateWidgetTagsApplicationErrorsOriginal, type BulkUpdateWidgetTagsByFilterApplicationErrors as BulkUpdateWidgetTagsByFilterApplicationErrorsOriginal, type BulkUpdateWidgetTagsByFilterRequest as BulkUpdateWidgetTagsByFilterRequestOriginal, type BulkUpdateWidgetTagsByFilterResponse as BulkUpdateWidgetTagsByFilterResponseOriginal, type BulkUpdateWidgetTagsRequest as BulkUpdateWidgetTagsRequestOriginal, type BulkUpdateWidgetTagsResponse as BulkUpdateWidgetTagsResponseOriginal, type BulkUpdateWidgetTagsResult as BulkUpdateWidgetTagsResultOriginal, type CreateWidgetRequest as CreateWidgetRequestOriginal, type CreateWidgetResponse as CreateWidgetResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DeleteWidgetRequest as DeleteWidgetRequestOriginal, type DeleteWidgetResponse as DeleteWidgetResponseOriginal, 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 GetWidgetRequest as GetWidgetRequestOriginal, type GetWidgetResponse as GetWidgetResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ItemMetadata as ItemMetadataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type QueryWidgetsRequest as QueryWidgetsRequestOriginal, type QueryWidgetsResponse as QueryWidgetsResponseOriginal, type RestoreInfo as RestoreInfoOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, type TagList as TagListOriginal, type Tags as TagsOriginal, type UpdateWidgetRequest as UpdateWidgetRequestOriginal, type UpdateWidgetResponse as UpdateWidgetResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type Widget as WidgetOriginal, WidgetStatus as WidgetStatusOriginal, type WidgetStatusWithLiterals as WidgetStatusWithLiteralsOriginal, type WidgetTagsModified as WidgetTagsModifiedOriginal, type __PublicMethodMetaInfo, bulkUpdateWidgetTags, bulkUpdateWidgetTagsByFilter, createWidget, deleteWidget, getWidget, queryWidgets, updateWidget };