@livdot-tech/contracts 1.9.19 → 1.9.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist/auth/index.js +1 -1
  2. package/dist/auth/index.mjs +1 -1
  3. package/dist/booking/index.d.mts +15 -3
  4. package/dist/booking/index.d.ts +15 -3
  5. package/dist/booking/index.js +1 -1
  6. package/dist/booking/index.mjs +1 -1
  7. package/dist/chunk-3XLDX2QM.js +2 -0
  8. package/dist/chunk-3XLDX2QM.js.map +1 -0
  9. package/dist/{chunk-PNZG4T4L.js → chunk-4544S7SF.js} +2 -2
  10. package/dist/{chunk-PNZG4T4L.js.map → chunk-4544S7SF.js.map} +1 -1
  11. package/dist/chunk-5ENUSIHI.mjs +2 -0
  12. package/dist/chunk-5ENUSIHI.mjs.map +1 -0
  13. package/dist/{chunk-Y6ITJQ2G.js → chunk-6V6UXZSJ.js} +2 -2
  14. package/dist/{chunk-Y6ITJQ2G.js.map → chunk-6V6UXZSJ.js.map} +1 -1
  15. package/dist/chunk-DIGMDWL4.js +2 -0
  16. package/dist/chunk-DIGMDWL4.js.map +1 -0
  17. package/dist/{chunk-XGR3BQS3.mjs → chunk-DWMOEKLB.mjs} +2 -2
  18. package/dist/{chunk-XGR3BQS3.mjs.map → chunk-DWMOEKLB.mjs.map} +1 -1
  19. package/dist/chunk-EJYBQ36M.mjs +2 -0
  20. package/dist/chunk-EJYBQ36M.mjs.map +1 -0
  21. package/dist/{chunk-NZQAPPVC.mjs → chunk-YY24TIOU.mjs} +2 -2
  22. package/dist/{chunk-NZQAPPVC.mjs.map → chunk-YY24TIOU.mjs.map} +1 -1
  23. package/dist/index.d.mts +166 -2
  24. package/dist/index.d.ts +166 -2
  25. package/dist/index.js +1 -1
  26. package/dist/index.js.map +1 -1
  27. package/dist/index.mjs +1 -1
  28. package/dist/index.mjs.map +1 -1
  29. package/dist/marketplace/index.d.mts +4 -0
  30. package/dist/marketplace/index.d.ts +4 -0
  31. package/dist/marketplace/index.js +1 -1
  32. package/dist/marketplace/index.mjs +1 -1
  33. package/dist/user/index.js +1 -1
  34. package/dist/user/index.mjs +1 -1
  35. package/package.json +1 -1
  36. package/dist/chunk-F4MRVOPL.js +0 -2
  37. package/dist/chunk-F4MRVOPL.js.map +0 -1
  38. package/dist/chunk-PX5BDO3K.mjs +0 -2
  39. package/dist/chunk-PX5BDO3K.mjs.map +0 -1
  40. package/dist/chunk-TMFSM6T4.js +0 -2
  41. package/dist/chunk-TMFSM6T4.js.map +0 -1
  42. package/dist/chunk-YDJOTD7W.mjs +0 -2
  43. package/dist/chunk-YDJOTD7W.mjs.map +0 -1
package/dist/index.d.mts CHANGED
@@ -596,6 +596,145 @@ declare const HostEventReadinessBlockSchema: z.ZodObject<{
596
596
  NOT_OWNED: "NOT_OWNED";
597
597
  }>>;
598
598
  }, z.core.$strip>;
