@wix/events 1.0.251 → 1.0.252

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.
@@ -128,11 +128,11 @@ interface QueryV2$d extends QueryV2PagingMethodOneOf$d {
128
128
  /** Paging options to limit and skip the number of items. */
129
129
  paging?: Paging$d;
130
130
  /** 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`. */
131
- cursorPaging?: CursorPaging$9;
131
+ cursorPaging?: CursorPaging$b;
132
132
  /** Filter object in the following format: <br/> `"filter" : { "fieldName1": "value1", "fieldName2":{"$operator":"value2"} }`. <br/> <br/> **Example:** <br/> `"filter" : { "eventId": "sd3f-jhds-4fs77", "ticketNumber": {"$startsWith":"478"} }` <br/> <br/> See [supported fields and operators](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort) for more information. */
133
133
  filter?: Record<string, any> | null;
134
134
  /** Sort object in the following format: <br/> `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]` <br/> <br/> **Example:** <br/> `[{"fieldName":"createdDate","direction":"DESC"}]` <br/> <br/> See [supported fields](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort) for more information. */
135
- sort?: Sorting$d[];
135
+ sort?: Sorting$f[];
136
136
  /**
137
137
  * Currently the only supported fieldset is `guestDetails`. The `WIX_EVENTS.READ_GUESTS_DETAILS` permission is required to access the guest details. <br/> <br/> See [field projection](https://dev.wix.com/api/rest/getting-started/field-projection) for more information.
138
138
  * @deprecated Currently the only supported fieldset is `guestDetails`. The `WIX_EVENTS.READ_GUESTS_DETAILS` permission is required to access the guest details. <br/> <br/> See [field projection](https://dev.wix.com/api/rest/getting-started/field-projection) for more information.
@@ -146,15 +146,15 @@ interface QueryV2PagingMethodOneOf$d {
146
146
  /** Paging options to limit and skip the number of items. */
147
147
  paging?: Paging$d;
148
148
  /** 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`. */
149
- cursorPaging?: CursorPaging$9;
149
+ cursorPaging?: CursorPaging$b;
150
150
  }
