@wix/events 1.0.344 → 1.0.346

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/events",
3
- "version": "1.0.344",
3
+ "version": "1.0.346",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -25,9 +25,9 @@
25
25
  "@wix/events_forms": "1.0.54",
26
26
  "@wix/events_guests": "1.0.79",
27
27
  "@wix/events_notifications": "1.0.43",
28
- "@wix/events_orders": "1.0.61",
28
+ "@wix/events_orders": "1.0.62",
29
29
  "@wix/events_policies": "1.0.49",
30
- "@wix/events_ricos": "1.0.20",
30
+ "@wix/events_ricos": "1.0.21",
31
31
  "@wix/events_rsvp": "1.0.53",
32
32
  "@wix/events_rsvp-v-2": "1.0.24",
33
33
  "@wix/events_schedule": "1.0.47",
@@ -61,5 +61,5 @@
61
61
  "fqdn": ""
62
62
  }
63
63
  },
64
- "falconPackageHash": "b604342001ec316006527998fb5b425e22927521e06801c405ed4ca6"
64
+ "falconPackageHash": "3eb0047d59a8a11ddd8a8d5636a1b3a581efc8bc1ba5b308d150dba1"
65
65
  }
@@ -9444,6 +9444,8 @@ interface GetCheckoutOptionsResponse {
9444
9444
  premiumServices?: boolean;
9445
9445
  /** Whether there are any paid tickets available for sale. */
9446
9446
  paidTickets?: boolean;
9447
+ /** Whether gift cards are accepted at checkout. */
9448
+ acceptGiftCards?: boolean;
9447
9449
  }
