@livdot-tech/contracts 1.9.13 → 1.9.14
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 -15
- package/dist/booking/index.d.ts +3 -15
- package/dist/booking/index.js +1 -1
- package/dist/booking/index.mjs +1 -1
- package/dist/chunk-3MXER4II.mjs +2 -0
- package/dist/chunk-3MXER4II.mjs.map +1 -0
- package/dist/chunk-F4MRVOPL.js +2 -0
- package/dist/chunk-F4MRVOPL.js.map +1 -0
- package/dist/{chunk-OTQE6ZST.mjs → chunk-LO3A3A5D.mjs} +2 -2
- package/dist/{chunk-OTQE6ZST.mjs.map → chunk-LO3A3A5D.mjs.map} +1 -1
- package/dist/{chunk-PU5UO4IG.js → chunk-QPYMFC77.js} +2 -2
- package/dist/{chunk-PU5UO4IG.js.map → chunk-QPYMFC77.js.map} +1 -1
- package/dist/{chunk-ZAJULZWD.mjs → chunk-RO2JK3CD.mjs} +2 -2
- package/dist/{chunk-ZAJULZWD.mjs.map → chunk-RO2JK3CD.mjs.map} +1 -1
- package/dist/{chunk-5J3SKYC3.js → chunk-TPFPJGQL.js} +2 -2
- package/dist/{chunk-5J3SKYC3.js.map → chunk-TPFPJGQL.js.map} +1 -1
- package/dist/chunk-W2P52PTE.js +2 -0
- package/dist/chunk-W2P52PTE.js.map +1 -0
- package/dist/chunk-YDJOTD7W.mjs +2 -0
- package/dist/chunk-YDJOTD7W.mjs.map +1 -0
- package/dist/index.d.mts +2 -166
- package/dist/index.d.ts +2 -166
- 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 +0 -4
- package/dist/marketplace/index.d.ts +0 -4
- 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-4RE3MVEG.js +0 -2
- package/dist/chunk-4RE3MVEG.js.map +0 -1
- package/dist/chunk-DIGMDWL4.js +0 -2
- package/dist/chunk-DIGMDWL4.js.map +0 -1
- package/dist/chunk-EJYBQ36M.mjs +0 -2
- package/dist/chunk-EJYBQ36M.mjs.map +0 -1
- package/dist/chunk-PTJMTJPQ.mjs +0 -2
- package/dist/chunk-PTJMTJPQ.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -594,145 +594,6 @@ 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>;
|
|
736
597
|
declare const HostEventDashboardResponseSchema: z.ZodObject<{
|
|
737
598
|
serverNow: z.ZodISODateTime;
|
|
738
599
|
event: z.ZodObject<{
|
|
@@ -807,27 +668,8 @@ declare const HostEventDashboardResponseSchema: z.ZodObject<{
|
|
|
807
668
|
crew: z.ZodArray<z.ZodObject<{
|
|
808
669
|
bookingId: z.ZodString;
|
|
809
670
|
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;
|
|
815
671
|
role: z.ZodNullable<z.ZodString>;
|
|
816
|
-
state: z.
|
|
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
|
-
}>;
|
|
672
|
+
state: z.ZodString;
|
|
831
673
|
confirmedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
832
674
|
}, z.core.$strip>>;
|
|
833
675
|
}, z.core.$strip>;
|
|
@@ -920,12 +762,6 @@ type ReadinessItem = z.infer<typeof ReadinessItemSchema>;
|
|
|
920
762
|
type HostEventReadinessBlock = z.infer<typeof HostEventReadinessBlockSchema>;
|
|
921
763
|
type HostEventShareResponse = z.infer<typeof HostEventShareResponseSchema>;
|
|
922
764
|
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>;
|
|
929
765
|
type HostEventReadinessResponse = z.infer<typeof HostEventReadinessResponseSchema>;
|
|
930
766
|
type ReadinessItemId = z.infer<typeof ReadinessItemIdSchema>;
|
|
931
767
|
type ReadinessItemState = z.infer<typeof ReadinessItemStateSchema>;
|
|
@@ -933,4 +769,4 @@ type ReadinessBlockReason = z.infer<typeof ReadinessBlockReasonSchema>;
|
|
|
933
769
|
type StreamingStatus = z.infer<typeof StreamingStatusSchema>;
|
|
934
770
|
type ProductionMode = z.infer<typeof ProductionModeSchema>;
|
|
935
771
|
|
|
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
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -594,145 +594,6 @@ 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>;
|
|
736
597
|
declare const HostEventDashboardResponseSchema: z.ZodObject<{
|
|
737
598
|
serverNow: z.ZodISODateTime;
|
|
738
599
|
event: z.ZodObject<{
|
|
@@ -807,27 +668,8 @@ declare const HostEventDashboardResponseSchema: z.ZodObject<{
|
|
|
807
668
|
crew: z.ZodArray<z.ZodObject<{
|
|
808
669
|
bookingId: z.ZodString;
|
|
809
670
|
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;
|
|
815
671
|
role: z.ZodNullable<z.ZodString>;
|
|
816
|
-
state: z.
|
|
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
|
-
}>;
|
|
672
|
+
state: z.ZodString;
|
|
831
673
|
confirmedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
832
674
|
}, z.core.$strip>>;
|
|
833
675
|
}, z.core.$strip>;
|
|
@@ -920,12 +762,6 @@ type ReadinessItem = z.infer<typeof ReadinessItemSchema>;
|
|
|
920
762
|
type HostEventReadinessBlock = z.infer<typeof HostEventReadinessBlockSchema>;
|
|
921
763
|
type HostEventShareResponse = z.infer<typeof HostEventShareResponseSchema>;
|
|
922
764
|
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>;
|
|
929
765
|
type HostEventReadinessResponse = z.infer<typeof HostEventReadinessResponseSchema>;
|
|
930
766
|
type ReadinessItemId = z.infer<typeof ReadinessItemIdSchema>;
|
|
931
767
|
type ReadinessItemState = z.infer<typeof ReadinessItemStateSchema>;
|
|
@@ -933,4 +769,4 @@ type ReadinessBlockReason = z.infer<typeof ReadinessBlockReasonSchema>;
|
|
|
933
769
|
type StreamingStatus = z.infer<typeof StreamingStatusSchema>;
|
|
934
770
|
type ProductionMode = z.infer<typeof ProductionModeSchema>;
|
|
935
771
|
|
|
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
|
|
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 };
|