@wix/seatings 1.0.23 → 1.0.24

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/seatings",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -21,8 +21,8 @@
21
21
  "type-bundles"
22
22
  ],
23
23
  "dependencies": {
24
- "@wix/seatings_seating-plan": "1.0.18",
25
- "@wix/seatings_seating-reservation": "1.0.17"
24
+ "@wix/seatings_seating-plan": "1.0.19",
25
+ "@wix/seatings_seating-reservation": "1.0.18"
26
26
  },
27
27
  "devDependencies": {
28
28
  "glob": "^10.4.1",
@@ -47,5 +47,5 @@
47
47
  "fqdn": ""
48
48
  }
49
49
  },
50
- "falconPackageHash": "23be468d179579bb5b8424f422086779fecc18159be2e5f7de14a5a6"
50
+ "falconPackageHash": "fbb70898b4a93a00ffd64159b6fe2fd93e3f32d43c7ef7977af2f438"
51
51
  }
@@ -1878,6 +1878,14 @@ interface GetSeatingCategoriesSummaryResponse {
1878
1878
  /** Ticket counts by category */
1879
1879
  categories?: CategoryDetails[];
1880
1880
  }
1881
+ interface GetSeatingCategorySummaryRequest {
1882
+ /** Seating plan external id */
1883
+ externalId?: string;
1884
+ }
1885
+ interface GetSeatingCategorySummaryResponse {
1886
+ /** Ticket counts by category */
1887
+ categories?: CategoryDetails[];
1888
+ }
1881
1889
  interface GetSeatingReservationsSummaryRequest {
1882
1890
  /** Filter for seating plan */
1883
1891
  filter: Record<string, any> | null;
@@ -2563,6 +2571,10 @@ interface GetSeatingCategoriesSummaryOptions {
2563
2571
  /** Seating plan external id */
2564
2572
  externalId?: string[];
2565
2573
  }
2574
+ interface GetSeatingCategorySummaryOptions {
2575
+ /** Seating plan external id */
2576
+ externalId?: string;
2577
+ }
2566
2578
 
2567
2579
  declare function createSeatingReservation$1(httpClient: HttpClient): CreateSeatingReservationSignature;
2568
2580
  interface CreateSeatingReservationSignature {
@@ -2598,9 +2610,14 @@ interface DeleteSeatingReservationSignature {
2598
2610
  }
2599
2611
  declare function getSeatingCategoriesSummary$1(httpClient: HttpClient): GetSeatingCategoriesSummarySignature;
2600
2612
  interface GetSeatingCategoriesSummarySignature {
2601
- /** */
2613
+ /** @deprecated */
2602
2614
  (options?: GetSeatingCategoriesSummaryOptions | undefined): Promise<GetSeatingCategoriesSummaryResponse>;
2603
2615
  }
2616
+ declare function getSeatingCategorySummary$1(httpClient: HttpClient): GetSeatingCategorySummarySignature;
2617
+ interface GetSeatingCategorySummarySignature {
2618
+ /** */
2619
+ (options?: GetSeatingCategorySummaryOptions | undefined): Promise<GetSeatingCategorySummaryResponse>;
2620
+ }
2604
2621
  declare function getSeatingReservationsSummary$1(httpClient: HttpClient): GetSeatingReservationsSummarySignature;
2605
2622
  interface GetSeatingReservationsSummarySignature {
2606
2623
  /**
@@ -2624,6 +2641,7 @@ declare const getReservation: MaybeContext<BuildRESTFunction<typeof getReservati
2624
2641
  declare const querySeatingReservation: MaybeContext<BuildRESTFunction<typeof querySeatingReservation$1> & typeof querySeatingReservation$1>;
2625
2642
  declare const deleteSeatingReservation: MaybeContext<BuildRESTFunction<typeof deleteSeatingReservation$1> & typeof deleteSeatingReservation$1>;
2626
2643
  declare const getSeatingCategoriesSummary: MaybeContext<BuildRESTFunction<typeof getSeatingCategoriesSummary$1> & typeof getSeatingCategoriesSummary$1>;
2644
+ declare const getSeatingCategorySummary: MaybeContext<BuildRESTFunction<typeof getSeatingCategorySummary$1> & typeof getSeatingCategorySummary$1>;
2627
2645
  declare const getSeatingReservationsSummary: MaybeContext<BuildRESTFunction<typeof getSeatingReservationsSummary$1> & typeof getSeatingReservationsSummary$1>;
2628
2646
  declare const getSeatingReservationSummary: MaybeContext<BuildRESTFunction<typeof getSeatingReservationSummary$1> & typeof getSeatingReservationSummary$1>;
2629
2647
 
@@ -2671,6 +2689,9 @@ type context_GetReservedPlacesResponse = GetReservedPlacesResponse;
2671
2689
  type context_GetSeatingCategoriesSummaryOptions = GetSeatingCategoriesSummaryOptions;
2672
2690
  type context_GetSeatingCategoriesSummaryRequest = GetSeatingCategoriesSummaryRequest;
2673
2691
  type context_GetSeatingCategoriesSummaryResponse = GetSeatingCategoriesSummaryResponse;
2692
+ type context_GetSeatingCategorySummaryOptions = GetSeatingCategorySummaryOptions;
2693
+ type context_GetSeatingCategorySummaryRequest = GetSeatingCategorySummaryRequest;
2694
+ type context_GetSeatingCategorySummaryResponse = GetSeatingCategorySummaryResponse;
2674
2695
  type context_GetSeatingReservationSummaryRequest = GetSeatingReservationSummaryRequest;
2675
2696
  type context_GetSeatingReservationSummaryResponse = GetSeatingReservationSummaryResponse;
2676
2697
  type context_GetSeatingReservationSummaryResponseNonNullableFields = GetSeatingReservationSummaryResponseNonNullableFields;
@@ -2741,13 +2762,14 @@ declare const context_createSeatingReservation: typeof createSeatingReservation;
2741
2762
  declare const context_deleteSeatingReservation: typeof deleteSeatingReservation;
2742
2763
  declare const context_getReservation: typeof getReservation;
2743
2764
  declare const context_getSeatingCategoriesSummary: typeof getSeatingCategoriesSummary;
2765
+ declare const context_getSeatingCategorySummary: typeof getSeatingCategorySummary;
2744
2766
  declare const context_getSeatingReservationSummary: typeof getSeatingReservationSummary;
2745
2767
  declare const context_getSeatingReservationsSummary: typeof getSeatingReservationsSummary;
2746
2768
  declare const context_onSeatingReservationCreated: typeof onSeatingReservationCreated;
2747
2769
  declare const context_onSeatingReservationDeleted: typeof onSeatingReservationDeleted;
2748
2770
  declare const context_querySeatingReservation: typeof querySeatingReservation;
2749
2771
  declare namespace context {
2750
- export { type context_ActionEvent as ActionEvent, type context_App as App, type context_BaseEventMetadata as BaseEventMetadata, type context_Category as Category, type context_CategoryDetails as CategoryDetails, type context_CreateSeatingReservationOptions as CreateSeatingReservationOptions, type context_CreateSeatingReservationRequest as CreateSeatingReservationRequest, type context_CreateSeatingReservationResponse as CreateSeatingReservationResponse, type context_CreateSeatingReservationResponseNonNullableFields as CreateSeatingReservationResponseNonNullableFields, type context_CursorPaging as CursorPaging, type context_Cursors as Cursors, type context_DeleteSeatingPlaceReservationRequest as DeleteSeatingPlaceReservationRequest, type context_DeleteSeatingReservationRequest as DeleteSeatingReservationRequest, type context_DeleteSeatingReservationResponse as DeleteSeatingReservationResponse, type context_DeleteSeatingReservationResponseNonNullableFields as DeleteSeatingReservationResponseNonNullableFields, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Element as Element, type context_ElementGroup as ElementGroup, type context_ElementGroupUiProperties as ElementGroupUiProperties, type context_ElementUiProperties as ElementUiProperties, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventMetadata as EventMetadata, type context_ExtendedFields as ExtendedFields, type context_File as File, type context_GetReservationRequest as GetReservationRequest, type context_GetReservationResponse as GetReservationResponse, type context_GetReservationResponseNonNullableFields as GetReservationResponseNonNullableFields, type context_GetReservedPlacesRequest as GetReservedPlacesRequest, type context_GetReservedPlacesResponse as GetReservedPlacesResponse, type context_GetSeatingCategoriesSummaryOptions as GetSeatingCategoriesSummaryOptions, type context_GetSeatingCategoriesSummaryRequest as GetSeatingCategoriesSummaryRequest, type context_GetSeatingCategoriesSummaryResponse as GetSeatingCategoriesSummaryResponse, type context_GetSeatingReservationSummaryRequest as GetSeatingReservationSummaryRequest, type context_GetSeatingReservationSummaryResponse as GetSeatingReservationSummaryResponse, type context_GetSeatingReservationSummaryResponseNonNullableFields as GetSeatingReservationSummaryResponseNonNullableFields, type context_GetSeatingReservationsSummaryRequest as GetSeatingReservationsSummaryRequest, type context_GetSeatingReservationsSummaryResponse as GetSeatingReservationsSummaryResponse, type context_GetSeatingReservationsSummaryResponseNonNullableFields as GetSeatingReservationsSummaryResponseNonNullableFields, context_Icon as Icon, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Image as Image, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_MessageEnvelope as MessageEnvelope, type context_MultiRowProperties as MultiRowProperties, context_Numbering as Numbering, type context_Page as Page, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, type context_Place as Place, type context_PlaceReservation as PlaceReservation, type context_PlaceReservationDetails as PlaceReservationDetails, context_PlaceTypeEnumType as PlaceTypeEnumType, type context_Places as Places, context_Position as Position, type context_QuerySeatingReservationRequest as QuerySeatingReservationRequest, type context_QuerySeatingReservationResponse as QuerySeatingReservationResponse, type context_QuerySeatingReservationResponseNonNullableFields as QuerySeatingReservationResponseNonNullableFields, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_RegenerateSummariesRequest as RegenerateSummariesRequest, type context_RegenerateSummariesResponse as RegenerateSummariesResponse, type context_ReservationErrorDetails as ReservationErrorDetails, type context_ReservationOptions as ReservationOptions, type context_ReservationsQueryBuilder as ReservationsQueryBuilder, type context_ReservationsQueryResult as ReservationsQueryResult, type context_RestoreInfo as RestoreInfo, type context_RowElement as RowElement, type context_RowElementUiProperties as RowElementUiProperties, type context_SeatingPlan as SeatingPlan, type context_SeatingPlanCategoriesSummaryUpdated as SeatingPlanCategoriesSummaryUpdated, type context_SeatingPlanUiProperties as SeatingPlanUiProperties, type context_SeatingReservation as SeatingReservation, type context_SeatingReservationCreatedEnvelope as SeatingReservationCreatedEnvelope, type context_SeatingReservationDeletedEnvelope as SeatingReservationDeletedEnvelope, type context_SeatingReservationNonNullableFields as SeatingReservationNonNullableFields, type context_SeatingReservationsSummary as SeatingReservationsSummary, type context_Section as Section, type context_Sequencing as Sequencing, context_ShapeTypeEnumType as ShapeTypeEnumType, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Type as Type, type context_URI as URI, type context_UnavailablePlaces as UnavailablePlaces, type context_VerticalSequencing as VerticalSequencing, context_WebhookIdentityType as WebhookIdentityType, type context__publicOnSeatingReservationCreatedType as _publicOnSeatingReservationCreatedType, type context__publicOnSeatingReservationDeletedType as _publicOnSeatingReservationDeletedType, context_createSeatingReservation as createSeatingReservation, context_deleteSeatingReservation as deleteSeatingReservation, context_getReservation as getReservation, context_getSeatingCategoriesSummary as getSeatingCategoriesSummary, context_getSeatingReservationSummary as getSeatingReservationSummary, context_getSeatingReservationsSummary as getSeatingReservationsSummary, context_onSeatingReservationCreated as onSeatingReservationCreated, context_onSeatingReservationDeleted as onSeatingReservationDeleted, onSeatingReservationCreated$1 as publicOnSeatingReservationCreated, onSeatingReservationDeleted$1 as publicOnSeatingReservationDeleted, context_querySeatingReservation as querySeatingReservation };
2772
+ export { type context_ActionEvent as ActionEvent, type context_App as App, type context_BaseEventMetadata as BaseEventMetadata, type context_Category as Category, type context_CategoryDetails as CategoryDetails, type context_CreateSeatingReservationOptions as CreateSeatingReservationOptions, type context_CreateSeatingReservationRequest as CreateSeatingReservationRequest, type context_CreateSeatingReservationResponse as CreateSeatingReservationResponse, type context_CreateSeatingReservationResponseNonNullableFields as CreateSeatingReservationResponseNonNullableFields, type context_CursorPaging as CursorPaging, type context_Cursors as Cursors, type context_DeleteSeatingPlaceReservationRequest as DeleteSeatingPlaceReservationRequest, type context_DeleteSeatingReservationRequest as DeleteSeatingReservationRequest, type context_DeleteSeatingReservationResponse as DeleteSeatingReservationResponse, type context_DeleteSeatingReservationResponseNonNullableFields as DeleteSeatingReservationResponseNonNullableFields, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Element as Element, type context_ElementGroup as ElementGroup, type context_ElementGroupUiProperties as ElementGroupUiProperties, type context_ElementUiProperties as ElementUiProperties, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventMetadata as EventMetadata, type context_ExtendedFields as ExtendedFields, type context_File as File, type context_GetReservationRequest as GetReservationRequest, type context_GetReservationResponse as GetReservationResponse, type context_GetReservationResponseNonNullableFields as GetReservationResponseNonNullableFields, type context_GetReservedPlacesRequest as GetReservedPlacesRequest, type context_GetReservedPlacesResponse as GetReservedPlacesResponse, type context_GetSeatingCategoriesSummaryOptions as GetSeatingCategoriesSummaryOptions, type context_GetSeatingCategoriesSummaryRequest as GetSeatingCategoriesSummaryRequest, type context_GetSeatingCategoriesSummaryResponse as GetSeatingCategoriesSummaryResponse, type context_GetSeatingCategorySummaryOptions as GetSeatingCategorySummaryOptions, type context_GetSeatingCategorySummaryRequest as GetSeatingCategorySummaryRequest, type context_GetSeatingCategorySummaryResponse as GetSeatingCategorySummaryResponse, type context_GetSeatingReservationSummaryRequest as GetSeatingReservationSummaryRequest, type context_GetSeatingReservationSummaryResponse as GetSeatingReservationSummaryResponse, type context_GetSeatingReservationSummaryResponseNonNullableFields as GetSeatingReservationSummaryResponseNonNullableFields, type context_GetSeatingReservationsSummaryRequest as GetSeatingReservationsSummaryRequest, type context_GetSeatingReservationsSummaryResponse as GetSeatingReservationsSummaryResponse, type context_GetSeatingReservationsSummaryResponseNonNullableFields as GetSeatingReservationsSummaryResponseNonNullableFields, context_Icon as Icon, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Image as Image, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_MessageEnvelope as MessageEnvelope, type context_MultiRowProperties as MultiRowProperties, context_Numbering as Numbering, type context_Page as Page, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, type context_Place as Place, type context_PlaceReservation as PlaceReservation, type context_PlaceReservationDetails as PlaceReservationDetails, context_PlaceTypeEnumType as PlaceTypeEnumType, type context_Places as Places, context_Position as Position, type context_QuerySeatingReservationRequest as QuerySeatingReservationRequest, type context_QuerySeatingReservationResponse as QuerySeatingReservationResponse, type context_QuerySeatingReservationResponseNonNullableFields as QuerySeatingReservationResponseNonNullableFields, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_RegenerateSummariesRequest as RegenerateSummariesRequest, type context_RegenerateSummariesResponse as RegenerateSummariesResponse, type context_ReservationErrorDetails as ReservationErrorDetails, type context_ReservationOptions as ReservationOptions, type context_ReservationsQueryBuilder as ReservationsQueryBuilder, type context_ReservationsQueryResult as ReservationsQueryResult, type context_RestoreInfo as RestoreInfo, type context_RowElement as RowElement, type context_RowElementUiProperties as RowElementUiProperties, type context_SeatingPlan as SeatingPlan, type context_SeatingPlanCategoriesSummaryUpdated as SeatingPlanCategoriesSummaryUpdated, type context_SeatingPlanUiProperties as SeatingPlanUiProperties, type context_SeatingReservation as SeatingReservation, type context_SeatingReservationCreatedEnvelope as SeatingReservationCreatedEnvelope, type context_SeatingReservationDeletedEnvelope as SeatingReservationDeletedEnvelope, type context_SeatingReservationNonNullableFields as SeatingReservationNonNullableFields, type context_SeatingReservationsSummary as SeatingReservationsSummary, type context_Section as Section, type context_Sequencing as Sequencing, context_ShapeTypeEnumType as ShapeTypeEnumType, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Type as Type, type context_URI as URI, type context_UnavailablePlaces as UnavailablePlaces, type context_VerticalSequencing as VerticalSequencing, context_WebhookIdentityType as WebhookIdentityType, type context__publicOnSeatingReservationCreatedType as _publicOnSeatingReservationCreatedType, type context__publicOnSeatingReservationDeletedType as _publicOnSeatingReservationDeletedType, context_createSeatingReservation as createSeatingReservation, context_deleteSeatingReservation as deleteSeatingReservation, context_getReservation as getReservation, context_getSeatingCategoriesSummary as getSeatingCategoriesSummary, context_getSeatingCategorySummary as getSeatingCategorySummary, context_getSeatingReservationSummary as getSeatingReservationSummary, context_getSeatingReservationsSummary as getSeatingReservationsSummary, context_onSeatingReservationCreated as onSeatingReservationCreated, context_onSeatingReservationDeleted as onSeatingReservationDeleted, onSeatingReservationCreated$1 as publicOnSeatingReservationCreated, onSeatingReservationDeleted$1 as publicOnSeatingReservationDeleted, context_querySeatingReservation as querySeatingReservation };
2751
2773
  }
2752
2774
 
2753
2775
  export { context$1 as seatingPlan, context as seatingReservation };
@@ -1878,6 +1878,14 @@ interface GetSeatingCategoriesSummaryResponse {
1878
1878
  /** Ticket counts by category */
1879
1879
  categories?: CategoryDetails[];
1880
1880
  }
1881
+ interface GetSeatingCategorySummaryRequest {
1882
+ /** Seating plan external id */
1883
+ externalId?: string;
1884
+ }
1885
+ interface GetSeatingCategorySummaryResponse {
1886
+ /** Ticket counts by category */
1887
+ categories?: CategoryDetails[];
1888
+ }
1881
1889
  interface GetSeatingReservationsSummaryRequest {
1882
1890
  /** Filter for seating plan */
1883
1891
  filter: Record<string, any> | null;
@@ -2563,6 +2571,10 @@ interface GetSeatingCategoriesSummaryOptions {
2563
2571
  /** Seating plan external id */
2564
2572
  externalId?: string[];
2565
2573
  }
2574
+ interface GetSeatingCategorySummaryOptions {
2575
+ /** Seating plan external id */
2576
+ externalId?: string;
2577
+ }
2566
2578
 
2567
2579
  declare function createSeatingReservation$1(httpClient: HttpClient): CreateSeatingReservationSignature;
2568
2580
  interface CreateSeatingReservationSignature {
@@ -2598,9 +2610,14 @@ interface DeleteSeatingReservationSignature {
2598
2610
  }
2599
2611
  declare function getSeatingCategoriesSummary$1(httpClient: HttpClient): GetSeatingCategoriesSummarySignature;
2600
2612
  interface GetSeatingCategoriesSummarySignature {
2601
- /** */
2613
+ /** @deprecated */
2602
2614
  (options?: GetSeatingCategoriesSummaryOptions | undefined): Promise<GetSeatingCategoriesSummaryResponse>;
2603
2615
  }
2616
+ declare function getSeatingCategorySummary$1(httpClient: HttpClient): GetSeatingCategorySummarySignature;
2617
+ interface GetSeatingCategorySummarySignature {
2618
+ /** */
2619
+ (options?: GetSeatingCategorySummaryOptions | undefined): Promise<GetSeatingCategorySummaryResponse>;
2620
+ }
2604
2621
  declare function getSeatingReservationsSummary$1(httpClient: HttpClient): GetSeatingReservationsSummarySignature;
2605
2622
  interface GetSeatingReservationsSummarySignature {
2606
2623
  /**
@@ -2624,6 +2641,7 @@ declare const getReservation: MaybeContext<BuildRESTFunction<typeof getReservati
2624
2641
  declare const querySeatingReservation: MaybeContext<BuildRESTFunction<typeof querySeatingReservation$1> & typeof querySeatingReservation$1>;
2625
2642
  declare const deleteSeatingReservation: MaybeContext<BuildRESTFunction<typeof deleteSeatingReservation$1> & typeof deleteSeatingReservation$1>;
2626
2643
  declare const getSeatingCategoriesSummary: MaybeContext<BuildRESTFunction<typeof getSeatingCategoriesSummary$1> & typeof getSeatingCategoriesSummary$1>;
2644
+ declare const getSeatingCategorySummary: MaybeContext<BuildRESTFunction<typeof getSeatingCategorySummary$1> & typeof getSeatingCategorySummary$1>;
2627
2645
  declare const getSeatingReservationsSummary: MaybeContext<BuildRESTFunction<typeof getSeatingReservationsSummary$1> & typeof getSeatingReservationsSummary$1>;
2628
2646
  declare const getSeatingReservationSummary: MaybeContext<BuildRESTFunction<typeof getSeatingReservationSummary$1> & typeof getSeatingReservationSummary$1>;
2629
2647
 
@@ -2671,6 +2689,9 @@ type index_d_GetReservedPlacesResponse = GetReservedPlacesResponse;
2671
2689
  type index_d_GetSeatingCategoriesSummaryOptions = GetSeatingCategoriesSummaryOptions;
2672
2690
  type index_d_GetSeatingCategoriesSummaryRequest = GetSeatingCategoriesSummaryRequest;
2673
2691
  type index_d_GetSeatingCategoriesSummaryResponse = GetSeatingCategoriesSummaryResponse;
2692
+ type index_d_GetSeatingCategorySummaryOptions = GetSeatingCategorySummaryOptions;
2693
+ type index_d_GetSeatingCategorySummaryRequest = GetSeatingCategorySummaryRequest;
2694
+ type index_d_GetSeatingCategorySummaryResponse = GetSeatingCategorySummaryResponse;
2674
2695
  type index_d_GetSeatingReservationSummaryRequest = GetSeatingReservationSummaryRequest;
2675
2696
  type index_d_GetSeatingReservationSummaryResponse = GetSeatingReservationSummaryResponse;
2676
2697
  type index_d_GetSeatingReservationSummaryResponseNonNullableFields = GetSeatingReservationSummaryResponseNonNullableFields;
@@ -2741,13 +2762,14 @@ declare const index_d_createSeatingReservation: typeof createSeatingReservation;
2741
2762
  declare const index_d_deleteSeatingReservation: typeof deleteSeatingReservation;
2742
2763
  declare const index_d_getReservation: typeof getReservation;
2743
2764
  declare const index_d_getSeatingCategoriesSummary: typeof getSeatingCategoriesSummary;
2765
+ declare const index_d_getSeatingCategorySummary: typeof getSeatingCategorySummary;
2744
2766
  declare const index_d_getSeatingReservationSummary: typeof getSeatingReservationSummary;
2745
2767
  declare const index_d_getSeatingReservationsSummary: typeof getSeatingReservationsSummary;
2746
2768
  declare const index_d_onSeatingReservationCreated: typeof onSeatingReservationCreated;
2747
2769
  declare const index_d_onSeatingReservationDeleted: typeof onSeatingReservationDeleted;
2748
2770
  declare const index_d_querySeatingReservation: typeof querySeatingReservation;
2749
2771
  declare namespace index_d {
2750
- export { type index_d_ActionEvent as ActionEvent, type index_d_App as App, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_Category as Category, type index_d_CategoryDetails as CategoryDetails, type index_d_CreateSeatingReservationOptions as CreateSeatingReservationOptions, type index_d_CreateSeatingReservationRequest as CreateSeatingReservationRequest, type index_d_CreateSeatingReservationResponse as CreateSeatingReservationResponse, type index_d_CreateSeatingReservationResponseNonNullableFields as CreateSeatingReservationResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_Cursors as Cursors, type index_d_DeleteSeatingPlaceReservationRequest as DeleteSeatingPlaceReservationRequest, type index_d_DeleteSeatingReservationRequest as DeleteSeatingReservationRequest, type index_d_DeleteSeatingReservationResponse as DeleteSeatingReservationResponse, type index_d_DeleteSeatingReservationResponseNonNullableFields as DeleteSeatingReservationResponseNonNullableFields, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Element as Element, type index_d_ElementGroup as ElementGroup, type index_d_ElementGroupUiProperties as ElementGroupUiProperties, type index_d_ElementUiProperties as ElementUiProperties, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, type index_d_ExtendedFields as ExtendedFields, type index_d_File as File, type index_d_GetReservationRequest as GetReservationRequest, type index_d_GetReservationResponse as GetReservationResponse, type index_d_GetReservationResponseNonNullableFields as GetReservationResponseNonNullableFields, type index_d_GetReservedPlacesRequest as GetReservedPlacesRequest, type index_d_GetReservedPlacesResponse as GetReservedPlacesResponse, type index_d_GetSeatingCategoriesSummaryOptions as GetSeatingCategoriesSummaryOptions, type index_d_GetSeatingCategoriesSummaryRequest as GetSeatingCategoriesSummaryRequest, type index_d_GetSeatingCategoriesSummaryResponse as GetSeatingCategoriesSummaryResponse, type index_d_GetSeatingReservationSummaryRequest as GetSeatingReservationSummaryRequest, type index_d_GetSeatingReservationSummaryResponse as GetSeatingReservationSummaryResponse, type index_d_GetSeatingReservationSummaryResponseNonNullableFields as GetSeatingReservationSummaryResponseNonNullableFields, type index_d_GetSeatingReservationsSummaryRequest as GetSeatingReservationsSummaryRequest, type index_d_GetSeatingReservationsSummaryResponse as GetSeatingReservationsSummaryResponse, type index_d_GetSeatingReservationsSummaryResponseNonNullableFields as GetSeatingReservationsSummaryResponseNonNullableFields, index_d_Icon as Icon, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Image as Image, type index_d_InvalidateCache as InvalidateCache, type index_d_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d_MessageEnvelope as MessageEnvelope, type index_d_MultiRowProperties as MultiRowProperties, index_d_Numbering as Numbering, type index_d_Page as Page, type index_d_Paging as Paging, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_Place as Place, type index_d_PlaceReservation as PlaceReservation, type index_d_PlaceReservationDetails as PlaceReservationDetails, index_d_PlaceTypeEnumType as PlaceTypeEnumType, type index_d_Places as Places, index_d_Position as Position, type index_d_QuerySeatingReservationRequest as QuerySeatingReservationRequest, type index_d_QuerySeatingReservationResponse as QuerySeatingReservationResponse, type index_d_QuerySeatingReservationResponseNonNullableFields as QuerySeatingReservationResponseNonNullableFields, type index_d_QueryV2 as QueryV2, type index_d_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d_RegenerateSummariesRequest as RegenerateSummariesRequest, type index_d_RegenerateSummariesResponse as RegenerateSummariesResponse, type index_d_ReservationErrorDetails as ReservationErrorDetails, type index_d_ReservationOptions as ReservationOptions, type index_d_ReservationsQueryBuilder as ReservationsQueryBuilder, type index_d_ReservationsQueryResult as ReservationsQueryResult, type index_d_RestoreInfo as RestoreInfo, type index_d_RowElement as RowElement, type index_d_RowElementUiProperties as RowElementUiProperties, type index_d_SeatingPlan as SeatingPlan, type index_d_SeatingPlanCategoriesSummaryUpdated as SeatingPlanCategoriesSummaryUpdated, type index_d_SeatingPlanUiProperties as SeatingPlanUiProperties, type index_d_SeatingReservation as SeatingReservation, type index_d_SeatingReservationCreatedEnvelope as SeatingReservationCreatedEnvelope, type index_d_SeatingReservationDeletedEnvelope as SeatingReservationDeletedEnvelope, type index_d_SeatingReservationNonNullableFields as SeatingReservationNonNullableFields, type index_d_SeatingReservationsSummary as SeatingReservationsSummary, type index_d_Section as Section, type index_d_Sequencing as Sequencing, index_d_ShapeTypeEnumType as ShapeTypeEnumType, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Type as Type, type index_d_URI as URI, type index_d_UnavailablePlaces as UnavailablePlaces, type index_d_VerticalSequencing as VerticalSequencing, index_d_WebhookIdentityType as WebhookIdentityType, type index_d__publicOnSeatingReservationCreatedType as _publicOnSeatingReservationCreatedType, type index_d__publicOnSeatingReservationDeletedType as _publicOnSeatingReservationDeletedType, index_d_createSeatingReservation as createSeatingReservation, index_d_deleteSeatingReservation as deleteSeatingReservation, index_d_getReservation as getReservation, index_d_getSeatingCategoriesSummary as getSeatingCategoriesSummary, index_d_getSeatingReservationSummary as getSeatingReservationSummary, index_d_getSeatingReservationsSummary as getSeatingReservationsSummary, index_d_onSeatingReservationCreated as onSeatingReservationCreated, index_d_onSeatingReservationDeleted as onSeatingReservationDeleted, onSeatingReservationCreated$1 as publicOnSeatingReservationCreated, onSeatingReservationDeleted$1 as publicOnSeatingReservationDeleted, index_d_querySeatingReservation as querySeatingReservation };
2772
+ export { type index_d_ActionEvent as ActionEvent, type index_d_App as App, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_Category as Category, type index_d_CategoryDetails as CategoryDetails, type index_d_CreateSeatingReservationOptions as CreateSeatingReservationOptions, type index_d_CreateSeatingReservationRequest as CreateSeatingReservationRequest, type index_d_CreateSeatingReservationResponse as CreateSeatingReservationResponse, type index_d_CreateSeatingReservationResponseNonNullableFields as CreateSeatingReservationResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_Cursors as Cursors, type index_d_DeleteSeatingPlaceReservationRequest as DeleteSeatingPlaceReservationRequest, type index_d_DeleteSeatingReservationRequest as DeleteSeatingReservationRequest, type index_d_DeleteSeatingReservationResponse as DeleteSeatingReservationResponse, type index_d_DeleteSeatingReservationResponseNonNullableFields as DeleteSeatingReservationResponseNonNullableFields, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Element as Element, type index_d_ElementGroup as ElementGroup, type index_d_ElementGroupUiProperties as ElementGroupUiProperties, type index_d_ElementUiProperties as ElementUiProperties, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, type index_d_ExtendedFields as ExtendedFields, type index_d_File as File, type index_d_GetReservationRequest as GetReservationRequest, type index_d_GetReservationResponse as GetReservationResponse, type index_d_GetReservationResponseNonNullableFields as GetReservationResponseNonNullableFields, type index_d_GetReservedPlacesRequest as GetReservedPlacesRequest, type index_d_GetReservedPlacesResponse as GetReservedPlacesResponse, type index_d_GetSeatingCategoriesSummaryOptions as GetSeatingCategoriesSummaryOptions, type index_d_GetSeatingCategoriesSummaryRequest as GetSeatingCategoriesSummaryRequest, type index_d_GetSeatingCategoriesSummaryResponse as GetSeatingCategoriesSummaryResponse, type index_d_GetSeatingCategorySummaryOptions as GetSeatingCategorySummaryOptions, type index_d_GetSeatingCategorySummaryRequest as GetSeatingCategorySummaryRequest, type index_d_GetSeatingCategorySummaryResponse as GetSeatingCategorySummaryResponse, type index_d_GetSeatingReservationSummaryRequest as GetSeatingReservationSummaryRequest, type index_d_GetSeatingReservationSummaryResponse as GetSeatingReservationSummaryResponse, type index_d_GetSeatingReservationSummaryResponseNonNullableFields as GetSeatingReservationSummaryResponseNonNullableFields, type index_d_GetSeatingReservationsSummaryRequest as GetSeatingReservationsSummaryRequest, type index_d_GetSeatingReservationsSummaryResponse as GetSeatingReservationsSummaryResponse, type index_d_GetSeatingReservationsSummaryResponseNonNullableFields as GetSeatingReservationsSummaryResponseNonNullableFields, index_d_Icon as Icon, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Image as Image, type index_d_InvalidateCache as InvalidateCache, type index_d_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d_MessageEnvelope as MessageEnvelope, type index_d_MultiRowProperties as MultiRowProperties, index_d_Numbering as Numbering, type index_d_Page as Page, type index_d_Paging as Paging, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_Place as Place, type index_d_PlaceReservation as PlaceReservation, type index_d_PlaceReservationDetails as PlaceReservationDetails, index_d_PlaceTypeEnumType as PlaceTypeEnumType, type index_d_Places as Places, index_d_Position as Position, type index_d_QuerySeatingReservationRequest as QuerySeatingReservationRequest, type index_d_QuerySeatingReservationResponse as QuerySeatingReservationResponse, type index_d_QuerySeatingReservationResponseNonNullableFields as QuerySeatingReservationResponseNonNullableFields, type index_d_QueryV2 as QueryV2, type index_d_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d_RegenerateSummariesRequest as RegenerateSummariesRequest, type index_d_RegenerateSummariesResponse as RegenerateSummariesResponse, type index_d_ReservationErrorDetails as ReservationErrorDetails, type index_d_ReservationOptions as ReservationOptions, type index_d_ReservationsQueryBuilder as ReservationsQueryBuilder, type index_d_ReservationsQueryResult as ReservationsQueryResult, type index_d_RestoreInfo as RestoreInfo, type index_d_RowElement as RowElement, type index_d_RowElementUiProperties as RowElementUiProperties, type index_d_SeatingPlan as SeatingPlan, type index_d_SeatingPlanCategoriesSummaryUpdated as SeatingPlanCategoriesSummaryUpdated, type index_d_SeatingPlanUiProperties as SeatingPlanUiProperties, type index_d_SeatingReservation as SeatingReservation, type index_d_SeatingReservationCreatedEnvelope as SeatingReservationCreatedEnvelope, type index_d_SeatingReservationDeletedEnvelope as SeatingReservationDeletedEnvelope, type index_d_SeatingReservationNonNullableFields as SeatingReservationNonNullableFields, type index_d_SeatingReservationsSummary as SeatingReservationsSummary, type index_d_Section as Section, type index_d_Sequencing as Sequencing, index_d_ShapeTypeEnumType as ShapeTypeEnumType, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Type as Type, type index_d_URI as URI, type index_d_UnavailablePlaces as UnavailablePlaces, type index_d_VerticalSequencing as VerticalSequencing, index_d_WebhookIdentityType as WebhookIdentityType, type index_d__publicOnSeatingReservationCreatedType as _publicOnSeatingReservationCreatedType, type index_d__publicOnSeatingReservationDeletedType as _publicOnSeatingReservationDeletedType, index_d_createSeatingReservation as createSeatingReservation, index_d_deleteSeatingReservation as deleteSeatingReservation, index_d_getReservation as getReservation, index_d_getSeatingCategoriesSummary as getSeatingCategoriesSummary, index_d_getSeatingCategorySummary as getSeatingCategorySummary, index_d_getSeatingReservationSummary as getSeatingReservationSummary, index_d_getSeatingReservationsSummary as getSeatingReservationsSummary, index_d_onSeatingReservationCreated as onSeatingReservationCreated, index_d_onSeatingReservationDeleted as onSeatingReservationDeleted, onSeatingReservationCreated$1 as publicOnSeatingReservationCreated, onSeatingReservationDeleted$1 as publicOnSeatingReservationDeleted, index_d_querySeatingReservation as querySeatingReservation };
2751
2773
  }
2752
2774
 
2753
2775
  export { index_d$1 as seatingPlan, index_d as seatingReservation };
@@ -1353,6 +1353,14 @@ interface GetSeatingCategoriesSummaryResponse$1 {
1353
1353
  /** Ticket counts by category */
1354
1354
  categories?: CategoryDetails$1[];
1355
1355
  }
1356
+ interface GetSeatingCategorySummaryRequest$1 {
1357
+ /** Seating plan external id */
1358
+ externalId?: string;
1359
+ }
1360
+ interface GetSeatingCategorySummaryResponse$1 {
1361
+ /** Ticket counts by category */
1362
+ categories?: CategoryDetails$1[];
1363
+ }
1356
1364
  interface GetSeatingReservationsSummaryRequest$1 {
1357
1365
  /** Filter for seating plan */
1358
1366
  filter: Record<string, any> | null;
@@ -1974,6 +1982,14 @@ interface GetSeatingCategoriesSummaryResponse {
1974
1982
  /** Ticket counts by category */
1975
1983
  categories?: CategoryDetails[];
1976
1984
  }
1985
+ interface GetSeatingCategorySummaryRequest {
1986
+ /** Seating plan external id */
1987
+ externalId?: string;
1988
+ }
1989
+ interface GetSeatingCategorySummaryResponse {
1990
+ /** Ticket counts by category */
1991
+ categories?: CategoryDetails[];
1992
+ }
1977
1993
  interface GetSeatingReservationsSummaryRequest {
1978
1994
  /** Filter for seating plan */
1979
1995
  filter: Record<string, any> | null;
@@ -2412,6 +2428,7 @@ declare function deleteSeatingReservation(): __PublicMethodMetaInfo<'DELETE', {
2412
2428
  id: string;
2413
2429
  }, DeleteSeatingReservationRequest, DeleteSeatingReservationRequest$1, DeleteSeatingReservationResponse & DeleteSeatingReservationResponseNonNullableFields, DeleteSeatingReservationResponse$1 & DeleteSeatingReservationResponseNonNullableFields$1>;
2414
2430
  declare function getSeatingCategoriesSummary(): __PublicMethodMetaInfo<'GET', {}, GetSeatingCategoriesSummaryRequest, GetSeatingCategoriesSummaryRequest$1, GetSeatingCategoriesSummaryResponse, GetSeatingCategoriesSummaryResponse$1>;
2431
+ declare function getSeatingCategorySummary(): __PublicMethodMetaInfo<'GET', {}, GetSeatingCategorySummaryRequest, GetSeatingCategorySummaryRequest$1, GetSeatingCategorySummaryResponse, GetSeatingCategorySummaryResponse$1>;
2415
2432
  declare function getSeatingReservationsSummary(): __PublicMethodMetaInfo<'POST', {}, GetSeatingReservationsSummaryRequest, GetSeatingReservationsSummaryRequest$1, GetSeatingReservationsSummaryResponse & GetSeatingReservationsSummaryResponseNonNullableFields, GetSeatingReservationsSummaryResponse$1 & GetSeatingReservationsSummaryResponseNonNullableFields$1>;
2416
2433
  declare function getSeatingReservationSummary(): __PublicMethodMetaInfo<'GET', {
2417
2434
  externalId: string;
@@ -2422,11 +2439,12 @@ declare const meta_createSeatingReservation: typeof createSeatingReservation;
2422
2439
  declare const meta_deleteSeatingReservation: typeof deleteSeatingReservation;
2423
2440
  declare const meta_getReservation: typeof getReservation;
2424
2441
  declare const meta_getSeatingCategoriesSummary: typeof getSeatingCategoriesSummary;
2442
+ declare const meta_getSeatingCategorySummary: typeof getSeatingCategorySummary;
2425
2443
  declare const meta_getSeatingReservationSummary: typeof getSeatingReservationSummary;
2426
2444
  declare const meta_getSeatingReservationsSummary: typeof getSeatingReservationsSummary;
2427
2445
  declare const meta_querySeatingReservation: typeof querySeatingReservation;
2428
2446
  declare namespace meta {
2429
- export { type meta___PublicMethodMetaInfo as __PublicMethodMetaInfo, meta_createSeatingReservation as createSeatingReservation, meta_deleteSeatingReservation as deleteSeatingReservation, meta_getReservation as getReservation, meta_getSeatingCategoriesSummary as getSeatingCategoriesSummary, meta_getSeatingReservationSummary as getSeatingReservationSummary, meta_getSeatingReservationsSummary as getSeatingReservationsSummary, meta_querySeatingReservation as querySeatingReservation };
2447
+ export { type meta___PublicMethodMetaInfo as __PublicMethodMetaInfo, meta_createSeatingReservation as createSeatingReservation, meta_deleteSeatingReservation as deleteSeatingReservation, meta_getReservation as getReservation, meta_getSeatingCategoriesSummary as getSeatingCategoriesSummary, meta_getSeatingCategorySummary as getSeatingCategorySummary, meta_getSeatingReservationSummary as getSeatingReservationSummary, meta_getSeatingReservationsSummary as getSeatingReservationsSummary, meta_querySeatingReservation as querySeatingReservation };
2430
2448
  }
2431
2449
 
2432
2450
  export { meta$1 as seatingPlan, meta as seatingReservation };