151
- interface Sorting$d {
151
+ interface Sorting$f {
152
152
  /** Name of the field to sort by. */
153
153
  fieldName?: string;
154
154
  /** Sort order. */
155
- order?: SortOrder$d;
155
+ order?: SortOrder$f;
156
156
  }
157
- declare enum SortOrder$d {
157
+ declare enum SortOrder$f {
158
158
  ASC = "ASC",
159
159
  DESC = "DESC"
160
160
  }
@@ -164,7 +164,7 @@ interface Paging$d {
164
164
  /** Number of items to skip in the current sort order. */
165
165
  offset?: number | null;
166
166
  }
167
- interface CursorPaging$9 {
167
+ interface CursorPaging$b {
168
168
  /** Maximum number of items to return in the results. */
169
169
  limit?: number | null;
170
170
  /**
@@ -198,9 +198,9 @@ interface PagingMetadataV2$d {
198
198
  /** Flag that indicates the server failed to calculate the `total` field. */
199
199
  tooManyToCount?: boolean | null;
200
200
  /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
201
- cursors?: Cursors$d;
201
+ cursors?: Cursors$f;
202
202
  }
203
- interface Cursors$d {
203
+ interface Cursors$f {
204
204
  /** Cursor string pointing to the next page in the list of results. */
205
205
  next?: string | null;
206
206
  /** Cursor pointing to the previous page in the list of results. */
@@ -373,11 +373,11 @@ interface QueryV2$c extends QueryV2PagingMethodOneOf$c {
373
373
  /** Paging options to limit and skip the number of items. */
374
374
  paging?: Paging$c;
375
375
  /** 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`. */
376
- cursorPaging?: CursorPaging$8;
376
+ cursorPaging?: CursorPaging$a;
377
377
  /** Filter object in the following format: <br/> `"filter" : { "fieldName1": "value1", "fieldName2":{"$operator":"value2"} }`. <br/> <br/> **Example:** <br/> `"filter" : { "eventId": "sd3f-jhds-4fs77", "ticketNumber": {"$startsWith":"478"} }` <br/> <br/> See [supported fields and operators](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort) for more information. */
378
378
  filter?: Record<string, any> | null;
379
379
  /** Sort object in the following format: <br/> `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]` <br/> <br/> **Example:** <br/> `[{"fieldName":"createdDate","direction":"DESC"}]` <br/> <br/> See [supported fields](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort) for more information. */
380
- sort?: Sorting$c[];
380
+ sort?: Sorting$e[];
381
381
  /**
382
382
  * Currently the only supported fieldset is `guestDetails`. The `WIX_EVENTS.READ_GUESTS_DETAILS` permission is required to access the guest details. <br/> <br/> See [field projection](https://dev.wix.com/api/rest/getting-started/field-projection) for more information.
383
383
  * @deprecated Currently the only supported fieldset is `guestDetails`. The `WIX_EVENTS.READ_GUESTS_DETAILS` permission is required to access the guest details. <br/> <br/> See [field projection](https://dev.wix.com/api/rest/getting-started/field-projection) for more information.
@@ -391,15 +391,15 @@ interface QueryV2PagingMethodOneOf$c {
391
391
  /** Paging options to limit and skip the number of items. */
392
392
  paging?: Paging$c;
393
393
  /** 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`. */
394
- cursorPaging?: CursorPaging$8;
394
+ cursorPaging?: CursorPaging$a;
395
395
  }
396
- interface Sorting$c {
396
+ interface Sorting$e {
397
397
  /** Name of the field to sort by. */
398
398
  fieldName?: string;
399
399
  /** Sort order. */
400
- order?: SortOrder$c;
400
+ order?: SortOrder$e;
401
401
  }
402
- declare enum SortOrder$c {
402
+ declare enum SortOrder$e {
403
403
  ASC = "ASC",
404
404
  DESC = "DESC"
405
405
  }
@@ -409,7 +409,7 @@ interface Paging$c {
409
409
  /** Number of items to skip in the current sort order. */
410
410
  offset?: number | null;
411
411
  }
412
- interface CursorPaging$8 {
412
+ interface CursorPaging$a {
413
413
  /** Maximum number of items to return in the results. */
414
414
  limit?: number | null;
415
415
  /**
@@ -443,9 +443,9 @@ interface PagingMetadataV2$c {
443
443
  /** Flag that indicates the server failed to calculate the `total` field. */
444
444
  tooManyToCount?: boolean | null;
445
445
  /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
446
- cursors?: Cursors$c;
446
+ cursors?: Cursors$e;
447
447
  }
448
- interface Cursors$c {
448
+ interface Cursors$e {
449
449
  /** Cursor string pointing to the next page in the list of results. */
450
450
  next?: string | null;
451
451
  /** Cursor pointing to the previous page in the list of results. */
@@ -497,7 +497,7 @@ interface QueryEventGuestsResponseNonNullableFields {
497
497
  guests: EventGuestNonNullableFields[];
498
498
  }
499
499
 
500
- type __PublicMethodMetaInfo$d<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
500
+ type __PublicMethodMetaInfo$e<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
501
501
  getUrl: (context: any) => string;
502
502
  httpMethod: K;
503
503
  path: string;
@@ -507,11 +507,11 @@ type __PublicMethodMetaInfo$d<K = string, M = unknown, T = unknown, S = unknown,
507
507
  __responseType: Q;
508
508
  __originalResponseType: R;
509
509
  };
510
- declare function queryGuests(): __PublicMethodMetaInfo$d<'POST', {}, QueryEventGuestsRequest, QueryEventGuestsRequest$1, QueryEventGuestsResponse & QueryEventGuestsResponseNonNullableFields, QueryEventGuestsResponse$1 & QueryEventGuestsResponseNonNullableFields$1>;
510
+ declare function queryGuests(): __PublicMethodMetaInfo$e<'POST', {}, QueryEventGuestsRequest, QueryEventGuestsRequest$1, QueryEventGuestsResponse & QueryEventGuestsResponseNonNullableFields, QueryEventGuestsResponse$1 & QueryEventGuestsResponseNonNullableFields$1>;
511
511
 
512
- declare const meta$d_queryGuests: typeof queryGuests;
513
- declare namespace meta$d {
514
- export { type __PublicMethodMetaInfo$d as __PublicMethodMetaInfo, meta$d_queryGuests as queryGuests };
512
+ declare const meta$e_queryGuests: typeof queryGuests;
513
+ declare namespace meta$e {
514
+ export { type __PublicMethodMetaInfo$e as __PublicMethodMetaInfo, meta$e_queryGuests as queryGuests };
515
515
  }
516
516
 
517
517
  interface NotificationConfig$1 {
@@ -588,15 +588,15 @@ interface EmailTemplate$1 {
588
588
  /** Plain text message body. */
589
589
  body?: string | null;
590
590
  /** Description link visibility and display text */
591
- descriptionLink?: Link$1;
591
+ descriptionLink?: Link$3;
592
592
  /** Calendar link visibility and display text */
593
- calendarLink?: Link$1;
593
+ calendarLink?: Link$3;
594
594
  /** Online conferencing link visibility and display text */
595
- onlineConferencingLink?: Link$1;
595
+ onlineConferencingLink?: Link$3;
596
596
  /** When true the tickets are attached to the order confirmation email. */
597
597
  includeTickets?: boolean | null;
598
598
  }
599
- interface Link$1 {
599
+ interface Link$3 {
600
600
  /** When true the link is added to the email. */
601
601
  display?: boolean | null;
602
602
  /** Text of the link. */
@@ -803,15 +803,15 @@ interface EmailTemplate {
803
803
  /** Plain text message body. */
804
804
  body?: string | null;
805
805
  /** Description link visibility and display text */
806
- descriptionLink?: Link;
806
+ descriptionLink?: Link$2;
807
807
  /** Calendar link visibility and display text */
808
- calendarLink?: Link;
808
+ calendarLink?: Link$2;
809
809
  /** Online conferencing link visibility and display text */
810
- onlineConferencingLink?: Link;
810
+ onlineConferencingLink?: Link$2;
811
811
  /** When true the tickets are attached to the order confirmation email. */
812
812
  includeTickets?: boolean | null;
813
813
  }
814
- interface Link {
814
+ interface Link$2 {
815
815
  /** When true the link is added to the email. */
816
816
  display?: boolean | null;
817
817
  /** Text of the link. */
@@ -944,7 +944,7 @@ interface UpsertNotificationConfigResponseNonNullableFields {
944
944
  notificationConfig?: NotificationConfigNonNullableFields;
945
945
  }
946
946
 
947
- type __PublicMethodMetaInfo$c<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
947
+ type __PublicMethodMetaInfo$d<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
948
948
  getUrl: (context: any) => string;
949
949
  httpMethod: K;
950
950
  path: string;
@@ -954,19 +954,19 @@ type __PublicMethodMetaInfo$c<K = string, M = unknown, T = unknown, S = unknown,
954
954
  __responseType: Q;
955
955
  __originalResponseType: R;
956
956
  };
957
- declare function triggerNotification(): __PublicMethodMetaInfo$c<'POST', {}, TriggerNotificationRequest, TriggerNotificationRequest$1, TriggerNotificationResponse, TriggerNotificationResponse$1>;
958
- declare function resolveNotificationConfig(): __PublicMethodMetaInfo$c<'GET', {
957
+ declare function triggerNotification(): __PublicMethodMetaInfo$d<'POST', {}, TriggerNotificationRequest, TriggerNotificationRequest$1, TriggerNotificationResponse, TriggerNotificationResponse$1>;
958
+ declare function resolveNotificationConfig(): __PublicMethodMetaInfo$d<'GET', {
959
959
  notificationConfigId: string;
960
960
  }, ResolveNotificationConfigRequest, ResolveNotificationConfigRequest$1, ResolveNotificationConfigResponse & ResolveNotificationConfigResponseNonNullableFields, ResolveNotificationConfigResponse$1 & ResolveNotificationConfigResponseNonNullableFields$1>;
961
- declare function upsertNotificationConfig(): __PublicMethodMetaInfo$c<'POST', {
961
+ declare function upsertNotificationConfig(): __PublicMethodMetaInfo$d<'POST', {
962
962
  notificationConfigId: string;
963
963
  }, UpsertNotificationConfigRequest, UpsertNotificationConfigRequest$1, UpsertNotificationConfigResponse & UpsertNotificationConfigResponseNonNullableFields, UpsertNotificationConfigResponse$1 & UpsertNotificationConfigResponseNonNullableFields$1>;
964
964
 
965
- declare const meta$c_resolveNotificationConfig: typeof resolveNotificationConfig;
966
- declare const meta$c_triggerNotification: typeof triggerNotification;
967
- declare const meta$c_upsertNotificationConfig: typeof upsertNotificationConfig;
968
- declare namespace meta$c {
969
- export { type __PublicMethodMetaInfo$c as __PublicMethodMetaInfo, meta$c_resolveNotificationConfig as resolveNotificationConfig, meta$c_triggerNotification as triggerNotification, meta$c_upsertNotificationConfig as upsertNotificationConfig };
965
+ declare const meta$d_resolveNotificationConfig: typeof resolveNotificationConfig;
966
+ declare const meta$d_triggerNotification: typeof triggerNotification;
967
+ declare const meta$d_upsertNotificationConfig: typeof upsertNotificationConfig;
968
+ declare namespace meta$d {
969
+ export { type __PublicMethodMetaInfo$d as __PublicMethodMetaInfo, meta$d_resolveNotificationConfig as resolveNotificationConfig, meta$d_triggerNotification as triggerNotification, meta$d_upsertNotificationConfig as upsertNotificationConfig };
970
970
  }
971
971
 
972
972
  declare type GoogleProtoDuration$1 = {
@@ -1176,7 +1176,7 @@ interface ListBookmarksResponseNonNullableFields {
1176
1176
  items: ScheduleItemNonNullableFields$2[];
1177
1177
  }
1178
1178
 
1179
- type __PublicMethodMetaInfo$b<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
1179
+ type __PublicMethodMetaInfo$c<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
1180
1180
  getUrl: (context: any) => string;
1181
1181
  httpMethod: K;
1182
1182
  path: string;
@@ -1186,19 +1186,19 @@ type __PublicMethodMetaInfo$b<K = string, M = unknown, T = unknown, S = unknown,
1186
1186
  __responseType: Q;
1187
1187
  __originalResponseType: R;
1188
1188
  };
1189
- declare function listBookmarks(): __PublicMethodMetaInfo$b<'GET', {}, ListBookmarksRequest, ListBookmarksRequest$1, ListBookmarksResponse & ListBookmarksResponseNonNullableFields, ListBookmarksResponse$1 & ListBookmarksResponseNonNullableFields$1>;
1190
- declare function createBookmark(): __PublicMethodMetaInfo$b<'POST', {
1189
+ declare function listBookmarks(): __PublicMethodMetaInfo$c<'GET', {}, ListBookmarksRequest, ListBookmarksRequest$1, ListBookmarksResponse & ListBookmarksResponseNonNullableFields, ListBookmarksResponse$1 & ListBookmarksResponseNonNullableFields$1>;
1190
+ declare function createBookmark(): __PublicMethodMetaInfo$c<'POST', {
1191
1191
  itemId: string;
1192
1192
  }, CreateBookmarkRequest, CreateBookmarkRequest$1, CreateBookmarkResponse, CreateBookmarkResponse$1>;
1193
- declare function deleteBookmark(): __PublicMethodMetaInfo$b<'DELETE', {
1193
+ declare function deleteBookmark(): __PublicMethodMetaInfo$c<'DELETE', {
1194
1194
  itemId: string;
1195
1195
  }, DeleteBookmarkRequest, DeleteBookmarkRequest$1, DeleteBookmarkResponse, DeleteBookmarkResponse$1>;
1196
1196
 
1197
- declare const meta$b_createBookmark: typeof createBookmark;
1198
- declare const meta$b_deleteBookmark: typeof deleteBookmark;
1199
- declare const meta$b_listBookmarks: typeof listBookmarks;
1200
- declare namespace meta$b {
1201
- export { type __PublicMethodMetaInfo$b as __PublicMethodMetaInfo, meta$b_createBookmark as createBookmark, meta$b_deleteBookmark as deleteBookmark, meta$b_listBookmarks as listBookmarks };
1197
+ declare const meta$c_createBookmark: typeof createBookmark;
1198
+ declare const meta$c_deleteBookmark: typeof deleteBookmark;
1199
+ declare const meta$c_listBookmarks: typeof listBookmarks;
1200
+ declare namespace meta$c {
1201
+ export { type __PublicMethodMetaInfo$c as __PublicMethodMetaInfo, meta$c_createBookmark as createBookmark, meta$c_deleteBookmark as deleteBookmark, meta$c_listBookmarks as listBookmarks };
1202
1202
  }
1203
1203
 
1204
1204
  /** Schedule item describes the schedule within an event. Each event may contain multiple schedule items. */
@@ -1369,9 +1369,9 @@ interface PagingMetadataV2$b {
1369
1369
  /** Flag that indicates the server failed to calculate the `total` field. */
1370
1370
  tooManyToCount?: boolean | null;
1371
1371
  /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
1372
- cursors?: Cursors$b;
1372
+ cursors?: Cursors$d;
1373
1373
  }
1374
- interface Cursors$b {
1374
+ interface Cursors$d {
1375
1375
  /** Cursor string pointing to the next page in the list of results. */
1376
1376
  next?: string | null;
1377
1377
  /** Cursor pointing to the previous page in the list of results. */
@@ -1392,7 +1392,7 @@ interface QueryV2$b extends QueryV2PagingMethodOneOf$b {
1392
1392
  * Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]
1393
1393
  * See [supported fields](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort#wix-events_wix-events_filter-and-sort_list-query-events).
1394
1394
  */
1395
- sort?: Sorting$b[];
1395
+ sort?: Sorting$d[];
1396
1396
  }
1397
1397
  /** @oneof */
1398
1398
  interface QueryV2PagingMethodOneOf$b {
@@ -1402,13 +1402,13 @@ interface QueryV2PagingMethodOneOf$b {
1402
1402
  */
1403
1403
  paging?: Paging$b;
1404
1404
  }
1405
- interface Sorting$b {
1405
+ interface Sorting$d {
1406
1406
  /** Name of the field to sort by */
1407
1407
  fieldName?: string;
1408
1408
  /** Sort order (ASC/DESC). Defaults to ASC */
1409
- order?: SortOrder$b;
1409
+ order?: SortOrder$d;
1410
1410
  }
1411
- declare enum SortOrder$b {
1411
+ declare enum SortOrder$d {
1412
1412
  ASC = "ASC",
1413
1413
  DESC = "DESC"
1414
1414
  }
@@ -1705,9 +1705,9 @@ interface PagingMetadataV2$a {
1705
1705
  /** Flag that indicates the server failed to calculate the `total` field. */
1706
1706
  tooManyToCount?: boolean | null;
1707
1707
  /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
1708
- cursors?: Cursors$a;
1708
+ cursors?: Cursors$c;
1709
1709
  }
1710
- interface Cursors$a {
1710
+ interface Cursors$c {
1711
1711
  /** Cursor string pointing to the next page in the list of results. */
1712
1712
  next?: string | null;
1713
1713
  /** Cursor pointing to the previous page in the list of results. */
@@ -1728,7 +1728,7 @@ interface QueryV2$a extends QueryV2PagingMethodOneOf$a {
1728
1728
  * Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]
1729
1729
  * See [supported fields](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort#wix-events_wix-events_filter-and-sort_list-query-events).
1730
1730
  */
1731
- sort?: Sorting$a[];
1731
+ sort?: Sorting$c[];
1732
1732
  }
1733
1733
  /** @oneof */
1734
1734
  interface QueryV2PagingMethodOneOf$a {
@@ -1738,13 +1738,13 @@ interface QueryV2PagingMethodOneOf$a {
1738
1738
  */
1739
1739
  paging?: Paging$a;
1740
1740
  }
1741
- interface Sorting$a {
1741
+ interface Sorting$c {
1742
1742
  /** Name of the field to sort by */
1743
1743
  fieldName?: string;
1744
1744
  /** Sort order (ASC/DESC). Defaults to ASC */
1745
- order?: SortOrder$a;
1745
+ order?: SortOrder$c;
1746
1746
  }
1747
- declare enum SortOrder$a {
1747
+ declare enum SortOrder$c {
1748
1748
  ASC = "ASC",
1749
1749
  DESC = "DESC"
1750
1750
  }
@@ -1875,7 +1875,7 @@ interface UpdateScheduleItemResponseNonNullableFields {
1875
1875
  }
1876
1876
  type GoogleProtoDuration = any;
1877
1877
 
1878
- type __PublicMethodMetaInfo$a<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
1878
+ type __PublicMethodMetaInfo$b<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
1879
1879
  getUrl: (context: any) => string;
1880
1880
  httpMethod: K;
1881
1881
  path: string;
@@ -1885,29 +1885,29 @@ type __PublicMethodMetaInfo$a<K = string, M = unknown, T = unknown, S = unknown,
1885
1885
  __responseType: Q;
1886
1886
  __originalResponseType: R;
1887
1887
  };
1888
- declare function listScheduleItems(): __PublicMethodMetaInfo$a<'GET', {}, ListScheduleItemsRequest, ListScheduleItemsRequest$1, ListScheduleItemsResponse & ListScheduleItemsResponseNonNullableFields, ListScheduleItemsResponse$1 & ListScheduleItemsResponseNonNullableFields$1>;
1889
- declare function queryScheduleItems(): __PublicMethodMetaInfo$a<'POST', {}, QueryScheduleItemsRequest, QueryScheduleItemsRequest$1, QueryScheduleItemsResponse & QueryScheduleItemsResponseNonNullableFields, QueryScheduleItemsResponse$1 & QueryScheduleItemsResponseNonNullableFields$1>;
1890
- declare function getScheduleItem(): __PublicMethodMetaInfo$a<'GET', {
1888
+ declare function listScheduleItems(): __PublicMethodMetaInfo$b<'GET', {}, ListScheduleItemsRequest, ListScheduleItemsRequest$1, ListScheduleItemsResponse & ListScheduleItemsResponseNonNullableFields, ListScheduleItemsResponse$1 & ListScheduleItemsResponseNonNullableFields$1>;
1889
+ declare function queryScheduleItems(): __PublicMethodMetaInfo$b<'POST', {}, QueryScheduleItemsRequest, QueryScheduleItemsRequest$1, QueryScheduleItemsResponse & QueryScheduleItemsResponseNonNullableFields, QueryScheduleItemsResponse$1 & QueryScheduleItemsResponseNonNullableFields$1>;
1890
+ declare function getScheduleItem(): __PublicMethodMetaInfo$b<'GET', {
1891
1891
  itemId: string;
1892
1892
  }, GetScheduleItemRequest, GetScheduleItemRequest$1, GetScheduleItemResponse & GetScheduleItemResponseNonNullableFields, GetScheduleItemResponse$1 & GetScheduleItemResponseNonNullableFields$1>;
1893
- declare function addScheduleItem(): __PublicMethodMetaInfo$a<'POST', {}, AddScheduleItemRequest, AddScheduleItemRequest$1, AddScheduleItemResponse & AddScheduleItemResponseNonNullableFields, AddScheduleItemResponse$1 & AddScheduleItemResponseNonNullableFields$1>;
1894
- declare function updateScheduleItem(): __PublicMethodMetaInfo$a<'PATCH', {
1893
+ declare function addScheduleItem(): __PublicMethodMetaInfo$b<'POST', {}, AddScheduleItemRequest, AddScheduleItemRequest$1, AddScheduleItemResponse & AddScheduleItemResponseNonNullableFields, AddScheduleItemResponse$1 & AddScheduleItemResponseNonNullableFields$1>;
1894
+ declare function updateScheduleItem(): __PublicMethodMetaInfo$b<'PATCH', {
1895
1895
  itemId: string;
1896
1896
  }, UpdateScheduleItemRequest, UpdateScheduleItemRequest$1, UpdateScheduleItemResponse & UpdateScheduleItemResponseNonNullableFields, UpdateScheduleItemResponse$1 & UpdateScheduleItemResponseNonNullableFields$1>;
1897
- declare function deleteScheduleItem(): __PublicMethodMetaInfo$a<'DELETE', {}, DeleteScheduleItemRequest, DeleteScheduleItemRequest$1, DeleteScheduleItemResponse, DeleteScheduleItemResponse$1>;
1898
- declare function discardDraft$1(): __PublicMethodMetaInfo$a<'DELETE', {}, DiscardDraftRequest$2, DiscardDraftRequest$3, DiscardDraftResponse$2, DiscardDraftResponse$3>;
1899
- declare function publishDraft$1(): __PublicMethodMetaInfo$a<'POST', {}, PublishDraftRequest$2, PublishDraftRequest$3, PublishDraftResponse$2, PublishDraftResponse$3>;
1900
- declare function rescheduleDraft(): __PublicMethodMetaInfo$a<'POST', {}, RescheduleDraftRequest, RescheduleDraftRequest$1, RescheduleDraftResponse, RescheduleDraftResponse$1>;
1897
+ declare function deleteScheduleItem(): __PublicMethodMetaInfo$b<'DELETE', {}, DeleteScheduleItemRequest, DeleteScheduleItemRequest$1, DeleteScheduleItemResponse, DeleteScheduleItemResponse$1>;
1898
+ declare function discardDraft$1(): __PublicMethodMetaInfo$b<'DELETE', {}, DiscardDraftRequest$2, DiscardDraftRequest$3, DiscardDraftResponse$2, DiscardDraftResponse$3>;
1899
+ declare function publishDraft$1(): __PublicMethodMetaInfo$b<'POST', {}, PublishDraftRequest$2, PublishDraftRequest$3, PublishDraftResponse$2, PublishDraftResponse$3>;
1900
+ declare function rescheduleDraft(): __PublicMethodMetaInfo$b<'POST', {}, RescheduleDraftRequest, RescheduleDraftRequest$1, RescheduleDraftResponse, RescheduleDraftResponse$1>;
1901
1901
 
1902
- declare const meta$a_addScheduleItem: typeof addScheduleItem;
1903
- declare const meta$a_deleteScheduleItem: typeof deleteScheduleItem;
1904
- declare const meta$a_getScheduleItem: typeof getScheduleItem;
1905
- declare const meta$a_listScheduleItems: typeof listScheduleItems;
1906
- declare const meta$a_queryScheduleItems: typeof queryScheduleItems;
1907
- declare const meta$a_rescheduleDraft: typeof rescheduleDraft;
1908
- declare const meta$a_updateScheduleItem: typeof updateScheduleItem;
1909
- declare namespace meta$a {
1910
- export { type __PublicMethodMetaInfo$a as __PublicMethodMetaInfo, meta$a_addScheduleItem as addScheduleItem, meta$a_deleteScheduleItem as deleteScheduleItem, discardDraft$1 as discardDraft, meta$a_getScheduleItem as getScheduleItem, meta$a_listScheduleItems as listScheduleItems, publishDraft$1 as publishDraft, meta$a_queryScheduleItems as queryScheduleItems, meta$a_rescheduleDraft as rescheduleDraft, meta$a_updateScheduleItem as updateScheduleItem };
1902
+ declare const meta$b_addScheduleItem: typeof addScheduleItem;
1903
+ declare const meta$b_deleteScheduleItem: typeof deleteScheduleItem;
1904
+ declare const meta$b_getScheduleItem: typeof getScheduleItem;
1905
+ declare const meta$b_listScheduleItems: typeof listScheduleItems;
1906
+ declare const meta$b_queryScheduleItems: typeof queryScheduleItems;
1907
+ declare const meta$b_rescheduleDraft: typeof rescheduleDraft;
1908
+ declare const meta$b_updateScheduleItem: typeof updateScheduleItem;
1909
+ declare namespace meta$b {
1910
+ export { type __PublicMethodMetaInfo$b as __PublicMethodMetaInfo, meta$b_addScheduleItem as addScheduleItem, meta$b_deleteScheduleItem as deleteScheduleItem, discardDraft$1 as discardDraft, meta$b_getScheduleItem as getScheduleItem, meta$b_listScheduleItems as listScheduleItems, publishDraft$1 as publishDraft, meta$b_queryScheduleItems as queryScheduleItems, meta$b_rescheduleDraft as rescheduleDraft, meta$b_updateScheduleItem as updateScheduleItem };
1911
1911
  }
1912
1912
 
1913
1913
  /** Staff members are events hosts assigned persons who can perform check-in for tickets owners, sell tickets or add guests manually. */
@@ -1948,7 +1948,7 @@ interface StaffMember$1 extends StaffMemberEventAccessOneOf$1 {
1948
1948
  */
1949
1949
  joinLink?: string | null;
1950
1950
  /** Data extensions */
1951
- extendedFields?: ExtendedFields$3;
1951
+ extendedFields?: ExtendedFields$5;
1952
1952
  }
1953
1953
  /** @oneof */
1954
1954
  interface StaffMemberEventAccessOneOf$1 {
@@ -1978,7 +1978,7 @@ declare enum Status$3 {
1978
1978
  /** Access paused. When staff member is paused from performing actions. */
1979
1979
  ACCESS_PAUSED = "ACCESS_PAUSED"
1980
1980
  }
1981
- interface ExtendedFields$3 {
1981
+ interface ExtendedFields$5 {
1982
1982
  /**
1983
1983
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
1984
1984
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -2043,11 +2043,11 @@ interface QueryV2$9 extends QueryV2PagingMethodOneOf$9 {
2043
2043
  /** Paging options to limit and skip the number of items. */
2044
2044
  paging?: Paging$9;
2045
2045
  /** 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`. */
2046
- cursorPaging?: CursorPaging$7;
2046
+ cursorPaging?: CursorPaging$9;
2047
2047
  /** Filter object in the following format: <br/> `"filter" : { "fieldName1": "value1", "fieldName2":{"$operator":"value2"} }`. <br/> <br/> **Example:** <br/> `"filter" : { "eventId": "sd3f-jhds-4fs77", "ticketNumber": {"$startsWith":"478"} }` <br/> <br/> See [supported fields and operators](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort) for more information. */
2048
2048
  filter?: Record<string, any> | null;
2049
2049
  /** Sort object in the following format: <br/> `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]` <br/> <br/> **Example:** <br/> `[{"fieldName":"createdDate","direction":"DESC"}]` <br/> <br/> See [supported fields](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort) for more information. */
2050
- sort?: Sorting$9[];
2050
+ sort?: Sorting$b[];
2051
2051
  /** Currently the only supported fieldset is `guestDetails`. The `WIX_EVENTS.READ_GUESTS_DETAILS` permission is required to access the guest details. <br/> <br/> See [field projection](https://dev.wix.com/api/rest/getting-started/field-projection) for more information. */
2052
2052
  fieldsets?: string[];
2053
2053
  }
@@ -2056,15 +2056,15 @@ interface QueryV2PagingMethodOneOf$9 {
2056
2056
  /** Paging options to limit and skip the number of items. */
2057
2057
  paging?: Paging$9;
2058
2058
  /** 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`. */
2059
- cursorPaging?: CursorPaging$7;
2059
+ cursorPaging?: CursorPaging$9;
2060
2060
  }
2061
- interface Sorting$9 {
2061
+ interface Sorting$b {
2062
2062
  /** Name of the field to sort by. */
2063
2063
  fieldName?: string;
2064
2064
  /** Sort order (ASC/DESC). Defaults to ASC */
2065
- order?: SortOrder$9;
2065
+ order?: SortOrder$b;
2066
2066
  }
2067
- declare enum SortOrder$9 {
2067
+ declare enum SortOrder$b {
2068
2068
  ASC = "ASC",
2069
2069
  DESC = "DESC"
2070
2070
  }
@@ -2074,7 +2074,7 @@ interface Paging$9 {
2074
2074
  /** Number of items to skip in the current sort order. */
2075
2075
  offset?: number | null;
2076
2076
  }
2077
- interface CursorPaging$7 {
2077
+ interface CursorPaging$9 {
2078
2078
  /** Number of items to load per page. */
2079
2079
  limit?: number | null;
2080
2080
  /**
@@ -2102,9 +2102,9 @@ interface PagingMetadataV2$9 {
2102
2102
  /** Flag that indicates the server failed to calculate the `total` field. */
2103
2103
  tooManyToCount?: boolean | null;
2104
2104
  /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
2105
- cursors?: Cursors$9;
2105
+ cursors?: Cursors$b;
2106
2106
  }
2107
- interface Cursors$9 {
2107
+ interface Cursors$b {
2108
2108
  /** Cursor pointing to next page in the list of results. */
2109
2109
  next?: string | null;
2110
2110
  /** Cursor pointing to previous page in the list of results. */
@@ -2197,7 +2197,7 @@ interface StaffMember extends StaffMemberEventAccessOneOf {
2197
2197
  */
2198
2198
  joinLink?: string | null;
2199
2199
  /** Data extensions */
2200
- extendedFields?: ExtendedFields$2;
2200
+ extendedFields?: ExtendedFields$4;
2201
2201
  }
2202
2202
  /** @oneof */
2203
2203
  interface StaffMemberEventAccessOneOf {
@@ -2227,7 +2227,7 @@ declare enum Status$2 {
2227
2227
  /** Access paused. When staff member is paused from performing actions. */
2228
2228
  ACCESS_PAUSED = "ACCESS_PAUSED"
2229
2229
  }
2230
- interface ExtendedFields$2 {
2230
+ interface ExtendedFields$4 {
2231
2231
  /**
2232
2232
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
2233
2233
  * The value of each key is structured according to the schema defined when the extended fields were configured.
@@ -2292,11 +2292,11 @@ interface QueryV2$8 extends QueryV2PagingMethodOneOf$8 {
2292
2292
  /** Paging options to limit and skip the number of items. */
2293
2293
  paging?: Paging$8;
2294
2294
  /** 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`. */
2295
- cursorPaging?: CursorPaging$6;
2295
+ cursorPaging?: CursorPaging$8;
2296
2296
  /** Filter object in the following format: <br/> `"filter" : { "fieldName1": "value1", "fieldName2":{"$operator":"value2"} }`. <br/> <br/> **Example:** <br/> `"filter" : { "eventId": "sd3f-jhds-4fs77", "ticketNumber": {"$startsWith":"478"} }` <br/> <br/> See [supported fields and operators](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort) for more information. */
2297
2297
  filter?: Record<string, any> | null;
2298
2298
  /** Sort object in the following format: <br/> `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]` <br/> <br/> **Example:** <br/> `[{"fieldName":"createdDate","direction":"DESC"}]` <br/> <br/> See [supported fields](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort) for more information. */
2299
- sort?: Sorting$8[];
2299
+ sort?: Sorting$a[];
2300
2300
  /** Currently the only supported fieldset is `guestDetails`. The `WIX_EVENTS.READ_GUESTS_DETAILS` permission is required to access the guest details. <br/> <br/> See [field projection](https://dev.wix.com/api/rest/getting-started/field-projection) for more information. */
2301
2301
  fieldsets?: string[];
2302
2302
  }
@@ -2305,15 +2305,15 @@ interface QueryV2PagingMethodOneOf$8 {
2305
2305
  /** Paging options to limit and skip the number of items. */
2306
2306
  paging?: Paging$8;
2307
2307
  /** 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`. */
2308
- cursorPaging?: CursorPaging$6;
2308
+ cursorPaging?: CursorPaging$8;
2309
2309
  }
2310
- interface Sorting$8 {
2310
+ interface Sorting$a {
2311
2311
  /** Name of the field to sort by. */
2312
2312
  fieldName?: string;
2313
2313
  /** Sort order (ASC/DESC). Defaults to ASC */
2314
- order?: SortOrder$8;
2314
+ order?: SortOrder$a;
2315
2315
  }
2316
- declare enum SortOrder$8 {
2316
+ declare enum SortOrder$a {
2317
2317
  ASC = "ASC",
2318
2318
  DESC = "DESC"
2319
2319
  }
@@ -2323,7 +2323,7 @@ interface Paging$8 {
2323
2323
  /** Number of items to skip in the current sort order. */
2324
2324
  offset?: number | null;
2325
2325
  }
2326
- interface CursorPaging$6 {
2326
+ interface CursorPaging$8 {
2327
2327
  /** Number of items to load per page. */
2328
2328
  limit?: number | null;
2329
2329
  /**
@@ -2351,9 +2351,9 @@ interface PagingMetadataV2$8 {
2351
2351
  /** Flag that indicates the server failed to calculate the `total` field. */
2352
2352
  tooManyToCount?: boolean | null;
2353
2353
  /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
2354
- cursors?: Cursors$8;
2354
+ cursors?: Cursors$a;
2355
2355
  }
2356
- interface Cursors$8 {
2356
+ interface Cursors$a {
2357
2357
  /** Cursor pointing to next page in the list of results. */
2358
2358
  next?: string | null;
2359
2359
  /** Cursor pointing to previous page in the list of results. */
@@ -2408,7 +2408,7 @@ interface AccessStaffMemberResponseNonNullableFields {
2408
2408
  staffMember?: StaffMemberNonNullableFields;
2409
2409
  }
2410
2410
 
2411
- type __PublicMethodMetaInfo$9<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
2411
+ type __PublicMethodMetaInfo$a<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
2412
2412
  getUrl: (context: any) => string;
2413
2413
  httpMethod: K;
2414
2414
  path: string;
@@ -2418,29 +2418,29 @@ type __PublicMethodMetaInfo$9<K = string, M = unknown, T = unknown, S = unknown,
2418
2418
  __responseType: Q;
2419
2419
  __originalResponseType: R;
2420
2420
  };
2421
- declare function createStaffMember(): __PublicMethodMetaInfo$9<'POST', {}, CreateStaffMemberRequest, CreateStaffMemberRequest$1, CreateStaffMemberResponse & CreateStaffMemberResponseNonNullableFields, CreateStaffMemberResponse$1 & CreateStaffMemberResponseNonNullableFields$1>;
2422
- declare function getStaffMember(): __PublicMethodMetaInfo$9<'GET', {
2421
+ declare function createStaffMember(): __PublicMethodMetaInfo$a<'POST', {}, CreateStaffMemberRequest, CreateStaffMemberRequest$1, CreateStaffMemberResponse & CreateStaffMemberResponseNonNullableFields, CreateStaffMemberResponse$1 & CreateStaffMemberResponseNonNullableFields$1>;
2422
+ declare function getStaffMember(): __PublicMethodMetaInfo$a<'GET', {
2423
2423
  staffMemberId: string;
2424
2424
  }, GetStaffMemberRequest, GetStaffMemberRequest$1, GetStaffMemberResponse & GetStaffMemberResponseNonNullableFields, GetStaffMemberResponse$1 & GetStaffMemberResponseNonNullableFields$1>;
2425
- declare function updateStaffMember(): __PublicMethodMetaInfo$9<'PATCH', {
2425
+ declare function updateStaffMember(): __PublicMethodMetaInfo$a<'PATCH', {
2426
2426
  staffMemberId: string;
2427
2427
  }, UpdateStaffMemberRequest, UpdateStaffMemberRequest$1, UpdateStaffMemberResponse & UpdateStaffMemberResponseNonNullableFields, UpdateStaffMemberResponse$1 & UpdateStaffMemberResponseNonNullableFields$1>;
2428
- declare function deleteStaffMember(): __PublicMethodMetaInfo$9<'DELETE', {
2428
+ declare function deleteStaffMember(): __PublicMethodMetaInfo$a<'DELETE', {
2429
2429
  staffMemberId: string;
2430
2430
  }, DeleteStaffMemberRequest, DeleteStaffMemberRequest$1, DeleteStaffMemberResponse, DeleteStaffMemberResponse$1>;
2431
- declare function queryStaffMembers(): __PublicMethodMetaInfo$9<'POST', {}, QueryStaffMembersRequest, QueryStaffMembersRequest$1, QueryStaffMembersResponse & QueryStaffMembersResponseNonNullableFields, QueryStaffMembersResponse$1 & QueryStaffMembersResponseNonNullableFields$1>;
2432
- declare function joinStaffMember(): __PublicMethodMetaInfo$9<'POST', {}, JoinStaffMemberRequest, JoinStaffMemberRequest$1, JoinStaffMemberResponse & JoinStaffMemberResponseNonNullableFields, JoinStaffMemberResponse$1 & JoinStaffMemberResponseNonNullableFields$1>;
2433
- declare function accessStaffMember(): __PublicMethodMetaInfo$9<'POST', {}, AccessStaffMemberRequest, AccessStaffMemberRequest$1, AccessStaffMemberResponse & AccessStaffMemberResponseNonNullableFields, AccessStaffMemberResponse$1 & AccessStaffMemberResponseNonNullableFields$1>;
2431
+ declare function queryStaffMembers(): __PublicMethodMetaInfo$a<'POST', {}, QueryStaffMembersRequest, QueryStaffMembersRequest$1, QueryStaffMembersResponse & QueryStaffMembersResponseNonNullableFields, QueryStaffMembersResponse$1 & QueryStaffMembersResponseNonNullableFields$1>;
2432
+ declare function joinStaffMember(): __PublicMethodMetaInfo$a<'POST', {}, JoinStaffMemberRequest, JoinStaffMemberRequest$1, JoinStaffMemberResponse & JoinStaffMemberResponseNonNullableFields, JoinStaffMemberResponse$1 & JoinStaffMemberResponseNonNullableFields$1>;
2433
+ declare function accessStaffMember(): __PublicMethodMetaInfo$a<'POST', {}, AccessStaffMemberRequest, AccessStaffMemberRequest$1, AccessStaffMemberResponse & AccessStaffMemberResponseNonNullableFields, AccessStaffMemberResponse$1 & AccessStaffMemberResponseNonNullableFields$1>;
2434
2434
 
2435
- declare const meta$9_accessStaffMember: typeof accessStaffMember;
2436
- declare const meta$9_createStaffMember: typeof createStaffMember;
2437
- declare const meta$9_deleteStaffMember: typeof deleteStaffMember;
2438
- declare const meta$9_getStaffMember: typeof getStaffMember;
2439
- declare const meta$9_joinStaffMember: typeof joinStaffMember;
2440
- declare const meta$9_queryStaffMembers: typeof queryStaffMembers;
2441
- declare const meta$9_updateStaffMember: typeof updateStaffMember;
2442
- declare namespace meta$9 {
2443
- export { type __PublicMethodMetaInfo$9 as __PublicMethodMetaInfo, meta$9_accessStaffMember as accessStaffMember, meta$9_createStaffMember as createStaffMember, meta$9_deleteStaffMember as deleteStaffMember, meta$9_getStaffMember as getStaffMember, meta$9_joinStaffMember as joinStaffMember, meta$9_queryStaffMembers as queryStaffMembers, meta$9_updateStaffMember as updateStaffMember };
2435
+ declare const meta$a_accessStaffMember: typeof accessStaffMember;
2436
+ declare const meta$a_createStaffMember: typeof createStaffMember;
2437
+ declare const meta$a_deleteStaffMember: typeof deleteStaffMember;
2438
+ declare const meta$a_getStaffMember: typeof getStaffMember;
2439
+ declare const meta$a_joinStaffMember: typeof joinStaffMember;
2440
+ declare const meta$a_queryStaffMembers: typeof queryStaffMembers;
2441
+ declare const meta$a_updateStaffMember: typeof updateStaffMember;
2442
+ declare namespace meta$a {
2443
+ export { type __PublicMethodMetaInfo$a as __PublicMethodMetaInfo, meta$a_accessStaffMember as accessStaffMember, meta$a_createStaffMember as createStaffMember, meta$a_deleteStaffMember as deleteStaffMember, meta$a_getStaffMember as getStaffMember, meta$a_joinStaffMember as joinStaffMember, meta$a_queryStaffMembers as queryStaffMembers, meta$a_updateStaffMember as updateStaffMember };
2444
2444
  }
2445
2445
 
2446
2446
  interface Category$1 {
@@ -2578,7 +2578,7 @@ interface QueryV2$7 extends QueryV2PagingMethodOneOf$7 {
2578
2578
  * Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]
2579
2579
  * See [supported fields](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort#wix-events_wix-events_filter-and-sort_list-query-events).
2580
2580
  */
2581
- sort?: Sorting$7[];
2581
+ sort?: Sorting$9[];
2582
2582
  }
2583
2583
  /** @oneof */
2584
2584
  interface QueryV2PagingMethodOneOf$7 {
@@ -2588,13 +2588,13 @@ interface QueryV2PagingMethodOneOf$7 {
2588
2588
  */
2589
2589
  paging?: Paging$7;
2590
2590
  }
2591
- interface Sorting$7 {
2591
+ interface Sorting$9 {
2592
2592
  /** Name of the field to sort by */
2593
2593
  fieldName?: string;
2594
2594
  /** Sort order (ASC/DESC). Defaults to ASC */
2595
- order?: SortOrder$7;
2595
+ order?: SortOrder$9;
2596
2596
  }
2597
- declare enum SortOrder$7 {
2597
+ declare enum SortOrder$9 {
2598
2598
  ASC = "ASC",
2599
2599
  DESC = "DESC"
2600
2600
  }
@@ -2624,9 +2624,9 @@ interface PagingMetadataV2$7 {
2624
2624
  /** Flag that indicates the server failed to calculate the `total` field. */
2625
2625
  tooManyToCount?: boolean | null;
2626
2626
  /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
2627
- cursors?: Cursors$7;
2627
+ cursors?: Cursors$9;
2628
2628
  }
2629
- interface Cursors$7 {
2629
+ interface Cursors$9 {
2630
2630
  /** Cursor string pointing to the next page in the list of results. */
2631
2631
  next?: string | null;
2632
2632
  /** Cursor pointing to the previous page in the list of results. */
@@ -2897,7 +2897,7 @@ interface QueryV2$6 extends QueryV2PagingMethodOneOf$6 {
2897
2897
  * Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]
2898
2898
  * See [supported fields](https://dev.wix.com/api/rest/wix-events/wix-events/filter-and-sort#wix-events_wix-events_filter-and-sort_list-query-events).
2899
2899
  */
2900
- sort?: Sorting$6[];
2900
+ sort?: Sorting$8[];
2901
2901
  }
2902
2902
  /** @oneof */
2903
2903
  interface QueryV2PagingMethodOneOf$6 {
@@ -2907,13 +2907,13 @@ interface QueryV2PagingMethodOneOf$6 {
2907
2907
  */
2908
2908
  paging?: Paging$6;
2909
2909
  }
2910
- interface Sorting$6 {
2910
+ interface Sorting$8 {
2911
2911
  /** Name of the field to sort by */
2912
2912
  fieldName?: string;
2913
2913
  /** Sort order (ASC/DESC). Defaults to ASC */
2914
- order?: SortOrder$6;
2914
+ order?: SortOrder$8;
2915
2915
  }
2916
- declare enum SortOrder$6 {
2916
+ declare enum SortOrder$8 {
2917
2917
  ASC = "ASC",
2918
2918
  DESC = "DESC"
2919
2919
  }
@@ -2943,9 +2943,9 @@ interface PagingMetadataV2$6 {
2943
2943
  /** Flag that indicates the server failed to calculate the `total` field. */
2944
2944
  tooManyToCount?: boolean | null;
2945
2945
  /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
2946
- cursors?: Cursors$6;
2946
+ cursors?: Cursors$8;
2947
2947
  }
2948
- interface Cursors$6 {
2948
+ interface Cursors$8 {
2949
2949
  /** Cursor string pointing to the next page in the list of results. */
2950
2950
  next?: string | null;
2951
2951
  /** Cursor pointing to the previous page in the list of results. */
@@ -3090,7 +3090,7 @@ interface ListEventCategoriesResponseNonNullableFields {
3090
3090
  categories: CategoryNonNullableFields[];
3091
3091
  }
3092
3092
 
3093
- type __PublicMethodMetaInfo$8<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
3093
+ type __PublicMethodMetaInfo$9<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
3094
3094
  getUrl: (context: any) => string;
3095
3095
  httpMethod: K;
3096
3096
  path: string;
@@ -3100,47 +3100,47 @@ type __PublicMethodMetaInfo$8<K = string, M = unknown, T = unknown, S = unknown,
3100
3100
  __responseType: Q;
3101
3101
  __originalResponseType: R;
3102
3102
  };
3103
- declare function createCategory(): __PublicMethodMetaInfo$8<'POST', {}, CreateCategoryRequest, CreateCategoryRequest$1, CreateCategoryResponse & CreateCategoryResponseNonNullableFields, CreateCategoryResponse$1 & CreateCategoryResponseNonNullableFields$1>;
3104
- declare function bulkCreateCategory(): __PublicMethodMetaInfo$8<'POST', {}, BulkCreateCategoryRequest, BulkCreateCategoryRequest$1, BulkCreateCategoryResponse & BulkCreateCategoryResponseNonNullableFields, BulkCreateCategoryResponse$1 & BulkCreateCategoryResponseNonNullableFields$1>;
3105
- declare function updateCategory(): __PublicMethodMetaInfo$8<'PATCH', {
3103
+ declare function createCategory(): __PublicMethodMetaInfo$9<'POST', {}, CreateCategoryRequest, CreateCategoryRequest$1, CreateCategoryResponse & CreateCategoryResponseNonNullableFields, CreateCategoryResponse$1 & CreateCategoryResponseNonNullableFields$1>;
3104
+ declare function bulkCreateCategory(): __PublicMethodMetaInfo$9<'POST', {}, BulkCreateCategoryRequest, BulkCreateCategoryRequest$1, BulkCreateCategoryResponse & BulkCreateCategoryResponseNonNullableFields, BulkCreateCategoryResponse$1 & BulkCreateCategoryResponseNonNullableFields$1>;
3105
+ declare function updateCategory(): __PublicMethodMetaInfo$9<'PATCH', {
3106
3106
  categoryId: string;
3107
3107
  }, UpdateCategoryRequest, UpdateCategoryRequest$1, UpdateCategoryResponse & UpdateCategoryResponseNonNullableFields, UpdateCategoryResponse$1 & UpdateCategoryResponseNonNullableFields$1>;
3108
- declare function deleteCategory(): __PublicMethodMetaInfo$8<'DELETE', {
3108
+ declare function deleteCategory(): __PublicMethodMetaInfo$9<'DELETE', {
3109
3109
  categoryId: string;
3110
3110
  }, DeleteCategoryRequest, DeleteCategoryRequest$1, DeleteCategoryResponse, DeleteCategoryResponse$1>;
3111
- declare function queryCategories(): __PublicMethodMetaInfo$8<'POST', {}, QueryCategoriesRequest, QueryCategoriesRequest$1, QueryCategoriesResponse & QueryCategoriesResponseNonNullableFields, QueryCategoriesResponse$1 & QueryCategoriesResponseNonNullableFields$1>;
3112
- declare function assignEvents(): __PublicMethodMetaInfo$8<'POST', {
3111
+ declare function queryCategories(): __PublicMethodMetaInfo$9<'POST', {}, QueryCategoriesRequest, QueryCategoriesRequest$1, QueryCategoriesResponse & QueryCategoriesResponseNonNullableFields, QueryCategoriesResponse$1 & QueryCategoriesResponseNonNullableFields$1>;
3112
+ declare function assignEvents(): __PublicMethodMetaInfo$9<'POST', {
3113
3113
  categoryId: string;
3114
3114
  }, AssignEventsRequest, AssignEventsRequest$1, AssignEventsResponse, AssignEventsResponse$1>;
3115
- declare function bulkAssignEvents(): __PublicMethodMetaInfo$8<'POST', {}, BulkAssignEventsRequest, BulkAssignEventsRequest$1, BulkAssignEventsResponse & BulkAssignEventsResponseNonNullableFields, BulkAssignEventsResponse$1 & BulkAssignEventsResponseNonNullableFields$1>;
3116
- declare function bulkAssignEventsAsync(): __PublicMethodMetaInfo$8<'POST', {}, BulkAssignEventsAsyncRequest, BulkAssignEventsAsyncRequest$1, BulkAssignEventsAsyncResponse, BulkAssignEventsAsyncResponse$1>;
3117
- declare function unassignEvents(): __PublicMethodMetaInfo$8<'DELETE', {
3115
+ declare function bulkAssignEvents(): __PublicMethodMetaInfo$9<'POST', {}, BulkAssignEventsRequest, BulkAssignEventsRequest$1, BulkAssignEventsResponse & BulkAssignEventsResponseNonNullableFields, BulkAssignEventsResponse$1 & BulkAssignEventsResponseNonNullableFields$1>;
3116
+ declare function bulkAssignEventsAsync(): __PublicMethodMetaInfo$9<'POST', {}, BulkAssignEventsAsyncRequest, BulkAssignEventsAsyncRequest$1, BulkAssignEventsAsyncResponse, BulkAssignEventsAsyncResponse$1>;
3117
+ declare function unassignEvents(): __PublicMethodMetaInfo$9<'DELETE', {
3118
3118
  categoryId: string;
3119
3119
  }, UnassignEventsRequest, UnassignEventsRequest$1, UnassignEventsResponse, UnassignEventsResponse$1>;
3120
- declare function bulkUnassignEvents(): __PublicMethodMetaInfo$8<'DELETE', {}, BulkUnassignEventsRequest, BulkUnassignEventsRequest$1, BulkUnassignEventsResponse & BulkUnassignEventsResponseNonNullableFields, BulkUnassignEventsResponse$1 & BulkUnassignEventsResponseNonNullableFields$1>;
3121
- declare function bulkUnassignEventsAsync(): __PublicMethodMetaInfo$8<'POST', {}, BulkUnassignEventsAsyncRequest, BulkUnassignEventsAsyncRequest$1, BulkUnassignEventsAsyncResponse, BulkUnassignEventsAsyncResponse$1>;
3122
- declare function listEventCategories(): __PublicMethodMetaInfo$8<'GET', {
3120
+ declare function bulkUnassignEvents(): __PublicMethodMetaInfo$9<'DELETE', {}, BulkUnassignEventsRequest, BulkUnassignEventsRequest$1, BulkUnassignEventsResponse & BulkUnassignEventsResponseNonNullableFields, BulkUnassignEventsResponse$1 & BulkUnassignEventsResponseNonNullableFields$1>;
3121
+ declare function bulkUnassignEventsAsync(): __PublicMethodMetaInfo$9<'POST', {}, BulkUnassignEventsAsyncRequest, BulkUnassignEventsAsyncRequest$1, BulkUnassignEventsAsyncResponse, BulkUnassignEventsAsyncResponse$1>;
3122
+ declare function listEventCategories(): __PublicMethodMetaInfo$9<'GET', {
3123
3123
  eventId: string;
3124
3124
  }, ListEventCategoriesRequest, ListEventCategoriesRequest$1, ListEventCategoriesResponse & ListEventCategoriesResponseNonNullableFields, ListEventCategoriesResponse$1 & ListEventCategoriesResponseNonNullableFields$1>;
3125
- declare function reorderCategoryEvents(): __PublicMethodMetaInfo$8<'POST', {
3125
+ declare function reorderCategoryEvents(): __PublicMethodMetaInfo$9<'POST', {
3126
3126
  categoryId: string;
3127
3127
  }, ReorderCategoryEventsRequest, ReorderCategoryEventsRequest$1, ReorderCategoryEventsResponse, ReorderCategoryEventsResponse$1>;
3128
3128
 
3129
- declare const meta$8_assignEvents: typeof assignEvents;
3130
- declare const meta$8_bulkAssignEvents: typeof bulkAssignEvents;
3131
- declare const meta$8_bulkAssignEventsAsync: typeof bulkAssignEventsAsync;
3132
- declare const meta$8_bulkCreateCategory: typeof bulkCreateCategory;
3133
- declare const meta$8_bulkUnassignEvents: typeof bulkUnassignEvents;
3134
- declare const meta$8_bulkUnassignEventsAsync: typeof bulkUnassignEventsAsync;
3135
- declare const meta$8_createCategory: typeof createCategory;
3136
- declare const meta$8_deleteCategory: typeof deleteCategory;
3137
- declare const meta$8_listEventCategories: typeof listEventCategories;
3138
- declare const meta$8_queryCategories: typeof queryCategories;
3139
- declare const meta$8_reorderCategoryEvents: typeof reorderCategoryEvents;
3140
- declare const meta$8_unassignEvents: typeof unassignEvents;
3141
- declare const meta$8_updateCategory: typeof updateCategory;
3142
- declare namespace meta$8 {
3143
- export { type __PublicMethodMetaInfo$8 as __PublicMethodMetaInfo, meta$8_assignEvents as assignEvents, meta$8_bulkAssignEvents as bulkAssignEvents, meta$8_bulkAssignEventsAsync as bulkAssignEventsAsync, meta$8_bulkCreateCategory as bulkCreateCategory, meta$8_bulkUnassignEvents as bulkUnassignEvents, meta$8_bulkUnassignEventsAsync as bulkUnassignEventsAsync, meta$8_createCategory as createCategory, meta$8_deleteCategory as deleteCategory, meta$8_listEventCategories as listEventCategories, meta$8_queryCategories as queryCategories, meta$8_reorderCategoryEvents as reorderCategoryEvents, meta$8_unassignEvents as unassignEvents, meta$8_updateCategory as updateCategory };
3129
+ declare const meta$9_assignEvents: typeof assignEvents;
3130
+ declare const meta$9_bulkAssignEvents: typeof bulkAssignEvents;
3131
+ declare const meta$9_bulkAssignEventsAsync: typeof bulkAssignEventsAsync;
3132
+ declare const meta$9_bulkCreateCategory: typeof bulkCreateCategory;
3133
+ declare const meta$9_bulkUnassignEvents: typeof bulkUnassignEvents;
3134
+ declare const meta$9_bulkUnassignEventsAsync: typeof bulkUnassignEventsAsync;
3135
+ declare const meta$9_createCategory: typeof createCategory;
3136
+ declare const meta$9_deleteCategory: typeof deleteCategory;
3137
+ declare const meta$9_listEventCategories: typeof listEventCategories;
3138
+ declare const meta$9_queryCategories: typeof queryCategories;
3139
+ declare const meta$9_reorderCategoryEvents: typeof reorderCategoryEvents;
3140
+ declare const meta$9_unassignEvents: typeof unassignEvents;
3141
+ declare const meta$9_updateCategory: typeof updateCategory;
3142
+ declare namespace meta$9 {
3143
+ export { type __PublicMethodMetaInfo$9 as __PublicMethodMetaInfo, meta$9_assignEvents as assignEvents, meta$9_bulkAssignEvents as bulkAssignEvents, meta$9_bulkAssignEventsAsync as bulkAssignEventsAsync, meta$9_bulkCreateCategory as bulkCreateCategory, meta$9_bulkUnassignEvents as bulkUnassignEvents, meta$9_bulkUnassignEventsAsync as bulkUnassignEventsAsync, meta$9_createCategory as createCategory, meta$9_deleteCategory as deleteCategory, meta$9_listEventCategories as listEventCategories, meta$9_queryCategories as queryCategories, meta$9_reorderCategoryEvents as reorderCategoryEvents, meta$9_unassignEvents as unassignEvents, meta$9_updateCategory as updateCategory };
3144
3144
  }
3145
3145
 
3146
3146
  /**
@@ -4346,7 +4346,7 @@ interface PublishDraftResponseNonNullableFields {
4346
4346
  form?: FormNonNullableFields$2;
4347
4347
  }
4348
4348
 
4349
- type __PublicMethodMetaInfo$7<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
4349
+ type __PublicMethodMetaInfo$8<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
4350
4350
  getUrl: (context: any) => string;
4351
4351
  httpMethod: K;
4352
4352
  path: string;
@@ -4356,39 +4356,39 @@ type __PublicMethodMetaInfo$7<K = string, M = unknown, T = unknown, S = unknown,
4356
4356
  __responseType: Q;
4357
4357
  __originalResponseType: R;
4358
4358
  };
4359
- declare function getForm(): __PublicMethodMetaInfo$7<'GET', {
4359
+ declare function getForm(): __PublicMethodMetaInfo$8<'GET', {
4360
4360
  eventId: string;
4361
4361
  }, GetFormRequest, GetFormRequest$1, GetFormResponse & GetFormResponseNonNullableFields, GetFormResponse$1 & GetFormResponseNonNullableFields$1>;
4362
- declare function addControl(): __PublicMethodMetaInfo$7<'POST', {
4362
+ declare function addControl(): __PublicMethodMetaInfo$8<'POST', {
4363
4363
  eventId: string;
4364
4364
  }, AddControlRequest, AddControlRequest$1, AddControlResponse & AddControlResponseNonNullableFields, AddControlResponse$1 & AddControlResponseNonNullableFields$1>;
4365
- declare function updateControl(): __PublicMethodMetaInfo$7<'PUT', {
4365
+ declare function updateControl(): __PublicMethodMetaInfo$8<'PUT', {
4366
4366
  eventId: string;
4367
4367
  id: string;
4368
4368
  }, UpdateControlRequest, UpdateControlRequest$1, UpdateControlResponse & UpdateControlResponseNonNullableFields, UpdateControlResponse$1 & UpdateControlResponseNonNullableFields$1>;
4369
- declare function deleteControl(): __PublicMethodMetaInfo$7<'DELETE', {
4369
+ declare function deleteControl(): __PublicMethodMetaInfo$8<'DELETE', {
4370
4370
  eventId: string;
4371
4371
  id: string;
4372
4372
  }, DeleteControlRequest, DeleteControlRequest$1, DeleteControlResponse & DeleteControlResponseNonNullableFields, DeleteControlResponse$1 & DeleteControlResponseNonNullableFields$1>;
4373
- declare function updateMessages(): __PublicMethodMetaInfo$7<'PATCH', {
4373
+ declare function updateMessages(): __PublicMethodMetaInfo$8<'PATCH', {
4374
4374
  eventId: string;
4375
4375
  }, UpdateMessagesRequest, UpdateMessagesRequest$1, UpdateMessagesResponse & UpdateMessagesResponseNonNullableFields, UpdateMessagesResponse$1 & UpdateMessagesResponseNonNullableFields$1>;
4376
- declare function publishDraft(): __PublicMethodMetaInfo$7<'POST', {
4376
+ declare function publishDraft(): __PublicMethodMetaInfo$8<'POST', {
4377
4377
  eventId: string;
4378
4378
  }, PublishDraftRequest, PublishDraftRequest$1, PublishDraftResponse & PublishDraftResponseNonNullableFields, PublishDraftResponse$1 & PublishDraftResponseNonNullableFields$1>;
4379
- declare function discardDraft(): __PublicMethodMetaInfo$7<'DELETE', {
4379
+ declare function discardDraft(): __PublicMethodMetaInfo$8<'DELETE', {
4380
4380
  eventId: string;
4381
4381
  }, DiscardDraftRequest, DiscardDraftRequest$1, DiscardDraftResponse, DiscardDraftResponse$1>;
4382
4382
 
4383
- declare const meta$7_addControl: typeof addControl;
4384
- declare const meta$7_deleteControl: typeof deleteControl;
4385
- declare const meta$7_discardDraft: typeof discardDraft;
4386
- declare const meta$7_getForm: typeof getForm;
4387
- declare const meta$7_publishDraft: typeof publishDraft;
4388
- declare const meta$7_updateControl: typeof updateControl;
4389
- declare const meta$7_updateMessages: typeof updateMessages;
4390
- declare namespace meta$7 {
4391
- export { type __PublicMethodMetaInfo$7 as __PublicMethodMetaInfo, meta$7_addControl as addControl, meta$7_deleteControl as deleteControl, meta$7_discardDraft as discardDraft, meta$7_getForm as getForm, meta$7_publishDraft as publishDraft, meta$7_updateControl as updateControl, meta$7_updateMessages as updateMessages };
4383
+ declare const meta$8_addControl: typeof addControl;
4384
+ declare const meta$8_deleteControl: typeof deleteControl;
4385
+ declare const meta$8_discardDraft: typeof discardDraft;
4386
+ declare const meta$8_getForm: typeof getForm;
4387
+ declare const meta$8_publishDraft: typeof publishDraft;
4388
+ declare const meta$8_updateControl: typeof updateControl;
4389
+ declare const meta$8_updateMessages: typeof updateMessages;
4390
+ declare namespace meta$8 {
4391
+ export { type __PublicMethodMetaInfo$8 as __PublicMethodMetaInfo, meta$8_addControl as addControl, meta$8_deleteControl as deleteControl, meta$8_discardDraft as discardDraft, meta$8_getForm as getForm, meta$8_publishDraft as publishDraft, meta$8_updateControl as updateControl, meta$8_updateMessages as updateMessages };
4392
4392
  }
4393
4393
 
4394
4394
  interface Order$1 {
@@ -4638,7 +4638,7 @@ interface TicketDetails$1 {
4638
4638
  pricingOptionName?: string | null;
4639
4639
  }
4640
4640
  interface Invoice$1 {
4641
- items?: Item$1[];
4641
+ items?: Item$3[];
4642
4642
  /**
4643
4643
  * Total cart amount.
4644
4644
  * @deprecated
@@ -4669,7 +4669,7 @@ interface Invoice$1 {
4669
4669
  /** URL to invoice preview. Returned only if order is paid. */
4670
4670
  previewUrl?: string | null;
4671
4671
  }
4672
- interface Item$1 {
4672
+ interface Item$3 {
4673
4673
  /** Unique line item ID. */
4674
4674
  id?: string;
4675
4675
  /** Line item quantity. */
@@ -5133,7 +5133,7 @@ interface TicketPricing$3 extends TicketPricingPriceOneOf$3 {
5133
5133
  * Ticket pricing type.
5134
5134
  * @readonly
5135
5135
  */
5136
- pricingType?: Type$7;
5136
+ pricingType?: Type$9;
5137
5137
  }
5138
5138
  /** @oneof */
5139
5139
  interface TicketPricingPriceOneOf$3 {
@@ -5156,7 +5156,7 @@ interface PricingOption$3 {
5156
5156
  /** Ticket pricing option price. */
5157
5157
  price?: Money$7;
5158
5158
  }
5159
- declare enum Type$7 {
5159
+ declare enum Type$9 {
5160
5160
  STANDARD = "STANDARD",
5161
5161
  DONATION = "DONATION"
5162
5162
  }
@@ -5461,7 +5461,7 @@ interface FeeNonNullableFields$1 {
5461
5461
  rate: string;
5462
5462
  amount?: MoneyNonNullableFields$7;
5463
5463
  }
5464
- interface ItemNonNullableFields$1 {
5464
+ interface ItemNonNullableFields$3 {
5465
5465
  id: string;
5466
5466
  quantity: number;
5467
5467
  name: string;
@@ -5472,7 +5472,7 @@ interface ItemNonNullableFields$1 {
5472
5472
  fees: FeeNonNullableFields$1[];
5473
5473
  }
5474
5474
  interface InvoiceNonNullableFields$1 {
5475
- items: ItemNonNullableFields$1[];
5475
+ items: ItemNonNullableFields$3[];
5476
5476
  total?: MoneyNonNullableFields$7;
5477
5477
  discount?: DiscountNonNullableFields$1;
5478
5478
  tax?: TaxNonNullableFields$1;
@@ -5581,7 +5581,7 @@ interface TicketPricingNonNullableFields$3 {
5581
5581
  fixedPrice?: MoneyNonNullableFields$7;
5582
5582
  minPrice?: MoneyNonNullableFields$7;
5583
5583
  pricingOptions?: PricingOptionsNonNullableFields$5;
5584
- pricingType: Type$7;
5584
+ pricingType: Type$9;
5585
5585
  }
5586
5586
  interface TicketDefinitionNonNullableFields$5 {
5587
5587
  id: string;
@@ -5887,7 +5887,7 @@ interface TicketDetails {
5887
5887
  }
5888
5888
  interface Invoice {
5889
5889
  /** Items listed in the invoice. */
5890
- items?: Item[];
5890
+ items?: Item$2[];
5891
5891
  /**
5892
5892
  * Total cart amount.
5893
5893
  * @deprecated
@@ -5918,7 +5918,7 @@ interface Invoice {
5918
5918
  /** Invoice preview URL. This value is only returned when the order is paid. */
5919
5919
  previewUrl?: string | null;
5920
5920
  }
5921
- interface Item {
5921
+ interface Item$2 {
5922
5922
  /** Unique line item ID. */
5923
5923
  _id?: string;
5924
5924
  /** Line item quantity. */
@@ -6403,7 +6403,7 @@ interface TicketPricing$2 extends TicketPricingPriceOneOf$2 {
6403
6403
  * Ticket pricing type.
6404
6404
  * @readonly
6405
6405
  */
6406
- pricingType?: Type$6;
6406
+ pricingType?: Type$8;
6407
6407
  }
6408
6408
  /** @oneof */
6409
6409
  interface TicketPricingPriceOneOf$2 {
@@ -6426,7 +6426,7 @@ interface PricingOption$2 {
6426
6426
  /** Ticket pricing option price. */
6427
6427
  price?: Money$6;
6428
6428
  }
6429
- declare enum Type$6 {
6429
+ declare enum Type$8 {
6430
6430
  STANDARD = "STANDARD",
6431
6431
  DONATION = "DONATION"
6432
6432
  }
@@ -6734,7 +6734,7 @@ interface FeeNonNullableFields {
6734
6734
  rate: string;
6735
6735
  amount?: MoneyNonNullableFields$6;
6736
6736
  }
6737
- interface ItemNonNullableFields {
6737
+ interface ItemNonNullableFields$2 {
6738
6738
  _id: string;
6739
6739
  quantity: number;
6740
6740
  name: string;
@@ -6745,7 +6745,7 @@ interface ItemNonNullableFields {
6745
6745
  fees: FeeNonNullableFields[];
6746
6746
  }
6747
6747
  interface InvoiceNonNullableFields {
6748
- items: ItemNonNullableFields[];
6748
+ items: ItemNonNullableFields$2[];
6749
6749
  total?: MoneyNonNullableFields$6;
6750
6750
  discount?: DiscountNonNullableFields;
6751
6751
  tax?: TaxNonNullableFields;
@@ -6854,7 +6854,7 @@ interface TicketPricingNonNullableFields$2 {
6854
6854
  fixedPrice?: MoneyNonNullableFields$6;
6855
6855
  minPrice?: MoneyNonNullableFields$6;
6856
6856
  pricingOptions?: PricingOptionsNonNullableFields$4;
6857
- pricingType: Type$6;
6857
+ pricingType: Type$8;
6858
6858
  }
6859
6859
  interface TicketDefinitionNonNullableFields$4 {
6860
6860
  _id: string;
@@ -6915,7 +6915,7 @@ interface PosCheckoutResponseNonNullableFields {
6915
6915
  reservations: TicketReservationNonNullableFields[];
6916
6916
  }
6917
6917
 
6918
- type __PublicMethodMetaInfo$6<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
6918
+ type __PublicMethodMetaInfo$7<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
6919
6919
  getUrl: (context: any) => string;
6920
6920
  httpMethod: K;
6921
6921
  path: string;
@@ -6925,55 +6925,3347 @@ type __PublicMethodMetaInfo$6<K = string, M = unknown, T = unknown, S = unknown,
6925
6925
  __responseType: Q;
6926
6926
  __originalResponseType: R;
6927
6927
  };
6928
- declare function listOrders(): __PublicMethodMetaInfo$6<'GET', {}, ListOrdersRequest, ListOrdersRequest$1, ListOrdersResponse & ListOrdersResponseNonNullableFields, ListOrdersResponse$1 & ListOrdersResponseNonNullableFields$1>;
6929
- declare function getOrder(): __PublicMethodMetaInfo$6<'GET', {
6928
+ declare function listOrders(): __PublicMethodMetaInfo$7<'GET', {}, ListOrdersRequest, ListOrdersRequest$1, ListOrdersResponse & ListOrdersResponseNonNullableFields, ListOrdersResponse$1 & ListOrdersResponseNonNullableFields$1>;
6929
+ declare function getOrder(): __PublicMethodMetaInfo$7<'GET', {
6930
6930
  eventId: string;
6931
6931
  orderNumber: string;
6932
6932
  }, GetOrderRequest, GetOrderRequest$1, GetOrderResponse & GetOrderResponseNonNullableFields, GetOrderResponse$1 & GetOrderResponseNonNullableFields$1>;
6933
- declare function updateOrder(): __PublicMethodMetaInfo$6<'PATCH', {
6933
+ declare function updateOrder(): __PublicMethodMetaInfo$7<'PATCH', {
6934
6934
  eventId: string;
6935
6935
  orderNumber: string;
6936
6936
  }, UpdateOrderRequest, UpdateOrderRequest$1, UpdateOrderResponse & UpdateOrderResponseNonNullableFields, UpdateOrderResponse$1 & UpdateOrderResponseNonNullableFields$1>;
6937
- declare function bulkUpdateOrders(): __PublicMethodMetaInfo$6<'PATCH', {
6937
+ declare function bulkUpdateOrders(): __PublicMethodMetaInfo$7<'PATCH', {
6938
6938
  eventId: string;
6939
6939
  }, BulkUpdateOrdersRequest, BulkUpdateOrdersRequest$1, BulkUpdateOrdersResponse & BulkUpdateOrdersResponseNonNullableFields, BulkUpdateOrdersResponse$1 & BulkUpdateOrdersResponseNonNullableFields$1>;
6940
- declare function confirmOrder(): __PublicMethodMetaInfo$6<'POST', {
6940
+ declare function confirmOrder(): __PublicMethodMetaInfo$7<'POST', {
6941
6941
  eventId: string;
6942
6942
  }, ConfirmOrderRequest, ConfirmOrderRequest$1, ConfirmOrderResponse & ConfirmOrderResponseNonNullableFields, ConfirmOrderResponse$1 & ConfirmOrderResponseNonNullableFields$1>;
6943
- declare function getSummary(): __PublicMethodMetaInfo$6<'GET', {}, GetSummaryRequest, GetSummaryRequest$1, GetSummaryResponse & GetSummaryResponseNonNullableFields, GetSummaryResponse$1 & GetSummaryResponseNonNullableFields$1>;
6944
- declare function getCheckoutOptions(): __PublicMethodMetaInfo$6<'GET', {}, GetCheckoutOptionsRequest, GetCheckoutOptionsRequest$1, GetCheckoutOptionsResponse & GetCheckoutOptionsResponseNonNullableFields, GetCheckoutOptionsResponse$1 & GetCheckoutOptionsResponseNonNullableFields$1>;
6945
- declare function listAvailableTickets(): __PublicMethodMetaInfo$6<'GET', {}, ListAvailableTicketsRequest, ListAvailableTicketsRequest$1, ListAvailableTicketsResponse & ListAvailableTicketsResponseNonNullableFields, ListAvailableTicketsResponse$1 & ListAvailableTicketsResponseNonNullableFields$1>;
6946
- declare function queryAvailableTickets(): __PublicMethodMetaInfo$6<'POST', {}, QueryAvailableTicketsRequest, QueryAvailableTicketsRequest$1, QueryAvailableTicketsResponse & QueryAvailableTicketsResponseNonNullableFields, QueryAvailableTicketsResponse$1 & QueryAvailableTicketsResponseNonNullableFields$1>;
6947
- declare function createReservation(): __PublicMethodMetaInfo$6<'POST', {}, CreateReservationRequest, CreateReservationRequest$1, CreateReservationResponse & CreateReservationResponseNonNullableFields, CreateReservationResponse$1 & CreateReservationResponseNonNullableFields$1>;
6948
- declare function cancelReservation(): __PublicMethodMetaInfo$6<'DELETE', {
6943
+ declare function getSummary(): __PublicMethodMetaInfo$7<'GET', {}, GetSummaryRequest, GetSummaryRequest$1, GetSummaryResponse & GetSummaryResponseNonNullableFields, GetSummaryResponse$1 & GetSummaryResponseNonNullableFields$1>;
6944
+ declare function getCheckoutOptions(): __PublicMethodMetaInfo$7<'GET', {}, GetCheckoutOptionsRequest, GetCheckoutOptionsRequest$1, GetCheckoutOptionsResponse & GetCheckoutOptionsResponseNonNullableFields, GetCheckoutOptionsResponse$1 & GetCheckoutOptionsResponseNonNullableFields$1>;
6945
+ declare function listAvailableTickets(): __PublicMethodMetaInfo$7<'GET', {}, ListAvailableTicketsRequest, ListAvailableTicketsRequest$1, ListAvailableTicketsResponse & ListAvailableTicketsResponseNonNullableFields, ListAvailableTicketsResponse$1 & ListAvailableTicketsResponseNonNullableFields$1>;
6946
+ declare function queryAvailableTickets(): __PublicMethodMetaInfo$7<'POST', {}, QueryAvailableTicketsRequest, QueryAvailableTicketsRequest$1, QueryAvailableTicketsResponse & QueryAvailableTicketsResponseNonNullableFields, QueryAvailableTicketsResponse$1 & QueryAvailableTicketsResponseNonNullableFields$1>;
6947
+ declare function createReservation(): __PublicMethodMetaInfo$7<'POST', {}, CreateReservationRequest, CreateReservationRequest$1, CreateReservationResponse & CreateReservationResponseNonNullableFields, CreateReservationResponse$1 & CreateReservationResponseNonNullableFields$1>;
6948
+ declare function cancelReservation(): __PublicMethodMetaInfo$7<'DELETE', {
6949
6949
  id: string;
6950
6950
  }, CancelReservationRequest, CancelReservationRequest$1, CancelReservationResponse, CancelReservationResponse$1>;
6951
- declare function getInvoice(): __PublicMethodMetaInfo$6<'POST', {
6951
+ declare function getInvoice(): __PublicMethodMetaInfo$7<'POST', {
6952
6952
  reservationId: string;
6953
6953
  }, GetInvoiceRequest, GetInvoiceRequest$1, GetInvoiceResponse & GetInvoiceResponseNonNullableFields, GetInvoiceResponse$1 & GetInvoiceResponseNonNullableFields$1>;
6954
- declare function checkout(): __PublicMethodMetaInfo$6<'POST', {}, CheckoutRequest, CheckoutRequest$1, CheckoutResponse & CheckoutResponseNonNullableFields, CheckoutResponse$1 & CheckoutResponseNonNullableFields$1>;
6955
- declare function updateCheckout(): __PublicMethodMetaInfo$6<'PATCH', {
6954
+ declare function checkout(): __PublicMethodMetaInfo$7<'POST', {}, CheckoutRequest, CheckoutRequest$1, CheckoutResponse & CheckoutResponseNonNullableFields, CheckoutResponse$1 & CheckoutResponseNonNullableFields$1>;
6955
+ declare function updateCheckout(): __PublicMethodMetaInfo$7<'PATCH', {
6956
6956
  orderNumber: string;
6957
6957
  }, UpdateCheckoutRequest, UpdateCheckoutRequest$1, UpdateCheckoutResponse & UpdateCheckoutResponseNonNullableFields, UpdateCheckoutResponse$1 & UpdateCheckoutResponseNonNullableFields$1>;
6958
- declare function posCheckout(): __PublicMethodMetaInfo$6<'POST', {}, PosCheckoutRequest, PosCheckoutRequest$1, PosCheckoutResponse & PosCheckoutResponseNonNullableFields, PosCheckoutResponse$1 & PosCheckoutResponseNonNullableFields$1>;
6958
+ declare function posCheckout(): __PublicMethodMetaInfo$7<'POST', {}, PosCheckoutRequest, PosCheckoutRequest$1, PosCheckoutResponse & PosCheckoutResponseNonNullableFields, PosCheckoutResponse$1 & PosCheckoutResponseNonNullableFields$1>;
6959
+
6960
+ declare const meta$7_bulkUpdateOrders: typeof bulkUpdateOrders;
6961
+ declare const meta$7_cancelReservation: typeof cancelReservation;
6962
+ declare const meta$7_checkout: typeof checkout;
6963
+ declare const meta$7_confirmOrder: typeof confirmOrder;
6964
+ declare const meta$7_createReservation: typeof createReservation;
6965
+ declare const meta$7_getCheckoutOptions: typeof getCheckoutOptions;
6966
+ declare const meta$7_getInvoice: typeof getInvoice;
6967
+ declare const meta$7_getOrder: typeof getOrder;
6968
+ declare const meta$7_getSummary: typeof getSummary;
6969
+ declare const meta$7_listAvailableTickets: typeof listAvailableTickets;
6970
+ declare const meta$7_listOrders: typeof listOrders;
6971
+ declare const meta$7_posCheckout: typeof posCheckout;
6972
+ declare const meta$7_queryAvailableTickets: typeof queryAvailableTickets;
6973
+ declare const meta$7_updateCheckout: typeof updateCheckout;
6974
+ declare const meta$7_updateOrder: typeof updateOrder;
6975
+ declare namespace meta$7 {
6976
+ export { type __PublicMethodMetaInfo$7 as __PublicMethodMetaInfo, meta$7_bulkUpdateOrders as bulkUpdateOrders, meta$7_cancelReservation as cancelReservation, meta$7_checkout as checkout, meta$7_confirmOrder as confirmOrder, meta$7_createReservation as createReservation, meta$7_getCheckoutOptions as getCheckoutOptions, meta$7_getInvoice as getInvoice, meta$7_getOrder as getOrder, meta$7_getSummary as getSummary, meta$7_listAvailableTickets as listAvailableTickets, meta$7_listOrders as listOrders, meta$7_posCheckout as posCheckout, meta$7_queryAvailableTickets as queryAvailableTickets, meta$7_updateCheckout as updateCheckout, meta$7_updateOrder as updateOrder };
6977
+ }
6978
+
6979
+ interface RichContent$1 {
6980
+ /**
6981
+ * Unique identifier of the RichContent entity.
6982
+ * @readonly
6983
+ */
6984
+ id?: string | null;
6985
+ /**
6986
+ * Revision number of the RichContent.
6987
+ * @readonly
6988
+ */
6989
+ revision?: string | null;
6990
+ /**
6991
+ * Date and time the RichContent was created.
6992
+ * @readonly
6993
+ */
6994
+ createdDate?: Date;
6995
+ /**
6996
+ * Date and time the RichContent was last updated.
6997
+ * @readonly
6998
+ */
6999
+ updatedDate?: Date;
7000
+ /** Optional event identifier to which the rich content is associated to. */
7001
+ eventId?: string | null;
7002
+ /** Name of the field to which the rich content is associated to. */
7003
+ fieldName?: string | null;
7004
+ /**
7005
+ * Rich content of the associated entity.
7006
+ * In order to use this field you have to integrate with "Ricos" on frontend side. To learn how to do it visit https://ricos.js.org/.
7007
+ */
7008
+ content?: V1RichContent$1;
7009
+ /** Data Extensions */
7010
+ extendedFields?: ExtendedFields$3;
7011
+ }
7012
+ interface V1RichContent$1 {
7013
+ /** Node objects representing a rich content document. */
7014
+ nodes?: Node$1[];
7015
+ /** Object metadata. */
7016
+ metadata?: Metadata$1;
7017
+ /** Global styling for header, paragraph, block quote, and code block nodes in the object. */
7018
+ documentStyle?: DocumentStyle$1;
7019
+ }
7020
+ interface Node$1 extends NodeDataOneOf$1 {
7021
+ /** Data for a button node. */
7022
+ buttonData?: ButtonData$1;
7023
+ /** Data for a code block node. */
7024
+ codeBlockData?: CodeBlockData$1;
7025
+ /** Data for a divider node. */
7026
+ dividerData?: DividerData$1;
7027
+ /** Data for a file node. */
7028
+ fileData?: FileData$1;
7029
+ /** Data for a gallery node. */
7030
+ galleryData?: GalleryData$1;
7031
+ /** Data for a GIF node. */
7032
+ gifData?: GIFData$1;
7033
+ /** Data for a heading node. */
7034
+ headingData?: HeadingData$1;
7035
+ /** Data for an embedded HTML node. */
7036
+ htmlData?: HTMLData$1;
7037
+ /** Data for an image node. */
7038
+ imageData?: ImageData$1;
7039
+ /** Data for a link preview node. */
7040
+ linkPreviewData?: LinkPreviewData$1;
7041
+ /** Data for a map node. */
7042
+ mapData?: MapData$1;
7043
+ /** Data for a paragraph node. */
7044
+ paragraphData?: ParagraphData$1;
7045
+ /** Data for a poll node. */
7046
+ pollData?: PollData$1;
7047
+ /** Data for a text node. Used to apply decorations to text. */
7048
+ textData?: TextData$1;
7049
+ /** Data for an app embed node. */
7050
+ appEmbedData?: AppEmbedData$1;
7051
+ /** Data for a video node. */
7052
+ videoData?: VideoData$1;
7053
+ /** Data for an oEmbed node. */
7054
+ embedData?: EmbedData$1;
7055
+ /** Data for a collapsible list node. */
7056
+ collapsibleListData?: CollapsibleListData$1;
7057
+ /** Data for a table node. */
7058
+ tableData?: TableData$1;
7059
+ /** Data for a table cell node. */
7060
+ tableCellData?: TableCellData$1;
7061
+ /** Data for a custom external node. */
7062
+ externalData?: Record<string, any> | null;
7063
+ /** Data for an audio node. */
7064
+ audioData?: AudioData$1;
7065
+ /** Data for an ordered list node. */
7066
+ orderedListData?: OrderedListData$1;
7067
+ /** Data for a bulleted list node. */
7068
+ bulletedListData?: BulletedListData$1;
7069
+ /** Data for a block quote node. */
7070
+ blockquoteData?: BlockquoteData$1;
7071
+ /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
7072
+ type?: NodeType$1;
7073
+ /** Node ID. */
7074
+ id?: string;
7075
+ /** A list of child nodes. */
7076
+ nodes?: Node$1[];
7077
+ /** Padding and background color styling for the node. */
7078
+ style?: NodeStyle$1;
7079
+ }
7080
+ /** @oneof */
7081
+ interface NodeDataOneOf$1 {
7082
+ /** Data for a button node. */
7083
+ buttonData?: ButtonData$1;
7084
+ /** Data for a code block node. */
7085
+ codeBlockData?: CodeBlockData$1;
7086
+ /** Data for a divider node. */
7087
+ dividerData?: DividerData$1;
7088
+ /** Data for a file node. */
7089
+ fileData?: FileData$1;
7090
+ /** Data for a gallery node. */
7091
+ galleryData?: GalleryData$1;
7092
+ /** Data for a GIF node. */
7093
+ gifData?: GIFData$1;
7094
+ /** Data for a heading node. */
7095
+ headingData?: HeadingData$1;
7096
+ /** Data for an embedded HTML node. */
7097
+ htmlData?: HTMLData$1;
7098
+ /** Data for an image node. */
7099
+ imageData?: ImageData$1;
7100
+ /** Data for a link preview node. */
7101
+ linkPreviewData?: LinkPreviewData$1;
7102
+ /** Data for a map node. */
7103
+ mapData?: MapData$1;
7104
+ /** Data for a paragraph node. */
7105
+ paragraphData?: ParagraphData$1;
7106
+ /** Data for a poll node. */
7107
+ pollData?: PollData$1;
7108
+ /** Data for a text node. Used to apply decorations to text. */
7109
+ textData?: TextData$1;
7110
+ /** Data for an app embed node. */
7111
+ appEmbedData?: AppEmbedData$1;
7112
+ /** Data for a video node. */
7113
+ videoData?: VideoData$1;
7114
+ /** Data for an oEmbed node. */
7115
+ embedData?: EmbedData$1;
7116
+ /** Data for a collapsible list node. */
7117
+ collapsibleListData?: CollapsibleListData$1;
7118
+ /** Data for a table node. */
7119
+ tableData?: TableData$1;
7120
+ /** Data for a table cell node. */
7121
+ tableCellData?: TableCellData$1;
7122
+ /** Data for a custom external node. */
7123
+ externalData?: Record<string, any> | null;
7124
+ /** Data for an audio node. */
7125
+ audioData?: AudioData$1;
7126
+ /** Data for an ordered list node. */
7127
+ orderedListData?: OrderedListData$1;
7128
+ /** Data for a bulleted list node. */
7129
+ bulletedListData?: BulletedListData$1;
7130
+ /** Data for a block quote node. */
7131
+ blockquoteData?: BlockquoteData$1;
7132
+ }
7133
+ declare enum NodeType$1 {
7134
+ PARAGRAPH = "PARAGRAPH",
7135
+ TEXT = "TEXT",
7136
+ HEADING = "HEADING",
7137
+ BULLETED_LIST = "BULLETED_LIST",
7138
+ ORDERED_LIST = "ORDERED_LIST",
7139
+ LIST_ITEM = "LIST_ITEM",
7140
+ BLOCKQUOTE = "BLOCKQUOTE",
7141
+ CODE_BLOCK = "CODE_BLOCK",
7142
+ VIDEO = "VIDEO",
7143
+ DIVIDER = "DIVIDER",
7144
+ FILE = "FILE",
7145
+ GALLERY = "GALLERY",
7146
+ GIF = "GIF",
7147
+ HTML = "HTML",
7148
+ IMAGE = "IMAGE",
7149
+ LINK_PREVIEW = "LINK_PREVIEW",
7150
+ MAP = "MAP",
7151
+ POLL = "POLL",
7152
+ APP_EMBED = "APP_EMBED",
7153
+ BUTTON = "BUTTON",
7154
+ COLLAPSIBLE_LIST = "COLLAPSIBLE_LIST",
7155
+ TABLE = "TABLE",
7156
+ EMBED = "EMBED",
7157
+ COLLAPSIBLE_ITEM = "COLLAPSIBLE_ITEM",
7158
+ COLLAPSIBLE_ITEM_TITLE = "COLLAPSIBLE_ITEM_TITLE",
7159
+ COLLAPSIBLE_ITEM_BODY = "COLLAPSIBLE_ITEM_BODY",
7160
+ TABLE_CELL = "TABLE_CELL",
7161
+ TABLE_ROW = "TABLE_ROW",
7162
+ EXTERNAL = "EXTERNAL",
7163
+ AUDIO = "AUDIO"
7164
+ }
7165
+ interface NodeStyle$1 {
7166
+ /** The top padding value in pixels. */
7167
+ paddingTop?: string | null;
7168
+ /** The bottom padding value in pixels. */
7169
+ paddingBottom?: string | null;
7170
+ /** The background color as a hexadecimal value. */
7171
+ backgroundColor?: string | null;
7172
+ }
7173
+ interface ButtonData$1 {
7174
+ /** Styling for the button's container. */
7175
+ containerData?: PluginContainerData$1;
7176
+ /** The button type. */
7177
+ type?: Type$7;
7178
+ /** Styling for the button. */
7179
+ styles?: Styles$1;
7180
+ /** The text to display on the button. */
7181
+ text?: string | null;
7182
+ /** Button link details. */
7183
+ link?: Link$1;
7184
+ }
7185
+ interface Border$1 {
7186
+ /** Border width in pixels. */
7187
+ width?: number | null;
7188
+ /** Border radius in pixels. */
7189
+ radius?: number | null;
7190
+ }
7191
+ interface Colors$1 {
7192
+ /** The text color as a hexadecimal value. */
7193
+ text?: string | null;
7194
+ /** The border color as a hexadecimal value. */
7195
+ border?: string | null;
7196
+ /** The background color as a hexadecimal value. */
7197
+ background?: string | null;
7198
+ }
7199
+ interface PluginContainerData$1 {
7200
+ /** The width of the node when it's displayed. */
7201
+ width?: PluginContainerDataWidth$1;
7202
+ /** The node's alignment within its container. */
7203
+ alignment?: PluginContainerDataAlignment$1;
7204
+ /** Spoiler cover settings for the node. */
7205
+ spoiler?: Spoiler$1;
7206
+ /** The height of the node when it's displayed. */
7207
+ height?: Height$1;
7208
+ /** Sets whether text should wrap around this node when it's displayed. If `textWrap` is `false`, the node takes up the width of its container. Defaults to `true` for all node types except 'DIVIVDER' where it defaults to `false`. */
7209
+ textWrap?: boolean | null;
7210
+ }
7211
+ declare enum WidthType$1 {
7212
+ /** Width matches the content width */
7213
+ CONTENT = "CONTENT",
7214
+ /** Small Width */
7215
+ SMALL = "SMALL",
7216
+ /** Width will match the original asset width */
7217
+ ORIGINAL = "ORIGINAL",
7218
+ /** coast-to-coast display */
7219
+ FULL_WIDTH = "FULL_WIDTH"
7220
+ }
7221
+ interface PluginContainerDataWidth$1 extends PluginContainerDataWidthDataOneOf$1 {
7222
+ /**
7223
+ * One of the following predefined width options:
7224
+ * `CONTENT`: The width of the container matches the content width.
7225
+ * `SMALL`: A small width.
7226
+ * `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.
7227
+ * `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.
7228
+ */
7229
+ size?: WidthType$1;
7230
+ /** A custom width value in pixels. */
7231
+ custom?: string | null;
7232
+ }
7233
+ /** @oneof */
7234
+ interface PluginContainerDataWidthDataOneOf$1 {
7235
+ /**
7236
+ * One of the following predefined width options:
7237
+ * `CONTENT`: The width of the container matches the content width.
7238
+ * `SMALL`: A small width.
7239
+ * `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.
7240
+ * `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.
7241
+ */
7242
+ size?: WidthType$1;
7243
+ /** A custom width value in pixels. */
7244
+ custom?: string | null;
7245
+ }
7246
+ declare enum PluginContainerDataAlignment$1 {
7247
+ /** Center Alignment */
7248
+ CENTER = "CENTER",
7249
+ /** Left Alignment */
7250
+ LEFT = "LEFT",
7251
+ /** Right Alignment */
7252
+ RIGHT = "RIGHT"
7253
+ }
7254
+ interface Spoiler$1 {
7255
+ /** Sets whether the spoiler cover is enabled for this node. Defaults to `false`. */
7256
+ enabled?: boolean | null;
7257
+ /** The description displayed on top of the spoiler cover. */
7258
+ description?: string | null;
7259
+ /** The text for the button used to remove the spoiler cover. */
7260
+ buttonText?: string | null;
7261
+ }
7262
+ interface Height$1 {
7263
+ /** A custom height value in pixels. */
7264
+ custom?: string | null;
7265
+ }
7266
+ declare enum Type$7 {
7267
+ /** Regular link button */
7268
+ LINK = "LINK",
7269
+ /** Triggers custom action that is defined in plugin configuration by the consumer */
7270
+ ACTION = "ACTION"
7271
+ }
7272
+ interface Styles$1 {
7273
+ /** Border attributes. */
7274
+ border?: Border$1;
7275
+ /** Color attributes. */
7276
+ colors?: Colors$1;
7277
+ }
7278
+ interface Link$1 extends LinkDataOneOf$1 {
7279
+ /** The absolute URL for the linked document. */
7280
+ url?: string;
7281
+ /** The target node's ID. Used for linking to another node in this object. */
7282
+ anchor?: string;
7283
+ /**
7284
+ * he HTML `target` attribute value for the link. This property defines where the linked document opens as follows:
7285
+ * `SELF` - Default. Opens the linked document in the same frame as the link.
7286
+ * `BLANK` - Opens the linked document in a new browser tab or window.
7287
+ * `PARENT` - Opens the linked document in the link's parent frame.
7288
+ * `TOP` - Opens the linked document in the full body of the link's browser tab or window.
7289
+ */
7290
+ target?: Target$1;
7291
+ /** The HTML `rel` attribute value for the link. This object specifies the relationship between the current document and the linked document. */
7292
+ rel?: Rel$1;
7293
+ /** A serialized object used for a custom or external link panel. */
7294
+ customData?: string | null;
7295
+ }
7296
+ /** @oneof */
7297
+ interface LinkDataOneOf$1 {
7298
+ /** The absolute URL for the linked document. */
7299
+ url?: string;
7300
+ /** The target node's ID. Used for linking to another node in this object. */
7301
+ anchor?: string;
7302
+ }
7303
+ declare enum Target$1 {
7304
+ /** Opens the linked document in the same frame as it was clicked (this is default) */
7305
+ SELF = "SELF",
7306
+ /** Opens the linked document in a new window or tab */
7307
+ BLANK = "BLANK",
7308
+ /** Opens the linked document in the parent frame */
7309
+ PARENT = "PARENT",
7310
+ /** Opens the linked document in the full body of the window */
7311
+ TOP = "TOP"
7312
+ }
7313
+ interface Rel$1 {
7314
+ /** Indicates to search engine crawlers not to follow the link. Defaults to `false`. */
7315
+ nofollow?: boolean | null;
7316
+ /** Indicates to search engine crawlers that the link is a paid placement such as sponsored content or an advertisement. Defaults to `false`. */
7317
+ sponsored?: boolean | null;
7318
+ /** Indicates that this link is user-generated content and isn't necessarily trusted or endorsed by the page’s author. For example, a link in a fourm post. Defaults to `false`. */
7319
+ ugc?: boolean | null;
7320
+ /** Indicates that this link protect referral information from being passed to the target website. */
7321
+ noreferrer?: boolean | null;
7322
+ }
7323
+ interface CodeBlockData$1 {
7324
+ /** Styling for the code block's text. */
7325
+ textStyle?: TextStyle$1;
7326
+ }
7327
+ interface TextStyle$1 {
7328
+ /** Text alignment. Defaults to `AUTO`. */
7329
+ textAlignment?: TextAlignment$1;
7330
+ /** A CSS `line-height` value for the text expressed as a ratio relative to the font size. For example, if the font size is 20px, a `lineHeight` value of `'1.5'`` results in a line height of 30px. */
7331
+ lineHeight?: string | null;
7332
+ }
7333
+ declare enum TextAlignment$1 {
7334
+ /** browser default, eqivalent to `initial` */
7335
+ AUTO = "AUTO",
7336
+ /** Left align */
7337
+ LEFT = "LEFT",
7338
+ /** Right align */
7339
+ RIGHT = "RIGHT",
7340
+ /** Center align */
7341
+ CENTER = "CENTER",
7342
+ /** Text is spaced to line up its left and right edges to the left and right edges of the line box, except for the last line */
7343
+ JUSTIFY = "JUSTIFY"
7344
+ }
7345
+ interface DividerData$1 {
7346
+ /** Styling for the divider's container. */
7347
+ containerData?: PluginContainerData$1;
7348
+ /** Divider line style. */
7349
+ lineStyle?: LineStyle$1;
7350
+ /** Divider width. */
7351
+ width?: Width$1;
7352
+ /** Divider alignment. */
7353
+ alignment?: Alignment$1;
7354
+ }
7355
+ declare enum LineStyle$1 {
7356
+ /** Single Line */
7357
+ SINGLE = "SINGLE",
7358
+ /** Double Line */
7359
+ DOUBLE = "DOUBLE",
7360
+ /** Dashed Line */
7361
+ DASHED = "DASHED",
7362
+ /** Dotted Line */
7363
+ DOTTED = "DOTTED"
7364
+ }
7365
+ declare enum Width$1 {
7366
+ /** Large line */
7367
+ LARGE = "LARGE",
7368
+ /** Medium line */
7369
+ MEDIUM = "MEDIUM",
7370
+ /** Small line */
7371
+ SMALL = "SMALL"
7372
+ }
7373
+ declare enum Alignment$1 {
7374
+ /** Center alignment */
7375
+ CENTER = "CENTER",
7376
+ /** Left alignment */
7377
+ LEFT = "LEFT",
7378
+ /** Right alignment */
7379
+ RIGHT = "RIGHT"
7380
+ }
7381
+ interface FileData$1 {
7382
+ /** Styling for the file's container. */
7383
+ containerData?: PluginContainerData$1;
7384
+ /** The source for the file's data. */
7385
+ src?: FileSource$1;
7386
+ /** File name. */
7387
+ name?: string | null;
7388
+ /** File type. */
7389
+ type?: string | null;
7390
+ /**
7391
+ * Use `sizeInKb` instead.
7392
+ * @deprecated
7393
+ */
7394
+ size?: number | null;
7395
+ /** Settings for PDF files. */
7396
+ pdfSettings?: PDFSettings$1;
7397
+ /** File MIME type. */
7398
+ mimeType?: string | null;
7399
+ /** File path. */
7400
+ path?: string | null;
7401
+ /** File size in KB. */
7402
+ sizeInKb?: string | null;
7403
+ }
7404
+ declare enum ViewMode$1 {
7405
+ /** No PDF view */
7406
+ NONE = "NONE",
7407
+ /** Full PDF view */
7408
+ FULL = "FULL",
7409
+ /** Mini PDF view */
7410
+ MINI = "MINI"
7411
+ }
7412
+ interface FileSource$1 extends FileSourceDataOneOf$1 {
7413
+ /** The absolute URL for the file's source. */
7414
+ url?: string | null;
7415
+ /**
7416
+ * Custom ID. Use `id` instead.
7417
+ * @deprecated
7418
+ */
7419
+ custom?: string | null;
7420
+ /** An ID that's resolved to a URL by a resolver function. */
7421
+ id?: string | null;
7422
+ /** Indicates whether the file's source is private. Defaults to `false`. */
7423
+ private?: boolean | null;
7424
+ }
7425
+ /** @oneof */
7426
+ interface FileSourceDataOneOf$1 {
7427
+ /** The absolute URL for the file's source. */
7428
+ url?: string | null;
7429
+ /**
7430
+ * Custom ID. Use `id` instead.
7431
+ * @deprecated
7432
+ */
7433
+ custom?: string | null;
7434
+ /** An ID that's resolved to a URL by a resolver function. */
7435
+ id?: string | null;
7436
+ }
7437
+ interface PDFSettings$1 {
7438
+ /**
7439
+ * PDF view mode. One of the following:
7440
+ * `NONE` : The PDF isn't displayed.
7441
+ * `FULL` : A full page view of the PDF is displayed.
7442
+ * `MINI` : A mini view of the PDF is displayed.
7443
+ */
7444
+ viewMode?: ViewMode$1;
7445
+ /** Sets whether the PDF download button is disabled. Defaults to `false`. */
7446
+ disableDownload?: boolean | null;
7447
+ /** Sets whether the PDF print button is disabled. Defaults to `false`. */
7448
+ disablePrint?: boolean | null;
7449
+ }
7450
+ interface GalleryData$1 {
7451
+ /** Styling for the gallery's container. */
7452
+ containerData?: PluginContainerData$1;
7453
+ /** The items in the gallery. */
7454
+ items?: Item$1[];
7455
+ /** Options for defining the gallery's appearance. */
7456
+ options?: GalleryOptions$1;
7457
+ /** Sets whether the gallery's expand button is disabled. Defaults to `false`. */
7458
+ disableExpand?: boolean | null;
7459
+ /** Sets whether the gallery's download button is disabled. Defaults to `false`. */
7460
+ disableDownload?: boolean | null;
7461
+ }
7462
+ interface Media$1 {
7463
+ /** The source for the media's data. */
7464
+ src?: FileSource$1;
7465
+ /** Media width in pixels. */
7466
+ width?: number | null;
7467
+ /** Media height in pixels. */
7468
+ height?: number | null;
7469
+ /** Media duration in seconds. Only relevant for audio and video files. */
7470
+ duration?: number | null;
7471
+ }
7472
+ interface Image$1 {
7473
+ /** Image file details. */
7474
+ media?: Media$1;
7475
+ /** Link details for images that are links. */
7476
+ link?: Link$1;
7477
+ }
7478
+ interface Video$1 {
7479
+ /** Video file details. */
7480
+ media?: Media$1;
7481
+ /** Video thumbnail file details. */
7482
+ thumbnail?: Media$1;
7483
+ }
7484
+ interface Item$1 extends ItemDataOneOf$1 {
7485
+ /** An image item. */
7486
+ image?: Image$1;
7487
+ /** A video item. */
7488
+ video?: Video$1;
7489
+ /** Item title. */
7490
+ title?: string | null;
7491
+ /** Item's alternative text. */
7492
+ altText?: string | null;
7493
+ }
7494
+ /** @oneof */
7495
+ interface ItemDataOneOf$1 {
7496
+ /** An image item. */
7497
+ image?: Image$1;
7498
+ /** A video item. */
7499
+ video?: Video$1;
7500
+ }
7501
+ interface GalleryOptions$1 {
7502
+ /** Gallery layout. */
7503
+ layout?: Layout$1;
7504
+ /** Styling for gallery items. */
7505
+ item?: ItemStyle$1;
7506
+ /** Styling for gallery thumbnail images. */
7507
+ thumbnails?: Thumbnails$1;
7508
+ }
7509
+ declare enum LayoutType$1 {
7510
+ /** Collage type */
7511
+ COLLAGE = "COLLAGE",
7512
+ /** Masonry type */
7513
+ MASONRY = "MASONRY",
7514
+ /** Grid type */
7515
+ GRID = "GRID",
7516
+ /** Thumbnail type */
7517
+ THUMBNAIL = "THUMBNAIL",
7518
+ /** Slider type */
7519
+ SLIDER = "SLIDER",
7520
+ /** Slideshow type */
7521
+ SLIDESHOW = "SLIDESHOW",
7522
+ /** Panorama type */
7523
+ PANORAMA = "PANORAMA",
7524
+ /** Column type */
7525
+ COLUMN = "COLUMN",
7526
+ /** Magic type */
7527
+ MAGIC = "MAGIC",
7528
+ /** Fullsize images type */
7529
+ FULLSIZE = "FULLSIZE"
7530
+ }
7531
+ declare enum Orientation$1 {
7532
+ /** Rows Orientation */
7533
+ ROWS = "ROWS",
7534
+ /** Columns Orientation */
7535
+ COLUMNS = "COLUMNS"
7536
+ }
7537
+ declare enum Crop$1 {
7538
+ /** Crop to fill */
7539
+ FILL = "FILL",
7540
+ /** Crop to fit */
7541
+ FIT = "FIT"
7542
+ }
7543
+ declare enum ThumbnailsAlignment$1 {
7544
+ /** Top alignment */
7545
+ TOP = "TOP",
7546
+ /** Right alignment */
7547
+ RIGHT = "RIGHT",
7548
+ /** Bottom alignment */
7549
+ BOTTOM = "BOTTOM",
7550
+ /** Left alignment */
7551
+ LEFT = "LEFT",
7552
+ /** No thumbnail */
7553
+ NONE = "NONE"
7554
+ }
7555
+ interface Layout$1 {
7556
+ /** Gallery layout type. */
7557
+ type?: LayoutType$1;
7558
+ /** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
7559
+ horizontalScroll?: boolean | null;
7560
+ /** Gallery orientation. */
7561
+ orientation?: Orientation$1;
7562
+ /** The number of columns to display on full size screens. */
7563
+ numberOfColumns?: number | null;
7564
+ /** The number of columns to display on mobile screens. */
7565
+ mobileNumberOfColumns?: number | null;
7566
+ }
7567
+ interface ItemStyle$1 {
7568
+ /** Desirable dimension for each item in pixels (behvaior changes according to gallery type) */
7569
+ targetSize?: number | null;
7570
+ /** Item ratio */
7571
+ ratio?: number | null;
7572
+ /** Sets how item images are cropped. */
7573
+ crop?: Crop$1;
7574
+ /** The spacing between items in pixels. */
7575
+ spacing?: number | null;
7576
+ }
7577
+ interface Thumbnails$1 {
7578
+ /** Thumbnail alignment. */
7579
+ placement?: ThumbnailsAlignment$1;
7580
+ /** Spacing between thumbnails in pixels. */
7581
+ spacing?: number | null;
7582
+ }
7583
+ interface GIFData$1 {
7584
+ /** Styling for the GIF's container. */
7585
+ containerData?: PluginContainerData$1;
7586
+ /** The source of the full size GIF. */
7587
+ original?: GIF$1;
7588
+ /** The source of the downsized GIF. */
7589
+ downsized?: GIF$1;
7590
+ /** Height in pixels. */
7591
+ height?: number;
7592
+ /** Width in pixels. */
7593
+ width?: number;
7594
+ }
7595
+ interface GIF$1 {
7596
+ /** GIF format URL. */
7597
+ gif?: string | null;
7598
+ /** MP4 format URL. */
7599
+ mp4?: string | null;
7600
+ /** Thumbnail URL. */
7601
+ still?: string | null;
7602
+ }
7603
+ interface HeadingData$1 {
7604
+ /** Heading level from 1-6. */
7605
+ level?: number;
7606
+ /** Styling for the heading text. */
7607
+ textStyle?: TextStyle$1;
7608
+ /** Indentation level from 1-4. */
7609
+ indentation?: number | null;
7610
+ }
7611
+ interface HTMLData$1 extends HTMLDataDataOneOf$1 {
7612
+ /** The URL for the HTML code for the node. */
7613
+ url?: string;
7614
+ /** The HTML code for the node. */
7615
+ html?: string;
7616
+ /**
7617
+ * Whether this is an AdSense element. Use `source` instead.
7618
+ * @deprecated
7619
+ */
7620
+ isAdsense?: boolean | null;
7621
+ /** Styling for the HTML node's container. */
7622
+ containerData?: PluginContainerData$1;
7623
+ /** The type of HTML code. */
7624
+ source?: Source$1;
7625
+ }
7626
+ /** @oneof */
7627
+ interface HTMLDataDataOneOf$1 {
7628
+ /** The URL for the HTML code for the node. */
7629
+ url?: string;
7630
+ /** The HTML code for the node. */
7631
+ html?: string;
7632
+ /**
7633
+ * Whether this is an AdSense element. Use `source` instead.
7634
+ * @deprecated
7635
+ */
7636
+ isAdsense?: boolean | null;
7637
+ }
7638
+ declare enum Source$1 {
7639
+ HTML = "HTML",
7640
+ ADSENSE = "ADSENSE"
7641
+ }
7642
+ interface ImageData$1 {
7643
+ /** Styling for the image's container. */
7644
+ containerData?: PluginContainerData$1;
7645
+ /** Image file details. */
7646
+ image?: Media$1;
7647
+ /** Link details for images that are links. */
7648
+ link?: Link$1;
7649
+ /** Sets whether the image expands to full screen when clicked. Defaults to `false`. */
7650
+ disableExpand?: boolean | null;
7651
+ /** Image's alternative text. */
7652
+ altText?: string | null;
7653
+ /** Image caption. */
7654
+ caption?: string | null;
7655
+ /** Sets whether the image's download button is disabled. Defaults to `false`. */
7656
+ disableDownload?: boolean | null;
7657
+ }
7658
+ interface LinkPreviewData$1 {
7659
+ /** Styling for the link preview's container. */
7660
+ containerData?: PluginContainerData$1;
7661
+ /** Link details. */
7662
+ link?: Link$1;
7663
+ /** Preview title. */
7664
+ title?: string | null;
7665
+ /** Preview thumbnail URL. */
7666
+ thumbnailUrl?: string | null;
7667
+ /** Preview description. */
7668
+ description?: string | null;
7669
+ /** The preview content as HTML. */
7670
+ html?: string | null;
7671
+ }
7672
+ interface MapData$1 {
7673
+ /** Styling for the map's container. */
7674
+ containerData?: PluginContainerData$1;
7675
+ /** Map settings. */
7676
+ mapSettings?: MapSettings$1;
7677
+ }
7678
+ interface MapSettings$1 {
7679
+ /** The address to display on the map. */
7680
+ address?: string | null;
7681
+ /** Sets whether the map is draggable. */
7682
+ draggable?: boolean | null;
7683
+ /** Sets whether the location marker is visible. */
7684
+ marker?: boolean | null;
7685
+ /** Sets whether street view control is enabled. */
7686
+ streetViewControl?: boolean | null;
7687
+ /** Sets whether zoom control is enabled. */
7688
+ zoomControl?: boolean | null;
7689
+ /** Location latitude. */
7690
+ lat?: number | null;
7691
+ /** Location longitude. */
7692
+ lng?: number | null;
7693
+ /** Location name. */
7694
+ locationName?: string | null;
7695
+ /** Sets whether view mode control is enabled. */
7696
+ viewModeControl?: boolean | null;
7697
+ /** Initial zoom value. */
7698
+ initialZoom?: number | null;
7699
+ /** Map type. `HYBRID` is a combination of the `ROADMAP` and `SATELLITE` map types. */
7700
+ mapType?: MapType$1;
7701
+ }
7702
+ declare enum MapType$1 {
7703
+ /** Roadmap map type */
7704
+ ROADMAP = "ROADMAP",
7705
+ /** Satellite map type */
7706
+ SATELITE = "SATELITE",
7707
+ /** Hybrid map type */
7708
+ HYBRID = "HYBRID",
7709
+ /** Terrain map type */
7710
+ TERRAIN = "TERRAIN"
7711
+ }
7712
+ interface ParagraphData$1 {
7713
+ /** Styling for the paragraph text. */
7714
+ textStyle?: TextStyle$1;
7715
+ /** Indentation level from 1-4. */
7716
+ indentation?: number | null;
7717
+ /** Paragraph level */
7718
+ level?: number | null;
7719
+ }
7720
+ interface PollData$1 {
7721
+ /** Styling for the poll's container. */
7722
+ containerData?: PluginContainerData$1;
7723
+ /** Poll data. */
7724
+ poll?: Poll$1;
7725
+ /** Layout settings for the poll and voting options. */
7726
+ layout?: PollDataLayout$1;
7727
+ /** Styling for the poll and voting options. */
7728
+ design?: Design$1;
7729
+ }
7730
+ declare enum ViewRole$1 {
7731
+ /** Only Poll creator can view the results */
7732
+ CREATOR = "CREATOR",
7733
+ /** Anyone who voted can see the results */
7734
+ VOTERS = "VOTERS",
7735
+ /** Anyone can see the results, even if one didn't vote */
7736
+ EVERYONE = "EVERYONE"
7737
+ }
7738
+ declare enum VoteRole$1 {
7739
+ /** Logged in member */
7740
+ SITE_MEMBERS = "SITE_MEMBERS",
7741
+ /** Anyone */
7742
+ ALL = "ALL"
7743
+ }
7744
+ interface Permissions$1 {
7745
+ /** Sets who can view the poll results. */
7746
+ view?: ViewRole$1;
7747
+ /** Sets who can vote. */
7748
+ vote?: VoteRole$1;
7749
+ /** Sets whether one voter can vote multiple times. Defaults to `false`. */
7750
+ allowMultipleVotes?: boolean | null;
7751
+ }
7752
+ interface Option$1 {
7753
+ /** Option ID. */
7754
+ id?: string | null;
7755
+ /** Option title. */
7756
+ title?: string | null;
7757
+ /** The image displayed with the option. */
7758
+ image?: Media$1;
7759
+ }
7760
+ interface Settings$3 {
7761
+ /** Permissions settings for voting. */
7762
+ permissions?: Permissions$1;
7763
+ /** Sets whether voters are displayed in the vote results. Defaults to `true`. */
7764
+ showVoters?: boolean | null;
7765
+ /** Sets whether the vote count is displayed. Defaults to `true`. */
7766
+ showVotesCount?: boolean | null;
7767
+ }
7768
+ declare enum PollLayoutType$1 {
7769
+ /** List */
7770
+ LIST = "LIST",
7771
+ /** Grid */
7772
+ GRID = "GRID"
7773
+ }
7774
+ declare enum PollLayoutDirection$1 {
7775
+ /** Left-to-right */
7776
+ LTR = "LTR",
7777
+ /** Right-to-left */
7778
+ RTL = "RTL"
7779
+ }
7780
+ interface PollLayout$1 {
7781
+ /** The layout for displaying the voting options. */
7782
+ type?: PollLayoutType$1;
7783
+ /** The direction of the text displayed in the voting options. Text can be displayed either right-to-left or left-to-right. */
7784
+ direction?: PollLayoutDirection$1;
7785
+ /** Sets whether to display the main poll image. Defaults to `false`. */
7786
+ enableImage?: boolean | null;
7787
+ }
7788
+ interface OptionLayout$1 {
7789
+ /** Sets whether to display option images. Defaults to `false`. */
7790
+ enableImage?: boolean | null;
7791
+ }
7792
+ declare enum BackgroundType$1 {
7793
+ /** Color background type */
7794
+ COLOR = "COLOR",
7795
+ /** Image background type */
7796
+ IMAGE = "IMAGE",
7797
+ /** Gradiant background type */
7798
+ GRADIENT = "GRADIENT"
7799
+ }
7800
+ interface Gradient$1 {
7801
+ /** The gradient angle in degrees. */
7802
+ angle?: number | null;
7803
+ /** The start color as a hexademical value. */
7804
+ startColor?: string | null;
7805
+ /** The end color as a hexademical value. */
7806
+ lastColor?: string | null;
7807
+ }
7808
+ interface Background$1 extends BackgroundBackgroundOneOf$1 {
7809
+ /** The background color as a hexademical value. */
7810
+ color?: string | null;
7811
+ /** An image to use for the background. */
7812
+ image?: Media$1;
7813
+ /** Details for a gradient background. */
7814
+ gradient?: Gradient$1;
7815
+ /** Background type. For each option, include the relevant details. */
7816
+ type?: BackgroundType$1;
7817
+ }
7818
+ /** @oneof */
7819
+ interface BackgroundBackgroundOneOf$1 {
7820
+ /** The background color as a hexademical value. */
7821
+ color?: string | null;
7822
+ /** An image to use for the background. */
7823
+ image?: Media$1;
7824
+ /** Details for a gradient background. */
7825
+ gradient?: Gradient$1;
7826
+ }
7827
+ interface PollDesign$1 {
7828
+ /** Background styling. */
7829
+ background?: Background$1;
7830
+ /** Border radius in pixels. */
7831
+ borderRadius?: number | null;
7832
+ }
7833
+ interface OptionDesign$1 {
7834
+ /** Border radius in pixels. */
7835
+ borderRadius?: number | null;
7836
+ }
7837
+ interface Poll$1 {
7838
+ /** Poll ID. */
7839
+ id?: string | null;
7840
+ /** Poll title. */
7841
+ title?: string | null;
7842
+ /** Poll creator ID. */
7843
+ creatorId?: string | null;
7844
+ /** Main poll image. */
7845
+ image?: Media$1;
7846
+ /** Voting options. */
7847
+ options?: Option$1[];
7848
+ /** The poll's permissions and display settings. */
7849
+ settings?: Settings$3;
7850
+ }
7851
+ interface PollDataLayout$1 {
7852
+ /** Poll layout settings. */
7853
+ poll?: PollLayout$1;
7854
+ /** Voting otpions layout settings. */
7855
+ options?: OptionLayout$1;
7856
+ }
7857
+ interface Design$1 {
7858
+ /** Styling for the poll. */
7859
+ poll?: PollDesign$1;
7860
+ /** Styling for voting options. */
7861
+ options?: OptionDesign$1;
7862
+ }
7863
+ interface TextData$1 {
7864
+ /** The text to apply decorations to. */
7865
+ text?: string;
7866
+ /** The decorations to apply. */
7867
+ decorations?: Decoration$1[];
7868
+ }
7869
+ /** Adds appearence changes to text */
7870
+ interface Decoration$1 extends DecorationDataOneOf$1 {
7871
+ /** Data for an anchor link decoration. */
7872
+ anchorData?: AnchorData$1;
7873
+ /** Data for a color decoration. */
7874
+ colorData?: ColorData$1;
7875
+ /** Data for an external link decoration. */
7876
+ linkData?: LinkData$1;
7877
+ /** Data for a mention decoration. */
7878
+ mentionData?: MentionData$1;
7879
+ /** Data for a font size decoration. */
7880
+ fontSizeData?: FontSizeData$1;
7881
+ /** Font weight for a bold decoration. */
7882
+ fontWeightValue?: number | null;
7883
+ /** Data for an italic decoration. Defaults to `true`. */
7884
+ italicData?: boolean | null;
7885
+ /** Data for an underline decoration. Defaults to `true`. */
7886
+ underlineData?: boolean | null;
7887
+ /** Data for a spoiler decoration. */
7888
+ spoilerData?: SpoilerData$1;
7889
+ /** The type of decoration to apply. */
7890
+ type?: DecorationType$1;
7891
+ }
7892
+ /** @oneof */
7893
+ interface DecorationDataOneOf$1 {
7894
+ /** Data for an anchor link decoration. */
7895
+ anchorData?: AnchorData$1;
7896
+ /** Data for a color decoration. */
7897
+ colorData?: ColorData$1;
7898
+ /** Data for an external link decoration. */
7899
+ linkData?: LinkData$1;
7900
+ /** Data for a mention decoration. */
7901
+ mentionData?: MentionData$1;
7902
+ /** Data for a font size decoration. */
7903
+ fontSizeData?: FontSizeData$1;
7904
+ /** Font weight for a bold decoration. */
7905
+ fontWeightValue?: number | null;
7906
+ /** Data for an italic decoration. Defaults to `true`. */
7907
+ italicData?: boolean | null;
7908
+ /** Data for an underline decoration. Defaults to `true`. */
7909
+ underlineData?: boolean | null;
7910
+ /** Data for a spoiler decoration. */
7911
+ spoilerData?: SpoilerData$1;
7912
+ }
7913
+ declare enum DecorationType$1 {
7914
+ BOLD = "BOLD",
7915
+ ITALIC = "ITALIC",
7916
+ UNDERLINE = "UNDERLINE",
7917
+ SPOILER = "SPOILER",
7918
+ ANCHOR = "ANCHOR",
7919
+ MENTION = "MENTION",
7920
+ LINK = "LINK",
7921
+ COLOR = "COLOR",
7922
+ FONT_SIZE = "FONT_SIZE",
7923
+ EXTERNAL = "EXTERNAL"
7924
+ }
7925
+ interface AnchorData$1 {
7926
+ /** The target node's ID. */
7927
+ anchor?: string;
7928
+ }
7929
+ interface ColorData$1 {
7930
+ /** The text's background color as a hexadecimal value. */
7931
+ background?: string | null;
7932
+ /** The text's foreground color as a hexadecimal value. */
7933
+ foreground?: string | null;
7934
+ }
7935
+ interface LinkData$1 {
7936
+ /** Link details. */
7937
+ link?: Link$1;
7938
+ }
7939
+ interface MentionData$1 {
7940
+ /** The mentioned user's name. */
7941
+ name?: string;
7942
+ /** The version of the user's name that appears after the `@` character in the mention. */
7943
+ slug?: string;
7944
+ /** Mentioned user's ID. */
7945
+ id?: string | null;
7946
+ }
7947
+ interface FontSizeData$1 {
7948
+ /** The units used for the font size. */
7949
+ unit?: FontType$1;
7950
+ /** Font size value. */
7951
+ value?: number | null;
7952
+ }
7953
+ declare enum FontType$1 {
7954
+ PX = "PX",
7955
+ EM = "EM"
7956
+ }
7957
+ interface SpoilerData$1 {
7958
+ /** Spoiler ID. */
7959
+ id?: string | null;
7960
+ }
7961
+ interface AppEmbedData$1 extends AppEmbedDataAppDataOneOf$1 {
7962
+ /** Data for embedded Wix Bookings content. */
7963
+ bookingData?: BookingData$1;
7964
+ /** Data for embedded Wix Events content. */
7965
+ eventData?: EventData$1;
7966
+ /** The type of Wix App content being embedded. */
7967
+ type?: AppType$1;
7968
+ /** The ID of the embedded content. */
7969
+ itemId?: string | null;
7970
+ /** The name of the embedded content. */
7971
+ name?: string | null;
7972
+ /**
7973
+ * Deprecated: Use `image` instead.
7974
+ * @deprecated
7975
+ */
7976
+ imageSrc?: string | null;
7977
+ /** The URL for the embedded content. */
7978
+ url?: string | null;
7979
+ /** An image for the embedded content. */
7980
+ image?: Media$1;
7981
+ }
7982
+ /** @oneof */
7983
+ interface AppEmbedDataAppDataOneOf$1 {
7984
+ /** Data for embedded Wix Bookings content. */
7985
+ bookingData?: BookingData$1;
7986
+ /** Data for embedded Wix Events content. */
7987
+ eventData?: EventData$1;
7988
+ }
7989
+ declare enum AppType$1 {
7990
+ PRODUCT = "PRODUCT",
7991
+ EVENT = "EVENT",
7992
+ BOOKING = "BOOKING"
7993
+ }
7994
+ interface BookingData$1 {
7995
+ /** Booking duration in minutes. */
7996
+ durations?: string | null;
7997
+ }
7998
+ interface EventData$1 {
7999
+ /** Event schedule. */
8000
+ scheduling?: string | null;
8001
+ /** Event location. */
8002
+ location?: string | null;
8003
+ }
8004
+ interface VideoData$1 {
8005
+ /** Styling for the video's container. */
8006
+ containerData?: PluginContainerData$1;
8007
+ /** Video details. */
8008
+ video?: Media$1;
8009
+ /** Video thumbnail details. */
8010
+ thumbnail?: Media$1;
8011
+ /** Sets whether the video's download button is disabled. Defaults to `false`. */
8012
+ disableDownload?: boolean | null;
8013
+ /** Video title. */
8014
+ title?: string | null;
8015
+ /** Video options. */
8016
+ options?: PlaybackOptions$1;
8017
+ }
8018
+ interface PlaybackOptions$1 {
8019
+ /** Sets whether the media will automatically start playing. */
8020
+ autoPlay?: boolean | null;
8021
+ /** Sets whether media's will be looped. */
8022
+ playInLoop?: boolean | null;
8023
+ /** Sets whether media's controls will be shown. */
8024
+ showControls?: boolean | null;
8025
+ }
8026
+ interface EmbedData$1 {
8027
+ /** Styling for the oEmbed node's container. */
8028
+ containerData?: PluginContainerData$1;
8029
+ /** An [oEmbed](https://www.oembed.com) object. */
8030
+ oembed?: Oembed$1;
8031
+ /** Origin asset source. */
8032
+ src?: string | null;
8033
+ }
8034
+ interface Oembed$1 {
8035
+ /** The resource type. */
8036
+ type?: string | null;
8037
+ /** The width of the resource specified in the `url` property in pixels. */
8038
+ width?: number | null;
8039
+ /** The height of the resource specified in the `url` property in pixels. */
8040
+ height?: number | null;
8041
+ /** Resource title. */
8042
+ title?: string | null;
8043
+ /** The source URL for the resource. */
8044
+ url?: string | null;
8045
+ /** HTML for embedding a video player. The HTML should have no padding or margins. */
8046
+ html?: string | null;
8047
+ /** The name of the author or owner of the resource. */
8048
+ authorName?: string | null;
8049
+ /** The URL for the author or owner of the resource. */
8050
+ authorUrl?: string | null;
8051
+ /** The name of the resource provider. */
8052
+ providerName?: string | null;
8053
+ /** The URL for the resource provider. */
8054
+ providerUrl?: string | null;
8055
+ /** The URL for a thumbnail image for the resource. If this property is defined, `thumbnailWidth` and `thumbnailHeight` must also be defined. */
8056
+ thumbnailUrl?: string | null;
8057
+ /** The width of the resource's thumbnail image. If this property is defined, `thumbnailUrl` and `thumbnailHeight` must also be defined. */
8058
+ thumbnailWidth?: string | null;
8059
+ /** The height of the resource's thumbnail image. If this property is defined, `thumbnailUrl` and `thumbnailWidth`must also be defined. */
8060
+ thumbnailHeight?: string | null;
8061
+ /** The URL for an embedded viedo. */
8062
+ videoUrl?: string | null;
8063
+ /** The oEmbed version number. This value must be `1.0`. */
8064
+ version?: string | null;
8065
+ }
8066
+ interface CollapsibleListData$1 {
8067
+ /** Styling for the collapsible list's container. */
8068
+ containerData?: PluginContainerData$1;
8069
+ /** If `true`, only one item can be expanded at a time. Defaults to `false`. */
8070
+ expandOnlyOne?: boolean | null;
8071
+ /** Sets which items are expanded when the page loads. */
8072
+ initialExpandedItems?: InitialExpandedItems$1;
8073
+ /** The direction of the text in the list. Either left-to-right or right-to-left. */
8074
+ direction?: Direction$1;
8075
+ /** If `true`, The collapsible item will appear in search results as an FAQ. */
8076
+ isQapageData?: boolean | null;
8077
+ }
8078
+ declare enum InitialExpandedItems$1 {
8079
+ /** First item will be expended initally */
8080
+ FIRST = "FIRST",
8081
+ /** All items will expended initally */
8082
+ ALL = "ALL",
8083
+ /** All items collapsed initally */
8084
+ NONE = "NONE"
8085
+ }
8086
+ declare enum Direction$1 {
8087
+ /** Left-to-right */
8088
+ LTR = "LTR",
8089
+ /** Right-to-left */
8090
+ RTL = "RTL"
8091
+ }
8092
+ interface TableData$1 {
8093
+ /** Styling for the table's container. */
8094
+ containerData?: PluginContainerData$1;
8095
+ /** The table's dimensions. */
8096
+ dimensions?: Dimensions$1;
8097
+ /**
8098
+ * Deprecated: Use `rowHeader` and `columnHeader` instead.
8099
+ * @deprecated
8100
+ */
8101
+ header?: boolean | null;
8102
+ /** Sets whether the table's first row is a header. Defaults to `false`. */
8103
+ rowHeader?: boolean | null;
8104
+ /** Sets whether the table's first column is a header. Defaults to `false`. */
8105
+ columnHeader?: boolean | null;
8106
+ }
8107
+ interface Dimensions$1 {
8108
+ /** An array representing relative width of each column in relation to the other columns. */
8109
+ colsWidthRatio?: number[];
8110
+ /** An array representing the height of each row in pixels. */
8111
+ rowsHeight?: number[];
8112
+ /** An array representing the minimum width of each column in pixels. */
8113
+ colsMinWidth?: number[];
8114
+ }
8115
+ interface TableCellData$1 {
8116
+ /** Styling for the cell's background color and text alignment. */
8117
+ cellStyle?: CellStyle$1;
8118
+ /** The cell's border colors. */
8119
+ borderColors?: BorderColors$1;
8120
+ }
8121
+ declare enum VerticalAlignment$1 {
8122
+ /** Top alignment */
8123
+ TOP = "TOP",
8124
+ /** Middle alignment */
8125
+ MIDDLE = "MIDDLE",
8126
+ /** Bottom alignment */
8127
+ BOTTOM = "BOTTOM"
8128
+ }
8129
+ interface CellStyle$1 {
8130
+ /** Vertical alignment for the cell's text. */
8131
+ verticalAlignment?: VerticalAlignment$1;
8132
+ /** Cell background color as a hexadecimal value. */
8133
+ backgroundColor?: string | null;
8134
+ }
8135
+ interface BorderColors$1 {
8136
+ /** Left border color as a hexadecimal value. */
8137
+ left?: string | null;
8138
+ /** Right border color as a hexadecimal value. */
8139
+ right?: string | null;
8140
+ /** Top border color as a hexadecimal value. */
8141
+ top?: string | null;
8142
+ /** Bottom border color as a hexadecimal value. */
8143
+ bottom?: string | null;
8144
+ }
8145
+ interface AudioData$1 {
8146
+ /** Styling for the audio node's container. */
8147
+ containerData?: PluginContainerData$1;
8148
+ /** Audio file details. */
8149
+ audio?: Media$1;
8150
+ /** Sets whether the audio node's download button is disabled. Defaults to `false`. */
8151
+ disableDownload?: boolean | null;
8152
+ /** Cover image. */
8153
+ coverImage?: Media$1;
8154
+ /** Track name. */
8155
+ name?: string | null;
8156
+ /** Author name. */
8157
+ authorName?: string | null;
8158
+ /** An HTML version of the audio node. */
8159
+ html?: string | null;
8160
+ }
8161
+ interface OrderedListData$1 {
8162
+ /** Indentation level from 0-4. */
8163
+ indentation?: number;
8164
+ /** Offset level from 0-4. */
8165
+ offset?: number | null;
8166
+ }
8167
+ interface BulletedListData$1 {
8168
+ /** Indentation level from 0-4. */
8169
+ indentation?: number;
8170
+ /** Offset level from 0-4. */
8171
+ offset?: number | null;
8172
+ }
8173
+ interface BlockquoteData$1 {
8174
+ /** Indentation level from 1-4. */
8175
+ indentation?: number;
8176
+ }
8177
+ interface Metadata$1 {
8178
+ /** Schema version. */
8179
+ version?: number;
8180
+ /**
8181
+ * When the object was created.
8182
+ * @readonly
8183
+ * @deprecated
8184
+ */
8185
+ createdTimestamp?: Date;
8186
+ /**
8187
+ * When the object was most recently updated.
8188
+ * @deprecated
8189
+ */
8190
+ updatedTimestamp?: Date;
8191
+ /** Object ID. */
8192
+ id?: string | null;
8193
+ }
8194
+ interface DocumentStyle$1 {
8195
+ /** Styling for H1 nodes. */
8196
+ headerOne?: TextNodeStyle$1;
8197
+ /** Styling for H2 nodes. */
8198
+ headerTwo?: TextNodeStyle$1;
8199
+ /** Styling for H3 nodes. */
8200
+ headerThree?: TextNodeStyle$1;
8201
+ /** Styling for H4 nodes. */
8202
+ headerFour?: TextNodeStyle$1;
8203
+ /** Styling for H5 nodes. */
8204
+ headerFive?: TextNodeStyle$1;
8205
+ /** Styling for H6 nodes. */
8206
+ headerSix?: TextNodeStyle$1;
8207
+ /** Styling for paragraph nodes. */
8208
+ paragraph?: TextNodeStyle$1;
8209
+ /** Styling for block quote nodes. */
8210
+ blockquote?: TextNodeStyle$1;
8211
+ /** Styling for code block nodes. */
8212
+ codeBlock?: TextNodeStyle$1;
8213
+ }
8214
+ interface TextNodeStyle$1 {
8215
+ /** The decorations to apply to the node. */
8216
+ decorations?: Decoration$1[];
8217
+ /** Padding and background color for the node. */
8218
+ nodeStyle?: NodeStyle$1;
8219
+ /** Line height for text in the node. */
8220
+ lineHeight?: string | null;
8221
+ }
8222
+ interface ExtendedFields$3 {
8223
+ /**
8224
+ * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
8225
+ * The value of each key is structured according to the schema defined when the extended fields were configured.
8226
+ *
8227
+ * You can only access fields for which you have the appropriate permissions.
8228
+ *
8229
+ * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
8230
+ */
8231
+ namespaces?: Record<string, Record<string, any>>;
8232
+ }
8233
+ interface CreateRichContentRequest$1 {
8234
+ /** RichContent to be created. */
8235
+ richContent: RichContent$1;
8236
+ }
8237
+ interface CreateRichContentResponse$1 {
8238
+ /** The created RichContent. */
8239
+ richContent?: RichContent$1;
8240
+ }
8241
+ interface GetRichContentRequest$1 {
8242
+ /** ID of the RichContent to retrieve. */
8243
+ richContentId: string;
8244
+ }
8245
+ interface GetRichContentResponse$1 {
8246
+ /** The requested RichContent. */
8247
+ richContent?: RichContent$1;
8248
+ }
8249
+ interface FindRichContentBySlugRequest$1 {
8250
+ /** The event slug */
8251
+ eventSlug: string;
8252
+ /** The field name */
8253
+ fieldName: string;
8254
+ }
8255
+ interface FindRichContentBySlugResponse$1 {
8256
+ /** The RichContent */
8257
+ richContent?: RichContent$1;
8258
+ }
8259
+ interface UpdateRichContentRequest$1 {
8260
+ /** RichContent to be updated, may be partial. */
8261
+ richContent: RichContent$1;
8262
+ }
8263
+ interface UpdateRichContentResponse$1 {
8264
+ /** Updated RichContent. */
8265
+ richContent?: RichContent$1;
8266
+ }
8267
+ interface DeleteRichContentRequest$1 {
8268
+ /** Id of the RichContent to delete. */
8269
+ richContentId: string;
8270
+ }
8271
+ interface DeleteRichContentResponse$1 {
8272
+ }
8273
+ interface QueryRichContentsRequest$1 {
8274
+ /** WQL expression. */
8275
+ query?: CursorQuery$1;
8276
+ }
8277
+ interface CursorQuery$1 extends CursorQueryPagingMethodOneOf$1 {
8278
+ /** 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`. */
8279
+ cursorPaging?: CursorPaging$7;
8280
+ /**
8281
+ * Filter object in the following format:
8282
+ * `"filter" : {
8283
+ * "fieldName1": "value1",
8284
+ * "fieldName2":{"$operator":"value2"}
8285
+ * }`
8286
+ * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
8287
+ */
8288
+ filter?: Record<string, any> | null;
8289
+ /**
8290
+ * Sort object in the following format:
8291
+ * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
8292
+ */
8293
+ sort?: Sorting$7[];
8294
+ }
8295
+ /** @oneof */
8296
+ interface CursorQueryPagingMethodOneOf$1 {
8297
+ /** 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`. */
8298
+ cursorPaging?: CursorPaging$7;
8299
+ }
8300
+ interface Sorting$7 {
8301
+ /** Name of the field to sort by. */
8302
+ fieldName?: string;
8303
+ /** Sort order. */
8304
+ order?: SortOrder$7;
8305
+ }
8306
+ declare enum SortOrder$7 {
8307
+ ASC = "ASC",
8308
+ DESC = "DESC"
8309
+ }
8310
+ interface CursorPaging$7 {
8311
+ /** Number of items to load. */
8312
+ limit?: number | null;
8313
+ /**
8314
+ * Pointer to the next or previous page in the list of results.
8315
+ * You can get the relevant cursor token
8316
+ * from the `pagingMetadata` object in the previous call's response.
8317
+ * Not relevant for the first request.
8318
+ */
8319
+ cursor?: string | null;
8320
+ }
8321
+ interface QueryRichContentsResponse$1 {
8322
+ /** List of RichContents. */
8323
+ richContents?: RichContent$1[];
8324
+ /** Paging metadata */
8325
+ pagingMetadata?: CursorPagingMetadata$1;
8326
+ }
8327
+ interface CursorPagingMetadata$1 {
8328
+ /** Number of items returned in the response. */
8329
+ count?: number | null;
8330
+ /** Offset that was requested. */
8331
+ cursors?: Cursors$7;
8332
+ /**
8333
+ * Indicates if there are more results after the current page.
8334
+ * If `true`, another page of results can be retrieved.
8335
+ * If `false`, this is the last page.
8336
+ */
8337
+ hasNext?: boolean | null;
8338
+ }
8339
+ interface Cursors$7 {
8340
+ /** Cursor pointing to next page in the list of results. */
8341
+ next?: string | null;
8342
+ /** Cursor pointing to previous page in the list of results. */
8343
+ prev?: string | null;
8344
+ }
8345
+ interface PluginContainerDataWidthNonNullableFields$1 {
8346
+ size: WidthType$1;
8347
+ }
8348
+ interface PluginContainerDataNonNullableFields$1 {
8349
+ width?: PluginContainerDataWidthNonNullableFields$1;
8350
+ alignment: PluginContainerDataAlignment$1;
8351
+ }
8352
+ interface LinkNonNullableFields$1 {
8353
+ url: string;
8354
+ anchor: string;
8355
+ target: Target$1;
8356
+ }
8357
+ interface ButtonDataNonNullableFields$1 {
8358
+ containerData?: PluginContainerDataNonNullableFields$1;
8359
+ type: Type$7;
8360
+ link?: LinkNonNullableFields$1;
8361
+ }
8362
+ interface TextStyleNonNullableFields$1 {
8363
+ textAlignment: TextAlignment$1;
8364
+ }
8365
+ interface CodeBlockDataNonNullableFields$1 {
8366
+ textStyle?: TextStyleNonNullableFields$1;
8367
+ }
8368
+ interface DividerDataNonNullableFields$1 {
8369
+ containerData?: PluginContainerDataNonNullableFields$1;
8370
+ lineStyle: LineStyle$1;
8371
+ width: Width$1;
8372
+ alignment: Alignment$1;
8373
+ }
8374
+ interface PDFSettingsNonNullableFields$1 {
8375
+ viewMode: ViewMode$1;
8376
+ }
8377
+ interface FileDataNonNullableFields$1 {
8378
+ containerData?: PluginContainerDataNonNullableFields$1;
8379
+ pdfSettings?: PDFSettingsNonNullableFields$1;
8380
+ }
8381
+ interface ImageNonNullableFields$1 {
8382
+ link?: LinkNonNullableFields$1;
8383
+ }
8384
+ interface ItemNonNullableFields$1 {
8385
+ image?: ImageNonNullableFields$1;
8386
+ }
8387
+ interface LayoutNonNullableFields$1 {
8388
+ type: LayoutType$1;
8389
+ orientation: Orientation$1;
8390
+ }
8391
+ interface ItemStyleNonNullableFields$1 {
8392
+ crop: Crop$1;
8393
+ }
8394
+ interface ThumbnailsNonNullableFields$1 {
8395
+ placement: ThumbnailsAlignment$1;
8396
+ }
8397
+ interface GalleryOptionsNonNullableFields$1 {
8398
+ layout?: LayoutNonNullableFields$1;
8399
+ item?: ItemStyleNonNullableFields$1;
8400
+ thumbnails?: ThumbnailsNonNullableFields$1;
8401
+ }
8402
+ interface GalleryDataNonNullableFields$1 {
8403
+ containerData?: PluginContainerDataNonNullableFields$1;
8404
+ items: ItemNonNullableFields$1[];
8405
+ options?: GalleryOptionsNonNullableFields$1;
8406
+ }
8407
+ interface GIFDataNonNullableFields$1 {
8408
+ containerData?: PluginContainerDataNonNullableFields$1;
8409
+ height: number;
8410
+ width: number;
8411
+ }
8412
+ interface HeadingDataNonNullableFields$1 {
8413
+ level: number;
8414
+ textStyle?: TextStyleNonNullableFields$1;
8415
+ }
8416
+ interface HTMLDataNonNullableFields$1 {
8417
+ url: string;
8418
+ html: string;
8419
+ containerData?: PluginContainerDataNonNullableFields$1;
8420
+ source: Source$1;
8421
+ }
8422
+ interface ImageDataNonNullableFields$1 {
8423
+ containerData?: PluginContainerDataNonNullableFields$1;
8424
+ link?: LinkNonNullableFields$1;
8425
+ }
8426
+ interface LinkPreviewDataNonNullableFields$1 {
8427
+ containerData?: PluginContainerDataNonNullableFields$1;
8428
+ link?: LinkNonNullableFields$1;
8429
+ }
8430
+ interface MapSettingsNonNullableFields$1 {
8431
+ mapType: MapType$1;
8432
+ }
8433
+ interface MapDataNonNullableFields$1 {
8434
+ containerData?: PluginContainerDataNonNullableFields$1;
8435
+ mapSettings?: MapSettingsNonNullableFields$1;
8436
+ }
8437
+ interface ParagraphDataNonNullableFields$1 {
8438
+ textStyle?: TextStyleNonNullableFields$1;
8439
+ }
8440
+ interface PermissionsNonNullableFields$1 {
8441
+ view: ViewRole$1;
8442
+ vote: VoteRole$1;
8443
+ }
8444
+ interface SettingsNonNullableFields$3 {
8445
+ permissions?: PermissionsNonNullableFields$1;
8446
+ }
8447
+ interface PollNonNullableFields$1 {
8448
+ settings?: SettingsNonNullableFields$3;
8449
+ }
8450
+ interface PollLayoutNonNullableFields$1 {
8451
+ type: PollLayoutType$1;
8452
+ direction: PollLayoutDirection$1;
8453
+ }
8454
+ interface PollDataLayoutNonNullableFields$1 {
8455
+ poll?: PollLayoutNonNullableFields$1;
8456
+ }
8457
+ interface BackgroundNonNullableFields$1 {
8458
+ type: BackgroundType$1;
8459
+ }
8460
+ interface PollDesignNonNullableFields$1 {
8461
+ background?: BackgroundNonNullableFields$1;
8462
+ }
8463
+ interface DesignNonNullableFields$1 {
8464
+ poll?: PollDesignNonNullableFields$1;
8465
+ }
8466
+ interface PollDataNonNullableFields$1 {
8467
+ containerData?: PluginContainerDataNonNullableFields$1;
8468
+ poll?: PollNonNullableFields$1;
8469
+ layout?: PollDataLayoutNonNullableFields$1;
8470
+ design?: DesignNonNullableFields$1;
8471
+ }
8472
+ interface AnchorDataNonNullableFields$1 {
8473
+ anchor: string;
8474
+ }
8475
+ interface LinkDataNonNullableFields$1 {
8476
+ link?: LinkNonNullableFields$1;
8477
+ }
8478
+ interface MentionDataNonNullableFields$1 {
8479
+ name: string;
8480
+ slug: string;
8481
+ }
8482
+ interface FontSizeDataNonNullableFields$1 {
8483
+ unit: FontType$1;
8484
+ }
8485
+ interface DecorationNonNullableFields$1 {
8486
+ anchorData?: AnchorDataNonNullableFields$1;
8487
+ linkData?: LinkDataNonNullableFields$1;
8488
+ mentionData?: MentionDataNonNullableFields$1;
8489
+ fontSizeData?: FontSizeDataNonNullableFields$1;
8490
+ type: DecorationType$1;
8491
+ }
8492
+ interface TextDataNonNullableFields$1 {
8493
+ text: string;
8494
+ decorations: DecorationNonNullableFields$1[];
8495
+ }
8496
+ interface AppEmbedDataNonNullableFields$1 {
8497
+ type: AppType$1;
8498
+ }
8499
+ interface VideoDataNonNullableFields$1 {
8500
+ containerData?: PluginContainerDataNonNullableFields$1;
8501
+ }
8502
+ interface EmbedDataNonNullableFields$1 {
8503
+ containerData?: PluginContainerDataNonNullableFields$1;
8504
+ }
8505
+ interface CollapsibleListDataNonNullableFields$1 {
8506
+ containerData?: PluginContainerDataNonNullableFields$1;
8507
+ initialExpandedItems: InitialExpandedItems$1;
8508
+ direction: Direction$1;
8509
+ }
8510
+ interface DimensionsNonNullableFields$1 {
8511
+ colsWidthRatio: number[];
8512
+ rowsHeight: number[];
8513
+ colsMinWidth: number[];
8514
+ }
8515
+ interface TableDataNonNullableFields$1 {
8516
+ containerData?: PluginContainerDataNonNullableFields$1;
8517
+ dimensions?: DimensionsNonNullableFields$1;
8518
+ }
8519
+ interface CellStyleNonNullableFields$1 {
8520
+ verticalAlignment: VerticalAlignment$1;
8521
+ }
8522
+ interface TableCellDataNonNullableFields$1 {
8523
+ cellStyle?: CellStyleNonNullableFields$1;
8524
+ }
8525
+ interface AudioDataNonNullableFields$1 {
8526
+ containerData?: PluginContainerDataNonNullableFields$1;
8527
+ }
8528
+ interface OrderedListDataNonNullableFields$1 {
8529
+ indentation: number;
8530
+ }
8531
+ interface BulletedListDataNonNullableFields$1 {
8532
+ indentation: number;
8533
+ }
8534
+ interface BlockquoteDataNonNullableFields$1 {
8535
+ indentation: number;
8536
+ }
8537
+ interface NodeNonNullableFields$1 {
8538
+ buttonData?: ButtonDataNonNullableFields$1;
8539
+ codeBlockData?: CodeBlockDataNonNullableFields$1;
8540
+ dividerData?: DividerDataNonNullableFields$1;
8541
+ fileData?: FileDataNonNullableFields$1;
8542
+ galleryData?: GalleryDataNonNullableFields$1;
8543
+ gifData?: GIFDataNonNullableFields$1;
8544
+ headingData?: HeadingDataNonNullableFields$1;
8545
+ htmlData?: HTMLDataNonNullableFields$1;
8546
+ imageData?: ImageDataNonNullableFields$1;
8547
+ linkPreviewData?: LinkPreviewDataNonNullableFields$1;
8548
+ mapData?: MapDataNonNullableFields$1;
8549
+ paragraphData?: ParagraphDataNonNullableFields$1;
8550
+ pollData?: PollDataNonNullableFields$1;
8551
+ textData?: TextDataNonNullableFields$1;
8552
+ appEmbedData?: AppEmbedDataNonNullableFields$1;
8553
+ videoData?: VideoDataNonNullableFields$1;
8554
+ embedData?: EmbedDataNonNullableFields$1;
8555
+ collapsibleListData?: CollapsibleListDataNonNullableFields$1;
8556
+ tableData?: TableDataNonNullableFields$1;
8557
+ tableCellData?: TableCellDataNonNullableFields$1;
8558
+ audioData?: AudioDataNonNullableFields$1;
8559
+ orderedListData?: OrderedListDataNonNullableFields$1;
8560
+ bulletedListData?: BulletedListDataNonNullableFields$1;
8561
+ blockquoteData?: BlockquoteDataNonNullableFields$1;
8562
+ type: NodeType$1;
8563
+ id: string;
8564
+ nodes: NodeNonNullableFields$1[];
8565
+ }
8566
+ interface MetadataNonNullableFields$1 {
8567
+ version: number;
8568
+ }
8569
+ interface TextNodeStyleNonNullableFields$1 {
8570
+ decorations: DecorationNonNullableFields$1[];
8571
+ }
8572
+ interface DocumentStyleNonNullableFields$1 {
8573
+ headerOne?: TextNodeStyleNonNullableFields$1;
8574
+ headerTwo?: TextNodeStyleNonNullableFields$1;
8575
+ headerThree?: TextNodeStyleNonNullableFields$1;
8576
+ headerFour?: TextNodeStyleNonNullableFields$1;
8577
+ headerFive?: TextNodeStyleNonNullableFields$1;
8578
+ headerSix?: TextNodeStyleNonNullableFields$1;
8579
+ paragraph?: TextNodeStyleNonNullableFields$1;
8580
+ blockquote?: TextNodeStyleNonNullableFields$1;
8581
+ codeBlock?: TextNodeStyleNonNullableFields$1;
8582
+ }
8583
+ interface V1RichContentNonNullableFields$1 {
8584
+ nodes: NodeNonNullableFields$1[];
8585
+ metadata?: MetadataNonNullableFields$1;
8586
+ documentStyle?: DocumentStyleNonNullableFields$1;
8587
+ }
8588
+ interface RichContentNonNullableFields$1 {
8589
+ content?: V1RichContentNonNullableFields$1;
8590
+ }
8591
+ interface CreateRichContentResponseNonNullableFields$1 {
8592
+ richContent?: RichContentNonNullableFields$1;
8593
+ }
8594
+ interface GetRichContentResponseNonNullableFields$1 {
8595
+ richContent?: RichContentNonNullableFields$1;
8596
+ }
8597
+ interface FindRichContentBySlugResponseNonNullableFields$1 {
8598
+ richContent?: RichContentNonNullableFields$1;
8599
+ }
8600
+ interface UpdateRichContentResponseNonNullableFields$1 {
8601
+ richContent?: RichContentNonNullableFields$1;
8602
+ }
8603
+ interface QueryRichContentsResponseNonNullableFields$1 {
8604
+ richContents: RichContentNonNullableFields$1[];
8605
+ }
8606
+
8607
+ interface RichContent {
8608
+ /**
8609
+ * Unique identifier of the RichContent entity.
8610
+ * @readonly
8611
+ */
8612
+ _id?: string | null;
8613
+ /**
8614
+ * Revision number of the RichContent.
8615
+ * @readonly
8616
+ */
8617
+ revision?: string | null;
8618
+ /**
8619
+ * Date and time the RichContent was created.
8620
+ * @readonly
8621
+ */
8622
+ _createdDate?: Date;
8623
+ /**
8624
+ * Date and time the RichContent was last updated.
8625
+ * @readonly
8626
+ */
8627
+ _updatedDate?: Date;
8628
+ /** Optional event identifier to which the rich content is associated to. */
8629
+ eventId?: string | null;
8630
+ /** Name of the field to which the rich content is associated to. */
8631
+ fieldName?: string | null;
8632
+ /**
8633
+ * Rich content of the associated entity.
8634
+ * In order to use this field you have to integrate with "Ricos" on frontend side. To learn how to do it visit https://ricos.js.org/.
8635
+ */
8636
+ content?: V1RichContent;
8637
+ /** Data Extensions */
8638
+ extendedFields?: ExtendedFields$2;
8639
+ }
8640
+ interface V1RichContent {
8641
+ /** Node objects representing a rich content document. */
8642
+ nodes?: Node[];
8643
+ /** Object metadata. */
8644
+ metadata?: Metadata;
8645
+ /** Global styling for header, paragraph, block quote, and code block nodes in the object. */
8646
+ documentStyle?: DocumentStyle;
8647
+ }
8648
+ interface Node extends NodeDataOneOf {
8649
+ /** Data for a button node. */
8650
+ buttonData?: ButtonData;
8651
+ /** Data for a code block node. */
8652
+ codeBlockData?: CodeBlockData;
8653
+ /** Data for a divider node. */
8654
+ dividerData?: DividerData;
8655
+ /** Data for a file node. */
8656
+ fileData?: FileData;
8657
+ /** Data for a gallery node. */
8658
+ galleryData?: GalleryData;
8659
+ /** Data for a GIF node. */
8660
+ gifData?: GIFData;
8661
+ /** Data for a heading node. */
8662
+ headingData?: HeadingData;
8663
+ /** Data for an embedded HTML node. */
8664
+ htmlData?: HTMLData;
8665
+ /** Data for an image node. */
8666
+ imageData?: ImageData;
8667
+ /** Data for a link preview node. */
8668
+ linkPreviewData?: LinkPreviewData;
8669
+ /** Data for a map node. */
8670
+ mapData?: MapData;
8671
+ /** Data for a paragraph node. */
8672
+ paragraphData?: ParagraphData;
8673
+ /** Data for a poll node. */
8674
+ pollData?: PollData;
8675
+ /** Data for a text node. Used to apply decorations to text. */
8676
+ textData?: TextData;
8677
+ /** Data for an app embed node. */
8678
+ appEmbedData?: AppEmbedData;
8679
+ /** Data for a video node. */
8680
+ videoData?: VideoData;
8681
+ /** Data for an oEmbed node. */
8682
+ embedData?: EmbedData;
8683
+ /** Data for a collapsible list node. */
8684
+ collapsibleListData?: CollapsibleListData;
8685
+ /** Data for a table node. */
8686
+ tableData?: TableData;
8687
+ /** Data for a table cell node. */
8688
+ tableCellData?: TableCellData;
8689
+ /** Data for a custom external node. */
8690
+ externalData?: Record<string, any> | null;
8691
+ /** Data for an audio node. */
8692
+ audioData?: AudioData;
8693
+ /** Data for an ordered list node. */
8694
+ orderedListData?: OrderedListData;
8695
+ /** Data for a bulleted list node. */
8696
+ bulletedListData?: BulletedListData;
8697
+ /** Data for a block quote node. */
8698
+ blockquoteData?: BlockquoteData;
8699
+ /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
8700
+ type?: NodeType;
8701
+ /** Node ID. */
8702
+ _id?: string;
8703
+ /** A list of child nodes. */
8704
+ nodes?: Node[];
8705
+ /** Padding and background color styling for the node. */
8706
+ style?: NodeStyle;
8707
+ }
8708
+ /** @oneof */
8709
+ interface NodeDataOneOf {
8710
+ /** Data for a button node. */
8711
+ buttonData?: ButtonData;
8712
+ /** Data for a code block node. */
8713
+ codeBlockData?: CodeBlockData;
8714
+ /** Data for a divider node. */
8715
+ dividerData?: DividerData;
8716
+ /** Data for a file node. */
8717
+ fileData?: FileData;
8718
+ /** Data for a gallery node. */
8719
+ galleryData?: GalleryData;
8720
+ /** Data for a GIF node. */
8721
+ gifData?: GIFData;
8722
+ /** Data for a heading node. */
8723
+ headingData?: HeadingData;
8724
+ /** Data for an embedded HTML node. */
8725
+ htmlData?: HTMLData;
8726
+ /** Data for an image node. */
8727
+ imageData?: ImageData;
8728
+ /** Data for a link preview node. */
8729
+ linkPreviewData?: LinkPreviewData;
8730
+ /** Data for a map node. */
8731
+ mapData?: MapData;
8732
+ /** Data for a paragraph node. */
8733
+ paragraphData?: ParagraphData;
8734
+ /** Data for a poll node. */
8735
+ pollData?: PollData;
8736
+ /** Data for a text node. Used to apply decorations to text. */
8737
+ textData?: TextData;
8738
+ /** Data for an app embed node. */
8739
+ appEmbedData?: AppEmbedData;
8740
+ /** Data for a video node. */
8741
+ videoData?: VideoData;
8742
+ /** Data for an oEmbed node. */
8743
+ embedData?: EmbedData;
8744
+ /** Data for a collapsible list node. */
8745
+ collapsibleListData?: CollapsibleListData;
8746
+ /** Data for a table node. */
8747
+ tableData?: TableData;
8748
+ /** Data for a table cell node. */
8749
+ tableCellData?: TableCellData;
8750
+ /** Data for a custom external node. */
8751
+ externalData?: Record<string, any> | null;
8752
+ /** Data for an audio node. */
8753
+ audioData?: AudioData;
8754
+ /** Data for an ordered list node. */
8755
+ orderedListData?: OrderedListData;
8756
+ /** Data for a bulleted list node. */
8757
+ bulletedListData?: BulletedListData;
8758
+ /** Data for a block quote node. */
8759
+ blockquoteData?: BlockquoteData;
8760
+ }
8761
+ declare enum NodeType {
8762
+ PARAGRAPH = "PARAGRAPH",
8763
+ TEXT = "TEXT",
8764
+ HEADING = "HEADING",
8765
+ BULLETED_LIST = "BULLETED_LIST",
8766
+ ORDERED_LIST = "ORDERED_LIST",
8767
+ LIST_ITEM = "LIST_ITEM",
8768
+ BLOCKQUOTE = "BLOCKQUOTE",
8769
+ CODE_BLOCK = "CODE_BLOCK",
8770
+ VIDEO = "VIDEO",
8771
+ DIVIDER = "DIVIDER",
8772
+ FILE = "FILE",
8773
+ GALLERY = "GALLERY",
8774
+ GIF = "GIF",
8775
+ HTML = "HTML",
8776
+ IMAGE = "IMAGE",
8777
+ LINK_PREVIEW = "LINK_PREVIEW",
8778
+ MAP = "MAP",
8779
+ POLL = "POLL",
8780
+ APP_EMBED = "APP_EMBED",
8781
+ BUTTON = "BUTTON",
8782
+ COLLAPSIBLE_LIST = "COLLAPSIBLE_LIST",
8783
+ TABLE = "TABLE",
8784
+ EMBED = "EMBED",
8785
+ COLLAPSIBLE_ITEM = "COLLAPSIBLE_ITEM",
8786
+ COLLAPSIBLE_ITEM_TITLE = "COLLAPSIBLE_ITEM_TITLE",
8787
+ COLLAPSIBLE_ITEM_BODY = "COLLAPSIBLE_ITEM_BODY",
8788
+ TABLE_CELL = "TABLE_CELL",
8789
+ TABLE_ROW = "TABLE_ROW",
8790
+ EXTERNAL = "EXTERNAL",
8791
+ AUDIO = "AUDIO"
8792
+ }
8793
+ interface NodeStyle {
8794
+ /** The top padding value in pixels. */
8795
+ paddingTop?: string | null;
8796
+ /** The bottom padding value in pixels. */
8797
+ paddingBottom?: string | null;
8798
+ /** The background color as a hexadecimal value. */
8799
+ backgroundColor?: string | null;
8800
+ }
8801
+ interface ButtonData {
8802
+ /** Styling for the button's container. */
8803
+ containerData?: PluginContainerData;
8804
+ /** The button type. */
8805
+ type?: Type$6;
8806
+ /** Styling for the button. */
8807
+ styles?: Styles;
8808
+ /** The text to display on the button. */
8809
+ text?: string | null;
8810
+ /** Button link details. */
8811
+ link?: Link;
8812
+ }
8813
+ interface Border {
8814
+ /** Border width in pixels. */
8815
+ width?: number | null;
8816
+ /** Border radius in pixels. */
8817
+ radius?: number | null;
8818
+ }
8819
+ interface Colors {
8820
+ /** The text color as a hexadecimal value. */
8821
+ text?: string | null;
8822
+ /** The border color as a hexadecimal value. */
8823
+ border?: string | null;
8824
+ /** The background color as a hexadecimal value. */
8825
+ background?: string | null;
8826
+ }
8827
+ interface PluginContainerData {
8828
+ /** The width of the node when it's displayed. */
8829
+ width?: PluginContainerDataWidth;
8830
+ /** The node's alignment within its container. */
8831
+ alignment?: PluginContainerDataAlignment;
8832
+ /** Spoiler cover settings for the node. */
8833
+ spoiler?: Spoiler;
8834
+ /** The height of the node when it's displayed. */
8835
+ height?: Height;
8836
+ /** Sets whether text should wrap around this node when it's displayed. If `textWrap` is `false`, the node takes up the width of its container. Defaults to `true` for all node types except 'DIVIVDER' where it defaults to `false`. */
8837
+ textWrap?: boolean | null;
8838
+ }
8839
+ declare enum WidthType {
8840
+ /** Width matches the content width */
8841
+ CONTENT = "CONTENT",
8842
+ /** Small Width */
8843
+ SMALL = "SMALL",
8844
+ /** Width will match the original asset width */
8845
+ ORIGINAL = "ORIGINAL",
8846
+ /** coast-to-coast display */
8847
+ FULL_WIDTH = "FULL_WIDTH"
8848
+ }
8849
+ interface PluginContainerDataWidth extends PluginContainerDataWidthDataOneOf {
8850
+ /**
8851
+ * One of the following predefined width options:
8852
+ * `CONTENT`: The width of the container matches the content width.
8853
+ * `SMALL`: A small width.
8854
+ * `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.
8855
+ * `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.
8856
+ */
8857
+ size?: WidthType;
8858
+ /** A custom width value in pixels. */
8859
+ custom?: string | null;
8860
+ }
8861
+ /** @oneof */
8862
+ interface PluginContainerDataWidthDataOneOf {
8863
+ /**
8864
+ * One of the following predefined width options:
8865
+ * `CONTENT`: The width of the container matches the content width.
8866
+ * `SMALL`: A small width.
8867
+ * `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.
8868
+ * `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.
8869
+ */
8870
+ size?: WidthType;
8871
+ /** A custom width value in pixels. */
8872
+ custom?: string | null;
8873
+ }
8874
+ declare enum PluginContainerDataAlignment {
8875
+ /** Center Alignment */
8876
+ CENTER = "CENTER",
8877
+ /** Left Alignment */
8878
+ LEFT = "LEFT",
8879
+ /** Right Alignment */
8880
+ RIGHT = "RIGHT"
8881
+ }
8882
+ interface Spoiler {
8883
+ /** Sets whether the spoiler cover is enabled for this node. Defaults to `false`. */
8884
+ enabled?: boolean | null;
8885
+ /** The description displayed on top of the spoiler cover. */
8886
+ description?: string | null;
8887
+ /** The text for the button used to remove the spoiler cover. */
8888
+ buttonText?: string | null;
8889
+ }
8890
+ interface Height {
8891
+ /** A custom height value in pixels. */
8892
+ custom?: string | null;
8893
+ }
8894
+ declare enum Type$6 {
8895
+ /** Regular link button */
8896
+ LINK = "LINK",
8897
+ /** Triggers custom action that is defined in plugin configuration by the consumer */
8898
+ ACTION = "ACTION"
8899
+ }
8900
+ interface Styles {
8901
+ /** Border attributes. */
8902
+ border?: Border;
8903
+ /** Color attributes. */
8904
+ colors?: Colors;
8905
+ }
8906
+ interface Link extends LinkDataOneOf {
8907
+ /** The absolute URL for the linked document. */
8908
+ url?: string;
8909
+ /** The target node's ID. Used for linking to another node in this object. */
8910
+ anchor?: string;
8911
+ /**
8912
+ * he HTML `target` attribute value for the link. This property defines where the linked document opens as follows:
8913
+ * `SELF` - Default. Opens the linked document in the same frame as the link.
8914
+ * `BLANK` - Opens the linked document in a new browser tab or window.
8915
+ * `PARENT` - Opens the linked document in the link's parent frame.
8916
+ * `TOP` - Opens the linked document in the full body of the link's browser tab or window.
8917
+ */
8918
+ target?: Target;
8919
+ /** The HTML `rel` attribute value for the link. This object specifies the relationship between the current document and the linked document. */
8920
+ rel?: Rel;
8921
+ /** A serialized object used for a custom or external link panel. */
8922
+ customData?: string | null;
8923
+ }
8924
+ /** @oneof */
8925
+ interface LinkDataOneOf {
8926
+ /** The absolute URL for the linked document. */
8927
+ url?: string;
8928
+ /** The target node's ID. Used for linking to another node in this object. */
8929
+ anchor?: string;
8930
+ }
8931
+ declare enum Target {
8932
+ /** Opens the linked document in the same frame as it was clicked (this is default) */
8933
+ SELF = "SELF",
8934
+ /** Opens the linked document in a new window or tab */
8935
+ BLANK = "BLANK",
8936
+ /** Opens the linked document in the parent frame */
8937
+ PARENT = "PARENT",
8938
+ /** Opens the linked document in the full body of the window */
8939
+ TOP = "TOP"
8940
+ }
8941
+ interface Rel {
8942
+ /** Indicates to search engine crawlers not to follow the link. Defaults to `false`. */
8943
+ nofollow?: boolean | null;
8944
+ /** Indicates to search engine crawlers that the link is a paid placement such as sponsored content or an advertisement. Defaults to `false`. */
8945
+ sponsored?: boolean | null;
8946
+ /** Indicates that this link is user-generated content and isn't necessarily trusted or endorsed by the page’s author. For example, a link in a fourm post. Defaults to `false`. */
8947
+ ugc?: boolean | null;
8948
+ /** Indicates that this link protect referral information from being passed to the target website. */
8949
+ noreferrer?: boolean | null;
8950
+ }
8951
+ interface CodeBlockData {
8952
+ /** Styling for the code block's text. */
8953
+ textStyle?: TextStyle;
8954
+ }
8955
+ interface TextStyle {
8956
+ /** Text alignment. Defaults to `AUTO`. */
8957
+ textAlignment?: TextAlignment;
8958
+ /** A CSS `line-height` value for the text expressed as a ratio relative to the font size. For example, if the font size is 20px, a `lineHeight` value of `'1.5'`` results in a line height of 30px. */
8959
+ lineHeight?: string | null;
8960
+ }
8961
+ declare enum TextAlignment {
8962
+ /** browser default, eqivalent to `initial` */
8963
+ AUTO = "AUTO",
8964
+ /** Left align */
8965
+ LEFT = "LEFT",
8966
+ /** Right align */
8967
+ RIGHT = "RIGHT",
8968
+ /** Center align */
8969
+ CENTER = "CENTER",
8970
+ /** Text is spaced to line up its left and right edges to the left and right edges of the line box, except for the last line */
8971
+ JUSTIFY = "JUSTIFY"
8972
+ }
8973
+ interface DividerData {
8974
+ /** Styling for the divider's container. */
8975
+ containerData?: PluginContainerData;
8976
+ /** Divider line style. */
8977
+ lineStyle?: LineStyle;
8978
+ /** Divider width. */
8979
+ width?: Width;
8980
+ /** Divider alignment. */
8981
+ alignment?: Alignment;
8982
+ }
8983
+ declare enum LineStyle {
8984
+ /** Single Line */
8985
+ SINGLE = "SINGLE",
8986
+ /** Double Line */
8987
+ DOUBLE = "DOUBLE",
8988
+ /** Dashed Line */
8989
+ DASHED = "DASHED",
8990
+ /** Dotted Line */
8991
+ DOTTED = "DOTTED"
8992
+ }
8993
+ declare enum Width {
8994
+ /** Large line */
8995
+ LARGE = "LARGE",
8996
+ /** Medium line */
8997
+ MEDIUM = "MEDIUM",
8998
+ /** Small line */
8999
+ SMALL = "SMALL"
9000
+ }
9001
+ declare enum Alignment {
9002
+ /** Center alignment */
9003
+ CENTER = "CENTER",
9004
+ /** Left alignment */
9005
+ LEFT = "LEFT",
9006
+ /** Right alignment */
9007
+ RIGHT = "RIGHT"
9008
+ }
9009
+ interface FileData {
9010
+ /** Styling for the file's container. */
9011
+ containerData?: PluginContainerData;
9012
+ /** The source for the file's data. */
9013
+ src?: FileSource;
9014
+ /** File name. */
9015
+ name?: string | null;
9016
+ /** File type. */
9017
+ type?: string | null;
9018
+ /**
9019
+ * Use `sizeInKb` instead.
9020
+ * @deprecated
9021
+ */
9022
+ size?: number | null;
9023
+ /** Settings for PDF files. */
9024
+ pdfSettings?: PDFSettings;
9025
+ /** File MIME type. */
9026
+ mimeType?: string | null;
9027
+ /** File path. */
9028
+ path?: string | null;
9029
+ /** File size in KB. */
9030
+ sizeInKb?: string | null;
9031
+ }
9032
+ declare enum ViewMode {
9033
+ /** No PDF view */
9034
+ NONE = "NONE",
9035
+ /** Full PDF view */
9036
+ FULL = "FULL",
9037
+ /** Mini PDF view */
9038
+ MINI = "MINI"
9039
+ }
9040
+ interface FileSource extends FileSourceDataOneOf {
9041
+ /** The absolute URL for the file's source. */
9042
+ url?: string | null;
9043
+ /**
9044
+ * Custom ID. Use `id` instead.
9045
+ * @deprecated
9046
+ */
9047
+ custom?: string | null;
9048
+ /** An ID that's resolved to a URL by a resolver function. */
9049
+ _id?: string | null;
9050
+ /** Indicates whether the file's source is private. Defaults to `false`. */
9051
+ private?: boolean | null;
9052
+ }
9053
+ /** @oneof */
9054
+ interface FileSourceDataOneOf {
9055
+ /** The absolute URL for the file's source. */
9056
+ url?: string | null;
9057
+ /**
9058
+ * Custom ID. Use `id` instead.
9059
+ * @deprecated
9060
+ */
9061
+ custom?: string | null;
9062
+ /** An ID that's resolved to a URL by a resolver function. */
9063
+ _id?: string | null;
9064
+ }
9065
+ interface PDFSettings {
9066
+ /**
9067
+ * PDF view mode. One of the following:
9068
+ * `NONE` : The PDF isn't displayed.
9069
+ * `FULL` : A full page view of the PDF is displayed.
9070
+ * `MINI` : A mini view of the PDF is displayed.
9071
+ */
9072
+ viewMode?: ViewMode;
9073
+ /** Sets whether the PDF download button is disabled. Defaults to `false`. */
9074
+ disableDownload?: boolean | null;
9075
+ /** Sets whether the PDF print button is disabled. Defaults to `false`. */
9076
+ disablePrint?: boolean | null;
9077
+ }
9078
+ interface GalleryData {
9079
+ /** Styling for the gallery's container. */
9080
+ containerData?: PluginContainerData;
9081
+ /** The items in the gallery. */
9082
+ items?: Item[];
9083
+ /** Options for defining the gallery's appearance. */
9084
+ options?: GalleryOptions;
9085
+ /** Sets whether the gallery's expand button is disabled. Defaults to `false`. */
9086
+ disableExpand?: boolean | null;
9087
+ /** Sets whether the gallery's download button is disabled. Defaults to `false`. */
9088
+ disableDownload?: boolean | null;
9089
+ }
9090
+ interface Media {
9091
+ /** The source for the media's data. */
9092
+ src?: FileSource;
9093
+ /** Media width in pixels. */
9094
+ width?: number | null;
9095
+ /** Media height in pixels. */
9096
+ height?: number | null;
9097
+ /** Media duration in seconds. Only relevant for audio and video files. */
9098
+ duration?: number | null;
9099
+ }
9100
+ interface Image {
9101
+ /** Image file details. */
9102
+ media?: Media;
9103
+ /** Link details for images that are links. */
9104
+ link?: Link;
9105
+ }
9106
+ interface Video {
9107
+ /** Video file details. */
9108
+ media?: Media;
9109
+ /** Video thumbnail file details. */
9110
+ thumbnail?: Media;
9111
+ }
9112
+ interface Item extends ItemDataOneOf {
9113
+ /** An image item. */
9114
+ image?: Image;
9115
+ /** A video item. */
9116
+ video?: Video;
9117
+ /** Item title. */
9118
+ title?: string | null;
9119
+ /** Item's alternative text. */
9120
+ altText?: string | null;
9121
+ }
9122
+ /** @oneof */
9123
+ interface ItemDataOneOf {
9124
+ /** An image item. */
9125
+ image?: Image;
9126
+ /** A video item. */
9127
+ video?: Video;
9128
+ }
9129
+ interface GalleryOptions {
9130
+ /** Gallery layout. */
9131
+ layout?: Layout;
9132
+ /** Styling for gallery items. */
9133
+ item?: ItemStyle;
9134
+ /** Styling for gallery thumbnail images. */
9135
+ thumbnails?: Thumbnails;
9136
+ }
9137
+ declare enum LayoutType {
9138
+ /** Collage type */
9139
+ COLLAGE = "COLLAGE",
9140
+ /** Masonry type */
9141
+ MASONRY = "MASONRY",
9142
+ /** Grid type */
9143
+ GRID = "GRID",
9144
+ /** Thumbnail type */
9145
+ THUMBNAIL = "THUMBNAIL",
9146
+ /** Slider type */
9147
+ SLIDER = "SLIDER",
9148
+ /** Slideshow type */
9149
+ SLIDESHOW = "SLIDESHOW",
9150
+ /** Panorama type */
9151
+ PANORAMA = "PANORAMA",
9152
+ /** Column type */
9153
+ COLUMN = "COLUMN",
9154
+ /** Magic type */
9155
+ MAGIC = "MAGIC",
9156
+ /** Fullsize images type */
9157
+ FULLSIZE = "FULLSIZE"
9158
+ }
9159
+ declare enum Orientation {
9160
+ /** Rows Orientation */
9161
+ ROWS = "ROWS",
9162
+ /** Columns Orientation */
9163
+ COLUMNS = "COLUMNS"
9164
+ }
9165
+ declare enum Crop {
9166
+ /** Crop to fill */
9167
+ FILL = "FILL",
9168
+ /** Crop to fit */
9169
+ FIT = "FIT"
9170
+ }
9171
+ declare enum ThumbnailsAlignment {
9172
+ /** Top alignment */
9173
+ TOP = "TOP",
9174
+ /** Right alignment */
9175
+ RIGHT = "RIGHT",
9176
+ /** Bottom alignment */
9177
+ BOTTOM = "BOTTOM",
9178
+ /** Left alignment */
9179
+ LEFT = "LEFT",
9180
+ /** No thumbnail */
9181
+ NONE = "NONE"
9182
+ }
9183
+ interface Layout {
9184
+ /** Gallery layout type. */
9185
+ type?: LayoutType;
9186
+ /** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
9187
+ horizontalScroll?: boolean | null;
9188
+ /** Gallery orientation. */
9189
+ orientation?: Orientation;
9190
+ /** The number of columns to display on full size screens. */
9191
+ numberOfColumns?: number | null;
9192
+ /** The number of columns to display on mobile screens. */
9193
+ mobileNumberOfColumns?: number | null;
9194
+ }
9195
+ interface ItemStyle {
9196
+ /** Desirable dimension for each item in pixels (behvaior changes according to gallery type) */
9197
+ targetSize?: number | null;
9198
+ /** Item ratio */
9199
+ ratio?: number | null;
9200
+ /** Sets how item images are cropped. */
9201
+ crop?: Crop;
9202
+ /** The spacing between items in pixels. */
9203
+ spacing?: number | null;
9204
+ }
9205
+ interface Thumbnails {
9206
+ /** Thumbnail alignment. */
9207
+ placement?: ThumbnailsAlignment;
9208
+ /** Spacing between thumbnails in pixels. */
9209
+ spacing?: number | null;
9210
+ }
9211
+ interface GIFData {
9212
+ /** Styling for the GIF's container. */
9213
+ containerData?: PluginContainerData;
9214
+ /** The source of the full size GIF. */
9215
+ original?: GIF;
9216
+ /** The source of the downsized GIF. */
9217
+ downsized?: GIF;
9218
+ /** Height in pixels. */
9219
+ height?: number;
9220
+ /** Width in pixels. */
9221
+ width?: number;
9222
+ }
9223
+ interface GIF {
9224
+ /** GIF format URL. */
9225
+ gif?: string | null;
9226
+ /** MP4 format URL. */
9227
+ mp4?: string | null;
9228
+ /** Thumbnail URL. */
9229
+ still?: string | null;
9230
+ }
9231
+ interface HeadingData {
9232
+ /** Heading level from 1-6. */
9233
+ level?: number;
9234
+ /** Styling for the heading text. */
9235
+ textStyle?: TextStyle;
9236
+ /** Indentation level from 1-4. */
9237
+ indentation?: number | null;
9238
+ }
9239
+ interface HTMLData extends HTMLDataDataOneOf {
9240
+ /** The URL for the HTML code for the node. */
9241
+ url?: string;
9242
+ /** The HTML code for the node. */
9243
+ html?: string;
9244
+ /**
9245
+ * Whether this is an AdSense element. Use `source` instead.
9246
+ * @deprecated
9247
+ */
9248
+ isAdsense?: boolean | null;
9249
+ /** Styling for the HTML node's container. */
9250
+ containerData?: PluginContainerData;
9251
+ /** The type of HTML code. */
9252
+ source?: Source;
9253
+ }
9254
+ /** @oneof */
9255
+ interface HTMLDataDataOneOf {
9256
+ /** The URL for the HTML code for the node. */
9257
+ url?: string;
9258
+ /** The HTML code for the node. */
9259
+ html?: string;
9260
+ /**
9261
+ * Whether this is an AdSense element. Use `source` instead.
9262
+ * @deprecated
9263
+ */
9264
+ isAdsense?: boolean | null;
9265
+ }
9266
+ declare enum Source {
9267
+ HTML = "HTML",
9268
+ ADSENSE = "ADSENSE"
9269
+ }
9270
+ interface ImageData {
9271
+ /** Styling for the image's container. */
9272
+ containerData?: PluginContainerData;
9273
+ /** Image file details. */
9274
+ image?: Media;
9275
+ /** Link details for images that are links. */
9276
+ link?: Link;
9277
+ /** Sets whether the image expands to full screen when clicked. Defaults to `false`. */
9278
+ disableExpand?: boolean | null;
9279
+ /** Image's alternative text. */
9280
+ altText?: string | null;
9281
+ /** Image caption. */
9282
+ caption?: string | null;
9283
+ /** Sets whether the image's download button is disabled. Defaults to `false`. */
9284
+ disableDownload?: boolean | null;
9285
+ }
9286
+ interface LinkPreviewData {
9287
+ /** Styling for the link preview's container. */
9288
+ containerData?: PluginContainerData;
9289
+ /** Link details. */
9290
+ link?: Link;
9291
+ /** Preview title. */
9292
+ title?: string | null;
9293
+ /** Preview thumbnail URL. */
9294
+ thumbnailUrl?: string | null;
9295
+ /** Preview description. */
9296
+ description?: string | null;
9297
+ /** The preview content as HTML. */
9298
+ html?: string | null;
9299
+ }
9300
+ interface MapData {
9301
+ /** Styling for the map's container. */
9302
+ containerData?: PluginContainerData;
9303
+ /** Map settings. */
9304
+ mapSettings?: MapSettings;
9305
+ }
9306
+ interface MapSettings {
9307
+ /** The address to display on the map. */
9308
+ address?: string | null;
9309
+ /** Sets whether the map is draggable. */
9310
+ draggable?: boolean | null;
9311
+ /** Sets whether the location marker is visible. */
9312
+ marker?: boolean | null;
9313
+ /** Sets whether street view control is enabled. */
9314
+ streetViewControl?: boolean | null;
9315
+ /** Sets whether zoom control is enabled. */
9316
+ zoomControl?: boolean | null;
9317
+ /** Location latitude. */
9318
+ lat?: number | null;
9319
+ /** Location longitude. */
9320
+ lng?: number | null;
9321
+ /** Location name. */
9322
+ locationName?: string | null;
9323
+ /** Sets whether view mode control is enabled. */
9324
+ viewModeControl?: boolean | null;
9325
+ /** Initial zoom value. */
9326
+ initialZoom?: number | null;
9327
+ /** Map type. `HYBRID` is a combination of the `ROADMAP` and `SATELLITE` map types. */
9328
+ mapType?: MapType;
9329
+ }
9330
+ declare enum MapType {
9331
+ /** Roadmap map type */
9332
+ ROADMAP = "ROADMAP",
9333
+ /** Satellite map type */
9334
+ SATELITE = "SATELITE",
9335
+ /** Hybrid map type */
9336
+ HYBRID = "HYBRID",
9337
+ /** Terrain map type */
9338
+ TERRAIN = "TERRAIN"
9339
+ }
9340
+ interface ParagraphData {
9341
+ /** Styling for the paragraph text. */
9342
+ textStyle?: TextStyle;
9343
+ /** Indentation level from 1-4. */
9344
+ indentation?: number | null;
9345
+ /** Paragraph level */
9346
+ level?: number | null;
9347
+ }
9348
+ interface PollData {
9349
+ /** Styling for the poll's container. */
9350
+ containerData?: PluginContainerData;
9351
+ /** Poll data. */
9352
+ poll?: Poll;
9353
+ /** Layout settings for the poll and voting options. */
9354
+ layout?: PollDataLayout;
9355
+ /** Styling for the poll and voting options. */
9356
+ design?: Design;
9357
+ }
9358
+ declare enum ViewRole {
9359
+ /** Only Poll creator can view the results */
9360
+ CREATOR = "CREATOR",
9361
+ /** Anyone who voted can see the results */
9362
+ VOTERS = "VOTERS",
9363
+ /** Anyone can see the results, even if one didn't vote */
9364
+ EVERYONE = "EVERYONE"
9365
+ }
9366
+ declare enum VoteRole {
9367
+ /** Logged in member */
9368
+ SITE_MEMBERS = "SITE_MEMBERS",
9369
+ /** Anyone */
9370
+ ALL = "ALL"
9371
+ }
9372
+ interface Permissions {
9373
+ /** Sets who can view the poll results. */
9374
+ view?: ViewRole;
9375
+ /** Sets who can vote. */
9376
+ vote?: VoteRole;
9377
+ /** Sets whether one voter can vote multiple times. Defaults to `false`. */
9378
+ allowMultipleVotes?: boolean | null;
9379
+ }
9380
+ interface Option {
9381
+ /** Option ID. */
9382
+ _id?: string | null;
9383
+ /** Option title. */
9384
+ title?: string | null;
9385
+ /** The image displayed with the option. */
9386
+ image?: Media;
9387
+ }
9388
+ interface Settings$2 {
9389
+ /** Permissions settings for voting. */
9390
+ permissions?: Permissions;
9391
+ /** Sets whether voters are displayed in the vote results. Defaults to `true`. */
9392
+ showVoters?: boolean | null;
9393
+ /** Sets whether the vote count is displayed. Defaults to `true`. */
9394
+ showVotesCount?: boolean | null;
9395
+ }
9396
+ declare enum PollLayoutType {
9397
+ /** List */
9398
+ LIST = "LIST",
9399
+ /** Grid */
9400
+ GRID = "GRID"
9401
+ }
9402
+ declare enum PollLayoutDirection {
9403
+ /** Left-to-right */
9404
+ LTR = "LTR",
9405
+ /** Right-to-left */
9406
+ RTL = "RTL"
9407
+ }
9408
+ interface PollLayout {
9409
+ /** The layout for displaying the voting options. */
9410
+ type?: PollLayoutType;
9411
+ /** The direction of the text displayed in the voting options. Text can be displayed either right-to-left or left-to-right. */
9412
+ direction?: PollLayoutDirection;
9413
+ /** Sets whether to display the main poll image. Defaults to `false`. */
9414
+ enableImage?: boolean | null;
9415
+ }
9416
+ interface OptionLayout {
9417
+ /** Sets whether to display option images. Defaults to `false`. */
9418
+ enableImage?: boolean | null;
9419
+ }
9420
+ declare enum BackgroundType {
9421
+ /** Color background type */
9422
+ COLOR = "COLOR",
9423
+ /** Image background type */
9424
+ IMAGE = "IMAGE",
9425
+ /** Gradiant background type */
9426
+ GRADIENT = "GRADIENT"
9427
+ }
9428
+ interface Gradient {
9429
+ /** The gradient angle in degrees. */
9430
+ angle?: number | null;
9431
+ /** The start color as a hexademical value. */
9432
+ startColor?: string | null;
9433
+ /** The end color as a hexademical value. */
9434
+ lastColor?: string | null;
9435
+ }
9436
+ interface Background extends BackgroundBackgroundOneOf {
9437
+ /** The background color as a hexademical value. */
9438
+ color?: string | null;
9439
+ /** An image to use for the background. */
9440
+ image?: Media;
9441
+ /** Details for a gradient background. */
9442
+ gradient?: Gradient;
9443
+ /** Background type. For each option, include the relevant details. */
9444
+ type?: BackgroundType;
9445
+ }
9446
+ /** @oneof */
9447
+ interface BackgroundBackgroundOneOf {
9448
+ /** The background color as a hexademical value. */
9449
+ color?: string | null;
9450
+ /** An image to use for the background. */
9451
+ image?: Media;
9452
+ /** Details for a gradient background. */
9453
+ gradient?: Gradient;
9454
+ }
9455
+ interface PollDesign {
9456
+ /** Background styling. */
9457
+ background?: Background;
9458
+ /** Border radius in pixels. */
9459
+ borderRadius?: number | null;
9460
+ }
9461
+ interface OptionDesign {
9462
+ /** Border radius in pixels. */
9463
+ borderRadius?: number | null;
9464
+ }
9465
+ interface Poll {
9466
+ /** Poll ID. */
9467
+ _id?: string | null;
9468
+ /** Poll title. */
9469
+ title?: string | null;
9470
+ /** Poll creator ID. */
9471
+ creatorId?: string | null;
9472
+ /** Main poll image. */
9473
+ image?: Media;
9474
+ /** Voting options. */
9475
+ options?: Option[];
9476
+ /** The poll's permissions and display settings. */
9477
+ settings?: Settings$2;
9478
+ }
9479
+ interface PollDataLayout {
9480
+ /** Poll layout settings. */
9481
+ poll?: PollLayout;
9482
+ /** Voting otpions layout settings. */
9483
+ options?: OptionLayout;
9484
+ }
9485
+ interface Design {
9486
+ /** Styling for the poll. */
9487
+ poll?: PollDesign;
9488
+ /** Styling for voting options. */
9489
+ options?: OptionDesign;
9490
+ }
9491
+ interface TextData {
9492
+ /** The text to apply decorations to. */
9493
+ text?: string;
9494
+ /** The decorations to apply. */
9495
+ decorations?: Decoration[];
9496
+ }
9497
+ /** Adds appearence changes to text */
9498
+ interface Decoration extends DecorationDataOneOf {
9499
+ /** Data for an anchor link decoration. */
9500
+ anchorData?: AnchorData;
9501
+ /** Data for a color decoration. */
9502
+ colorData?: ColorData;
9503
+ /** Data for an external link decoration. */
9504
+ linkData?: LinkData;
9505
+ /** Data for a mention decoration. */
9506
+ mentionData?: MentionData;
9507
+ /** Data for a font size decoration. */
9508
+ fontSizeData?: FontSizeData;
9509
+ /** Font weight for a bold decoration. */
9510
+ fontWeightValue?: number | null;
9511
+ /** Data for an italic decoration. Defaults to `true`. */
9512
+ italicData?: boolean | null;
9513
+ /** Data for an underline decoration. Defaults to `true`. */
9514
+ underlineData?: boolean | null;
9515
+ /** Data for a spoiler decoration. */
9516
+ spoilerData?: SpoilerData;
9517
+ /** The type of decoration to apply. */
9518
+ type?: DecorationType;
9519
+ }
9520
+ /** @oneof */
9521
+ interface DecorationDataOneOf {
9522
+ /** Data for an anchor link decoration. */
9523
+ anchorData?: AnchorData;
9524
+ /** Data for a color decoration. */
9525
+ colorData?: ColorData;
9526
+ /** Data for an external link decoration. */
9527
+ linkData?: LinkData;
9528
+ /** Data for a mention decoration. */
9529
+ mentionData?: MentionData;
9530
+ /** Data for a font size decoration. */
9531
+ fontSizeData?: FontSizeData;
9532
+ /** Font weight for a bold decoration. */
9533
+ fontWeightValue?: number | null;
9534
+ /** Data for an italic decoration. Defaults to `true`. */
9535
+ italicData?: boolean | null;
9536
+ /** Data for an underline decoration. Defaults to `true`. */
9537
+ underlineData?: boolean | null;
9538
+ /** Data for a spoiler decoration. */
9539
+ spoilerData?: SpoilerData;
9540
+ }
9541
+ declare enum DecorationType {
9542
+ BOLD = "BOLD",
9543
+ ITALIC = "ITALIC",
9544
+ UNDERLINE = "UNDERLINE",
9545
+ SPOILER = "SPOILER",
9546
+ ANCHOR = "ANCHOR",
9547
+ MENTION = "MENTION",
9548
+ LINK = "LINK",
9549
+ COLOR = "COLOR",
9550
+ FONT_SIZE = "FONT_SIZE",
9551
+ EXTERNAL = "EXTERNAL"
9552
+ }
9553
+ interface AnchorData {
9554
+ /** The target node's ID. */
9555
+ anchor?: string;
9556
+ }
9557
+ interface ColorData {
9558
+ /** The text's background color as a hexadecimal value. */
9559
+ background?: string | null;
9560
+ /** The text's foreground color as a hexadecimal value. */
9561
+ foreground?: string | null;
9562
+ }
9563
+ interface LinkData {
9564
+ /** Link details. */
9565
+ link?: Link;
9566
+ }
9567
+ interface MentionData {
9568
+ /** The mentioned user's name. */
9569
+ name?: string;
9570
+ /** The version of the user's name that appears after the `@` character in the mention. */
9571
+ slug?: string;
9572
+ /** Mentioned user's ID. */
9573
+ _id?: string | null;
9574
+ }
9575
+ interface FontSizeData {
9576
+ /** The units used for the font size. */
9577
+ unit?: FontType;
9578
+ /** Font size value. */
9579
+ value?: number | null;
9580
+ }
9581
+ declare enum FontType {
9582
+ PX = "PX",
9583
+ EM = "EM"
9584
+ }
9585
+ interface SpoilerData {
9586
+ /** Spoiler ID. */
9587
+ _id?: string | null;
9588
+ }
9589
+ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
9590
+ /** Data for embedded Wix Bookings content. */
9591
+ bookingData?: BookingData;
9592
+ /** Data for embedded Wix Events content. */
9593
+ eventData?: EventData;
9594
+ /** The type of Wix App content being embedded. */
9595
+ type?: AppType;
9596
+ /** The ID of the embedded content. */
9597
+ itemId?: string | null;
9598
+ /** The name of the embedded content. */
9599
+ name?: string | null;
9600
+ /**
9601
+ * Deprecated: Use `image` instead.
9602
+ * @deprecated
9603
+ */
9604
+ imageSrc?: string | null;
9605
+ /** The URL for the embedded content. */
9606
+ url?: string | null;
9607
+ /** An image for the embedded content. */
9608
+ image?: Media;
9609
+ }
9610
+ /** @oneof */
9611
+ interface AppEmbedDataAppDataOneOf {
9612
+ /** Data for embedded Wix Bookings content. */
9613
+ bookingData?: BookingData;
9614
+ /** Data for embedded Wix Events content. */
9615
+ eventData?: EventData;
9616
+ }
9617
+ declare enum AppType {
9618
+ PRODUCT = "PRODUCT",
9619
+ EVENT = "EVENT",
9620
+ BOOKING = "BOOKING"
9621
+ }
9622
+ interface BookingData {
9623
+ /** Booking duration in minutes. */
9624
+ durations?: string | null;
9625
+ }
9626
+ interface EventData {
9627
+ /** Event schedule. */
9628
+ scheduling?: string | null;
9629
+ /** Event location. */
9630
+ location?: string | null;
9631
+ }
9632
+ interface VideoData {
9633
+ /** Styling for the video's container. */
9634
+ containerData?: PluginContainerData;
9635
+ /** Video details. */
9636
+ video?: Media;
9637
+ /** Video thumbnail details. */
9638
+ thumbnail?: Media;
9639
+ /** Sets whether the video's download button is disabled. Defaults to `false`. */
9640
+ disableDownload?: boolean | null;
9641
+ /** Video title. */
9642
+ title?: string | null;
9643
+ /** Video options. */
9644
+ options?: PlaybackOptions;
9645
+ }
9646
+ interface PlaybackOptions {
9647
+ /** Sets whether the media will automatically start playing. */
9648
+ autoPlay?: boolean | null;
9649
+ /** Sets whether media's will be looped. */
9650
+ playInLoop?: boolean | null;
9651
+ /** Sets whether media's controls will be shown. */
9652
+ showControls?: boolean | null;
9653
+ }
9654
+ interface EmbedData {
9655
+ /** Styling for the oEmbed node's container. */
9656
+ containerData?: PluginContainerData;
9657
+ /** An [oEmbed](https://www.oembed.com) object. */
9658
+ oembed?: Oembed;
9659
+ /** Origin asset source. */
9660
+ src?: string | null;
9661
+ }
9662
+ interface Oembed {
9663
+ /** The resource type. */
9664
+ type?: string | null;
9665
+ /** The width of the resource specified in the `url` property in pixels. */
9666
+ width?: number | null;
9667
+ /** The height of the resource specified in the `url` property in pixels. */
9668
+ height?: number | null;
9669
+ /** Resource title. */
9670
+ title?: string | null;
9671
+ /** The source URL for the resource. */
9672
+ url?: string | null;
9673
+ /** HTML for embedding a video player. The HTML should have no padding or margins. */
9674
+ html?: string | null;
9675
+ /** The name of the author or owner of the resource. */
9676
+ authorName?: string | null;
9677
+ /** The URL for the author or owner of the resource. */
9678
+ authorUrl?: string | null;
9679
+ /** The name of the resource provider. */
9680
+ providerName?: string | null;
9681
+ /** The URL for the resource provider. */
9682
+ providerUrl?: string | null;
9683
+ /** The URL for a thumbnail image for the resource. If this property is defined, `thumbnailWidth` and `thumbnailHeight` must also be defined. */
9684
+ thumbnailUrl?: string | null;
9685
+ /** The width of the resource's thumbnail image. If this property is defined, `thumbnailUrl` and `thumbnailHeight` must also be defined. */
9686
+ thumbnailWidth?: string | null;
9687
+ /** The height of the resource's thumbnail image. If this property is defined, `thumbnailUrl` and `thumbnailWidth`must also be defined. */
9688
+ thumbnailHeight?: string | null;
9689
+ /** The URL for an embedded viedo. */
9690
+ videoUrl?: string | null;
9691
+ /** The oEmbed version number. This value must be `1.0`. */
9692
+ version?: string | null;
9693
+ }
9694
+ interface CollapsibleListData {
9695
+ /** Styling for the collapsible list's container. */
9696
+ containerData?: PluginContainerData;
9697
+ /** If `true`, only one item can be expanded at a time. Defaults to `false`. */
9698
+ expandOnlyOne?: boolean | null;
9699
+ /** Sets which items are expanded when the page loads. */
9700
+ initialExpandedItems?: InitialExpandedItems;
9701
+ /** The direction of the text in the list. Either left-to-right or right-to-left. */
9702
+ direction?: Direction;
9703
+ /** If `true`, The collapsible item will appear in search results as an FAQ. */
9704
+ isQapageData?: boolean | null;
9705
+ }
9706
+ declare enum InitialExpandedItems {
9707
+ /** First item will be expended initally */
9708
+ FIRST = "FIRST",
9709
+ /** All items will expended initally */
9710
+ ALL = "ALL",
9711
+ /** All items collapsed initally */
9712
+ NONE = "NONE"
9713
+ }
9714
+ declare enum Direction {
9715
+ /** Left-to-right */
9716
+ LTR = "LTR",
9717
+ /** Right-to-left */
9718
+ RTL = "RTL"
9719
+ }
9720
+ interface TableData {
9721
+ /** Styling for the table's container. */
9722
+ containerData?: PluginContainerData;
9723
+ /** The table's dimensions. */
9724
+ dimensions?: Dimensions;
9725
+ /**
9726
+ * Deprecated: Use `rowHeader` and `columnHeader` instead.
9727
+ * @deprecated
9728
+ */
9729
+ header?: boolean | null;
9730
+ /** Sets whether the table's first row is a header. Defaults to `false`. */
9731
+ rowHeader?: boolean | null;
9732
+ /** Sets whether the table's first column is a header. Defaults to `false`. */
9733
+ columnHeader?: boolean | null;
9734
+ }
9735
+ interface Dimensions {
9736
+ /** An array representing relative width of each column in relation to the other columns. */
9737
+ colsWidthRatio?: number[];
9738
+ /** An array representing the height of each row in pixels. */
9739
+ rowsHeight?: number[];
9740
+ /** An array representing the minimum width of each column in pixels. */
9741
+ colsMinWidth?: number[];
9742
+ }
9743
+ interface TableCellData {
9744
+ /** Styling for the cell's background color and text alignment. */
9745
+ cellStyle?: CellStyle;
9746
+ /** The cell's border colors. */
9747
+ borderColors?: BorderColors;
9748
+ }
9749
+ declare enum VerticalAlignment {
9750
+ /** Top alignment */
9751
+ TOP = "TOP",
9752
+ /** Middle alignment */
9753
+ MIDDLE = "MIDDLE",
9754
+ /** Bottom alignment */
9755
+ BOTTOM = "BOTTOM"
9756
+ }
9757
+ interface CellStyle {
9758
+ /** Vertical alignment for the cell's text. */
9759
+ verticalAlignment?: VerticalAlignment;
9760
+ /** Cell background color as a hexadecimal value. */
9761
+ backgroundColor?: string | null;
9762
+ }
9763
+ interface BorderColors {
9764
+ /** Left border color as a hexadecimal value. */
9765
+ left?: string | null;
9766
+ /** Right border color as a hexadecimal value. */
9767
+ right?: string | null;
9768
+ /** Top border color as a hexadecimal value. */
9769
+ top?: string | null;
9770
+ /** Bottom border color as a hexadecimal value. */
9771
+ bottom?: string | null;
9772
+ }
9773
+ interface AudioData {
9774
+ /** Styling for the audio node's container. */
9775
+ containerData?: PluginContainerData;
9776
+ /** Audio file details. */
9777
+ audio?: Media;
9778
+ /** Sets whether the audio node's download button is disabled. Defaults to `false`. */
9779
+ disableDownload?: boolean | null;
9780
+ /** Cover image. */
9781
+ coverImage?: Media;
9782
+ /** Track name. */
9783
+ name?: string | null;
9784
+ /** Author name. */
9785
+ authorName?: string | null;
9786
+ /** An HTML version of the audio node. */
9787
+ html?: string | null;
9788
+ }
9789
+ interface OrderedListData {
9790
+ /** Indentation level from 0-4. */
9791
+ indentation?: number;
9792
+ /** Offset level from 0-4. */
9793
+ offset?: number | null;
9794
+ }
9795
+ interface BulletedListData {
9796
+ /** Indentation level from 0-4. */
9797
+ indentation?: number;
9798
+ /** Offset level from 0-4. */
9799
+ offset?: number | null;
9800
+ }
9801
+ interface BlockquoteData {
9802
+ /** Indentation level from 1-4. */
9803
+ indentation?: number;
9804
+ }
9805
+ interface Metadata {
9806
+ /** Schema version. */
9807
+ version?: number;
9808
+ /**
9809
+ * When the object was created.
9810
+ * @readonly
9811
+ * @deprecated
9812
+ */
9813
+ createdTimestamp?: Date;
9814
+ /**
9815
+ * When the object was most recently updated.
9816
+ * @deprecated
9817
+ */
9818
+ updatedTimestamp?: Date;
9819
+ /** Object ID. */
9820
+ _id?: string | null;
9821
+ }
9822
+ interface DocumentStyle {
9823
+ /** Styling for H1 nodes. */
9824
+ headerOne?: TextNodeStyle;
9825
+ /** Styling for H2 nodes. */
9826
+ headerTwo?: TextNodeStyle;
9827
+ /** Styling for H3 nodes. */
9828
+ headerThree?: TextNodeStyle;
9829
+ /** Styling for H4 nodes. */
9830
+ headerFour?: TextNodeStyle;
9831
+ /** Styling for H5 nodes. */
9832
+ headerFive?: TextNodeStyle;
9833
+ /** Styling for H6 nodes. */
9834
+ headerSix?: TextNodeStyle;
9835
+ /** Styling for paragraph nodes. */
9836
+ paragraph?: TextNodeStyle;
9837
+ /** Styling for block quote nodes. */
9838
+ blockquote?: TextNodeStyle;
9839
+ /** Styling for code block nodes. */
9840
+ codeBlock?: TextNodeStyle;
9841
+ }
9842
+ interface TextNodeStyle {
9843
+ /** The decorations to apply to the node. */
9844
+ decorations?: Decoration[];
9845
+ /** Padding and background color for the node. */
9846
+ nodeStyle?: NodeStyle;
9847
+ /** Line height for text in the node. */
9848
+ lineHeight?: string | null;
9849
+ }
9850
+ interface ExtendedFields$2 {
9851
+ /**
9852
+ * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
9853
+ * The value of each key is structured according to the schema defined when the extended fields were configured.
9854
+ *
9855
+ * You can only access fields for which you have the appropriate permissions.
9856
+ *
9857
+ * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
9858
+ */
9859
+ namespaces?: Record<string, Record<string, any>>;
9860
+ }
9861
+ interface CreateRichContentRequest {
9862
+ /** RichContent to be created. */
9863
+ richContent: RichContent;
9864
+ }
9865
+ interface CreateRichContentResponse {
9866
+ /** The created RichContent. */
9867
+ richContent?: RichContent;
9868
+ }
9869
+ interface GetRichContentRequest {
9870
+ /** ID of the RichContent to retrieve. */
9871
+ richContentId: string;
9872
+ }
9873
+ interface GetRichContentResponse {
9874
+ /** The requested RichContent. */
9875
+ richContent?: RichContent;
9876
+ }
9877
+ interface FindRichContentBySlugRequest {
9878
+ /** The event slug */
9879
+ eventSlug: string;
9880
+ /** The field name */
9881
+ fieldName: string;
9882
+ }
9883
+ interface FindRichContentBySlugResponse {
9884
+ /** The RichContent */
9885
+ richContent?: RichContent;
9886
+ }
9887
+ interface UpdateRichContentRequest {
9888
+ /** RichContent to be updated, may be partial. */
9889
+ richContent: RichContent;
9890
+ }
9891
+ interface UpdateRichContentResponse {
9892
+ /** Updated RichContent. */
9893
+ richContent?: RichContent;
9894
+ }
9895
+ interface DeleteRichContentRequest {
9896
+ /** Id of the RichContent to delete. */
9897
+ richContentId: string;
9898
+ }
9899
+ interface DeleteRichContentResponse {
9900
+ }
9901
+ interface QueryRichContentsRequest {
9902
+ /** WQL expression. */
9903
+ query?: CursorQuery;
9904
+ }
9905
+ interface CursorQuery extends CursorQueryPagingMethodOneOf {
9906
+ /** 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`. */
9907
+ cursorPaging?: CursorPaging$6;
9908
+ /**
9909
+ * Filter object in the following format:
9910
+ * `"filter" : {
9911
+ * "fieldName1": "value1",
9912
+ * "fieldName2":{"$operator":"value2"}
9913
+ * }`
9914
+ * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
9915
+ */
9916
+ filter?: Record<string, any> | null;
9917
+ /**
9918
+ * Sort object in the following format:
9919
+ * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
9920
+ */
9921
+ sort?: Sorting$6[];
9922
+ }
9923
+ /** @oneof */
9924
+ interface CursorQueryPagingMethodOneOf {
9925
+ /** 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`. */
9926
+ cursorPaging?: CursorPaging$6;
9927
+ }
9928
+ interface Sorting$6 {
9929
+ /** Name of the field to sort by. */
9930
+ fieldName?: string;
9931
+ /** Sort order. */
9932
+ order?: SortOrder$6;
9933
+ }
9934
+ declare enum SortOrder$6 {
9935
+ ASC = "ASC",
9936
+ DESC = "DESC"
9937
+ }
9938
+ interface CursorPaging$6 {
9939
+ /** Number of items to load. */
9940
+ limit?: number | null;
9941
+ /**
9942
+ * Pointer to the next or previous page in the list of results.
9943
+ * You can get the relevant cursor token
9944
+ * from the `pagingMetadata` object in the previous call's response.
9945
+ * Not relevant for the first request.
9946
+ */
9947
+ cursor?: string | null;
9948
+ }
9949
+ interface QueryRichContentsResponse {
9950
+ /** List of RichContents. */
9951
+ richContents?: RichContent[];
9952
+ /** Paging metadata */
9953
+ pagingMetadata?: CursorPagingMetadata;
9954
+ }
9955
+ interface CursorPagingMetadata {
9956
+ /** Number of items returned in the response. */
9957
+ count?: number | null;
9958
+ /** Offset that was requested. */
9959
+ cursors?: Cursors$6;
9960
+ /**
9961
+ * Indicates if there are more results after the current page.
9962
+ * If `true`, another page of results can be retrieved.
9963
+ * If `false`, this is the last page.
9964
+ */
9965
+ hasNext?: boolean | null;
9966
+ }
9967
+ interface Cursors$6 {
9968
+ /** Cursor pointing to next page in the list of results. */
9969
+ next?: string | null;
9970
+ /** Cursor pointing to previous page in the list of results. */
9971
+ prev?: string | null;
9972
+ }
9973
+ interface PluginContainerDataWidthNonNullableFields {
9974
+ size: WidthType;
9975
+ }
9976
+ interface PluginContainerDataNonNullableFields {
9977
+ width?: PluginContainerDataWidthNonNullableFields;
9978
+ alignment: PluginContainerDataAlignment;
9979
+ }
9980
+ interface LinkNonNullableFields {
9981
+ url: string;
9982
+ anchor: string;
9983
+ target: Target;
9984
+ }
9985
+ interface ButtonDataNonNullableFields {
9986
+ containerData?: PluginContainerDataNonNullableFields;
9987
+ type: Type$6;
9988
+ link?: LinkNonNullableFields;
9989
+ }
9990
+ interface TextStyleNonNullableFields {
9991
+ textAlignment: TextAlignment;
9992
+ }
9993
+ interface CodeBlockDataNonNullableFields {
9994
+ textStyle?: TextStyleNonNullableFields;
9995
+ }
9996
+ interface DividerDataNonNullableFields {
9997
+ containerData?: PluginContainerDataNonNullableFields;
9998
+ lineStyle: LineStyle;
9999
+ width: Width;
10000
+ alignment: Alignment;
10001
+ }
10002
+ interface PDFSettingsNonNullableFields {
10003
+ viewMode: ViewMode;
10004
+ }
10005
+ interface FileDataNonNullableFields {
10006
+ containerData?: PluginContainerDataNonNullableFields;
10007
+ pdfSettings?: PDFSettingsNonNullableFields;
10008
+ }
10009
+ interface ImageNonNullableFields {
10010
+ link?: LinkNonNullableFields;
10011
+ }
10012
+ interface ItemNonNullableFields {
10013
+ image?: ImageNonNullableFields;
10014
+ }
10015
+ interface LayoutNonNullableFields {
10016
+ type: LayoutType;
10017
+ orientation: Orientation;
10018
+ }
10019
+ interface ItemStyleNonNullableFields {
10020
+ crop: Crop;
10021
+ }
10022
+ interface ThumbnailsNonNullableFields {
10023
+ placement: ThumbnailsAlignment;
10024
+ }
10025
+ interface GalleryOptionsNonNullableFields {
10026
+ layout?: LayoutNonNullableFields;
10027
+ item?: ItemStyleNonNullableFields;
10028
+ thumbnails?: ThumbnailsNonNullableFields;
10029
+ }
10030
+ interface GalleryDataNonNullableFields {
10031
+ containerData?: PluginContainerDataNonNullableFields;
10032
+ items: ItemNonNullableFields[];
10033
+ options?: GalleryOptionsNonNullableFields;
10034
+ }
10035
+ interface GIFDataNonNullableFields {
10036
+ containerData?: PluginContainerDataNonNullableFields;
10037
+ height: number;
10038
+ width: number;
10039
+ }
10040
+ interface HeadingDataNonNullableFields {
10041
+ level: number;
10042
+ textStyle?: TextStyleNonNullableFields;
10043
+ }
10044
+ interface HTMLDataNonNullableFields {
10045
+ url: string;
10046
+ html: string;
10047
+ containerData?: PluginContainerDataNonNullableFields;
10048
+ source: Source;
10049
+ }
10050
+ interface ImageDataNonNullableFields {
10051
+ containerData?: PluginContainerDataNonNullableFields;
10052
+ link?: LinkNonNullableFields;
10053
+ }
10054
+ interface LinkPreviewDataNonNullableFields {
10055
+ containerData?: PluginContainerDataNonNullableFields;
10056
+ link?: LinkNonNullableFields;
10057
+ }
10058
+ interface MapSettingsNonNullableFields {
10059
+ mapType: MapType;
10060
+ }
10061
+ interface MapDataNonNullableFields {
10062
+ containerData?: PluginContainerDataNonNullableFields;
10063
+ mapSettings?: MapSettingsNonNullableFields;
10064
+ }
10065
+ interface ParagraphDataNonNullableFields {
10066
+ textStyle?: TextStyleNonNullableFields;
10067
+ }
10068
+ interface PermissionsNonNullableFields {
10069
+ view: ViewRole;
10070
+ vote: VoteRole;
10071
+ }
10072
+ interface SettingsNonNullableFields$2 {
10073
+ permissions?: PermissionsNonNullableFields;
10074
+ }
10075
+ interface PollNonNullableFields {
10076
+ settings?: SettingsNonNullableFields$2;
10077
+ }
10078
+ interface PollLayoutNonNullableFields {
10079
+ type: PollLayoutType;
10080
+ direction: PollLayoutDirection;
10081
+ }
10082
+ interface PollDataLayoutNonNullableFields {
10083
+ poll?: PollLayoutNonNullableFields;
10084
+ }
10085
+ interface BackgroundNonNullableFields {
10086
+ type: BackgroundType;
10087
+ }
10088
+ interface PollDesignNonNullableFields {
10089
+ background?: BackgroundNonNullableFields;
10090
+ }
10091
+ interface DesignNonNullableFields {
10092
+ poll?: PollDesignNonNullableFields;
10093
+ }
10094
+ interface PollDataNonNullableFields {
10095
+ containerData?: PluginContainerDataNonNullableFields;
10096
+ poll?: PollNonNullableFields;
10097
+ layout?: PollDataLayoutNonNullableFields;
10098
+ design?: DesignNonNullableFields;
10099
+ }
10100
+ interface AnchorDataNonNullableFields {
10101
+ anchor: string;
10102
+ }
10103
+ interface LinkDataNonNullableFields {
10104
+ link?: LinkNonNullableFields;
10105
+ }
10106
+ interface MentionDataNonNullableFields {
10107
+ name: string;
10108
+ slug: string;
10109
+ }
10110
+ interface FontSizeDataNonNullableFields {
10111
+ unit: FontType;
10112
+ }
10113
+ interface DecorationNonNullableFields {
10114
+ anchorData?: AnchorDataNonNullableFields;
10115
+ linkData?: LinkDataNonNullableFields;
10116
+ mentionData?: MentionDataNonNullableFields;
10117
+ fontSizeData?: FontSizeDataNonNullableFields;
10118
+ type: DecorationType;
10119
+ }
10120
+ interface TextDataNonNullableFields {
10121
+ text: string;
10122
+ decorations: DecorationNonNullableFields[];
10123
+ }
10124
+ interface AppEmbedDataNonNullableFields {
10125
+ type: AppType;
10126
+ }
10127
+ interface VideoDataNonNullableFields {
10128
+ containerData?: PluginContainerDataNonNullableFields;
10129
+ }
10130
+ interface EmbedDataNonNullableFields {
10131
+ containerData?: PluginContainerDataNonNullableFields;
10132
+ }
10133
+ interface CollapsibleListDataNonNullableFields {
10134
+ containerData?: PluginContainerDataNonNullableFields;
10135
+ initialExpandedItems: InitialExpandedItems;
10136
+ direction: Direction;
10137
+ }
10138
+ interface DimensionsNonNullableFields {
10139
+ colsWidthRatio: number[];
10140
+ rowsHeight: number[];
10141
+ colsMinWidth: number[];
10142
+ }
10143
+ interface TableDataNonNullableFields {
10144
+ containerData?: PluginContainerDataNonNullableFields;
10145
+ dimensions?: DimensionsNonNullableFields;
10146
+ }
10147
+ interface CellStyleNonNullableFields {
10148
+ verticalAlignment: VerticalAlignment;
10149
+ }
10150
+ interface TableCellDataNonNullableFields {
10151
+ cellStyle?: CellStyleNonNullableFields;
10152
+ }
10153
+ interface AudioDataNonNullableFields {
10154
+ containerData?: PluginContainerDataNonNullableFields;
10155
+ }
10156
+ interface OrderedListDataNonNullableFields {
10157
+ indentation: number;
10158
+ }
10159
+ interface BulletedListDataNonNullableFields {
10160
+ indentation: number;
10161
+ }
10162
+ interface BlockquoteDataNonNullableFields {
10163
+ indentation: number;
10164
+ }
10165
+ interface NodeNonNullableFields {
10166
+ buttonData?: ButtonDataNonNullableFields;
10167
+ codeBlockData?: CodeBlockDataNonNullableFields;
10168
+ dividerData?: DividerDataNonNullableFields;
10169
+ fileData?: FileDataNonNullableFields;
10170
+ galleryData?: GalleryDataNonNullableFields;
10171
+ gifData?: GIFDataNonNullableFields;
10172
+ headingData?: HeadingDataNonNullableFields;
10173
+ htmlData?: HTMLDataNonNullableFields;
10174
+ imageData?: ImageDataNonNullableFields;
10175
+ linkPreviewData?: LinkPreviewDataNonNullableFields;
10176
+ mapData?: MapDataNonNullableFields;
10177
+ paragraphData?: ParagraphDataNonNullableFields;
10178
+ pollData?: PollDataNonNullableFields;
10179
+ textData?: TextDataNonNullableFields;
10180
+ appEmbedData?: AppEmbedDataNonNullableFields;
10181
+ videoData?: VideoDataNonNullableFields;
10182
+ embedData?: EmbedDataNonNullableFields;
10183
+ collapsibleListData?: CollapsibleListDataNonNullableFields;
10184
+ tableData?: TableDataNonNullableFields;
10185
+ tableCellData?: TableCellDataNonNullableFields;
10186
+ audioData?: AudioDataNonNullableFields;
10187
+ orderedListData?: OrderedListDataNonNullableFields;
10188
+ bulletedListData?: BulletedListDataNonNullableFields;
10189
+ blockquoteData?: BlockquoteDataNonNullableFields;
10190
+ type: NodeType;
10191
+ _id: string;
10192
+ nodes: NodeNonNullableFields[];
10193
+ }
10194
+ interface MetadataNonNullableFields {
10195
+ version: number;
10196
+ }
10197
+ interface TextNodeStyleNonNullableFields {
10198
+ decorations: DecorationNonNullableFields[];
10199
+ }
10200
+ interface DocumentStyleNonNullableFields {
10201
+ headerOne?: TextNodeStyleNonNullableFields;
10202
+ headerTwo?: TextNodeStyleNonNullableFields;
10203
+ headerThree?: TextNodeStyleNonNullableFields;
10204
+ headerFour?: TextNodeStyleNonNullableFields;
10205
+ headerFive?: TextNodeStyleNonNullableFields;
10206
+ headerSix?: TextNodeStyleNonNullableFields;
10207
+ paragraph?: TextNodeStyleNonNullableFields;
10208
+ blockquote?: TextNodeStyleNonNullableFields;
10209
+ codeBlock?: TextNodeStyleNonNullableFields;
10210
+ }
10211
+ interface V1RichContentNonNullableFields {
10212
+ nodes: NodeNonNullableFields[];
10213
+ metadata?: MetadataNonNullableFields;
10214
+ documentStyle?: DocumentStyleNonNullableFields;
10215
+ }
10216
+ interface RichContentNonNullableFields {
10217
+ content?: V1RichContentNonNullableFields;
10218
+ }
10219
+ interface CreateRichContentResponseNonNullableFields {
10220
+ richContent?: RichContentNonNullableFields;
10221
+ }
10222
+ interface GetRichContentResponseNonNullableFields {
10223
+ richContent?: RichContentNonNullableFields;
10224
+ }
10225
+ interface FindRichContentBySlugResponseNonNullableFields {
10226
+ richContent?: RichContentNonNullableFields;
10227
+ }
10228
+ interface UpdateRichContentResponseNonNullableFields {
10229
+ richContent?: RichContentNonNullableFields;
10230
+ }
10231
+ interface QueryRichContentsResponseNonNullableFields {
10232
+ richContents: RichContentNonNullableFields[];
10233
+ }
10234
+
10235
+ type __PublicMethodMetaInfo$6<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
10236
+ getUrl: (context: any) => string;
10237
+ httpMethod: K;
10238
+ path: string;
10239
+ pathParams: M;
10240
+ __requestType: T;
10241
+ __originalRequestType: S;
10242
+ __responseType: Q;
10243
+ __originalResponseType: R;
10244
+ };
10245
+ declare function createRichContent(): __PublicMethodMetaInfo$6<'POST', {}, CreateRichContentRequest, CreateRichContentRequest$1, CreateRichContentResponse & CreateRichContentResponseNonNullableFields, CreateRichContentResponse$1 & CreateRichContentResponseNonNullableFields$1>;
10246
+ declare function getRichContent(): __PublicMethodMetaInfo$6<'GET', {
10247
+ richContentId: string;
10248
+ }, GetRichContentRequest, GetRichContentRequest$1, GetRichContentResponse & GetRichContentResponseNonNullableFields, GetRichContentResponse$1 & GetRichContentResponseNonNullableFields$1>;
10249
+ declare function findRichContentBySlug(): __PublicMethodMetaInfo$6<'GET', {
10250
+ eventSlug: string;
10251
+ fieldName: string;
10252
+ }, FindRichContentBySlugRequest, FindRichContentBySlugRequest$1, FindRichContentBySlugResponse & FindRichContentBySlugResponseNonNullableFields, FindRichContentBySlugResponse$1 & FindRichContentBySlugResponseNonNullableFields$1>;
10253
+ declare function updateRichContent(): __PublicMethodMetaInfo$6<'PATCH', {
10254
+ richContentId: string;
10255
+ }, UpdateRichContentRequest, UpdateRichContentRequest$1, UpdateRichContentResponse & UpdateRichContentResponseNonNullableFields, UpdateRichContentResponse$1 & UpdateRichContentResponseNonNullableFields$1>;
10256
+ declare function deleteRichContent(): __PublicMethodMetaInfo$6<'DELETE', {
10257
+ richContentId: string;
10258
+ }, DeleteRichContentRequest, DeleteRichContentRequest$1, DeleteRichContentResponse, DeleteRichContentResponse$1>;
10259
+ declare function queryRichContents(): __PublicMethodMetaInfo$6<'POST', {}, QueryRichContentsRequest, QueryRichContentsRequest$1, QueryRichContentsResponse & QueryRichContentsResponseNonNullableFields, QueryRichContentsResponse$1 & QueryRichContentsResponseNonNullableFields$1>;
6959
10260
 
6960
- declare const meta$6_bulkUpdateOrders: typeof bulkUpdateOrders;
6961
- declare const meta$6_cancelReservation: typeof cancelReservation;
6962
- declare const meta$6_checkout: typeof checkout;
6963
- declare const meta$6_confirmOrder: typeof confirmOrder;
6964
- declare const meta$6_createReservation: typeof createReservation;
6965
- declare const meta$6_getCheckoutOptions: typeof getCheckoutOptions;
6966
- declare const meta$6_getInvoice: typeof getInvoice;
6967
- declare const meta$6_getOrder: typeof getOrder;
6968
- declare const meta$6_getSummary: typeof getSummary;
6969
- declare const meta$6_listAvailableTickets: typeof listAvailableTickets;
6970
- declare const meta$6_listOrders: typeof listOrders;
6971
- declare const meta$6_posCheckout: typeof posCheckout;
6972
- declare const meta$6_queryAvailableTickets: typeof queryAvailableTickets;
6973
- declare const meta$6_updateCheckout: typeof updateCheckout;
6974
- declare const meta$6_updateOrder: typeof updateOrder;
10261
+ declare const meta$6_createRichContent: typeof createRichContent;
10262
+ declare const meta$6_deleteRichContent: typeof deleteRichContent;
10263
+ declare const meta$6_findRichContentBySlug: typeof findRichContentBySlug;
10264
+ declare const meta$6_getRichContent: typeof getRichContent;
10265
+ declare const meta$6_queryRichContents: typeof queryRichContents;
10266
+ declare const meta$6_updateRichContent: typeof updateRichContent;
6975
10267
  declare namespace meta$6 {
6976
- export { type __PublicMethodMetaInfo$6 as __PublicMethodMetaInfo, meta$6_bulkUpdateOrders as bulkUpdateOrders, meta$6_cancelReservation as cancelReservation, meta$6_checkout as checkout, meta$6_confirmOrder as confirmOrder, meta$6_createReservation as createReservation, meta$6_getCheckoutOptions as getCheckoutOptions, meta$6_getInvoice as getInvoice, meta$6_getOrder as getOrder, meta$6_getSummary as getSummary, meta$6_listAvailableTickets as listAvailableTickets, meta$6_listOrders as listOrders, meta$6_posCheckout as posCheckout, meta$6_queryAvailableTickets as queryAvailableTickets, meta$6_updateCheckout as updateCheckout, meta$6_updateOrder as updateOrder };
10268
+ export { type __PublicMethodMetaInfo$6 as __PublicMethodMetaInfo, meta$6_createRichContent as createRichContent, meta$6_deleteRichContent as deleteRichContent, meta$6_findRichContentBySlug as findRichContentBySlug, meta$6_getRichContent as getRichContent, meta$6_queryRichContents as queryRichContents, meta$6_updateRichContent as updateRichContent };
6977
10269
  }
6978
10270
 
6979
10271
  interface Rsvp$1 {
@@ -14028,4 +17320,4 @@ declare namespace meta {
14028
17320
  export { type meta___PublicMethodMetaInfo as __PublicMethodMetaInfo, meta_bulkDeleteTicketDefinitionsByFilter as bulkDeleteTicketDefinitionsByFilter, meta_changeCurrency as changeCurrency, meta_countAvailableTicketDefinitions as countAvailableTicketDefinitions, meta_countTicketDefinitions as countTicketDefinitions, meta_createTicketDefinition as createTicketDefinition, meta_deleteTicketDefinition as deleteTicketDefinition, meta_getTicketDefinition as getTicketDefinition, meta_queryAvailableTicketDefinitions as queryAvailableTicketDefinitions, meta_queryTicketDefinitions as queryTicketDefinitions, meta_reorderTicketDefinitions as reorderTicketDefinitions, meta_updateTicketDefinition as updateTicketDefinition };
14029
17321
  }
14030
17322
 
14031
- export { meta$8 as categories, meta$7 as forms, meta$d as guests, meta$c as notifications, meta$6 as orders, meta$2 as policies, meta$5 as rsvp, meta$a as schedule, meta$b as scheduleBookmarks, meta$9 as staffMembers, meta$3 as ticketDefinitions, meta as ticketDefinitionsV2, meta$4 as tickets, meta$1 as wixEventsV2 };
17323
+ export { meta$9 as categories, meta$8 as forms, meta$e as guests, meta$d as notifications, meta$7 as orders, meta$2 as policies, meta$6 as ricos, meta$5 as rsvp, meta$b as schedule, meta$c as scheduleBookmarks, meta$a as staffMembers, meta$3 as ticketDefinitions, meta as ticketDefinitionsV2, meta$4 as tickets, meta$1 as wixEventsV2 };