9448
9450
  interface ListAvailableTicketsRequest {
9449
9451
  /** Event ID. If not provided, available tickets for all events in the site will be returned. */
@@ -10064,6 +10066,7 @@ interface GetCheckoutOptionsResponseNonNullableFields {
10064
10066
  acceptCoupons: boolean;
10065
10067
  premiumServices: boolean;
10066
10068
  paidTickets: boolean;
10069
+ acceptGiftCards: boolean;
10067
10070
  }
10068
10071
  interface ResponseMetaDataNonNullableFields$1 {
10069
10072
  count: number;
@@ -10182,6 +10185,10 @@ interface OrderConfirmedEnvelope {
10182
10185
  data: OrderConfirmed;
10183
10186
  metadata: BaseEventMetadata$7;
10184
10187
  }
10188
+ interface OrderInitiatedEnvelope {
10189
+ data: OrderInitiated;
10190
+ metadata: BaseEventMetadata$7;
10191
+ }
10185
10192
  interface OrderReservationCreatedEnvelope {
10186
10193
  data: ReservationCreated$1;
10187
10194
  metadata: BaseEventMetadata$7;
@@ -10190,10 +10197,6 @@ interface OrderReservationUpdatedEnvelope {
10190
10197
  data: ReservationUpdated$1;
10191
10198
  metadata: BaseEventMetadata$7;
10192
10199
  }
10193
- interface OrderInitiatedEnvelope {
10194
- data: OrderInitiated;
10195
- metadata: BaseEventMetadata$7;
10196
- }
10197
10200
  interface ListOrdersOptions {
10198
10201
  /** Offset. */
10199
10202
  offset?: number;
@@ -10567,9 +10570,9 @@ interface PosCheckoutSignature {
10567
10570
  declare const onOrderDeleted$1: EventDefinition<OrderDeletedEnvelope, "wix.events.ticketing.events.OrderDeleted">;
10568
10571
  declare const onOrderUpdated$1: EventDefinition<OrderUpdatedEnvelope, "wix.events.ticketing.events.OrderUpdated">;
10569
10572
  declare const onOrderConfirmed$1: EventDefinition<OrderConfirmedEnvelope, "wix.events.ticketing.events.OrderConfirmed">;
10573
+ declare const onOrderInitiated$1: EventDefinition<OrderInitiatedEnvelope, "wix.events.ticketing.events.OrderInitiated">;
10570
10574
  declare const onOrderReservationCreated$1: EventDefinition<OrderReservationCreatedEnvelope, "wix.events.ticketing.events.ReservationCreated">;
10571
10575
  declare const onOrderReservationUpdated$1: EventDefinition<OrderReservationUpdatedEnvelope, "wix.events.ticketing.events.ReservationUpdated">;
10572
- declare const onOrderInitiated$1: EventDefinition<OrderInitiatedEnvelope, "wix.events.ticketing.events.OrderInitiated">;
10573
10576
 
10574
10577
  declare function createEventModule$7<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
10575
10578
 
@@ -10605,6 +10608,10 @@ type _publicOnOrderConfirmedType = typeof onOrderConfirmed$1;
10605
10608
  /** */
10606
10609
  declare const onOrderConfirmed: ReturnType<typeof createEventModule$7<_publicOnOrderConfirmedType>>;
10607
10610
 
10611
+ type _publicOnOrderInitiatedType = typeof onOrderInitiated$1;
10612
+ /** */
10613
+ declare const onOrderInitiated: ReturnType<typeof createEventModule$7<_publicOnOrderInitiatedType>>;
10614
+
10608
10615
  type _publicOnOrderReservationCreatedType = typeof onOrderReservationCreated$1;
10609
10616
  /** */
10610
10617
  declare const onOrderReservationCreated: ReturnType<typeof createEventModule$7<_publicOnOrderReservationCreatedType>>;
@@ -10613,10 +10620,6 @@ type _publicOnOrderReservationUpdatedType = typeof onOrderReservationUpdated$1;
10613
10620
  /** */
10614
10621
  declare const onOrderReservationUpdated: ReturnType<typeof createEventModule$7<_publicOnOrderReservationUpdatedType>>;
10615
10622
 
10616
- type _publicOnOrderInitiatedType = typeof onOrderInitiated$1;
10617
- /** */
10618
- declare const onOrderInitiated: ReturnType<typeof createEventModule$7<_publicOnOrderInitiatedType>>;
10619
-
10620
10623
  type context$8_Action = Action;
10621
10624
  declare const context$8_Action: typeof Action;
10622
10625
  type context$8_BalanceSummary = BalanceSummary;
@@ -10797,7 +10800,7 @@ interface RichContent {
10797
10800
  _updatedDate?: Date | null;
10798
10801
  /** ID of the event to which rich content is applied. */
10799
10802
  eventId?: string | null;
10800
- /** Field name which value uses rich content. For the event description use the `about` value. */
10803
+ /** Field name whose value uses rich content. For the event description, specify the `about` value. */
10801
10804
  fieldName?: string | null;
10802
10805
  /**
10803
10806
  * Rich content of the event description.
@@ -12068,7 +12071,7 @@ interface ExtendedFields$2 {
12068
12071
  namespaces?: Record<string, Record<string, any>>;
12069
12072
  }
12070
12073
  interface CreateRichContentRequest {
12071
- /** Rich content info. */
12074
+ /** Rich content details. */
12072
12075
  richContent: RichContent;
12073
12076
  }
12074
12077
  interface CreateRichContentResponse {
@@ -12141,7 +12144,9 @@ interface Sorting$5 {
12141
12144
  order?: SortOrder$5;
12142
12145
  }
12143
12146
  declare enum SortOrder$5 {
12147
+ /** Sorting in ascending order. */
12144
12148
  ASC = "ASC",
12149
+ /** Sorting in descending order. */
12145
12150
  DESC = "DESC"
12146
12151
  }
12147
12152
  interface CursorPaging$5 {
@@ -12184,9 +12189,9 @@ interface QueryRichContentRequest {
12184
12189
  query?: CursorQuery$1;
12185
12190
  }
12186
12191
  interface QueryRichContentResponse {
12187
- /** List of RichContents. */
12192
+ /** List of rich content entities. */
12188
12193
  richContent?: RichContent[];
12189
- /** Paging metadata */
12194
+ /** Paging metadata. */
12190
12195
  pagingMetadata?: CursorPagingMetadata$1;
12191
12196
  }
12192
12197
  interface EventCopied$2 {
@@ -12869,7 +12874,7 @@ interface UpdateRichContent {
12869
12874
  _updatedDate?: Date | null;
12870
12875
  /** ID of the event to which rich content is applied. */
12871
12876
  eventId?: string | null;
12872
- /** Field name which value uses rich content. For the event description use the `about` value. */
12877
+ /** Field name whose value uses rich content. For the event description, specify the `about` value. */
12873
12878
  fieldName?: string | null;
12874
12879
  /**
12875
12880
  * Rich content of the event description.
@@ -12951,10 +12956,10 @@ interface RichContentQueryBuilder {
12951
12956
  declare function createRichContent$1(httpClient: HttpClient): CreateRichContentSignature;
12952
12957
  interface CreateRichContentSignature {
12953
12958
  /**
12954
- * Creates rich content for an event description.
12959
+ * Creates rich content, such as for an event description.
12955
12960
  *
12956
12961
  * This method passes rich content value to the description of an already created event.
12957
- * @param - Rich content info.
12962
+ * @param - Rich content details.
12958
12963
  * @returns Created rich content.
12959
12964
  */
12960
12965
  (richContent: RichContent): Promise<RichContent & RichContentNonNullableFields>;
@@ -12962,7 +12967,7 @@ interface CreateRichContentSignature {
12962
12967
  declare function getRichContent$1(httpClient: HttpClient): GetRichContentSignature;
12963
12968
  interface GetRichContentSignature {
12964
12969
  /**
12965
- * Retrieves rich content of an event description.
12970
+ * Retrieves rich content of an event's field.
12966
12971
  * @param - Rich content ID.
12967
12972
  * @returns The requested rich content.
12968
12973
  */
@@ -13003,12 +13008,13 @@ interface QueryRichContentsSignature {
13003
13008
  declare function queryRichContent$1(httpClient: HttpClient): QueryRichContentSignature;
13004
13009
  interface QueryRichContentSignature {
13005
13010
  /**
13006
- * Retrieves a list of rich content, given the provided paging, filtering, and sorting.
13011
+ * Retrieves a list of rich content entities, given the provided paging, filtering, and sorting.
13007
13012
  *
13008
13013
  * Query Rich Content runs with these defaults, which you can override:
13009
13014
  * - `createdDate` is sorted in `ASC` order
13010
13015
  * - `paging.limit` is `100`
13011
13016
  * - `paging.offset` is `0`
13017
+ *
13012
13018
  * For field support for filters and sorting, see [Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-solutions/events/rich-content/filter-and-sort).
13013
13019
  * To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
13014
13020
  */
@@ -9444,6 +9444,8 @@ interface GetCheckoutOptionsResponse {
9444
9444
  premiumServices?: boolean;
9445
9445
  /** Whether there are any paid tickets available for sale. */
9446
9446
  paidTickets?: boolean;
9447
+ /** Whether gift cards are accepted at checkout. */
9448
+ acceptGiftCards?: boolean;
9447
9449
  }
9448
9450
  interface ListAvailableTicketsRequest {
9449
9451
  /** Event ID. If not provided, available tickets for all events in the site will be returned. */
@@ -10064,6 +10066,7 @@ interface GetCheckoutOptionsResponseNonNullableFields {
10064
10066
  acceptCoupons: boolean;
10065
10067
  premiumServices: boolean;
10066
10068
  paidTickets: boolean;
10069
+ acceptGiftCards: boolean;
10067
10070
  }
10068
10071
  interface ResponseMetaDataNonNullableFields$1 {
10069
10072
  count: number;
@@ -10182,6 +10185,10 @@ interface OrderConfirmedEnvelope {
10182
10185
  data: OrderConfirmed;
10183
10186
  metadata: BaseEventMetadata$7;
10184
10187
  }
10188
+ interface OrderInitiatedEnvelope {
10189
+ data: OrderInitiated;
10190
+ metadata: BaseEventMetadata$7;
10191
+ }
10185
10192
  interface OrderReservationCreatedEnvelope {
10186
10193
  data: ReservationCreated$1;
10187
10194
  metadata: BaseEventMetadata$7;
@@ -10190,10 +10197,6 @@ interface OrderReservationUpdatedEnvelope {
10190
10197
  data: ReservationUpdated$1;
10191
10198
  metadata: BaseEventMetadata$7;
10192
10199
  }
10193
- interface OrderInitiatedEnvelope {
10194
- data: OrderInitiated;
10195
- metadata: BaseEventMetadata$7;
10196
- }
10197
10200
  interface ListOrdersOptions {
10198
10201
  /** Offset. */
10199
10202
  offset?: number;
@@ -10567,9 +10570,9 @@ interface PosCheckoutSignature {
10567
10570
  declare const onOrderDeleted$1: EventDefinition<OrderDeletedEnvelope, "wix.events.ticketing.events.OrderDeleted">;
10568
10571
  declare const onOrderUpdated$1: EventDefinition<OrderUpdatedEnvelope, "wix.events.ticketing.events.OrderUpdated">;
10569
10572
  declare const onOrderConfirmed$1: EventDefinition<OrderConfirmedEnvelope, "wix.events.ticketing.events.OrderConfirmed">;
10573
+ declare const onOrderInitiated$1: EventDefinition<OrderInitiatedEnvelope, "wix.events.ticketing.events.OrderInitiated">;
10570
10574
  declare const onOrderReservationCreated$1: EventDefinition<OrderReservationCreatedEnvelope, "wix.events.ticketing.events.ReservationCreated">;
10571
10575
  declare const onOrderReservationUpdated$1: EventDefinition<OrderReservationUpdatedEnvelope, "wix.events.ticketing.events.ReservationUpdated">;
10572
- declare const onOrderInitiated$1: EventDefinition<OrderInitiatedEnvelope, "wix.events.ticketing.events.OrderInitiated">;
10573
10576
 
10574
10577
  declare function createEventModule$7<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
10575
10578
 
@@ -10605,6 +10608,10 @@ type _publicOnOrderConfirmedType = typeof onOrderConfirmed$1;
10605
10608
  /** */
10606
10609
  declare const onOrderConfirmed: ReturnType<typeof createEventModule$7<_publicOnOrderConfirmedType>>;
10607
10610
 
10611
+ type _publicOnOrderInitiatedType = typeof onOrderInitiated$1;
10612
+ /** */
10613
+ declare const onOrderInitiated: ReturnType<typeof createEventModule$7<_publicOnOrderInitiatedType>>;
10614
+
10608
10615
  type _publicOnOrderReservationCreatedType = typeof onOrderReservationCreated$1;
10609
10616
  /** */
10610
10617
  declare const onOrderReservationCreated: ReturnType<typeof createEventModule$7<_publicOnOrderReservationCreatedType>>;
@@ -10613,10 +10620,6 @@ type _publicOnOrderReservationUpdatedType = typeof onOrderReservationUpdated$1;
10613
10620
  /** */
10614
10621
  declare const onOrderReservationUpdated: ReturnType<typeof createEventModule$7<_publicOnOrderReservationUpdatedType>>;
10615
10622
 
10616
- type _publicOnOrderInitiatedType = typeof onOrderInitiated$1;
10617
- /** */
10618
- declare const onOrderInitiated: ReturnType<typeof createEventModule$7<_publicOnOrderInitiatedType>>;
10619
-
10620
10623
  type index_d$8_Action = Action;
10621
10624
  declare const index_d$8_Action: typeof Action;
10622
10625
  type index_d$8_BalanceSummary = BalanceSummary;
@@ -10797,7 +10800,7 @@ interface RichContent {
10797
10800
  _updatedDate?: Date | null;
10798
10801
  /** ID of the event to which rich content is applied. */
10799
10802
  eventId?: string | null;
10800
- /** Field name which value uses rich content. For the event description use the `about` value. */
10803
+ /** Field name whose value uses rich content. For the event description, specify the `about` value. */
10801
10804
  fieldName?: string | null;
10802
10805
  /**
10803
10806
  * Rich content of the event description.
@@ -12068,7 +12071,7 @@ interface ExtendedFields$2 {
12068
12071
  namespaces?: Record<string, Record<string, any>>;
12069
12072
  }
12070
12073
  interface CreateRichContentRequest {
12071
- /** Rich content info. */
12074
+ /** Rich content details. */
12072
12075
  richContent: RichContent;
12073
12076
  }
12074
12077
  interface CreateRichContentResponse {
@@ -12141,7 +12144,9 @@ interface Sorting$5 {
12141
12144
  order?: SortOrder$5;
12142
12145
  }
12143
12146
  declare enum SortOrder$5 {
12147
+ /** Sorting in ascending order. */
12144
12148
  ASC = "ASC",
12149
+ /** Sorting in descending order. */
12145
12150
  DESC = "DESC"
12146
12151
  }
12147
12152
  interface CursorPaging$5 {
@@ -12184,9 +12189,9 @@ interface QueryRichContentRequest {
12184
12189
  query?: CursorQuery$1;
12185
12190
  }
12186
12191
  interface QueryRichContentResponse {
12187
- /** List of RichContents. */
12192
+ /** List of rich content entities. */
12188
12193
  richContent?: RichContent[];
12189
- /** Paging metadata */
12194
+ /** Paging metadata. */
12190
12195
  pagingMetadata?: CursorPagingMetadata$1;
12191
12196
  }
12192
12197
  interface EventCopied$2 {
@@ -12869,7 +12874,7 @@ interface UpdateRichContent {
12869
12874
  _updatedDate?: Date | null;
12870
12875
  /** ID of the event to which rich content is applied. */
12871
12876
  eventId?: string | null;
12872
- /** Field name which value uses rich content. For the event description use the `about` value. */
12877
+ /** Field name whose value uses rich content. For the event description, specify the `about` value. */
12873
12878
  fieldName?: string | null;
12874
12879
  /**
12875
12880
  * Rich content of the event description.
@@ -12951,10 +12956,10 @@ interface RichContentQueryBuilder {
12951
12956
  declare function createRichContent$1(httpClient: HttpClient): CreateRichContentSignature;
12952
12957
  interface CreateRichContentSignature {
12953
12958
  /**
12954
- * Creates rich content for an event description.
12959
+ * Creates rich content, such as for an event description.
12955
12960
  *
12956
12961
  * This method passes rich content value to the description of an already created event.
12957
- * @param - Rich content info.
12962
+ * @param - Rich content details.
12958
12963
  * @returns Created rich content.
12959
12964
  */
12960
12965
  (richContent: RichContent): Promise<RichContent & RichContentNonNullableFields>;
@@ -12962,7 +12967,7 @@ interface CreateRichContentSignature {
12962
12967
  declare function getRichContent$1(httpClient: HttpClient): GetRichContentSignature;
12963
12968
  interface GetRichContentSignature {
12964
12969
  /**
12965
- * Retrieves rich content of an event description.
12970
+ * Retrieves rich content of an event's field.
12966
12971
  * @param - Rich content ID.
12967
12972
  * @returns The requested rich content.
12968
12973
  */
@@ -13003,12 +13008,13 @@ interface QueryRichContentsSignature {
13003
13008
  declare function queryRichContent$1(httpClient: HttpClient): QueryRichContentSignature;
13004
13009
  interface QueryRichContentSignature {
13005
13010
  /**
13006
- * Retrieves a list of rich content, given the provided paging, filtering, and sorting.
13011
+ * Retrieves a list of rich content entities, given the provided paging, filtering, and sorting.
13007
13012
  *
13008
13013
  * Query Rich Content runs with these defaults, which you can override:
13009
13014
  * - `createdDate` is sorted in `ASC` order
13010
13015
  * - `paging.limit` is `100`
13011
13016
  * - `paging.offset` is `0`
13017
+ *
13012
13018
  * For field support for filters and sorting, see [Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-solutions/events/rich-content/filter-and-sort).
13013
13019
  * To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
13014
13020
  */
@@ -5159,6 +5159,8 @@ interface GetCheckoutOptionsResponse$1 {
5159
5159
  premiumServices?: boolean;
5160
5160
  /** Whether there are any paid tickets available for sale. */
5161
5161
  paidTickets?: boolean;
5162
+ /** Whether gift cards are accepted at checkout. */
5163
+ acceptGiftCards?: boolean;
5162
5164
  }
5163
5165
  interface ListAvailableTicketsRequest$1 {
5164
5166
  /** Event ID. If not provided, available tickets for all events in the site will be returned. */
@@ -5711,6 +5713,7 @@ interface GetCheckoutOptionsResponseNonNullableFields$1 {
5711
5713
  acceptCoupons: boolean;
5712
5714
  premiumServices: boolean;
5713
5715
  paidTickets: boolean;
5716
+ acceptGiftCards: boolean;
5714
5717
  }
5715
5718
  interface ResponseMetaDataNonNullableFields$3 {
5716
5719
  count: number;
@@ -6492,6 +6495,8 @@ interface GetCheckoutOptionsResponse {
6492
6495
  premiumServices?: boolean;
6493
6496
  /** Whether there are any paid tickets available for sale. */
6494
6497
  paidTickets?: boolean;
6498
+ /** Whether gift cards are accepted at checkout. */
6499
+ acceptGiftCards?: boolean;
6495
6500
  }
6496
6501
  interface ListAvailableTicketsRequest {
6497
6502
  /** Event ID. If not provided, available tickets for all events in the site will be returned. */
@@ -7044,6 +7049,7 @@ interface GetCheckoutOptionsResponseNonNullableFields {
7044
7049
  acceptCoupons: boolean;
7045
7050
  premiumServices: boolean;
7046
7051
  paidTickets: boolean;
7052
+ acceptGiftCards: boolean;
7047
7053
  }
7048
7054
  interface ResponseMetaDataNonNullableFields$2 {
7049
7055
  count: number;
@@ -7235,7 +7241,7 @@ interface RichContent$1 {
7235
7241
  updatedDate?: Date | null;
7236
7242
  /** ID of the event to which rich content is applied. */
7237
7243
  eventId?: string | null;
7238
- /** Field name which value uses rich content. For the event description use the `about` value. */
7244
+ /** Field name whose value uses rich content. For the event description, specify the `about` value. */
7239
7245
  fieldName?: string | null;
7240
7246
  /**
7241
7247
  * Rich content of the event description.
@@ -8487,7 +8493,7 @@ interface ExtendedFields$5 {
8487
8493
  namespaces?: Record<string, Record<string, any>>;
8488
8494
  }
8489
8495
  interface CreateRichContentRequest$1 {
8490
- /** Rich content info. */
8496
+ /** Rich content details. */
8491
8497
  richContent: RichContent$1;
8492
8498
  }
8493
8499
  interface CreateRichContentResponse$1 {
@@ -8560,7 +8566,9 @@ interface Sorting$9 {
8560
8566
  order?: SortOrder$9;
8561
8567
  }
8562
8568
  declare enum SortOrder$9 {
8569
+ /** Sorting in ascending order. */
8563
8570
  ASC = "ASC",
8571
+ /** Sorting in descending order. */
8564
8572
  DESC = "DESC"
8565
8573
  }
8566
8574
  interface CursorPaging$9 {
@@ -8603,9 +8611,9 @@ interface QueryRichContentRequest$1 {
8603
8611
  query?: CursorQuery$3;
8604
8612
  }
8605
8613
  interface QueryRichContentResponse$1 {
8606
- /** List of RichContents. */
8614
+ /** List of rich content entities. */
8607
8615
  richContent?: RichContent$1[];
8608
- /** Paging metadata */
8616
+ /** Paging metadata. */
8609
8617
  pagingMetadata?: CursorPagingMetadata$3;
8610
8618
  }
8611
8619
  interface PluginContainerDataWidthNonNullableFields$1 {
@@ -8900,7 +8908,7 @@ interface RichContent {
8900
8908
  _updatedDate?: Date | null;
8901
8909
  /** ID of the event to which rich content is applied. */
8902
8910
  eventId?: string | null;
8903
- /** Field name which value uses rich content. For the event description use the `about` value. */
8911
+ /** Field name whose value uses rich content. For the event description, specify the `about` value. */
8904
8912
  fieldName?: string | null;
8905
8913
  /**
8906
8914
  * Rich content of the event description.
@@ -10152,7 +10160,7 @@ interface ExtendedFields$4 {
10152
10160
  namespaces?: Record<string, Record<string, any>>;
10153
10161
  }
10154
10162
  interface CreateRichContentRequest {
10155
- /** Rich content info. */
10163
+ /** Rich content details. */
10156
10164
  richContent: RichContent;
10157
10165
  }
10158
10166
  interface CreateRichContentResponse {
@@ -10225,7 +10233,9 @@ interface Sorting$8 {
10225
10233
  order?: SortOrder$8;
10226
10234
  }
10227
10235
  declare enum SortOrder$8 {
10236
+ /** Sorting in ascending order. */
10228
10237
  ASC = "ASC",
10238
+ /** Sorting in descending order. */
10229
10239
  DESC = "DESC"
10230
10240
  }
10231
10241
  interface CursorPaging$8 {
@@ -10268,9 +10278,9 @@ interface QueryRichContentRequest {
10268
10278
  query?: CursorQuery$2;
10269
10279
  }
10270
10280
  interface QueryRichContentResponse {
10271
- /** List of RichContents. */
10281
+ /** List of rich content entities. */
10272
10282
  richContent?: RichContent[];
10273
- /** Paging metadata */
10283
+ /** Paging metadata. */
10274
10284
  pagingMetadata?: CursorPagingMetadata$2;
10275
10285
  }
10276
10286
  interface PluginContainerDataWidthNonNullableFields {