599
+ /** `GET /host/events/:id/dashboard` — optional active-crew filters */
600
+ declare const ListHostEventDashboardQuerySchema: z.ZodObject<{
601
+ crewSearch: z.ZodOptional<z.ZodString>;
602
+ crewState: z.ZodOptional<z.ZodEnum<{
603
+ readonly REQUESTED: "REQUESTED";
604
+ readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
605
+ readonly IN_NEGOTIATION: "IN_NEGOTIATION";
606
+ readonly ACCEPTED: "ACCEPTED";
607
+ readonly REJECTED: "REJECTED";
608
+ readonly CANCELLED: "CANCELLED";
609
+ readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
610
+ readonly CONFIRMED: "CONFIRMED";
611
+ readonly IN_PROGRESS: "IN_PROGRESS";
612
+ readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
613
+ readonly IN_DISPUTE: "IN_DISPUTE";
614
+ readonly CLOSED: "CLOSED";
615
+ readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
616
+ }>>;
617
+ }, z.core.$strip>;
618
+ declare const HostEventCrewMemberSchema: z.ZodObject<{
619
+ bookingId: z.ZodString;
620
+ producerProfileId: z.ZodString;
621
+ displayName: z.ZodString;
622
+ producerAvatarUrl: z.ZodNullable<z.ZodURL>;
623
+ producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
624
+ producerEquipmentLabels: z.ZodArray<z.ZodString>;
625
+ producerIsVerified: z.ZodBoolean;
626
+ role: z.ZodNullable<z.ZodString>;
627
+ state: z.ZodEnum<{
628
+ readonly REQUESTED: "REQUESTED";
629
+ readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
630
+ readonly IN_NEGOTIATION: "IN_NEGOTIATION";
631
+ readonly ACCEPTED: "ACCEPTED";
632
+ readonly REJECTED: "REJECTED";
633
+ readonly CANCELLED: "CANCELLED";
634
+ readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
635
+ readonly CONFIRMED: "CONFIRMED";
636
+ readonly IN_PROGRESS: "IN_PROGRESS";
637
+ readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
638
+ readonly IN_DISPUTE: "IN_DISPUTE";
639
+ readonly CLOSED: "CLOSED";
640
+ readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
641
+ }>;
642
+ confirmedAt: z.ZodNullable<z.ZodISODateTime>;
643
+ }, z.core.$strip>;
644
+ declare const HostProductionCrewPhaseSchema: z.ZodEnum<{
645
+ ACTIVE: "ACTIVE";
646
+ PAST: "PAST";
647
+ }>;
648
+ /** `GET /host/production/crew` — host-level crew roster across events */
649
+ declare const ListHostProductionCrewQuerySchema: z.ZodObject<{
650
+ pageNumber: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
651
+ pageSize: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
652
+ phase: z.ZodDefault<z.ZodEnum<{
653
+ ACTIVE: "ACTIVE";
654
+ PAST: "PAST";
655
+ }>>;
656
+ eventId: z.ZodOptional<z.ZodUUID>;
657
+ crewSearch: z.ZodOptional<z.ZodString>;
658
+ crewState: z.ZodOptional<z.ZodEnum<{
659
+ readonly REQUESTED: "REQUESTED";
660
+ readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
661
+ readonly IN_NEGOTIATION: "IN_NEGOTIATION";
662
+ readonly ACCEPTED: "ACCEPTED";
663
+ readonly REJECTED: "REJECTED";
664
+ readonly CANCELLED: "CANCELLED";
665
+ readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
666
+ readonly CONFIRMED: "CONFIRMED";
667
+ readonly IN_PROGRESS: "IN_PROGRESS";
668
+ readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
669
+ readonly IN_DISPUTE: "IN_DISPUTE";
670
+ readonly CLOSED: "CLOSED";
671
+ readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
672
+ }>>;
673
+ }, z.core.$strip>;
674
+ declare const HostProductionCrewItemSchema: z.ZodObject<{
675
+ bookingId: z.ZodString;
676
+ producerProfileId: z.ZodString;
677
+ displayName: z.ZodString;
678
+ producerAvatarUrl: z.ZodNullable<z.ZodURL>;
679
+ producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
680
+ producerEquipmentLabels: z.ZodArray<z.ZodString>;
681
+ producerIsVerified: z.ZodBoolean;
682
+ role: z.ZodNullable<z.ZodString>;
683
+ state: z.ZodEnum<{
684
+ readonly REQUESTED: "REQUESTED";
685
+ readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
686
+ readonly IN_NEGOTIATION: "IN_NEGOTIATION";
687
+ readonly ACCEPTED: "ACCEPTED";
688
+ readonly REJECTED: "REJECTED";
689
+ readonly CANCELLED: "CANCELLED";
690
+ readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
691
+ readonly CONFIRMED: "CONFIRMED";
692
+ readonly IN_PROGRESS: "IN_PROGRESS";
693
+ readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
694
+ readonly IN_DISPUTE: "IN_DISPUTE";
695
+ readonly CLOSED: "CLOSED";
696
+ readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
697
+ }>;
698
+ confirmedAt: z.ZodNullable<z.ZodISODateTime>;
699
+ eventId: z.ZodUUID;
700
+ eventTitle: z.ZodString;
701
+ }, z.core.$strip>;
702
+ declare const PagedHostProductionCrewResponseSchema: z.ZodObject<{
703
+ totalCount: z.ZodNumber;
704
+ pageNumber: z.ZodNumber;
705
+ pageSize: z.ZodNumber;
706
+ totalPages: z.ZodNumber;
707
+ hasPreviousPage: z.ZodBoolean;
708
+ hasNextPage: z.ZodBoolean;
709
+ items: z.ZodArray<z.ZodObject<{
710
+ bookingId: z.ZodString;
711
+ producerProfileId: z.ZodString;
712
+ displayName: z.ZodString;
713
+ producerAvatarUrl: z.ZodNullable<z.ZodURL>;
714
+ producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
715
+ producerEquipmentLabels: z.ZodArray<z.ZodString>;
716
+ producerIsVerified: z.ZodBoolean;
717
+ role: z.ZodNullable<z.ZodString>;
718
+ state: z.ZodEnum<{
719
+ readonly REQUESTED: "REQUESTED";
720
+ readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
721
+ readonly IN_NEGOTIATION: "IN_NEGOTIATION";
722
+ readonly ACCEPTED: "ACCEPTED";
723
+ readonly REJECTED: "REJECTED";
724
+ readonly CANCELLED: "CANCELLED";
725
+ readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
726
+ readonly CONFIRMED: "CONFIRMED";
727
+ readonly IN_PROGRESS: "IN_PROGRESS";
728
+ readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
729
+ readonly IN_DISPUTE: "IN_DISPUTE";
730
+ readonly CLOSED: "CLOSED";
731
+ readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
732
+ }>;
733
+ confirmedAt: z.ZodNullable<z.ZodISODateTime>;
734
+ eventId: z.ZodUUID;
735
+ eventTitle: z.ZodString;
736
+ }, z.core.$strip>>;
737
+ }, z.core.$strip>;
599
738
  declare const HostEventDashboardResponseSchema: z.ZodObject<{
600
739
  serverNow: z.ZodISODateTime;
601
740
  event: z.ZodObject<{
@@ -670,8 +809,27 @@ declare const HostEventDashboardResponseSchema: z.ZodObject<{
670
809
  crew: z.ZodArray<z.ZodObject<{
671
810
  bookingId: z.ZodString;
672
811
  producerProfileId: z.ZodString;
812
+ displayName: z.ZodString;
813
+ producerAvatarUrl: z.ZodNullable<z.ZodURL>;
814
+ producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
815
+ producerEquipmentLabels: z.ZodArray<z.ZodString>;
816
+ producerIsVerified: z.ZodBoolean;
673
817
  role: z.ZodNullable<z.ZodString>;
674
- state: z.ZodString;
818
+ state: z.ZodEnum<{
819
+ readonly REQUESTED: "REQUESTED";
820
+ readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
821
+ readonly IN_NEGOTIATION: "IN_NEGOTIATION";
822
+ readonly ACCEPTED: "ACCEPTED";
823
+ readonly REJECTED: "REJECTED";
824
+ readonly CANCELLED: "CANCELLED";
825
+ readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
826
+ readonly CONFIRMED: "CONFIRMED";
827
+ readonly IN_PROGRESS: "IN_PROGRESS";
828
+ readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
829
+ readonly IN_DISPUTE: "IN_DISPUTE";
830
+ readonly CLOSED: "CLOSED";
831
+ readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
832
+ }>;
675
833
  confirmedAt: z.ZodNullable<z.ZodISODateTime>;
676
834
  }, z.core.$strip>>;
677
835
  }, z.core.$strip>;
@@ -767,10 +925,16 @@ type HostEventReadinessBlock = z.infer<typeof HostEventReadinessBlockSchema>;
767
925
  type HostEventShareResponse = z.infer<typeof HostEventShareResponseSchema>;
768
926
  type HostEventDashboardResponse = z.infer<typeof HostEventDashboardResponseSchema>;
769
927
  type HostEventReadinessResponse = z.infer<typeof HostEventReadinessResponseSchema>;
928
+ type ListHostEventDashboardQuery = z.infer<typeof ListHostEventDashboardQuerySchema>;
929
+ type HostEventCrewMember = z.infer<typeof HostEventCrewMemberSchema>;
930
+ type HostProductionCrewPhase = z.infer<typeof HostProductionCrewPhaseSchema>;
931
+ type ListHostProductionCrewQuery = z.infer<typeof ListHostProductionCrewQuerySchema>;
932
+ type HostProductionCrewItem = z.infer<typeof HostProductionCrewItemSchema>;
933
+ type PagedHostProductionCrewResponse = z.infer<typeof PagedHostProductionCrewResponseSchema>;
770
934
  type ReadinessItemId = z.infer<typeof ReadinessItemIdSchema>;
771
935
  type ReadinessItemState = z.infer<typeof ReadinessItemStateSchema>;
772
936
  type ReadinessBlockReason = z.infer<typeof ReadinessBlockReasonSchema>;
773
937
  type StreamingStatus = z.infer<typeof StreamingStatusSchema>;
774
938
  type ProductionMode = z.infer<typeof ProductionModeSchema>;
775
939
 
776
- export { CHAT_MESSAGE_BODY_MAX_LENGTH, CHAT_MESSAGE_BODY_MIN_LENGTH, CHAT_MODERATION_REASON_MAX_LENGTH, type CancelEvent, CancelEventSchema, type ChatCredentialsResponse, ChatCredentialsResponseSchema, type ChatHistoryResponse, ChatHistoryResponseSchema, type ChatMessage, ChatMessageSchema, type ChatMessageUser, ChatMessageUserSchema, type ChatModerationDeleteRequest, ChatModerationDeleteRequestSchema, type ChatModerationMuteRequest, ChatModerationMuteRequestSchema, type ChatMuteStateResponse, ChatMuteStateResponseSchema, HOST_DATE_RANGE_PRESETS, type HostActivityListPage, HostActivityListPageSchema, type HostEventCancelResponse, HostEventCancelResponseSchema, type HostEventDashboardResponse, HostEventDashboardResponseSchema, type HostEventFullResponse, HostEventFullResponseSchema, type HostEventPatch, HostEventPatchSchema, type HostEventReadinessBlock, HostEventReadinessBlockSchema, type HostEventReadinessResponse, HostEventReadinessResponseSchema, type HostEventRowResponse, HostEventRowResponseSchema, type HostEventShareResponse, HostEventShareResponseSchema, type HostEventWizardCurrentResponse, HostEventWizardCurrentResponseSchema, type HostEventWizardPublishResponse, HostEventWizardPublishResponseSchema, type HostEventWizardStart, type HostEventWizardStartResponse, HostEventWizardStartResponseSchema, HostEventWizardStartSchema, type HostEventWizardStepResponse, HostEventWizardStepResponseSchema, type HostEventsListPagedQuery, HostEventsListPagedQuerySchema, type HostEventsListQuery, HostEventsListQuerySchema, type HostEventsTab, type HostEventsTabCountsResponse, HostEventsTabCountsResponseSchema, type HostEventsTabResponse, type HostEventsTabResponseClass, HostEventsTabResponseClassSchema, HostEventsTabResponseSchema, HostEventsTabSchema, type HostNotificationsUnreadCount, HostNotificationsUnreadCountSchema, type HostOverviewQuery, HostOverviewQuerySchema, type HostOverviewResponse, HostOverviewResponseSchema, type HostSearchHit, HostSearchHitSchema, type HostSearchQuery, HostSearchQuerySchema, type HostSearchResponse, HostSearchResponseSchema, type InProcessChatCredentials, InProcessChatCredentialsSchema, type IvsChatCredentials, IvsChatCredentialsSchema, type PostChatMessageRequest, PostChatMessageRequestSchema, type ProductionMode, ProductionModeSchema, type ReadinessBlockReason, ReadinessBlockReasonSchema, type ReadinessItem, type ReadinessItemId, ReadinessItemIdSchema, ReadinessItemSchema, type ReadinessItemState, ReadinessItemStateSchema, type StreamingStatus, StreamingStatusSchema };
940
+ export { CHAT_MESSAGE_BODY_MAX_LENGTH, CHAT_MESSAGE_BODY_MIN_LENGTH, CHAT_MODERATION_REASON_MAX_LENGTH, type CancelEvent, CancelEventSchema, type ChatCredentialsResponse, ChatCredentialsResponseSchema, type ChatHistoryResponse, ChatHistoryResponseSchema, type ChatMessage, ChatMessageSchema, type ChatMessageUser, ChatMessageUserSchema, type ChatModerationDeleteRequest, ChatModerationDeleteRequestSchema, type ChatModerationMuteRequest, ChatModerationMuteRequestSchema, type ChatMuteStateResponse, ChatMuteStateResponseSchema, HOST_DATE_RANGE_PRESETS, type HostActivityListPage, HostActivityListPageSchema, type HostEventCancelResponse, HostEventCancelResponseSchema, type HostEventCrewMember, HostEventCrewMemberSchema, type HostEventDashboardResponse, HostEventDashboardResponseSchema, type HostEventFullResponse, HostEventFullResponseSchema, type HostEventPatch, HostEventPatchSchema, type HostEventReadinessBlock, HostEventReadinessBlockSchema, type HostEventReadinessResponse, HostEventReadinessResponseSchema, type HostEventRowResponse, HostEventRowResponseSchema, type HostEventShareResponse, HostEventShareResponseSchema, type HostEventWizardCurrentResponse, HostEventWizardCurrentResponseSchema, type HostEventWizardPublishResponse, HostEventWizardPublishResponseSchema, type HostEventWizardStart, type HostEventWizardStartResponse, HostEventWizardStartResponseSchema, HostEventWizardStartSchema, type HostEventWizardStepResponse, HostEventWizardStepResponseSchema, type HostEventsListPagedQuery, HostEventsListPagedQuerySchema, type HostEventsListQuery, HostEventsListQuerySchema, type HostEventsTab, type HostEventsTabCountsResponse, HostEventsTabCountsResponseSchema, type HostEventsTabResponse, type HostEventsTabResponseClass, HostEventsTabResponseClassSchema, HostEventsTabResponseSchema, HostEventsTabSchema, type HostNotificationsUnreadCount, HostNotificationsUnreadCountSchema, type HostOverviewQuery, HostOverviewQuerySchema, type HostOverviewResponse, HostOverviewResponseSchema, type HostProductionCrewItem, HostProductionCrewItemSchema, type HostProductionCrewPhase, HostProductionCrewPhaseSchema, type HostSearchHit, HostSearchHitSchema, type HostSearchQuery, HostSearchQuerySchema, type HostSearchResponse, HostSearchResponseSchema, type InProcessChatCredentials, InProcessChatCredentialsSchema, type IvsChatCredentials, IvsChatCredentialsSchema, type ListHostEventDashboardQuery, ListHostEventDashboardQuerySchema, type ListHostProductionCrewQuery, ListHostProductionCrewQuerySchema, type PagedHostProductionCrewResponse, PagedHostProductionCrewResponseSchema, type PostChatMessageRequest, PostChatMessageRequestSchema, type ProductionMode, ProductionModeSchema, type ReadinessBlockReason, ReadinessBlockReasonSchema, type ReadinessItem, type ReadinessItemId, ReadinessItemIdSchema, ReadinessItemSchema, type ReadinessItemState, ReadinessItemStateSchema, type StreamingStatus, StreamingStatusSchema };
package/dist/index.d.ts CHANGED
@@ -596,6 +596,145 @@ declare const HostEventReadinessBlockSchema: z.ZodObject<{
596
596
  NOT_OWNED: "NOT_OWNED";
597
597
  }>>;
598
598
  }, z.core.$strip>;
599
+ /** `GET /host/events/:id/dashboard` — optional active-crew filters */
600
+ declare const ListHostEventDashboardQuerySchema: z.ZodObject<{
601
+ crewSearch: z.ZodOptional<z.ZodString>;
602
+ crewState: z.ZodOptional<z.ZodEnum<{
603
+ readonly REQUESTED: "REQUESTED";
604
+ readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
605
+ readonly IN_NEGOTIATION: "IN_NEGOTIATION";
606
+ readonly ACCEPTED: "ACCEPTED";
607
+ readonly REJECTED: "REJECTED";
608
+ readonly CANCELLED: "CANCELLED";
609
+ readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
610
+ readonly CONFIRMED: "CONFIRMED";
611
+ readonly IN_PROGRESS: "IN_PROGRESS";
612
+ readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
613
+ readonly IN_DISPUTE: "IN_DISPUTE";
614
+ readonly CLOSED: "CLOSED";
615
+ readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
616
+ }>>;
617
+ }, z.core.$strip>;
618
+ declare const HostEventCrewMemberSchema: z.ZodObject<{
619
+ bookingId: z.ZodString;
620
+ producerProfileId: z.ZodString;
621
+ displayName: z.ZodString;
622
+ producerAvatarUrl: z.ZodNullable<z.ZodURL>;
623
+ producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
624
+ producerEquipmentLabels: z.ZodArray<z.ZodString>;
625
+ producerIsVerified: z.ZodBoolean;
626
+ role: z.ZodNullable<z.ZodString>;
627
+ state: z.ZodEnum<{
628
+ readonly REQUESTED: "REQUESTED";
629
+ readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
630
+ readonly IN_NEGOTIATION: "IN_NEGOTIATION";
631
+ readonly ACCEPTED: "ACCEPTED";
632
+ readonly REJECTED: "REJECTED";
633
+ readonly CANCELLED: "CANCELLED";
634
+ readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
635
+ readonly CONFIRMED: "CONFIRMED";
636
+ readonly IN_PROGRESS: "IN_PROGRESS";
637
+ readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
638
+ readonly IN_DISPUTE: "IN_DISPUTE";
639
+ readonly CLOSED: "CLOSED";
640
+ readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
641
+ }>;
642
+ confirmedAt: z.ZodNullable<z.ZodISODateTime>;
643
+ }, z.core.$strip>;
644
+ declare const HostProductionCrewPhaseSchema: z.ZodEnum<{
645
+ ACTIVE: "ACTIVE";
646
+ PAST: "PAST";
647
+ }>;
648
+ /** `GET /host/production/crew` — host-level crew roster across events */
649
+ declare const ListHostProductionCrewQuerySchema: z.ZodObject<{
650
+ pageNumber: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
651
+ pageSize: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
652
+ phase: z.ZodDefault<z.ZodEnum<{
653
+ ACTIVE: "ACTIVE";
654
+ PAST: "PAST";
655
+ }>>;
656
+ eventId: z.ZodOptional<z.ZodUUID>;
657
+ crewSearch: z.ZodOptional<z.ZodString>;
658
+ crewState: z.ZodOptional<z.ZodEnum<{
659
+ readonly REQUESTED: "REQUESTED";
660
+ readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
661
+ readonly IN_NEGOTIATION: "IN_NEGOTIATION";
662
+ readonly ACCEPTED: "ACCEPTED";
663
+ readonly REJECTED: "REJECTED";
664
+ readonly CANCELLED: "CANCELLED";
665
+ readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
666
+ readonly CONFIRMED: "CONFIRMED";
667
+ readonly IN_PROGRESS: "IN_PROGRESS";
668
+ readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
669
+ readonly IN_DISPUTE: "IN_DISPUTE";
670
+ readonly CLOSED: "CLOSED";
671
+ readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
672
+ }>>;
673
+ }, z.core.$strip>;
674
+ declare const HostProductionCrewItemSchema: z.ZodObject<{
675
+ bookingId: z.ZodString;
676
+ producerProfileId: z.ZodString;
677
+ displayName: z.ZodString;
678
+ producerAvatarUrl: z.ZodNullable<z.ZodURL>;
679
+ producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
680
+ producerEquipmentLabels: z.ZodArray<z.ZodString>;
681
+ producerIsVerified: z.ZodBoolean;
682
+ role: z.ZodNullable<z.ZodString>;
683
+ state: z.ZodEnum<{
684
+ readonly REQUESTED: "REQUESTED";
685
+ readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
686
+ readonly IN_NEGOTIATION: "IN_NEGOTIATION";
687
+ readonly ACCEPTED: "ACCEPTED";
688
+ readonly REJECTED: "REJECTED";
689
+ readonly CANCELLED: "CANCELLED";
690
+ readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
691
+ readonly CONFIRMED: "CONFIRMED";
692
+ readonly IN_PROGRESS: "IN_PROGRESS";
693
+ readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
694
+ readonly IN_DISPUTE: "IN_DISPUTE";
695
+ readonly CLOSED: "CLOSED";
696
+ readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
697
+ }>;
698
+ confirmedAt: z.ZodNullable<z.ZodISODateTime>;
699
+ eventId: z.ZodUUID;
700
+ eventTitle: z.ZodString;
701
+ }, z.core.$strip>;
702
+ declare const PagedHostProductionCrewResponseSchema: z.ZodObject<{
703
+ totalCount: z.ZodNumber;
704
+ pageNumber: z.ZodNumber;
705
+ pageSize: z.ZodNumber;
706
+ totalPages: z.ZodNumber;
707
+ hasPreviousPage: z.ZodBoolean;
708
+ hasNextPage: z.ZodBoolean;
709
+ items: z.ZodArray<z.ZodObject<{
710
+ bookingId: z.ZodString;
711
+ producerProfileId: z.ZodString;
712
+ displayName: z.ZodString;
713
+ producerAvatarUrl: z.ZodNullable<z.ZodURL>;
714
+ producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
715
+ producerEquipmentLabels: z.ZodArray<z.ZodString>;
716
+ producerIsVerified: z.ZodBoolean;
717
+ role: z.ZodNullable<z.ZodString>;
718
+ state: z.ZodEnum<{
719
+ readonly REQUESTED: "REQUESTED";
720
+ readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
721
+ readonly IN_NEGOTIATION: "IN_NEGOTIATION";
722
+ readonly ACCEPTED: "ACCEPTED";
723
+ readonly REJECTED: "REJECTED";
724
+ readonly CANCELLED: "CANCELLED";
725
+ readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
726
+ readonly CONFIRMED: "CONFIRMED";
727
+ readonly IN_PROGRESS: "IN_PROGRESS";
728
+ readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
729
+ readonly IN_DISPUTE: "IN_DISPUTE";
730
+ readonly CLOSED: "CLOSED";
731
+ readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
732
+ }>;
733
+ confirmedAt: z.ZodNullable<z.ZodISODateTime>;
734
+ eventId: z.ZodUUID;
735
+ eventTitle: z.ZodString;
736
+ }, z.core.$strip>>;
737
+ }, z.core.$strip>;
599
738
  declare const HostEventDashboardResponseSchema: z.ZodObject<{
600
739
  serverNow: z.ZodISODateTime;
601
740
  event: z.ZodObject<{
@@ -670,8 +809,27 @@ declare const HostEventDashboardResponseSchema: z.ZodObject<{
670
809
  crew: z.ZodArray<z.ZodObject<{
671
810
  bookingId: z.ZodString;
672
811
  producerProfileId: z.ZodString;
812
+ displayName: z.ZodString;
813
+ producerAvatarUrl: z.ZodNullable<z.ZodURL>;
814
+ producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
815
+ producerEquipmentLabels: z.ZodArray<z.ZodString>;
816
+ producerIsVerified: z.ZodBoolean;
673
817
  role: z.ZodNullable<z.ZodString>;
674
- state: z.ZodString;
818
+ state: z.ZodEnum<{
819
+ readonly REQUESTED: "REQUESTED";
820
+ readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
821
+ readonly IN_NEGOTIATION: "IN_NEGOTIATION";
822
+ readonly ACCEPTED: "ACCEPTED";
823
+ readonly REJECTED: "REJECTED";
824
+ readonly CANCELLED: "CANCELLED";
825
+ readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
826
+ readonly CONFIRMED: "CONFIRMED";
827
+ readonly IN_PROGRESS: "IN_PROGRESS";
828
+ readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
829
+ readonly IN_DISPUTE: "IN_DISPUTE";
830
+ readonly CLOSED: "CLOSED";
831
+ readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
832
+ }>;
675
833
  confirmedAt: z.ZodNullable<z.ZodISODateTime>;
676
834
  }, z.core.$strip>>;
677
835
  }, z.core.$strip>;
@@ -767,10 +925,16 @@ type HostEventReadinessBlock = z.infer<typeof HostEventReadinessBlockSchema>;
767
925
  type HostEventShareResponse = z.infer<typeof HostEventShareResponseSchema>;
768
926
  type HostEventDashboardResponse = z.infer<typeof HostEventDashboardResponseSchema>;
769
927
  type HostEventReadinessResponse = z.infer<typeof HostEventReadinessResponseSchema>;
928
+ type ListHostEventDashboardQuery = z.infer<typeof ListHostEventDashboardQuerySchema>;
929
+ type HostEventCrewMember = z.infer<typeof HostEventCrewMemberSchema>;
930
+ type HostProductionCrewPhase = z.infer<typeof HostProductionCrewPhaseSchema>;
931
+ type ListHostProductionCrewQuery = z.infer<typeof ListHostProductionCrewQuerySchema>;
932
+ type HostProductionCrewItem = z.infer<typeof HostProductionCrewItemSchema>;
933
+ type PagedHostProductionCrewResponse = z.infer<typeof PagedHostProductionCrewResponseSchema>;
770
934
  type ReadinessItemId = z.infer<typeof ReadinessItemIdSchema>;
771
935
  type ReadinessItemState = z.infer<typeof ReadinessItemStateSchema>;
772
936
  type ReadinessBlockReason = z.infer<typeof ReadinessBlockReasonSchema>;
773
937
  type StreamingStatus = z.infer<typeof StreamingStatusSchema>;
774
938
  type ProductionMode = z.infer<typeof ProductionModeSchema>;
775
939
 
776
- export { CHAT_MESSAGE_BODY_MAX_LENGTH, CHAT_MESSAGE_BODY_MIN_LENGTH, CHAT_MODERATION_REASON_MAX_LENGTH, type CancelEvent, CancelEventSchema, type ChatCredentialsResponse, ChatCredentialsResponseSchema, type ChatHistoryResponse, ChatHistoryResponseSchema, type ChatMessage, ChatMessageSchema, type ChatMessageUser, ChatMessageUserSchema, type ChatModerationDeleteRequest, ChatModerationDeleteRequestSchema, type ChatModerationMuteRequest, ChatModerationMuteRequestSchema, type ChatMuteStateResponse, ChatMuteStateResponseSchema, HOST_DATE_RANGE_PRESETS, type HostActivityListPage, HostActivityListPageSchema, type HostEventCancelResponse, HostEventCancelResponseSchema, type HostEventDashboardResponse, HostEventDashboardResponseSchema, type HostEventFullResponse, HostEventFullResponseSchema, type HostEventPatch, HostEventPatchSchema, type HostEventReadinessBlock, HostEventReadinessBlockSchema, type HostEventReadinessResponse, HostEventReadinessResponseSchema, type HostEventRowResponse, HostEventRowResponseSchema, type HostEventShareResponse, HostEventShareResponseSchema, type HostEventWizardCurrentResponse, HostEventWizardCurrentResponseSchema, type HostEventWizardPublishResponse, HostEventWizardPublishResponseSchema, type HostEventWizardStart, type HostEventWizardStartResponse, HostEventWizardStartResponseSchema, HostEventWizardStartSchema, type HostEventWizardStepResponse, HostEventWizardStepResponseSchema, type HostEventsListPagedQuery, HostEventsListPagedQuerySchema, type HostEventsListQuery, HostEventsListQuerySchema, type HostEventsTab, type HostEventsTabCountsResponse, HostEventsTabCountsResponseSchema, type HostEventsTabResponse, type HostEventsTabResponseClass, HostEventsTabResponseClassSchema, HostEventsTabResponseSchema, HostEventsTabSchema, type HostNotificationsUnreadCount, HostNotificationsUnreadCountSchema, type HostOverviewQuery, HostOverviewQuerySchema, type HostOverviewResponse, HostOverviewResponseSchema, type HostSearchHit, HostSearchHitSchema, type HostSearchQuery, HostSearchQuerySchema, type HostSearchResponse, HostSearchResponseSchema, type InProcessChatCredentials, InProcessChatCredentialsSchema, type IvsChatCredentials, IvsChatCredentialsSchema, type PostChatMessageRequest, PostChatMessageRequestSchema, type ProductionMode, ProductionModeSchema, type ReadinessBlockReason, ReadinessBlockReasonSchema, type ReadinessItem, type ReadinessItemId, ReadinessItemIdSchema, ReadinessItemSchema, type ReadinessItemState, ReadinessItemStateSchema, type StreamingStatus, StreamingStatusSchema };
940
+ export { CHAT_MESSAGE_BODY_MAX_LENGTH, CHAT_MESSAGE_BODY_MIN_LENGTH, CHAT_MODERATION_REASON_MAX_LENGTH, type CancelEvent, CancelEventSchema, type ChatCredentialsResponse, ChatCredentialsResponseSchema, type ChatHistoryResponse, ChatHistoryResponseSchema, type ChatMessage, ChatMessageSchema, type ChatMessageUser, ChatMessageUserSchema, type ChatModerationDeleteRequest, ChatModerationDeleteRequestSchema, type ChatModerationMuteRequest, ChatModerationMuteRequestSchema, type ChatMuteStateResponse, ChatMuteStateResponseSchema, HOST_DATE_RANGE_PRESETS, type HostActivityListPage, HostActivityListPageSchema, type HostEventCancelResponse, HostEventCancelResponseSchema, type HostEventCrewMember, HostEventCrewMemberSchema, type HostEventDashboardResponse, HostEventDashboardResponseSchema, type HostEventFullResponse, HostEventFullResponseSchema, type HostEventPatch, HostEventPatchSchema, type HostEventReadinessBlock, HostEventReadinessBlockSchema, type HostEventReadinessResponse, HostEventReadinessResponseSchema, type HostEventRowResponse, HostEventRowResponseSchema, type HostEventShareResponse, HostEventShareResponseSchema, type HostEventWizardCurrentResponse, HostEventWizardCurrentResponseSchema, type HostEventWizardPublishResponse, HostEventWizardPublishResponseSchema, type HostEventWizardStart, type HostEventWizardStartResponse, HostEventWizardStartResponseSchema, HostEventWizardStartSchema, type HostEventWizardStepResponse, HostEventWizardStepResponseSchema, type HostEventsListPagedQuery, HostEventsListPagedQuerySchema, type HostEventsListQuery, HostEventsListQuerySchema, type HostEventsTab, type HostEventsTabCountsResponse, HostEventsTabCountsResponseSchema, type HostEventsTabResponse, type HostEventsTabResponseClass, HostEventsTabResponseClassSchema, HostEventsTabResponseSchema, HostEventsTabSchema, type HostNotificationsUnreadCount, HostNotificationsUnreadCountSchema, type HostOverviewQuery, HostOverviewQuerySchema, type HostOverviewResponse, HostOverviewResponseSchema, type HostProductionCrewItem, HostProductionCrewItemSchema, type HostProductionCrewPhase, HostProductionCrewPhaseSchema, type HostSearchHit, HostSearchHitSchema, type HostSearchQuery, HostSearchQuerySchema, type HostSearchResponse, HostSearchResponseSchema, type InProcessChatCredentials, InProcessChatCredentialsSchema, type IvsChatCredentials, IvsChatCredentialsSchema, type ListHostEventDashboardQuery, ListHostEventDashboardQuerySchema, type ListHostProductionCrewQuery, ListHostProductionCrewQuerySchema, type PagedHostProductionCrewResponse, PagedHostProductionCrewResponseSchema, type PostChatMessageRequest, PostChatMessageRequestSchema, type ProductionMode, ProductionModeSchema, type ReadinessBlockReason, ReadinessBlockReasonSchema, type ReadinessItem, type ReadinessItemId, ReadinessItemIdSchema, ReadinessItemSchema, type ReadinessItemState, ReadinessItemStateSchema, type StreamingStatus, StreamingStatusSchema };