@livdot-tech/contracts 1.9.10 → 1.9.11
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/dist/auth/index.js +1 -1
- package/dist/auth/index.mjs +1 -1
- package/dist/booking/index.d.mts +3 -0
- package/dist/booking/index.d.ts +3 -0
- package/dist/booking/index.js +1 -1
- package/dist/booking/index.mjs +1 -1
- package/dist/{chunk-F4MRVOPL.js → chunk-2GHQK4DE.js} +2 -2
- package/dist/chunk-2GHQK4DE.js.map +1 -0
- package/dist/chunk-4RE3MVEG.js +2 -0
- package/dist/chunk-4RE3MVEG.js.map +1 -0
- package/dist/{chunk-GLYFEQPV.js → chunk-B6OK6OOB.js} +2 -2
- package/dist/{chunk-GLYFEQPV.js.map → chunk-B6OK6OOB.js.map} +1 -1
- package/dist/{chunk-5OQ5PA56.mjs → chunk-MTWBRI6Q.mjs} +2 -2
- package/dist/{chunk-5OQ5PA56.mjs.map → chunk-MTWBRI6Q.mjs.map} +1 -1
- package/dist/chunk-PTJMTJPQ.mjs +2 -0
- package/dist/chunk-PTJMTJPQ.mjs.map +1 -0
- package/dist/{chunk-QPYMFC77.js → chunk-PU5UO4IG.js} +2 -2
- package/dist/{chunk-QPYMFC77.js.map → chunk-PU5UO4IG.js.map} +1 -1
- package/dist/{chunk-YDJOTD7W.mjs → chunk-TXSGI7M5.mjs} +2 -2
- package/dist/chunk-TXSGI7M5.mjs.map +1 -0
- package/dist/{chunk-RO2JK3CD.mjs → chunk-ZAJULZWD.mjs} +2 -2
- package/dist/{chunk-RO2JK3CD.mjs.map → chunk-ZAJULZWD.mjs.map} +1 -1
- package/dist/index.d.mts +166 -2
- package/dist/index.d.ts +166 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/marketplace/index.d.mts +4 -0
- package/dist/marketplace/index.d.ts +4 -0
- package/dist/marketplace/index.js +1 -1
- package/dist/marketplace/index.mjs +1 -1
- package/dist/user/index.js +1 -1
- package/dist/user/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-3MXER4II.mjs +0 -2
- package/dist/chunk-3MXER4II.mjs.map +0 -1
- package/dist/chunk-F4MRVOPL.js.map +0 -1
- package/dist/chunk-W2P52PTE.js +0 -2
- package/dist/chunk-W2P52PTE.js.map +0 -1
- package/dist/chunk-YDJOTD7W.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -594,6 +594,145 @@ declare const HostEventReadinessBlockSchema: z.ZodObject<{
|
|
|
594
594
|
NOT_OWNED: "NOT_OWNED";
|
|
595
595
|
}>>;
|
|
596
596
|
}, z.core.$strip>;
|
|
597
|
+
/** `GET /host/events/:id/dashboard` — optional active-crew filters */
|
|
598
|
+
declare const ListHostEventDashboardQuerySchema: z.ZodObject<{
|
|
599
|
+
crewSearch: z.ZodOptional<z.ZodString>;
|
|
600
|
+
crewState: z.ZodOptional<z.ZodEnum<{
|
|
601
|
+
readonly REQUESTED: "REQUESTED";
|
|
602
|
+
readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
|
|
603
|
+
readonly IN_NEGOTIATION: "IN_NEGOTIATION";
|
|
604
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
605
|
+
readonly REJECTED: "REJECTED";
|
|
606
|
+
readonly CANCELLED: "CANCELLED";
|
|
607
|
+
readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
|
|
608
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
609
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
610
|
+
readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
|
|
611
|
+
readonly IN_DISPUTE: "IN_DISPUTE";
|
|
612
|
+
readonly CLOSED: "CLOSED";
|
|
613
|
+
readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
|
|
614
|
+
}>>;
|
|
615
|
+
}, z.core.$strip>;
|
|
616
|
+
declare const HostEventCrewMemberSchema: z.ZodObject<{
|
|
617
|
+
bookingId: z.ZodString;
|
|
618
|
+
producerProfileId: z.ZodString;
|
|
619
|
+
displayName: z.ZodString;
|
|
620
|
+
producerAvatarUrl: z.ZodNullable<z.ZodURL>;
|
|
621
|
+
producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
|
|
622
|
+
producerEquipmentLabels: z.ZodArray<z.ZodString>;
|
|
623
|
+
producerIsVerified: z.ZodBoolean;
|
|
624
|
+
role: z.ZodNullable<z.ZodString>;
|
|
625
|
+
state: z.ZodEnum<{
|
|
626
|
+
readonly REQUESTED: "REQUESTED";
|
|
627
|
+
readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
|
|
628
|
+
readonly IN_NEGOTIATION: "IN_NEGOTIATION";
|
|
629
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
630
|
+
readonly REJECTED: "REJECTED";
|
|
631
|
+
readonly CANCELLED: "CANCELLED";
|
|
632
|
+
readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
|
|
633
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
634
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
635
|
+
readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
|
|
636
|
+
readonly IN_DISPUTE: "IN_DISPUTE";
|
|
637
|
+
readonly CLOSED: "CLOSED";
|
|
638
|
+
readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
|
|
639
|
+
}>;
|
|
640
|
+
confirmedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
641
|
+
}, z.core.$strip>;
|
|
642
|
+
declare const HostProductionCrewPhaseSchema: z.ZodEnum<{
|
|
643
|
+
ACTIVE: "ACTIVE";
|
|
644
|
+
PAST: "PAST";
|
|
645
|
+
}>;
|
|
646
|
+
/** `GET /host/production/crew` — host-level crew roster across events */
|
|
647
|
+
declare const ListHostProductionCrewQuerySchema: z.ZodObject<{
|
|
648
|
+
pageNumber: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
649
|
+
pageSize: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
650
|
+
phase: z.ZodDefault<z.ZodEnum<{
|
|
651
|
+
ACTIVE: "ACTIVE";
|
|
652
|
+
PAST: "PAST";
|
|
653
|
+
}>>;
|
|
654
|
+
eventId: z.ZodOptional<z.ZodUUID>;
|
|
655
|
+
crewSearch: z.ZodOptional<z.ZodString>;
|
|
656
|
+
crewState: z.ZodOptional<z.ZodEnum<{
|
|
657
|
+
readonly REQUESTED: "REQUESTED";
|
|
658
|
+
readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
|
|
659
|
+
readonly IN_NEGOTIATION: "IN_NEGOTIATION";
|
|
660
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
661
|
+
readonly REJECTED: "REJECTED";
|
|
662
|
+
readonly CANCELLED: "CANCELLED";
|
|
663
|
+
readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
|
|
664
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
665
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
666
|
+
readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
|
|
667
|
+
readonly IN_DISPUTE: "IN_DISPUTE";
|
|
668
|
+
readonly CLOSED: "CLOSED";
|
|
669
|
+
readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
|
|
670
|
+
}>>;
|
|
671
|
+
}, z.core.$strip>;
|
|
672
|
+
declare const HostProductionCrewItemSchema: z.ZodObject<{
|
|
673
|
+
bookingId: z.ZodString;
|
|
674
|
+
producerProfileId: z.ZodString;
|
|
675
|
+
displayName: z.ZodString;
|
|
676
|
+
producerAvatarUrl: z.ZodNullable<z.ZodURL>;
|
|
677
|
+
producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
|
|
678
|
+
producerEquipmentLabels: z.ZodArray<z.ZodString>;
|
|
679
|
+
producerIsVerified: z.ZodBoolean;
|
|
680
|
+
role: z.ZodNullable<z.ZodString>;
|
|
681
|
+
state: z.ZodEnum<{
|
|
682
|
+
readonly REQUESTED: "REQUESTED";
|
|
683
|
+
readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
|
|
684
|
+
readonly IN_NEGOTIATION: "IN_NEGOTIATION";
|
|
685
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
686
|
+
readonly REJECTED: "REJECTED";
|
|
687
|
+
readonly CANCELLED: "CANCELLED";
|
|
688
|
+
readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
|
|
689
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
690
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
691
|
+
readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
|
|
692
|
+
readonly IN_DISPUTE: "IN_DISPUTE";
|
|
693
|
+
readonly CLOSED: "CLOSED";
|
|
694
|
+
readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
|
|
695
|
+
}>;
|
|
696
|
+
confirmedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
697
|
+
eventId: z.ZodUUID;
|
|
698
|
+
eventTitle: z.ZodString;
|
|
699
|
+
}, z.core.$strip>;
|
|
700
|
+
declare const PagedHostProductionCrewResponseSchema: z.ZodObject<{
|
|
701
|
+
totalCount: z.ZodNumber;
|
|
702
|
+
pageNumber: z.ZodNumber;
|
|
703
|
+
pageSize: z.ZodNumber;
|
|
704
|
+
totalPages: z.ZodNumber;
|
|
705
|
+
hasPreviousPage: z.ZodBoolean;
|
|
706
|
+
hasNextPage: z.ZodBoolean;
|
|
707
|
+
items: z.ZodArray<z.ZodObject<{
|
|
708
|
+
bookingId: z.ZodString;
|
|
709
|
+
producerProfileId: z.ZodString;
|
|
710
|
+
displayName: z.ZodString;
|
|
711
|
+
producerAvatarUrl: z.ZodNullable<z.ZodURL>;
|
|
712
|
+
producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
|
|
713
|
+
producerEquipmentLabels: z.ZodArray<z.ZodString>;
|
|
714
|
+
producerIsVerified: z.ZodBoolean;
|
|
715
|
+
role: z.ZodNullable<z.ZodString>;
|
|
716
|
+
state: z.ZodEnum<{
|
|
717
|
+
readonly REQUESTED: "REQUESTED";
|
|
718
|
+
readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
|
|
719
|
+
readonly IN_NEGOTIATION: "IN_NEGOTIATION";
|
|
720
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
721
|
+
readonly REJECTED: "REJECTED";
|
|
722
|
+
readonly CANCELLED: "CANCELLED";
|
|
723
|
+
readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
|
|
724
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
725
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
726
|
+
readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
|
|
727
|
+
readonly IN_DISPUTE: "IN_DISPUTE";
|
|
728
|
+
readonly CLOSED: "CLOSED";
|
|
729
|
+
readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
|
|
730
|
+
}>;
|
|
731
|
+
confirmedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
732
|
+
eventId: z.ZodUUID;
|
|
733
|
+
eventTitle: z.ZodString;
|
|
734
|
+
}, z.core.$strip>>;
|
|
735
|
+
}, z.core.$strip>;
|
|
597
736
|
declare const HostEventDashboardResponseSchema: z.ZodObject<{
|
|
598
737
|
serverNow: z.ZodISODateTime;
|
|
599
738
|
event: z.ZodObject<{
|
|
@@ -668,8 +807,27 @@ declare const HostEventDashboardResponseSchema: z.ZodObject<{
|
|
|
668
807
|
crew: z.ZodArray<z.ZodObject<{
|
|
669
808
|
bookingId: z.ZodString;
|
|
670
809
|
producerProfileId: z.ZodString;
|
|
810
|
+
displayName: z.ZodString;
|
|
811
|
+
producerAvatarUrl: z.ZodNullable<z.ZodURL>;
|
|
812
|
+
producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
|
|
813
|
+
producerEquipmentLabels: z.ZodArray<z.ZodString>;
|
|
814
|
+
producerIsVerified: z.ZodBoolean;
|
|
671
815
|
role: z.ZodNullable<z.ZodString>;
|
|
672
|
-
state: z.
|
|
816
|
+
state: z.ZodEnum<{
|
|
817
|
+
readonly REQUESTED: "REQUESTED";
|
|
818
|
+
readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
|
|
819
|
+
readonly IN_NEGOTIATION: "IN_NEGOTIATION";
|
|
820
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
821
|
+
readonly REJECTED: "REJECTED";
|
|
822
|
+
readonly CANCELLED: "CANCELLED";
|
|
823
|
+
readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
|
|
824
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
825
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
826
|
+
readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
|
|
827
|
+
readonly IN_DISPUTE: "IN_DISPUTE";
|
|
828
|
+
readonly CLOSED: "CLOSED";
|
|
829
|
+
readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
|
|
830
|
+
}>;
|
|
673
831
|
confirmedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
674
832
|
}, z.core.$strip>>;
|
|
675
833
|
}, z.core.$strip>;
|
|
@@ -762,6 +920,12 @@ type ReadinessItem = z.infer<typeof ReadinessItemSchema>;
|
|
|
762
920
|
type HostEventReadinessBlock = z.infer<typeof HostEventReadinessBlockSchema>;
|
|
763
921
|
type HostEventShareResponse = z.infer<typeof HostEventShareResponseSchema>;
|
|
764
922
|
type HostEventDashboardResponse = z.infer<typeof HostEventDashboardResponseSchema>;
|
|
923
|
+
type ListHostEventDashboardQuery = z.infer<typeof ListHostEventDashboardQuerySchema>;
|
|
924
|
+
type HostEventCrewMember = z.infer<typeof HostEventCrewMemberSchema>;
|
|
925
|
+
type HostProductionCrewPhase = z.infer<typeof HostProductionCrewPhaseSchema>;
|
|
926
|
+
type ListHostProductionCrewQuery = z.infer<typeof ListHostProductionCrewQuerySchema>;
|
|
927
|
+
type HostProductionCrewItem = z.infer<typeof HostProductionCrewItemSchema>;
|
|
928
|
+
type PagedHostProductionCrewResponse = z.infer<typeof PagedHostProductionCrewResponseSchema>;
|
|
765
929
|
type HostEventReadinessResponse = z.infer<typeof HostEventReadinessResponseSchema>;
|
|
766
930
|
type ReadinessItemId = z.infer<typeof ReadinessItemIdSchema>;
|
|
767
931
|
type ReadinessItemState = z.infer<typeof ReadinessItemStateSchema>;
|
|
@@ -769,4 +933,4 @@ type ReadinessBlockReason = z.infer<typeof ReadinessBlockReasonSchema>;
|
|
|
769
933
|
type StreamingStatus = z.infer<typeof StreamingStatusSchema>;
|
|
770
934
|
type ProductionMode = z.infer<typeof ProductionModeSchema>;
|
|
771
935
|
|
|
772
|
-
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 };
|
|
936
|
+
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
|
@@ -594,6 +594,145 @@ declare const HostEventReadinessBlockSchema: z.ZodObject<{
|
|
|
594
594
|
NOT_OWNED: "NOT_OWNED";
|
|
595
595
|
}>>;
|
|
596
596
|
}, z.core.$strip>;
|
|
597
|
+
/** `GET /host/events/:id/dashboard` — optional active-crew filters */
|
|
598
|
+
declare const ListHostEventDashboardQuerySchema: z.ZodObject<{
|
|
599
|
+
crewSearch: z.ZodOptional<z.ZodString>;
|
|
600
|
+
crewState: z.ZodOptional<z.ZodEnum<{
|
|
601
|
+
readonly REQUESTED: "REQUESTED";
|
|
602
|
+
readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
|
|
603
|
+
readonly IN_NEGOTIATION: "IN_NEGOTIATION";
|
|
604
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
605
|
+
readonly REJECTED: "REJECTED";
|
|
606
|
+
readonly CANCELLED: "CANCELLED";
|
|
607
|
+
readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
|
|
608
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
609
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
610
|
+
readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
|
|
611
|
+
readonly IN_DISPUTE: "IN_DISPUTE";
|
|
612
|
+
readonly CLOSED: "CLOSED";
|
|
613
|
+
readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
|
|
614
|
+
}>>;
|
|
615
|
+
}, z.core.$strip>;
|
|
616
|
+
declare const HostEventCrewMemberSchema: z.ZodObject<{
|
|
617
|
+
bookingId: z.ZodString;
|
|
618
|
+
producerProfileId: z.ZodString;
|
|
619
|
+
displayName: z.ZodString;
|
|
620
|
+
producerAvatarUrl: z.ZodNullable<z.ZodURL>;
|
|
621
|
+
producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
|
|
622
|
+
producerEquipmentLabels: z.ZodArray<z.ZodString>;
|
|
623
|
+
producerIsVerified: z.ZodBoolean;
|
|
624
|
+
role: z.ZodNullable<z.ZodString>;
|
|
625
|
+
state: z.ZodEnum<{
|
|
626
|
+
readonly REQUESTED: "REQUESTED";
|
|
627
|
+
readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
|
|
628
|
+
readonly IN_NEGOTIATION: "IN_NEGOTIATION";
|
|
629
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
630
|
+
readonly REJECTED: "REJECTED";
|
|
631
|
+
readonly CANCELLED: "CANCELLED";
|
|
632
|
+
readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
|
|
633
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
634
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
635
|
+
readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
|
|
636
|
+
readonly IN_DISPUTE: "IN_DISPUTE";
|
|
637
|
+
readonly CLOSED: "CLOSED";
|
|
638
|
+
readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
|
|
639
|
+
}>;
|
|
640
|
+
confirmedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
641
|
+
}, z.core.$strip>;
|
|
642
|
+
declare const HostProductionCrewPhaseSchema: z.ZodEnum<{
|
|
643
|
+
ACTIVE: "ACTIVE";
|
|
644
|
+
PAST: "PAST";
|
|
645
|
+
}>;
|
|
646
|
+
/** `GET /host/production/crew` — host-level crew roster across events */
|
|
647
|
+
declare const ListHostProductionCrewQuerySchema: z.ZodObject<{
|
|
648
|
+
pageNumber: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
649
|
+
pageSize: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
650
|
+
phase: z.ZodDefault<z.ZodEnum<{
|
|
651
|
+
ACTIVE: "ACTIVE";
|
|
652
|
+
PAST: "PAST";
|
|
653
|
+
}>>;
|
|
654
|
+
eventId: z.ZodOptional<z.ZodUUID>;
|
|
655
|
+
crewSearch: z.ZodOptional<z.ZodString>;
|
|
656
|
+
crewState: z.ZodOptional<z.ZodEnum<{
|
|
657
|
+
readonly REQUESTED: "REQUESTED";
|
|
658
|
+
readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
|
|
659
|
+
readonly IN_NEGOTIATION: "IN_NEGOTIATION";
|
|
660
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
661
|
+
readonly REJECTED: "REJECTED";
|
|
662
|
+
readonly CANCELLED: "CANCELLED";
|
|
663
|
+
readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
|
|
664
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
665
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
666
|
+
readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
|
|
667
|
+
readonly IN_DISPUTE: "IN_DISPUTE";
|
|
668
|
+
readonly CLOSED: "CLOSED";
|
|
669
|
+
readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
|
|
670
|
+
}>>;
|
|
671
|
+
}, z.core.$strip>;
|
|
672
|
+
declare const HostProductionCrewItemSchema: z.ZodObject<{
|
|
673
|
+
bookingId: z.ZodString;
|
|
674
|
+
producerProfileId: z.ZodString;
|
|
675
|
+
displayName: z.ZodString;
|
|
676
|
+
producerAvatarUrl: z.ZodNullable<z.ZodURL>;
|
|
677
|
+
producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
|
|
678
|
+
producerEquipmentLabels: z.ZodArray<z.ZodString>;
|
|
679
|
+
producerIsVerified: z.ZodBoolean;
|
|
680
|
+
role: z.ZodNullable<z.ZodString>;
|
|
681
|
+
state: z.ZodEnum<{
|
|
682
|
+
readonly REQUESTED: "REQUESTED";
|
|
683
|
+
readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
|
|
684
|
+
readonly IN_NEGOTIATION: "IN_NEGOTIATION";
|
|
685
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
686
|
+
readonly REJECTED: "REJECTED";
|
|
687
|
+
readonly CANCELLED: "CANCELLED";
|
|
688
|
+
readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
|
|
689
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
690
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
691
|
+
readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
|
|
692
|
+
readonly IN_DISPUTE: "IN_DISPUTE";
|
|
693
|
+
readonly CLOSED: "CLOSED";
|
|
694
|
+
readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
|
|
695
|
+
}>;
|
|
696
|
+
confirmedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
697
|
+
eventId: z.ZodUUID;
|
|
698
|
+
eventTitle: z.ZodString;
|
|
699
|
+
}, z.core.$strip>;
|
|
700
|
+
declare const PagedHostProductionCrewResponseSchema: z.ZodObject<{
|
|
701
|
+
totalCount: z.ZodNumber;
|
|
702
|
+
pageNumber: z.ZodNumber;
|
|
703
|
+
pageSize: z.ZodNumber;
|
|
704
|
+
totalPages: z.ZodNumber;
|
|
705
|
+
hasPreviousPage: z.ZodBoolean;
|
|
706
|
+
hasNextPage: z.ZodBoolean;
|
|
707
|
+
items: z.ZodArray<z.ZodObject<{
|
|
708
|
+
bookingId: z.ZodString;
|
|
709
|
+
producerProfileId: z.ZodString;
|
|
710
|
+
displayName: z.ZodString;
|
|
711
|
+
producerAvatarUrl: z.ZodNullable<z.ZodURL>;
|
|
712
|
+
producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
|
|
713
|
+
producerEquipmentLabels: z.ZodArray<z.ZodString>;
|
|
714
|
+
producerIsVerified: z.ZodBoolean;
|
|
715
|
+
role: z.ZodNullable<z.ZodString>;
|
|
716
|
+
state: z.ZodEnum<{
|
|
717
|
+
readonly REQUESTED: "REQUESTED";
|
|
718
|
+
readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
|
|
719
|
+
readonly IN_NEGOTIATION: "IN_NEGOTIATION";
|
|
720
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
721
|
+
readonly REJECTED: "REJECTED";
|
|
722
|
+
readonly CANCELLED: "CANCELLED";
|
|
723
|
+
readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
|
|
724
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
725
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
726
|
+
readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
|
|
727
|
+
readonly IN_DISPUTE: "IN_DISPUTE";
|
|
728
|
+
readonly CLOSED: "CLOSED";
|
|
729
|
+
readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
|
|
730
|
+
}>;
|
|
731
|
+
confirmedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
732
|
+
eventId: z.ZodUUID;
|
|
733
|
+
eventTitle: z.ZodString;
|
|
734
|
+
}, z.core.$strip>>;
|
|
735
|
+
}, z.core.$strip>;
|
|
597
736
|
declare const HostEventDashboardResponseSchema: z.ZodObject<{
|
|
598
737
|
serverNow: z.ZodISODateTime;
|
|
599
738
|
event: z.ZodObject<{
|
|
@@ -668,8 +807,27 @@ declare const HostEventDashboardResponseSchema: z.ZodObject<{
|
|
|
668
807
|
crew: z.ZodArray<z.ZodObject<{
|
|
669
808
|
bookingId: z.ZodString;
|
|
670
809
|
producerProfileId: z.ZodString;
|
|
810
|
+
displayName: z.ZodString;
|
|
811
|
+
producerAvatarUrl: z.ZodNullable<z.ZodURL>;
|
|
812
|
+
producerServiceCategoryLabels: z.ZodArray<z.ZodString>;
|
|
813
|
+
producerEquipmentLabels: z.ZodArray<z.ZodString>;
|
|
814
|
+
producerIsVerified: z.ZodBoolean;
|
|
671
815
|
role: z.ZodNullable<z.ZodString>;
|
|
672
|
-
state: z.
|
|
816
|
+
state: z.ZodEnum<{
|
|
817
|
+
readonly REQUESTED: "REQUESTED";
|
|
818
|
+
readonly AWAITING_PRODUCER_RESPONSE: "AWAITING_PRODUCER_RESPONSE";
|
|
819
|
+
readonly IN_NEGOTIATION: "IN_NEGOTIATION";
|
|
820
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
821
|
+
readonly REJECTED: "REJECTED";
|
|
822
|
+
readonly CANCELLED: "CANCELLED";
|
|
823
|
+
readonly AWAITING_ESCROW_FUNDING: "AWAITING_ESCROW_FUNDING";
|
|
824
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
825
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
826
|
+
readonly SERVICE_COMPLETED: "SERVICE_COMPLETED";
|
|
827
|
+
readonly IN_DISPUTE: "IN_DISPUTE";
|
|
828
|
+
readonly CLOSED: "CLOSED";
|
|
829
|
+
readonly AWAITING_PRODUCER_RECONFIRM: "AWAITING_PRODUCER_RECONFIRM";
|
|
830
|
+
}>;
|
|
673
831
|
confirmedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
674
832
|
}, z.core.$strip>>;
|
|
675
833
|
}, z.core.$strip>;
|
|
@@ -762,6 +920,12 @@ type ReadinessItem = z.infer<typeof ReadinessItemSchema>;
|
|
|
762
920
|
type HostEventReadinessBlock = z.infer<typeof HostEventReadinessBlockSchema>;
|
|
763
921
|
type HostEventShareResponse = z.infer<typeof HostEventShareResponseSchema>;
|
|
764
922
|
type HostEventDashboardResponse = z.infer<typeof HostEventDashboardResponseSchema>;
|
|
923
|
+
type ListHostEventDashboardQuery = z.infer<typeof ListHostEventDashboardQuerySchema>;
|
|
924
|
+
type HostEventCrewMember = z.infer<typeof HostEventCrewMemberSchema>;
|
|
925
|
+
type HostProductionCrewPhase = z.infer<typeof HostProductionCrewPhaseSchema>;
|
|
926
|
+
type ListHostProductionCrewQuery = z.infer<typeof ListHostProductionCrewQuerySchema>;
|
|
927
|
+
type HostProductionCrewItem = z.infer<typeof HostProductionCrewItemSchema>;
|
|
928
|
+
type PagedHostProductionCrewResponse = z.infer<typeof PagedHostProductionCrewResponseSchema>;
|
|
765
929
|
type HostEventReadinessResponse = z.infer<typeof HostEventReadinessResponseSchema>;
|
|
766
930
|
type ReadinessItemId = z.infer<typeof ReadinessItemIdSchema>;
|
|
767
931
|
type ReadinessItemState = z.infer<typeof ReadinessItemStateSchema>;
|
|
@@ -769,4 +933,4 @@ type ReadinessBlockReason = z.infer<typeof ReadinessBlockReasonSchema>;
|
|
|
769
933
|
type StreamingStatus = z.infer<typeof StreamingStatusSchema>;
|
|
770
934
|
type ProductionMode = z.infer<typeof ProductionModeSchema>;
|
|
771
935
|
|
|
772
|
-
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 };
|
|
936
|
+
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 };
|