@livdot-tech/contracts 1.11.21 → 1.11.22

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.
@@ -203,6 +203,27 @@ declare const CreateMarketplaceBookingRequestSchema: z.ZodObject<{
203
203
  agreedAmount: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
204
204
  scopeOfWork: z.ZodOptional<z.ZodString>;
205
205
  }, z.core.$strip>;
206
+ /**
207
+ * Assigned-event execution context on a booking.
208
+ * Schedule + go-live window for the linked event. Full readiness /
209
+ * streaming live on `GET /marketplace/producer/events/:id`.
210
+ *
211
+ * `requiredStartAt` / `requiredEndAt` are derived from the event
212
+ * schedule until `Booking.requiredStartAt` / `requiredEndAt` are written.
213
+ */
214
+ declare const MarketplaceBookingAssignedEventSchema: z.ZodObject<{
215
+ id: z.ZodUUID;
216
+ title: z.ZodString;
217
+ state: z.ZodString;
218
+ timezone: z.ZodString;
219
+ scheduledStart: z.ZodISODateTime;
220
+ scheduledStartLocal: z.ZodISODateTime;
221
+ scheduledEnd: z.ZodISODateTime;
222
+ scheduledEndLocal: z.ZodISODateTime;
223
+ requiredStartAt: z.ZodISODateTime;
224
+ requiredEndAt: z.ZodISODateTime;
225
+ goLiveEligibleAt: z.ZodNullable<z.ZodISODateTime>;
226
+ }, z.core.$strip>;
206
227
  declare const MarketplaceBookingResponseSchema: z.ZodObject<{
207
228
  id: z.ZodUUID;
208
229
  eventId: z.ZodNullable<z.ZodUUID>;
@@ -244,6 +265,19 @@ declare const MarketplaceBookingResponseSchema: z.ZodObject<{
244
265
  scopeOfWork: z.ZodNullable<z.ZodString>;
245
266
  createdAt: z.ZodString;
246
267
  updatedAt: z.ZodString;
268
+ assignedEvent: z.ZodNullable<z.ZodObject<{
269
+ id: z.ZodUUID;
270
+ title: z.ZodString;
271
+ state: z.ZodString;
272
+ timezone: z.ZodString;
273
+ scheduledStart: z.ZodISODateTime;
274
+ scheduledStartLocal: z.ZodISODateTime;
275
+ scheduledEnd: z.ZodISODateTime;
276
+ scheduledEndLocal: z.ZodISODateTime;
277
+ requiredStartAt: z.ZodISODateTime;
278
+ requiredEndAt: z.ZodISODateTime;
279
+ goLiveEligibleAt: z.ZodNullable<z.ZodISODateTime>;
280
+ }, z.core.$strip>>;
247
281
  }, z.core.$strip>;
248
282
  /** `POST /marketplace/bookings` — create acknowledgement */
249
283
  declare const CreateMarketplaceBookingResponseSchema: z.ZodObject<{
@@ -289,6 +323,19 @@ declare const CreateMarketplaceBookingResponseSchema: z.ZodObject<{
289
323
  scopeOfWork: z.ZodNullable<z.ZodString>;
290
324
  createdAt: z.ZodString;
291
325
  updatedAt: z.ZodString;
326
+ assignedEvent: z.ZodNullable<z.ZodObject<{
327
+ id: z.ZodUUID;
328
+ title: z.ZodString;
329
+ state: z.ZodString;
330
+ timezone: z.ZodString;
331
+ scheduledStart: z.ZodISODateTime;
332
+ scheduledStartLocal: z.ZodISODateTime;
333
+ scheduledEnd: z.ZodISODateTime;
334
+ scheduledEndLocal: z.ZodISODateTime;
335
+ requiredStartAt: z.ZodISODateTime;
336
+ requiredEndAt: z.ZodISODateTime;
337
+ goLiveEligibleAt: z.ZodNullable<z.ZodISODateTime>;
338
+ }, z.core.$strip>>;
292
339
  }, z.core.$strip>;
293
340
  }, z.core.$strip>;
294
341
  /** `POST /marketplace/bookings/:id/transition` (host, producer, admin) */
@@ -353,6 +400,19 @@ declare const TransitionMarketplaceBookingResponseSchema: z.ZodObject<{
353
400
  scopeOfWork: z.ZodNullable<z.ZodString>;
354
401
  createdAt: z.ZodString;
355
402
  updatedAt: z.ZodString;
403
+ assignedEvent: z.ZodNullable<z.ZodObject<{
404
+ id: z.ZodUUID;
405
+ title: z.ZodString;
406
+ state: z.ZodString;
407
+ timezone: z.ZodString;
408
+ scheduledStart: z.ZodISODateTime;
409
+ scheduledStartLocal: z.ZodISODateTime;
410
+ scheduledEnd: z.ZodISODateTime;
411
+ scheduledEndLocal: z.ZodISODateTime;
412
+ requiredStartAt: z.ZodISODateTime;
413
+ requiredEndAt: z.ZodISODateTime;
414
+ goLiveEligibleAt: z.ZodNullable<z.ZodISODateTime>;
415
+ }, z.core.$strip>>;
356
416
  }, z.core.$strip>;
357
417
  }, z.core.$strip>;
358
418
  /** `POST /marketplace/bookings/:id/complete` — dual-ack manual completion */
@@ -405,6 +465,19 @@ declare const CompleteMarketplaceBookingResponseSchema: z.ZodObject<{
405
465
  scopeOfWork: z.ZodNullable<z.ZodString>;
406
466
  createdAt: z.ZodString;
407
467
  updatedAt: z.ZodString;
468
+ assignedEvent: z.ZodNullable<z.ZodObject<{
469
+ id: z.ZodUUID;
470
+ title: z.ZodString;
471
+ state: z.ZodString;
472
+ timezone: z.ZodString;
473
+ scheduledStart: z.ZodISODateTime;
474
+ scheduledStartLocal: z.ZodISODateTime;
475
+ scheduledEnd: z.ZodISODateTime;
476
+ scheduledEndLocal: z.ZodISODateTime;
477
+ requiredStartAt: z.ZodISODateTime;
478
+ requiredEndAt: z.ZodISODateTime;
479
+ goLiveEligibleAt: z.ZodNullable<z.ZodISODateTime>;
480
+ }, z.core.$strip>>;
408
481
  }, z.core.$strip>;
409
482
  hostAcked: z.ZodBoolean;
410
483
  producerAcked: z.ZodBoolean;
@@ -812,6 +885,7 @@ declare const MarketplaceProducerIndicationOfInterestInboxItemSchema: z.ZodObjec
812
885
  }, z.core.$strip>;
813
886
 
814
887
  type CreateMarketplaceBookingRequest = z.infer<typeof CreateMarketplaceBookingRequestSchema>;
888
+ type MarketplaceBookingAssignedEvent = z.infer<typeof MarketplaceBookingAssignedEventSchema>;
815
889
  type MarketplaceBookingResponse = z.infer<typeof MarketplaceBookingResponseSchema>;
816
890
  type CreateMarketplaceJobListingRequest = z.infer<typeof CreateMarketplaceJobListingRequestSchema>;
817
891
  type UpdateMarketplaceJobListingRequest = z.infer<typeof UpdateMarketplaceJobListingRequestSchema>;
@@ -2071,4 +2145,4 @@ type AcceptEventCrewAssignmentResponse = z.infer<typeof AcceptEventCrewAssignmen
2071
2145
  type ReplaceEventCrewAssignmentRequest = z.infer<typeof ReplaceEventCrewAssignmentRequestSchema>;
2072
2146
  type ReplaceEventCrewAssignmentResponse = z.infer<typeof ReplaceEventCrewAssignmentResponseSchema>;
2073
2147
 
2074
- export { type AcceptEventCrewAssignmentResponse, AcceptEventCrewAssignmentResponseSchema, type AdminBookingAuditEntry, AdminBookingAuditEntrySchema, type AdminBookingAuditResponse, AdminBookingAuditResponseSchema, BOOKING_TERMINAL_STATES, BOOKING_TRANSITION_ACTORS, BOOKING_TRANSITION_TARGETS_REQUIRING_REASON, BookingAuditAction, BookingAuditActorSchema, type BookingAuditAttachmentAddedDetails, BookingAuditAttachmentAddedDetailsSchema, type BookingAuditMessageSentDetails, BookingAuditMessageSentDetailsSchema, BookingAuditRequestMetadataSchema, BookingAuditSnapshotSchema, type BookingAuditStateTransitionDetails, BookingAuditStateTransitionDetailsSchema, BookingOrigin, BookingPaymentStatus, type BookingResponse, BookingResponseSchema, BookingState, BookingTransitionActor, type BookingTransitionKey, type CancelMarketplaceJobListingRequest, CancelMarketplaceJobListingRequestSchema, type CancelMarketplaceJobListingResponse, CancelMarketplaceJobListingResponseSchema, type CloseMarketplaceJobListingResponse, CloseMarketplaceJobListingResponseSchema, type CompleteMarketplaceBookingRequest, CompleteMarketplaceBookingRequestSchema, type CompleteMarketplaceBookingResponse, CompleteMarketplaceBookingResponseSchema, type ConfirmBookingRequest, ConfirmBookingRequestSchema, type CreateBookingRequest, CreateBookingRequestSchema, type CreateEventCrewAssignmentRequest, CreateEventCrewAssignmentRequestSchema, type CreateJobListingRequest, CreateJobListingRequestSchema, type CreateMarketplaceBookingRequest, CreateMarketplaceBookingRequestSchema, type CreateMarketplaceBookingResponse, CreateMarketplaceBookingResponseSchema, type CreateMarketplaceJobListingRequest, CreateMarketplaceJobListingRequestSchema, type CreateMarketplaceReviewRequest, CreateMarketplaceReviewRequestSchema, EventCrewAssignmentProducerSummarySchema, type EventCrewAssignmentResponse, EventCrewAssignmentResponseSchema, EventCrewAssignmentState, type ForceCompleteMarketplaceBookingRequest, ForceCompleteMarketplaceBookingRequestSchema, type GetMarketplaceHiringThreadResponse, GetMarketplaceHiringThreadResponseSchema, HostIndicationOfInterestSortBy, IoiState, JobListingCompensationTier, type JobListingResponse, JobListingResponseSchema, JobListingState, JobLocation, type ListEventCrewAssignmentsResponse, ListEventCrewAssignmentsResponseSchema, type ListHostMarketplaceIndicationsQuery, ListHostMarketplaceIndicationsQuerySchema, type ListHostMarketplaceJobListingsQuery, ListHostMarketplaceJobListingsQuerySchema, type ListMarketplaceHiringThreadMessagesQuery, ListMarketplaceHiringThreadMessagesQuerySchema, type ListMarketplaceHiringThreadMessagesResponse, ListMarketplaceHiringThreadMessagesResponseSchema, type ListMarketplaceHiringThreadsResponse, ListMarketplaceHiringThreadsResponseSchema, type ListMarketplaceJobListingsQuery, ListMarketplaceJobListingsQuerySchema, type ListProducerJobsQuery, ListProducerJobsQuerySchema, type ListProducerMarketplaceIndicationsQuery, ListProducerMarketplaceIndicationsQuerySchema, type ListProducerReviewsQuery, ListProducerReviewsQuerySchema, type MarkMarketplaceHiringThreadReadRequest, MarkMarketplaceHiringThreadReadRequestSchema, type MarkMarketplaceHiringThreadReadResponse, MarkMarketplaceHiringThreadReadResponseSchema, type MarketplaceBookingResponse, MarketplaceBookingResponseSchema, type MarketplaceHiringMessage, MarketplaceHiringMessageAttachmentSchema, MarketplaceHiringMessageSchema, type MarketplaceHiringThread, type MarketplaceHiringThreadInboxItem, MarketplaceHiringThreadInboxItemSchema, MarketplaceHiringThreadSchema, type MarketplaceHostIndicationOfInterestInboxItem, MarketplaceHostIndicationOfInterestInboxItemSchema, type MarketplaceIndicationOfInterestHostItem, MarketplaceIndicationOfInterestHostItemSchema, type MarketplaceIndicationOfInterestResponse, MarketplaceIndicationOfInterestResponseSchema, type MarketplaceJobListingResponse, MarketplaceJobListingResponseSchema, type MarketplaceProducerIndicationOfInterestInboxItem, MarketplaceProducerIndicationOfInterestInboxItemSchema, type MarketplaceReviewResponse, MarketplaceReviewResponseSchema, MessageDeliveryStatus, type OpenMarketplaceJobListingResponse, OpenMarketplaceJobListingResponseSchema, type PagedProducerReviewsResponse, PagedProducerReviewsResponseSchema, type PostMarketplaceHiringThreadMessageRequest, PostMarketplaceHiringThreadMessageRequestSchema, type PostMarketplaceHiringThreadMessageResponse, PostMarketplaceHiringThreadMessageResponseSchema, type ProducerJobRow, type ProducerJobRowKind, ProducerJobRowKindSchema, ProducerJobRowSchema, type ProducerJobRowStatus, ProducerJobRowStatusSchema, type ProducerJobsTab, type ProducerJobsTabCountsResponse, ProducerJobsTabCountsResponseSchema, type ProducerJobsTabResponse, ProducerJobsTabResponseSchema, ProducerJobsTabSchema, type ProducerRecentReview, ProducerRecentReviewSchema, type PublishMarketplaceJobListingResponse, PublishMarketplaceJobListingResponseSchema, type PublishReadyJobListing, PublishReadyJobListingSchema, type RejectEventCrewAssignmentRequest, RejectEventCrewAssignmentRequestSchema, type ReplaceEventCrewAssignmentRequest, ReplaceEventCrewAssignmentRequestSchema, type ReplaceEventCrewAssignmentResponse, ReplaceEventCrewAssignmentResponseSchema, SortOrder, type SubmitMarketplaceIndicationOfInterestRequest, SubmitMarketplaceIndicationOfInterestRequestSchema, type TransitionMarketplaceBookingRequest, TransitionMarketplaceBookingRequestSchema, type TransitionMarketplaceBookingResponse, TransitionMarketplaceBookingResponseSchema, type UpdateEventCrewAssignmentRequest, UpdateEventCrewAssignmentRequestSchema, type UpdateMarketplaceJobListingRequest, UpdateMarketplaceJobListingRequestSchema, type UploadMarketplaceHiringThreadAttachmentResponse, UploadMarketplaceHiringThreadAttachmentResponseSchema, VALID_BOOKING_TRANSITIONS, bookingTransitionKey, bookingTransitionRequiresReason, canActorPerformBookingTransition, getAllowedBookingTargetStates, getBookingTransitionActors, isValidBookingTransition };
2148
+ export { type AcceptEventCrewAssignmentResponse, AcceptEventCrewAssignmentResponseSchema, type AdminBookingAuditEntry, AdminBookingAuditEntrySchema, type AdminBookingAuditResponse, AdminBookingAuditResponseSchema, BOOKING_TERMINAL_STATES, BOOKING_TRANSITION_ACTORS, BOOKING_TRANSITION_TARGETS_REQUIRING_REASON, BookingAuditAction, BookingAuditActorSchema, type BookingAuditAttachmentAddedDetails, BookingAuditAttachmentAddedDetailsSchema, type BookingAuditMessageSentDetails, BookingAuditMessageSentDetailsSchema, BookingAuditRequestMetadataSchema, BookingAuditSnapshotSchema, type BookingAuditStateTransitionDetails, BookingAuditStateTransitionDetailsSchema, BookingOrigin, BookingPaymentStatus, type BookingResponse, BookingResponseSchema, BookingState, BookingTransitionActor, type BookingTransitionKey, type CancelMarketplaceJobListingRequest, CancelMarketplaceJobListingRequestSchema, type CancelMarketplaceJobListingResponse, CancelMarketplaceJobListingResponseSchema, type CloseMarketplaceJobListingResponse, CloseMarketplaceJobListingResponseSchema, type CompleteMarketplaceBookingRequest, CompleteMarketplaceBookingRequestSchema, type CompleteMarketplaceBookingResponse, CompleteMarketplaceBookingResponseSchema, type ConfirmBookingRequest, ConfirmBookingRequestSchema, type CreateBookingRequest, CreateBookingRequestSchema, type CreateEventCrewAssignmentRequest, CreateEventCrewAssignmentRequestSchema, type CreateJobListingRequest, CreateJobListingRequestSchema, type CreateMarketplaceBookingRequest, CreateMarketplaceBookingRequestSchema, type CreateMarketplaceBookingResponse, CreateMarketplaceBookingResponseSchema, type CreateMarketplaceJobListingRequest, CreateMarketplaceJobListingRequestSchema, type CreateMarketplaceReviewRequest, CreateMarketplaceReviewRequestSchema, EventCrewAssignmentProducerSummarySchema, type EventCrewAssignmentResponse, EventCrewAssignmentResponseSchema, EventCrewAssignmentState, type ForceCompleteMarketplaceBookingRequest, ForceCompleteMarketplaceBookingRequestSchema, type GetMarketplaceHiringThreadResponse, GetMarketplaceHiringThreadResponseSchema, HostIndicationOfInterestSortBy, IoiState, JobListingCompensationTier, type JobListingResponse, JobListingResponseSchema, JobListingState, JobLocation, type ListEventCrewAssignmentsResponse, ListEventCrewAssignmentsResponseSchema, type ListHostMarketplaceIndicationsQuery, ListHostMarketplaceIndicationsQuerySchema, type ListHostMarketplaceJobListingsQuery, ListHostMarketplaceJobListingsQuerySchema, type ListMarketplaceHiringThreadMessagesQuery, ListMarketplaceHiringThreadMessagesQuerySchema, type ListMarketplaceHiringThreadMessagesResponse, ListMarketplaceHiringThreadMessagesResponseSchema, type ListMarketplaceHiringThreadsResponse, ListMarketplaceHiringThreadsResponseSchema, type ListMarketplaceJobListingsQuery, ListMarketplaceJobListingsQuerySchema, type ListProducerJobsQuery, ListProducerJobsQuerySchema, type ListProducerMarketplaceIndicationsQuery, ListProducerMarketplaceIndicationsQuerySchema, type ListProducerReviewsQuery, ListProducerReviewsQuerySchema, type MarkMarketplaceHiringThreadReadRequest, MarkMarketplaceHiringThreadReadRequestSchema, type MarkMarketplaceHiringThreadReadResponse, MarkMarketplaceHiringThreadReadResponseSchema, type MarketplaceBookingAssignedEvent, MarketplaceBookingAssignedEventSchema, type MarketplaceBookingResponse, MarketplaceBookingResponseSchema, type MarketplaceHiringMessage, MarketplaceHiringMessageAttachmentSchema, MarketplaceHiringMessageSchema, type MarketplaceHiringThread, type MarketplaceHiringThreadInboxItem, MarketplaceHiringThreadInboxItemSchema, MarketplaceHiringThreadSchema, type MarketplaceHostIndicationOfInterestInboxItem, MarketplaceHostIndicationOfInterestInboxItemSchema, type MarketplaceIndicationOfInterestHostItem, MarketplaceIndicationOfInterestHostItemSchema, type MarketplaceIndicationOfInterestResponse, MarketplaceIndicationOfInterestResponseSchema, type MarketplaceJobListingResponse, MarketplaceJobListingResponseSchema, type MarketplaceProducerIndicationOfInterestInboxItem, MarketplaceProducerIndicationOfInterestInboxItemSchema, type MarketplaceReviewResponse, MarketplaceReviewResponseSchema, MessageDeliveryStatus, type OpenMarketplaceJobListingResponse, OpenMarketplaceJobListingResponseSchema, type PagedProducerReviewsResponse, PagedProducerReviewsResponseSchema, type PostMarketplaceHiringThreadMessageRequest, PostMarketplaceHiringThreadMessageRequestSchema, type PostMarketplaceHiringThreadMessageResponse, PostMarketplaceHiringThreadMessageResponseSchema, type ProducerJobRow, type ProducerJobRowKind, ProducerJobRowKindSchema, ProducerJobRowSchema, type ProducerJobRowStatus, ProducerJobRowStatusSchema, type ProducerJobsTab, type ProducerJobsTabCountsResponse, ProducerJobsTabCountsResponseSchema, type ProducerJobsTabResponse, ProducerJobsTabResponseSchema, ProducerJobsTabSchema, type ProducerRecentReview, ProducerRecentReviewSchema, type PublishMarketplaceJobListingResponse, PublishMarketplaceJobListingResponseSchema, type PublishReadyJobListing, PublishReadyJobListingSchema, type RejectEventCrewAssignmentRequest, RejectEventCrewAssignmentRequestSchema, type ReplaceEventCrewAssignmentRequest, ReplaceEventCrewAssignmentRequestSchema, type ReplaceEventCrewAssignmentResponse, ReplaceEventCrewAssignmentResponseSchema, SortOrder, type SubmitMarketplaceIndicationOfInterestRequest, SubmitMarketplaceIndicationOfInterestRequestSchema, type TransitionMarketplaceBookingRequest, TransitionMarketplaceBookingRequestSchema, type TransitionMarketplaceBookingResponse, TransitionMarketplaceBookingResponseSchema, type UpdateEventCrewAssignmentRequest, UpdateEventCrewAssignmentRequestSchema, type UpdateMarketplaceJobListingRequest, UpdateMarketplaceJobListingRequestSchema, type UploadMarketplaceHiringThreadAttachmentResponse, UploadMarketplaceHiringThreadAttachmentResponseSchema, VALID_BOOKING_TRANSITIONS, bookingTransitionKey, bookingTransitionRequiresReason, canActorPerformBookingTransition, getAllowedBookingTargetStates, getBookingTransitionActors, isValidBookingTransition };
@@ -203,6 +203,27 @@ declare const CreateMarketplaceBookingRequestSchema: z.ZodObject<{
203
203
  agreedAmount: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
204
204
  scopeOfWork: z.ZodOptional<z.ZodString>;
205
205
  }, z.core.$strip>;
206
+ /**
207
+ * Assigned-event execution context on a booking.
208
+ * Schedule + go-live window for the linked event. Full readiness /
209
+ * streaming live on `GET /marketplace/producer/events/:id`.
210
+ *
211
+ * `requiredStartAt` / `requiredEndAt` are derived from the event
212
+ * schedule until `Booking.requiredStartAt` / `requiredEndAt` are written.
213
+ */
214
+ declare const MarketplaceBookingAssignedEventSchema: z.ZodObject<{
215
+ id: z.ZodUUID;
216
+ title: z.ZodString;
217
+ state: z.ZodString;
218
+ timezone: z.ZodString;
219
+ scheduledStart: z.ZodISODateTime;
220
+ scheduledStartLocal: z.ZodISODateTime;
221
+ scheduledEnd: z.ZodISODateTime;
222
+ scheduledEndLocal: z.ZodISODateTime;
223
+ requiredStartAt: z.ZodISODateTime;
224
+ requiredEndAt: z.ZodISODateTime;
225
+ goLiveEligibleAt: z.ZodNullable<z.ZodISODateTime>;
226
+ }, z.core.$strip>;
206
227
  declare const MarketplaceBookingResponseSchema: z.ZodObject<{
207
228
  id: z.ZodUUID;
208
229
  eventId: z.ZodNullable<z.ZodUUID>;
@@ -244,6 +265,19 @@ declare const MarketplaceBookingResponseSchema: z.ZodObject<{
244
265
  scopeOfWork: z.ZodNullable<z.ZodString>;
245
266
  createdAt: z.ZodString;
246
267
  updatedAt: z.ZodString;
268
+ assignedEvent: z.ZodNullable<z.ZodObject<{
269
+ id: z.ZodUUID;
270
+ title: z.ZodString;
271
+ state: z.ZodString;
272
+ timezone: z.ZodString;
273
+ scheduledStart: z.ZodISODateTime;
274
+ scheduledStartLocal: z.ZodISODateTime;
275
+ scheduledEnd: z.ZodISODateTime;
276
+ scheduledEndLocal: z.ZodISODateTime;
277
+ requiredStartAt: z.ZodISODateTime;
278
+ requiredEndAt: z.ZodISODateTime;
279
+ goLiveEligibleAt: z.ZodNullable<z.ZodISODateTime>;
280
+ }, z.core.$strip>>;
247
281
  }, z.core.$strip>;
248
282
  /** `POST /marketplace/bookings` — create acknowledgement */
249
283
  declare const CreateMarketplaceBookingResponseSchema: z.ZodObject<{
@@ -289,6 +323,19 @@ declare const CreateMarketplaceBookingResponseSchema: z.ZodObject<{
289
323
  scopeOfWork: z.ZodNullable<z.ZodString>;
290
324
  createdAt: z.ZodString;
291
325
  updatedAt: z.ZodString;
326
+ assignedEvent: z.ZodNullable<z.ZodObject<{
327
+ id: z.ZodUUID;
328
+ title: z.ZodString;
329
+ state: z.ZodString;
330
+ timezone: z.ZodString;
331
+ scheduledStart: z.ZodISODateTime;
332
+ scheduledStartLocal: z.ZodISODateTime;
333
+ scheduledEnd: z.ZodISODateTime;
334
+ scheduledEndLocal: z.ZodISODateTime;
335
+ requiredStartAt: z.ZodISODateTime;
336
+ requiredEndAt: z.ZodISODateTime;
337
+ goLiveEligibleAt: z.ZodNullable<z.ZodISODateTime>;
338
+ }, z.core.$strip>>;
292
339
  }, z.core.$strip>;
293
340
  }, z.core.$strip>;
294
341
  /** `POST /marketplace/bookings/:id/transition` (host, producer, admin) */
@@ -353,6 +400,19 @@ declare const TransitionMarketplaceBookingResponseSchema: z.ZodObject<{
353
400
  scopeOfWork: z.ZodNullable<z.ZodString>;
354
401
  createdAt: z.ZodString;
355
402
  updatedAt: z.ZodString;
403
+ assignedEvent: z.ZodNullable<z.ZodObject<{
404
+ id: z.ZodUUID;
405
+ title: z.ZodString;
406
+ state: z.ZodString;
407
+ timezone: z.ZodString;
408
+ scheduledStart: z.ZodISODateTime;
409
+ scheduledStartLocal: z.ZodISODateTime;
410
+ scheduledEnd: z.ZodISODateTime;
411
+ scheduledEndLocal: z.ZodISODateTime;
412
+ requiredStartAt: z.ZodISODateTime;
413
+ requiredEndAt: z.ZodISODateTime;
414
+ goLiveEligibleAt: z.ZodNullable<z.ZodISODateTime>;
415
+ }, z.core.$strip>>;
356
416
  }, z.core.$strip>;
357
417
  }, z.core.$strip>;
358
418
  /** `POST /marketplace/bookings/:id/complete` — dual-ack manual completion */
@@ -405,6 +465,19 @@ declare const CompleteMarketplaceBookingResponseSchema: z.ZodObject<{
405
465
  scopeOfWork: z.ZodNullable<z.ZodString>;
406
466
  createdAt: z.ZodString;
407
467
  updatedAt: z.ZodString;
468
+ assignedEvent: z.ZodNullable<z.ZodObject<{
469
+ id: z.ZodUUID;
470
+ title: z.ZodString;
471
+ state: z.ZodString;
472
+ timezone: z.ZodString;
473
+ scheduledStart: z.ZodISODateTime;
474
+ scheduledStartLocal: z.ZodISODateTime;
475
+ scheduledEnd: z.ZodISODateTime;
476
+ scheduledEndLocal: z.ZodISODateTime;
477
+ requiredStartAt: z.ZodISODateTime;
478
+ requiredEndAt: z.ZodISODateTime;
479
+ goLiveEligibleAt: z.ZodNullable<z.ZodISODateTime>;
480
+ }, z.core.$strip>>;
408
481
  }, z.core.$strip>;
409
482
  hostAcked: z.ZodBoolean;
410
483
  producerAcked: z.ZodBoolean;
@@ -812,6 +885,7 @@ declare const MarketplaceProducerIndicationOfInterestInboxItemSchema: z.ZodObjec
812
885
  }, z.core.$strip>;
813
886
 
814
887
  type CreateMarketplaceBookingRequest = z.infer<typeof CreateMarketplaceBookingRequestSchema>;
888
+ type MarketplaceBookingAssignedEvent = z.infer<typeof MarketplaceBookingAssignedEventSchema>;
815
889
  type MarketplaceBookingResponse = z.infer<typeof MarketplaceBookingResponseSchema>;
816
890
  type CreateMarketplaceJobListingRequest = z.infer<typeof CreateMarketplaceJobListingRequestSchema>;
817
891
  type UpdateMarketplaceJobListingRequest = z.infer<typeof UpdateMarketplaceJobListingRequestSchema>;
@@ -2071,4 +2145,4 @@ type AcceptEventCrewAssignmentResponse = z.infer<typeof AcceptEventCrewAssignmen
2071
2145
  type ReplaceEventCrewAssignmentRequest = z.infer<typeof ReplaceEventCrewAssignmentRequestSchema>;
2072
2146
  type ReplaceEventCrewAssignmentResponse = z.infer<typeof ReplaceEventCrewAssignmentResponseSchema>;
2073
2147
 
2074
- export { type AcceptEventCrewAssignmentResponse, AcceptEventCrewAssignmentResponseSchema, type AdminBookingAuditEntry, AdminBookingAuditEntrySchema, type AdminBookingAuditResponse, AdminBookingAuditResponseSchema, BOOKING_TERMINAL_STATES, BOOKING_TRANSITION_ACTORS, BOOKING_TRANSITION_TARGETS_REQUIRING_REASON, BookingAuditAction, BookingAuditActorSchema, type BookingAuditAttachmentAddedDetails, BookingAuditAttachmentAddedDetailsSchema, type BookingAuditMessageSentDetails, BookingAuditMessageSentDetailsSchema, BookingAuditRequestMetadataSchema, BookingAuditSnapshotSchema, type BookingAuditStateTransitionDetails, BookingAuditStateTransitionDetailsSchema, BookingOrigin, BookingPaymentStatus, type BookingResponse, BookingResponseSchema, BookingState, BookingTransitionActor, type BookingTransitionKey, type CancelMarketplaceJobListingRequest, CancelMarketplaceJobListingRequestSchema, type CancelMarketplaceJobListingResponse, CancelMarketplaceJobListingResponseSchema, type CloseMarketplaceJobListingResponse, CloseMarketplaceJobListingResponseSchema, type CompleteMarketplaceBookingRequest, CompleteMarketplaceBookingRequestSchema, type CompleteMarketplaceBookingResponse, CompleteMarketplaceBookingResponseSchema, type ConfirmBookingRequest, ConfirmBookingRequestSchema, type CreateBookingRequest, CreateBookingRequestSchema, type CreateEventCrewAssignmentRequest, CreateEventCrewAssignmentRequestSchema, type CreateJobListingRequest, CreateJobListingRequestSchema, type CreateMarketplaceBookingRequest, CreateMarketplaceBookingRequestSchema, type CreateMarketplaceBookingResponse, CreateMarketplaceBookingResponseSchema, type CreateMarketplaceJobListingRequest, CreateMarketplaceJobListingRequestSchema, type CreateMarketplaceReviewRequest, CreateMarketplaceReviewRequestSchema, EventCrewAssignmentProducerSummarySchema, type EventCrewAssignmentResponse, EventCrewAssignmentResponseSchema, EventCrewAssignmentState, type ForceCompleteMarketplaceBookingRequest, ForceCompleteMarketplaceBookingRequestSchema, type GetMarketplaceHiringThreadResponse, GetMarketplaceHiringThreadResponseSchema, HostIndicationOfInterestSortBy, IoiState, JobListingCompensationTier, type JobListingResponse, JobListingResponseSchema, JobListingState, JobLocation, type ListEventCrewAssignmentsResponse, ListEventCrewAssignmentsResponseSchema, type ListHostMarketplaceIndicationsQuery, ListHostMarketplaceIndicationsQuerySchema, type ListHostMarketplaceJobListingsQuery, ListHostMarketplaceJobListingsQuerySchema, type ListMarketplaceHiringThreadMessagesQuery, ListMarketplaceHiringThreadMessagesQuerySchema, type ListMarketplaceHiringThreadMessagesResponse, ListMarketplaceHiringThreadMessagesResponseSchema, type ListMarketplaceHiringThreadsResponse, ListMarketplaceHiringThreadsResponseSchema, type ListMarketplaceJobListingsQuery, ListMarketplaceJobListingsQuerySchema, type ListProducerJobsQuery, ListProducerJobsQuerySchema, type ListProducerMarketplaceIndicationsQuery, ListProducerMarketplaceIndicationsQuerySchema, type ListProducerReviewsQuery, ListProducerReviewsQuerySchema, type MarkMarketplaceHiringThreadReadRequest, MarkMarketplaceHiringThreadReadRequestSchema, type MarkMarketplaceHiringThreadReadResponse, MarkMarketplaceHiringThreadReadResponseSchema, type MarketplaceBookingResponse, MarketplaceBookingResponseSchema, type MarketplaceHiringMessage, MarketplaceHiringMessageAttachmentSchema, MarketplaceHiringMessageSchema, type MarketplaceHiringThread, type MarketplaceHiringThreadInboxItem, MarketplaceHiringThreadInboxItemSchema, MarketplaceHiringThreadSchema, type MarketplaceHostIndicationOfInterestInboxItem, MarketplaceHostIndicationOfInterestInboxItemSchema, type MarketplaceIndicationOfInterestHostItem, MarketplaceIndicationOfInterestHostItemSchema, type MarketplaceIndicationOfInterestResponse, MarketplaceIndicationOfInterestResponseSchema, type MarketplaceJobListingResponse, MarketplaceJobListingResponseSchema, type MarketplaceProducerIndicationOfInterestInboxItem, MarketplaceProducerIndicationOfInterestInboxItemSchema, type MarketplaceReviewResponse, MarketplaceReviewResponseSchema, MessageDeliveryStatus, type OpenMarketplaceJobListingResponse, OpenMarketplaceJobListingResponseSchema, type PagedProducerReviewsResponse, PagedProducerReviewsResponseSchema, type PostMarketplaceHiringThreadMessageRequest, PostMarketplaceHiringThreadMessageRequestSchema, type PostMarketplaceHiringThreadMessageResponse, PostMarketplaceHiringThreadMessageResponseSchema, type ProducerJobRow, type ProducerJobRowKind, ProducerJobRowKindSchema, ProducerJobRowSchema, type ProducerJobRowStatus, ProducerJobRowStatusSchema, type ProducerJobsTab, type ProducerJobsTabCountsResponse, ProducerJobsTabCountsResponseSchema, type ProducerJobsTabResponse, ProducerJobsTabResponseSchema, ProducerJobsTabSchema, type ProducerRecentReview, ProducerRecentReviewSchema, type PublishMarketplaceJobListingResponse, PublishMarketplaceJobListingResponseSchema, type PublishReadyJobListing, PublishReadyJobListingSchema, type RejectEventCrewAssignmentRequest, RejectEventCrewAssignmentRequestSchema, type ReplaceEventCrewAssignmentRequest, ReplaceEventCrewAssignmentRequestSchema, type ReplaceEventCrewAssignmentResponse, ReplaceEventCrewAssignmentResponseSchema, SortOrder, type SubmitMarketplaceIndicationOfInterestRequest, SubmitMarketplaceIndicationOfInterestRequestSchema, type TransitionMarketplaceBookingRequest, TransitionMarketplaceBookingRequestSchema, type TransitionMarketplaceBookingResponse, TransitionMarketplaceBookingResponseSchema, type UpdateEventCrewAssignmentRequest, UpdateEventCrewAssignmentRequestSchema, type UpdateMarketplaceJobListingRequest, UpdateMarketplaceJobListingRequestSchema, type UploadMarketplaceHiringThreadAttachmentResponse, UploadMarketplaceHiringThreadAttachmentResponseSchema, VALID_BOOKING_TRANSITIONS, bookingTransitionKey, bookingTransitionRequiresReason, canActorPerformBookingTransition, getAllowedBookingTargetStates, getBookingTransitionActors, isValidBookingTransition };
2148
+ export { type AcceptEventCrewAssignmentResponse, AcceptEventCrewAssignmentResponseSchema, type AdminBookingAuditEntry, AdminBookingAuditEntrySchema, type AdminBookingAuditResponse, AdminBookingAuditResponseSchema, BOOKING_TERMINAL_STATES, BOOKING_TRANSITION_ACTORS, BOOKING_TRANSITION_TARGETS_REQUIRING_REASON, BookingAuditAction, BookingAuditActorSchema, type BookingAuditAttachmentAddedDetails, BookingAuditAttachmentAddedDetailsSchema, type BookingAuditMessageSentDetails, BookingAuditMessageSentDetailsSchema, BookingAuditRequestMetadataSchema, BookingAuditSnapshotSchema, type BookingAuditStateTransitionDetails, BookingAuditStateTransitionDetailsSchema, BookingOrigin, BookingPaymentStatus, type BookingResponse, BookingResponseSchema, BookingState, BookingTransitionActor, type BookingTransitionKey, type CancelMarketplaceJobListingRequest, CancelMarketplaceJobListingRequestSchema, type CancelMarketplaceJobListingResponse, CancelMarketplaceJobListingResponseSchema, type CloseMarketplaceJobListingResponse, CloseMarketplaceJobListingResponseSchema, type CompleteMarketplaceBookingRequest, CompleteMarketplaceBookingRequestSchema, type CompleteMarketplaceBookingResponse, CompleteMarketplaceBookingResponseSchema, type ConfirmBookingRequest, ConfirmBookingRequestSchema, type CreateBookingRequest, CreateBookingRequestSchema, type CreateEventCrewAssignmentRequest, CreateEventCrewAssignmentRequestSchema, type CreateJobListingRequest, CreateJobListingRequestSchema, type CreateMarketplaceBookingRequest, CreateMarketplaceBookingRequestSchema, type CreateMarketplaceBookingResponse, CreateMarketplaceBookingResponseSchema, type CreateMarketplaceJobListingRequest, CreateMarketplaceJobListingRequestSchema, type CreateMarketplaceReviewRequest, CreateMarketplaceReviewRequestSchema, EventCrewAssignmentProducerSummarySchema, type EventCrewAssignmentResponse, EventCrewAssignmentResponseSchema, EventCrewAssignmentState, type ForceCompleteMarketplaceBookingRequest, ForceCompleteMarketplaceBookingRequestSchema, type GetMarketplaceHiringThreadResponse, GetMarketplaceHiringThreadResponseSchema, HostIndicationOfInterestSortBy, IoiState, JobListingCompensationTier, type JobListingResponse, JobListingResponseSchema, JobListingState, JobLocation, type ListEventCrewAssignmentsResponse, ListEventCrewAssignmentsResponseSchema, type ListHostMarketplaceIndicationsQuery, ListHostMarketplaceIndicationsQuerySchema, type ListHostMarketplaceJobListingsQuery, ListHostMarketplaceJobListingsQuerySchema, type ListMarketplaceHiringThreadMessagesQuery, ListMarketplaceHiringThreadMessagesQuerySchema, type ListMarketplaceHiringThreadMessagesResponse, ListMarketplaceHiringThreadMessagesResponseSchema, type ListMarketplaceHiringThreadsResponse, ListMarketplaceHiringThreadsResponseSchema, type ListMarketplaceJobListingsQuery, ListMarketplaceJobListingsQuerySchema, type ListProducerJobsQuery, ListProducerJobsQuerySchema, type ListProducerMarketplaceIndicationsQuery, ListProducerMarketplaceIndicationsQuerySchema, type ListProducerReviewsQuery, ListProducerReviewsQuerySchema, type MarkMarketplaceHiringThreadReadRequest, MarkMarketplaceHiringThreadReadRequestSchema, type MarkMarketplaceHiringThreadReadResponse, MarkMarketplaceHiringThreadReadResponseSchema, type MarketplaceBookingAssignedEvent, MarketplaceBookingAssignedEventSchema, type MarketplaceBookingResponse, MarketplaceBookingResponseSchema, type MarketplaceHiringMessage, MarketplaceHiringMessageAttachmentSchema, MarketplaceHiringMessageSchema, type MarketplaceHiringThread, type MarketplaceHiringThreadInboxItem, MarketplaceHiringThreadInboxItemSchema, MarketplaceHiringThreadSchema, type MarketplaceHostIndicationOfInterestInboxItem, MarketplaceHostIndicationOfInterestInboxItemSchema, type MarketplaceIndicationOfInterestHostItem, MarketplaceIndicationOfInterestHostItemSchema, type MarketplaceIndicationOfInterestResponse, MarketplaceIndicationOfInterestResponseSchema, type MarketplaceJobListingResponse, MarketplaceJobListingResponseSchema, type MarketplaceProducerIndicationOfInterestInboxItem, MarketplaceProducerIndicationOfInterestInboxItemSchema, type MarketplaceReviewResponse, MarketplaceReviewResponseSchema, MessageDeliveryStatus, type OpenMarketplaceJobListingResponse, OpenMarketplaceJobListingResponseSchema, type PagedProducerReviewsResponse, PagedProducerReviewsResponseSchema, type PostMarketplaceHiringThreadMessageRequest, PostMarketplaceHiringThreadMessageRequestSchema, type PostMarketplaceHiringThreadMessageResponse, PostMarketplaceHiringThreadMessageResponseSchema, type ProducerJobRow, type ProducerJobRowKind, ProducerJobRowKindSchema, ProducerJobRowSchema, type ProducerJobRowStatus, ProducerJobRowStatusSchema, type ProducerJobsTab, type ProducerJobsTabCountsResponse, ProducerJobsTabCountsResponseSchema, type ProducerJobsTabResponse, ProducerJobsTabResponseSchema, ProducerJobsTabSchema, type ProducerRecentReview, ProducerRecentReviewSchema, type PublishMarketplaceJobListingResponse, PublishMarketplaceJobListingResponseSchema, type PublishReadyJobListing, PublishReadyJobListingSchema, type RejectEventCrewAssignmentRequest, RejectEventCrewAssignmentRequestSchema, type ReplaceEventCrewAssignmentRequest, ReplaceEventCrewAssignmentRequestSchema, type ReplaceEventCrewAssignmentResponse, ReplaceEventCrewAssignmentResponseSchema, SortOrder, type SubmitMarketplaceIndicationOfInterestRequest, SubmitMarketplaceIndicationOfInterestRequestSchema, type TransitionMarketplaceBookingRequest, TransitionMarketplaceBookingRequestSchema, type TransitionMarketplaceBookingResponse, TransitionMarketplaceBookingResponseSchema, type UpdateEventCrewAssignmentRequest, UpdateEventCrewAssignmentRequestSchema, type UpdateMarketplaceJobListingRequest, UpdateMarketplaceJobListingRequestSchema, type UploadMarketplaceHiringThreadAttachmentResponse, UploadMarketplaceHiringThreadAttachmentResponseSchema, VALID_BOOKING_TRANSITIONS, bookingTransitionKey, bookingTransitionRequiresReason, canActorPerformBookingTransition, getAllowedBookingTargetStates, getBookingTransitionActors, isValidBookingTransition };
@@ -1,2 +1,2 @@
1
- 'use strict';var chunkRMOFKGOI_js=require('../chunk-RMOFKGOI.js'),chunkFG6EV3WQ_js=require('../chunk-FG6EV3WQ.js');require('../chunk-EAKBQ5VD.js');var chunk72SD46VJ_js=require('../chunk-72SD46VJ.js');require('../chunk-O3GYEMUB.js');Object.defineProperty(exports,"AcceptEventCrewAssignmentResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.Ca}});Object.defineProperty(exports,"AdminBookingAuditEntrySchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.sa}});Object.defineProperty(exports,"AdminBookingAuditResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.ta}});Object.defineProperty(exports,"BOOKING_TERMINAL_STATES",{enumerable:true,get:function(){return chunkRMOFKGOI_js.a}});Object.defineProperty(exports,"BOOKING_TRANSITION_ACTORS",{enumerable:true,get:function(){return chunkRMOFKGOI_js.c}});Object.defineProperty(exports,"BOOKING_TRANSITION_TARGETS_REQUIRING_REASON",{enumerable:true,get:function(){return chunkRMOFKGOI_js.d}});Object.defineProperty(exports,"BookingAuditActorSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.ma}});Object.defineProperty(exports,"BookingAuditAttachmentAddedDetailsSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.ra}});Object.defineProperty(exports,"BookingAuditMessageSentDetailsSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.qa}});Object.defineProperty(exports,"BookingAuditRequestMetadataSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.na}});Object.defineProperty(exports,"BookingAuditSnapshotSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.oa}});Object.defineProperty(exports,"BookingAuditStateTransitionDetailsSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.pa}});Object.defineProperty(exports,"BookingResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.m}});Object.defineProperty(exports,"CancelMarketplaceJobListingRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.G}});Object.defineProperty(exports,"CancelMarketplaceJobListingResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.H}});Object.defineProperty(exports,"CloseMarketplaceJobListingResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.I}});Object.defineProperty(exports,"CompleteMarketplaceBookingRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.w}});Object.defineProperty(exports,"CompleteMarketplaceBookingResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.y}});Object.defineProperty(exports,"ConfirmBookingRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.l}});Object.defineProperty(exports,"CreateBookingRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.k}});Object.defineProperty(exports,"CreateEventCrewAssignmentRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.va}});Object.defineProperty(exports,"CreateJobListingRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.n}});Object.defineProperty(exports,"CreateMarketplaceBookingRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.r}});Object.defineProperty(exports,"CreateMarketplaceBookingResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.t}});Object.defineProperty(exports,"CreateMarketplaceJobListingRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.z}});Object.defineProperty(exports,"EventCrewAssignmentProducerSummarySchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.ya}});Object.defineProperty(exports,"EventCrewAssignmentResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.za}});Object.defineProperty(exports,"EventCrewAssignmentState",{enumerable:true,get:function(){return chunkRMOFKGOI_js.ua}});Object.defineProperty(exports,"ForceCompleteMarketplaceBookingRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.x}});Object.defineProperty(exports,"GetMarketplaceHiringThreadResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.Z}});Object.defineProperty(exports,"HostIndicationOfInterestSortBy",{enumerable:true,get:function(){return chunkRMOFKGOI_js.N}});Object.defineProperty(exports,"JobListingCompensationTier",{enumerable:true,get:function(){return chunkRMOFKGOI_js.q}});Object.defineProperty(exports,"JobListingResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.o}});Object.defineProperty(exports,"JobLocation",{enumerable:true,get:function(){return chunkRMOFKGOI_js.p}});Object.defineProperty(exports,"ListEventCrewAssignmentsResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.Aa}});Object.defineProperty(exports,"ListHostMarketplaceIndicationsQuerySchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.P}});Object.defineProperty(exports,"ListHostMarketplaceJobListingsQuerySchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.C}});Object.defineProperty(exports,"ListMarketplaceHiringThreadMessagesQuerySchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.X}});Object.defineProperty(exports,"ListMarketplaceHiringThreadMessagesResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.Y}});Object.defineProperty(exports,"ListMarketplaceHiringThreadsResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.ea}});Object.defineProperty(exports,"ListMarketplaceJobListingsQuerySchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.B}});Object.defineProperty(exports,"ListProducerJobsQuerySchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.ia}});Object.defineProperty(exports,"ListProducerMarketplaceIndicationsQuerySchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.R}});Object.defineProperty(exports,"MarkMarketplaceHiringThreadReadRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.ba}});Object.defineProperty(exports,"MarkMarketplaceHiringThreadReadResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.ca}});Object.defineProperty(exports,"MarketplaceBookingResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.s}});Object.defineProperty(exports,"MarketplaceHiringMessageAttachmentSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.V}});Object.defineProperty(exports,"MarketplaceHiringMessageSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.W}});Object.defineProperty(exports,"MarketplaceHiringThreadInboxItemSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.da}});Object.defineProperty(exports,"MarketplaceHiringThreadSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.U}});Object.defineProperty(exports,"MarketplaceHostIndicationOfInterestInboxItemSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.Q}});Object.defineProperty(exports,"MarketplaceIndicationOfInterestHostItemSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.M}});Object.defineProperty(exports,"MarketplaceIndicationOfInterestResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.L}});Object.defineProperty(exports,"MarketplaceJobListingResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.F}});Object.defineProperty(exports,"MarketplaceProducerIndicationOfInterestInboxItemSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.S}});Object.defineProperty(exports,"MessageDeliveryStatus",{enumerable:true,get:function(){return chunkRMOFKGOI_js.T}});Object.defineProperty(exports,"OpenMarketplaceJobListingResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.J}});Object.defineProperty(exports,"PostMarketplaceHiringThreadMessageRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js._}});Object.defineProperty(exports,"PostMarketplaceHiringThreadMessageResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.$}});Object.defineProperty(exports,"ProducerJobRowKindSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.ha}});Object.defineProperty(exports,"ProducerJobRowSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.ja}});Object.defineProperty(exports,"ProducerJobRowStatusSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.ga}});Object.defineProperty(exports,"ProducerJobsTabCountsResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.la}});Object.defineProperty(exports,"ProducerJobsTabResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.ka}});Object.defineProperty(exports,"ProducerJobsTabSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.fa}});Object.defineProperty(exports,"PublishMarketplaceJobListingResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.E}});Object.defineProperty(exports,"PublishReadyJobListingSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.D}});Object.defineProperty(exports,"RejectEventCrewAssignmentRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.Ba}});Object.defineProperty(exports,"ReplaceEventCrewAssignmentRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.xa}});Object.defineProperty(exports,"ReplaceEventCrewAssignmentResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.Da}});Object.defineProperty(exports,"SortOrder",{enumerable:true,get:function(){return chunkRMOFKGOI_js.O}});Object.defineProperty(exports,"SubmitMarketplaceIndicationOfInterestRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.K}});Object.defineProperty(exports,"TransitionMarketplaceBookingRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.u}});Object.defineProperty(exports,"TransitionMarketplaceBookingResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.v}});Object.defineProperty(exports,"UpdateEventCrewAssignmentRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.wa}});Object.defineProperty(exports,"UpdateMarketplaceJobListingRequestSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.A}});Object.defineProperty(exports,"UploadMarketplaceHiringThreadAttachmentResponseSchema",{enumerable:true,get:function(){return chunkRMOFKGOI_js.aa}});Object.defineProperty(exports,"VALID_BOOKING_TRANSITIONS",{enumerable:true,get:function(){return chunkRMOFKGOI_js.b}});Object.defineProperty(exports,"bookingTransitionKey",{enumerable:true,get:function(){return chunkRMOFKGOI_js.e}});Object.defineProperty(exports,"bookingTransitionRequiresReason",{enumerable:true,get:function(){return chunkRMOFKGOI_js.j}});Object.defineProperty(exports,"canActorPerformBookingTransition",{enumerable:true,get:function(){return chunkRMOFKGOI_js.i}});Object.defineProperty(exports,"getAllowedBookingTargetStates",{enumerable:true,get:function(){return chunkRMOFKGOI_js.f}});Object.defineProperty(exports,"getBookingTransitionActors",{enumerable:true,get:function(){return chunkRMOFKGOI_js.h}});Object.defineProperty(exports,"isValidBookingTransition",{enumerable:true,get:function(){return chunkRMOFKGOI_js.g}});Object.defineProperty(exports,"BookingAuditAction",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.g}});Object.defineProperty(exports,"BookingOrigin",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.a}});Object.defineProperty(exports,"BookingPaymentStatus",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.e}});Object.defineProperty(exports,"BookingState",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.b}});Object.defineProperty(exports,"BookingTransitionActor",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.f}});Object.defineProperty(exports,"IoiState",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.d}});Object.defineProperty(exports,"JobListingState",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.c}});Object.defineProperty(exports,"CreateMarketplaceReviewRequestSchema",{enumerable:true,get:function(){return chunk72SD46VJ_js.a}});Object.defineProperty(exports,"ListProducerReviewsQuerySchema",{enumerable:true,get:function(){return chunk72SD46VJ_js.d}});Object.defineProperty(exports,"MarketplaceReviewResponseSchema",{enumerable:true,get:function(){return chunk72SD46VJ_js.b}});Object.defineProperty(exports,"PagedProducerReviewsResponseSchema",{enumerable:true,get:function(){return chunk72SD46VJ_js.e}});Object.defineProperty(exports,"ProducerRecentReviewSchema",{enumerable:true,get:function(){return chunk72SD46VJ_js.c}});//# sourceMappingURL=index.js.map
1
+ 'use strict';var chunkCMQ36ZUU_js=require('../chunk-CMQ36ZUU.js'),chunkFG6EV3WQ_js=require('../chunk-FG6EV3WQ.js');require('../chunk-EAKBQ5VD.js');var chunk72SD46VJ_js=require('../chunk-72SD46VJ.js');require('../chunk-O3GYEMUB.js');Object.defineProperty(exports,"AcceptEventCrewAssignmentResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.Da}});Object.defineProperty(exports,"AdminBookingAuditEntrySchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.ta}});Object.defineProperty(exports,"AdminBookingAuditResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.ua}});Object.defineProperty(exports,"BOOKING_TERMINAL_STATES",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.a}});Object.defineProperty(exports,"BOOKING_TRANSITION_ACTORS",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.c}});Object.defineProperty(exports,"BOOKING_TRANSITION_TARGETS_REQUIRING_REASON",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.d}});Object.defineProperty(exports,"BookingAuditActorSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.na}});Object.defineProperty(exports,"BookingAuditAttachmentAddedDetailsSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.sa}});Object.defineProperty(exports,"BookingAuditMessageSentDetailsSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.ra}});Object.defineProperty(exports,"BookingAuditRequestMetadataSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.oa}});Object.defineProperty(exports,"BookingAuditSnapshotSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.pa}});Object.defineProperty(exports,"BookingAuditStateTransitionDetailsSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.qa}});Object.defineProperty(exports,"BookingResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.m}});Object.defineProperty(exports,"CancelMarketplaceJobListingRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.H}});Object.defineProperty(exports,"CancelMarketplaceJobListingResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.I}});Object.defineProperty(exports,"CloseMarketplaceJobListingResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.J}});Object.defineProperty(exports,"CompleteMarketplaceBookingRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.x}});Object.defineProperty(exports,"CompleteMarketplaceBookingResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.z}});Object.defineProperty(exports,"ConfirmBookingRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.l}});Object.defineProperty(exports,"CreateBookingRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.k}});Object.defineProperty(exports,"CreateEventCrewAssignmentRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.wa}});Object.defineProperty(exports,"CreateJobListingRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.n}});Object.defineProperty(exports,"CreateMarketplaceBookingRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.r}});Object.defineProperty(exports,"CreateMarketplaceBookingResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.u}});Object.defineProperty(exports,"CreateMarketplaceJobListingRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.A}});Object.defineProperty(exports,"EventCrewAssignmentProducerSummarySchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.za}});Object.defineProperty(exports,"EventCrewAssignmentResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.Aa}});Object.defineProperty(exports,"EventCrewAssignmentState",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.va}});Object.defineProperty(exports,"ForceCompleteMarketplaceBookingRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.y}});Object.defineProperty(exports,"GetMarketplaceHiringThreadResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js._}});Object.defineProperty(exports,"HostIndicationOfInterestSortBy",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.O}});Object.defineProperty(exports,"JobListingCompensationTier",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.q}});Object.defineProperty(exports,"JobListingResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.o}});Object.defineProperty(exports,"JobLocation",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.p}});Object.defineProperty(exports,"ListEventCrewAssignmentsResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.Ba}});Object.defineProperty(exports,"ListHostMarketplaceIndicationsQuerySchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.Q}});Object.defineProperty(exports,"ListHostMarketplaceJobListingsQuerySchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.D}});Object.defineProperty(exports,"ListMarketplaceHiringThreadMessagesQuerySchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.Y}});Object.defineProperty(exports,"ListMarketplaceHiringThreadMessagesResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.Z}});Object.defineProperty(exports,"ListMarketplaceHiringThreadsResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.fa}});Object.defineProperty(exports,"ListMarketplaceJobListingsQuerySchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.C}});Object.defineProperty(exports,"ListProducerJobsQuerySchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.ja}});Object.defineProperty(exports,"ListProducerMarketplaceIndicationsQuerySchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.S}});Object.defineProperty(exports,"MarkMarketplaceHiringThreadReadRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.ca}});Object.defineProperty(exports,"MarkMarketplaceHiringThreadReadResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.da}});Object.defineProperty(exports,"MarketplaceBookingAssignedEventSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.s}});Object.defineProperty(exports,"MarketplaceBookingResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.t}});Object.defineProperty(exports,"MarketplaceHiringMessageAttachmentSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.W}});Object.defineProperty(exports,"MarketplaceHiringMessageSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.X}});Object.defineProperty(exports,"MarketplaceHiringThreadInboxItemSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.ea}});Object.defineProperty(exports,"MarketplaceHiringThreadSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.V}});Object.defineProperty(exports,"MarketplaceHostIndicationOfInterestInboxItemSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.R}});Object.defineProperty(exports,"MarketplaceIndicationOfInterestHostItemSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.N}});Object.defineProperty(exports,"MarketplaceIndicationOfInterestResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.M}});Object.defineProperty(exports,"MarketplaceJobListingResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.G}});Object.defineProperty(exports,"MarketplaceProducerIndicationOfInterestInboxItemSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.T}});Object.defineProperty(exports,"MessageDeliveryStatus",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.U}});Object.defineProperty(exports,"OpenMarketplaceJobListingResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.K}});Object.defineProperty(exports,"PostMarketplaceHiringThreadMessageRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.$}});Object.defineProperty(exports,"PostMarketplaceHiringThreadMessageResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.aa}});Object.defineProperty(exports,"ProducerJobRowKindSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.ia}});Object.defineProperty(exports,"ProducerJobRowSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.ka}});Object.defineProperty(exports,"ProducerJobRowStatusSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.ha}});Object.defineProperty(exports,"ProducerJobsTabCountsResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.ma}});Object.defineProperty(exports,"ProducerJobsTabResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.la}});Object.defineProperty(exports,"ProducerJobsTabSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.ga}});Object.defineProperty(exports,"PublishMarketplaceJobListingResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.F}});Object.defineProperty(exports,"PublishReadyJobListingSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.E}});Object.defineProperty(exports,"RejectEventCrewAssignmentRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.Ca}});Object.defineProperty(exports,"ReplaceEventCrewAssignmentRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.ya}});Object.defineProperty(exports,"ReplaceEventCrewAssignmentResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.Ea}});Object.defineProperty(exports,"SortOrder",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.P}});Object.defineProperty(exports,"SubmitMarketplaceIndicationOfInterestRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.L}});Object.defineProperty(exports,"TransitionMarketplaceBookingRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.v}});Object.defineProperty(exports,"TransitionMarketplaceBookingResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.w}});Object.defineProperty(exports,"UpdateEventCrewAssignmentRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.xa}});Object.defineProperty(exports,"UpdateMarketplaceJobListingRequestSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.B}});Object.defineProperty(exports,"UploadMarketplaceHiringThreadAttachmentResponseSchema",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.ba}});Object.defineProperty(exports,"VALID_BOOKING_TRANSITIONS",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.b}});Object.defineProperty(exports,"bookingTransitionKey",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.e}});Object.defineProperty(exports,"bookingTransitionRequiresReason",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.j}});Object.defineProperty(exports,"canActorPerformBookingTransition",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.i}});Object.defineProperty(exports,"getAllowedBookingTargetStates",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.f}});Object.defineProperty(exports,"getBookingTransitionActors",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.h}});Object.defineProperty(exports,"isValidBookingTransition",{enumerable:true,get:function(){return chunkCMQ36ZUU_js.g}});Object.defineProperty(exports,"BookingAuditAction",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.g}});Object.defineProperty(exports,"BookingOrigin",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.a}});Object.defineProperty(exports,"BookingPaymentStatus",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.e}});Object.defineProperty(exports,"BookingState",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.b}});Object.defineProperty(exports,"BookingTransitionActor",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.f}});Object.defineProperty(exports,"IoiState",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.d}});Object.defineProperty(exports,"JobListingState",{enumerable:true,get:function(){return chunkFG6EV3WQ_js.c}});Object.defineProperty(exports,"CreateMarketplaceReviewRequestSchema",{enumerable:true,get:function(){return chunk72SD46VJ_js.a}});Object.defineProperty(exports,"ListProducerReviewsQuerySchema",{enumerable:true,get:function(){return chunk72SD46VJ_js.d}});Object.defineProperty(exports,"MarketplaceReviewResponseSchema",{enumerable:true,get:function(){return chunk72SD46VJ_js.b}});Object.defineProperty(exports,"PagedProducerReviewsResponseSchema",{enumerable:true,get:function(){return chunk72SD46VJ_js.e}});Object.defineProperty(exports,"ProducerRecentReviewSchema",{enumerable:true,get:function(){return chunk72SD46VJ_js.c}});//# sourceMappingURL=index.js.map
2
2
  //# sourceMappingURL=index.js.map
@@ -1,2 +1,2 @@
1
- export{Ca as AcceptEventCrewAssignmentResponseSchema,sa as AdminBookingAuditEntrySchema,ta as AdminBookingAuditResponseSchema,a as BOOKING_TERMINAL_STATES,c as BOOKING_TRANSITION_ACTORS,d as BOOKING_TRANSITION_TARGETS_REQUIRING_REASON,ma as BookingAuditActorSchema,ra as BookingAuditAttachmentAddedDetailsSchema,qa as BookingAuditMessageSentDetailsSchema,na as BookingAuditRequestMetadataSchema,oa as BookingAuditSnapshotSchema,pa as BookingAuditStateTransitionDetailsSchema,m as BookingResponseSchema,G as CancelMarketplaceJobListingRequestSchema,H as CancelMarketplaceJobListingResponseSchema,I as CloseMarketplaceJobListingResponseSchema,w as CompleteMarketplaceBookingRequestSchema,y as CompleteMarketplaceBookingResponseSchema,l as ConfirmBookingRequestSchema,k as CreateBookingRequestSchema,va as CreateEventCrewAssignmentRequestSchema,n as CreateJobListingRequestSchema,r as CreateMarketplaceBookingRequestSchema,t as CreateMarketplaceBookingResponseSchema,z as CreateMarketplaceJobListingRequestSchema,ya as EventCrewAssignmentProducerSummarySchema,za as EventCrewAssignmentResponseSchema,ua as EventCrewAssignmentState,x as ForceCompleteMarketplaceBookingRequestSchema,Z as GetMarketplaceHiringThreadResponseSchema,N as HostIndicationOfInterestSortBy,q as JobListingCompensationTier,o as JobListingResponseSchema,p as JobLocation,Aa as ListEventCrewAssignmentsResponseSchema,P as ListHostMarketplaceIndicationsQuerySchema,C as ListHostMarketplaceJobListingsQuerySchema,X as ListMarketplaceHiringThreadMessagesQuerySchema,Y as ListMarketplaceHiringThreadMessagesResponseSchema,ea as ListMarketplaceHiringThreadsResponseSchema,B as ListMarketplaceJobListingsQuerySchema,ia as ListProducerJobsQuerySchema,R as ListProducerMarketplaceIndicationsQuerySchema,ba as MarkMarketplaceHiringThreadReadRequestSchema,ca as MarkMarketplaceHiringThreadReadResponseSchema,s as MarketplaceBookingResponseSchema,V as MarketplaceHiringMessageAttachmentSchema,W as MarketplaceHiringMessageSchema,da as MarketplaceHiringThreadInboxItemSchema,U as MarketplaceHiringThreadSchema,Q as MarketplaceHostIndicationOfInterestInboxItemSchema,M as MarketplaceIndicationOfInterestHostItemSchema,L as MarketplaceIndicationOfInterestResponseSchema,F as MarketplaceJobListingResponseSchema,S as MarketplaceProducerIndicationOfInterestInboxItemSchema,T as MessageDeliveryStatus,J as OpenMarketplaceJobListingResponseSchema,_ as PostMarketplaceHiringThreadMessageRequestSchema,$ as PostMarketplaceHiringThreadMessageResponseSchema,ha as ProducerJobRowKindSchema,ja as ProducerJobRowSchema,ga as ProducerJobRowStatusSchema,la as ProducerJobsTabCountsResponseSchema,ka as ProducerJobsTabResponseSchema,fa as ProducerJobsTabSchema,E as PublishMarketplaceJobListingResponseSchema,D as PublishReadyJobListingSchema,Ba as RejectEventCrewAssignmentRequestSchema,xa as ReplaceEventCrewAssignmentRequestSchema,Da as ReplaceEventCrewAssignmentResponseSchema,O as SortOrder,K as SubmitMarketplaceIndicationOfInterestRequestSchema,u as TransitionMarketplaceBookingRequestSchema,v as TransitionMarketplaceBookingResponseSchema,wa as UpdateEventCrewAssignmentRequestSchema,A as UpdateMarketplaceJobListingRequestSchema,aa as UploadMarketplaceHiringThreadAttachmentResponseSchema,b as VALID_BOOKING_TRANSITIONS,e as bookingTransitionKey,j as bookingTransitionRequiresReason,i as canActorPerformBookingTransition,f as getAllowedBookingTargetStates,h as getBookingTransitionActors,g as isValidBookingTransition}from'../chunk-DJQVVYZA.mjs';export{g as BookingAuditAction,a as BookingOrigin,e as BookingPaymentStatus,b as BookingState,f as BookingTransitionActor,d as IoiState,c as JobListingState}from'../chunk-B7B7YFFC.mjs';import'../chunk-ASVBPXYH.mjs';export{a as CreateMarketplaceReviewRequestSchema,d as ListProducerReviewsQuerySchema,b as MarketplaceReviewResponseSchema,e as PagedProducerReviewsResponseSchema,c as ProducerRecentReviewSchema}from'../chunk-IIVGG46P.mjs';import'../chunk-L4QDS3ET.mjs';//# sourceMappingURL=index.mjs.map
1
+ export{Da as AcceptEventCrewAssignmentResponseSchema,ta as AdminBookingAuditEntrySchema,ua as AdminBookingAuditResponseSchema,a as BOOKING_TERMINAL_STATES,c as BOOKING_TRANSITION_ACTORS,d as BOOKING_TRANSITION_TARGETS_REQUIRING_REASON,na as BookingAuditActorSchema,sa as BookingAuditAttachmentAddedDetailsSchema,ra as BookingAuditMessageSentDetailsSchema,oa as BookingAuditRequestMetadataSchema,pa as BookingAuditSnapshotSchema,qa as BookingAuditStateTransitionDetailsSchema,m as BookingResponseSchema,H as CancelMarketplaceJobListingRequestSchema,I as CancelMarketplaceJobListingResponseSchema,J as CloseMarketplaceJobListingResponseSchema,x as CompleteMarketplaceBookingRequestSchema,z as CompleteMarketplaceBookingResponseSchema,l as ConfirmBookingRequestSchema,k as CreateBookingRequestSchema,wa as CreateEventCrewAssignmentRequestSchema,n as CreateJobListingRequestSchema,r as CreateMarketplaceBookingRequestSchema,u as CreateMarketplaceBookingResponseSchema,A as CreateMarketplaceJobListingRequestSchema,za as EventCrewAssignmentProducerSummarySchema,Aa as EventCrewAssignmentResponseSchema,va as EventCrewAssignmentState,y as ForceCompleteMarketplaceBookingRequestSchema,_ as GetMarketplaceHiringThreadResponseSchema,O as HostIndicationOfInterestSortBy,q as JobListingCompensationTier,o as JobListingResponseSchema,p as JobLocation,Ba as ListEventCrewAssignmentsResponseSchema,Q as ListHostMarketplaceIndicationsQuerySchema,D as ListHostMarketplaceJobListingsQuerySchema,Y as ListMarketplaceHiringThreadMessagesQuerySchema,Z as ListMarketplaceHiringThreadMessagesResponseSchema,fa as ListMarketplaceHiringThreadsResponseSchema,C as ListMarketplaceJobListingsQuerySchema,ja as ListProducerJobsQuerySchema,S as ListProducerMarketplaceIndicationsQuerySchema,ca as MarkMarketplaceHiringThreadReadRequestSchema,da as MarkMarketplaceHiringThreadReadResponseSchema,s as MarketplaceBookingAssignedEventSchema,t as MarketplaceBookingResponseSchema,W as MarketplaceHiringMessageAttachmentSchema,X as MarketplaceHiringMessageSchema,ea as MarketplaceHiringThreadInboxItemSchema,V as MarketplaceHiringThreadSchema,R as MarketplaceHostIndicationOfInterestInboxItemSchema,N as MarketplaceIndicationOfInterestHostItemSchema,M as MarketplaceIndicationOfInterestResponseSchema,G as MarketplaceJobListingResponseSchema,T as MarketplaceProducerIndicationOfInterestInboxItemSchema,U as MessageDeliveryStatus,K as OpenMarketplaceJobListingResponseSchema,$ as PostMarketplaceHiringThreadMessageRequestSchema,aa as PostMarketplaceHiringThreadMessageResponseSchema,ia as ProducerJobRowKindSchema,ka as ProducerJobRowSchema,ha as ProducerJobRowStatusSchema,ma as ProducerJobsTabCountsResponseSchema,la as ProducerJobsTabResponseSchema,ga as ProducerJobsTabSchema,F as PublishMarketplaceJobListingResponseSchema,E as PublishReadyJobListingSchema,Ca as RejectEventCrewAssignmentRequestSchema,ya as ReplaceEventCrewAssignmentRequestSchema,Ea as ReplaceEventCrewAssignmentResponseSchema,P as SortOrder,L as SubmitMarketplaceIndicationOfInterestRequestSchema,v as TransitionMarketplaceBookingRequestSchema,w as TransitionMarketplaceBookingResponseSchema,xa as UpdateEventCrewAssignmentRequestSchema,B as UpdateMarketplaceJobListingRequestSchema,ba as UploadMarketplaceHiringThreadAttachmentResponseSchema,b as VALID_BOOKING_TRANSITIONS,e as bookingTransitionKey,j as bookingTransitionRequiresReason,i as canActorPerformBookingTransition,f as getAllowedBookingTargetStates,h as getBookingTransitionActors,g as isValidBookingTransition}from'../chunk-JMMNUUHO.mjs';export{g as BookingAuditAction,a as BookingOrigin,e as BookingPaymentStatus,b as BookingState,f as BookingTransitionActor,d as IoiState,c as JobListingState}from'../chunk-B7B7YFFC.mjs';import'../chunk-ASVBPXYH.mjs';export{a as CreateMarketplaceReviewRequestSchema,d as ListProducerReviewsQuerySchema,b as MarketplaceReviewResponseSchema,e as PagedProducerReviewsResponseSchema,c as ProducerRecentReviewSchema}from'../chunk-IIVGG46P.mjs';import'../chunk-L4QDS3ET.mjs';//# sourceMappingURL=index.mjs.map
2
2
  //# sourceMappingURL=index.mjs.map
@@ -0,0 +1,2 @@
1
+ import {b}from'./chunk-B7B7YFFC.mjs';import {f as f$1}from'./chunk-5VUOLH4C.mjs';import {a,za,xa,ya,d,e as e$1,g as g$1,Ra}from'./chunk-MFRAOZDF.mjs';import {g,k as k$1,h as h$1}from'./chunk-L4QDS3ET.mjs';import e from'zod';var S=["last7d","last30d","last90d"];var le=e.object({range:e.enum([...S,"custom"]).optional(),start:e.iso.datetime().optional(),end:e.iso.datetime().optional()}),r=e.enum(["UPCOMING","LIVE","ENDED","DRAFTS"]),ce=e.object({q:e.string().trim().min(2).max(120),limit:e.coerce.number().int().min(1).max(10).default(10)}),ue=e.object({title:e.string().min(1).max(120).optional(),description:e.string().max(2e3).optional(),coverImageUrl:e.any().optional(),previewClipUrl:e.url().nullable().optional(),ticketPrice:e.string().optional(),category:ya.optional(),scheduledStartLocal:e.iso.datetime({local:true,offset:false}).optional(),durationMinutes:e.number().int().positive().optional(),tags:e.array(e.string()).optional(),location:e.string().max(255).optional(),accessModel:e.enum(["FREE","PAID"]).optional(),currency:xa.optional(),maxTickets:e.number().int().positive().nullable().optional(),visibility:za.optional(),guestEmails:e.array(e.email()).optional(),replayAccess:e.enum(a).optional(),replayWindow:e.number().int().positive().optional(),replayPrice:e.number().nonnegative().optional(),productionMode:e.enum(["SELF","HIRE"]).optional(),crewIds:e.array(e.uuid()).optional(),productionNotes:e.string().max(2e3).nullable().optional(),backupStreamEnabled:e.boolean().optional()}),me=e.object({tab:r,...g.shape}),v=e.object({eventId:e.string(),title:e.string(),date:e.iso.datetime(),ticketsSold:e.number(),plannedDurationMinutes:e.number().nullable(),revenue:e.object({currency:e.string(),value:e.string()}),status:e.enum(["ACTIVE","PAUSED","LIVE","ENDED","DRAFT","CANCELLED"])}),de=e.object({tab:r,rows:e.array(v),...k$1.shape}),be=e.object({upcoming:e.number(),live:e.number(),ended:e.number(),drafts:e.number()}),pe=e.object({title:e.string().min(3).max(120).optional()}),ge=e.object({tab:r,mode:e.enum(d).optional(),...g.shape}),Ee=e.object({id:e.uuid(),state:e.literal("DRAFT"),wizardStep:e.number().int().min(1).max(5).nullable()}),Se=e.object({id:e.uuid(),wizardStep:e.number().int().min(1).max(5).nullable(),streamingVerified:e.boolean().optional(),verificationToken:e.string().optional(),crewIds:e.array(e.uuid()).optional(),crewAssignments:e.array(e.object({id:e.uuid(),producerId:e.uuid(),role:e.string(),state:e.string(),compensation:h$1,location:e.string()})).optional()}),ve=e.object({id:e.uuid(),state:e.literal("SCHEDULED"),publishedAt:e.iso.datetime().nullable(),bookingIds:e.array(e.uuid())}),he=e.object({id:e.uuid(),state:e.literal("CANCELLED"),cancelledAt:e.iso.datetime().nullable()}),R=e.object({amount:h$1,deltaPct:e.number().nullable()}),T=e.object({count:e.number().int(),nextStartsAt:e.string().nullable()}),x=e.object({eventCount:e.number().int(),totalViewers:e.number().int()}),I=e.object({value:e.number().int(),deltaPct:e.number().nullable()}),C=e.object({eventId:e.uuid(),title:e.string(),viewers:e.number().int()}),j=e.object({eventId:e.uuid(),title:e.string(),scheduledStart:e.string(),canGoLive:e.boolean()}),h=e.object({kind:e.string(),subjectType:e.enum(["Event","Booking","PaymentIntent","ReplayPurchase"]),subjectId:e.string(),occurredAt:e.number().int(),payload:e.record(e.string(),e.unknown()),dedupeId:e.string()}),ye=e.object({range:e.object({start:e.string(),end:e.string(),preset:e.string().optional()}),kpis:e.object({totalRevenue:R,upcomingEvents:T,liveNow:x,totalViews:I}),live:e.array(C),upcoming:e.array(j),activity:e.array(h)}),Ae=e.object({items:e.array(h),...k$1.shape}),L=e.object({eventId:e.uuid(),title:e.string(),scheduledStart:e.string(),state:e.string()}),Re=e.object({hits:e.array(L)}),Te=e.object({count:e.number().int()}),xe=e.object({tab:r,items:e.array(v),...k$1.shape}),H=e.object({id:e.uuid(),hostId:e.uuid(),title:e.string(),description:e.string().nullable(),coverImageUrl:e.string().nullable(),previewClipUrl:e.string().nullable(),venueLocation:e.string().nullable(),scheduledStartLocal:e.string(),scheduledEndLocal:e.string(),scheduledEnd:e.iso.datetime(),scheduledStart:e.iso.datetime(),timezone:e.string(),expectedAudience:e.number().int().nullable(),plannedDurationMinutes:e.number().int().nullable(),visibility:e.string(),accessModel:e.string(),ticketPrice:h$1.nullable(),maxTickets:e.number().int().nullable(),allowlistData:e.array(e.string()),replayAccess:e.enum(a),replayAccessFee:h$1,retentionDays:e.number().int(),replayAvailableUntil:e.string().nullable(),shareableUrl:e.string().nullable(),state:e.string(),tags:e.array(e.string()),isFeatured:e.boolean(),createdAt:e.string(),updatedAt:e.string(),publishedAt:e.string().nullable(),liveStartedAt:e.string().nullable(),liveEndedAt:e.string().nullable(),cancelledAt:e.string().nullable(),cancelledReason:e.string().nullable(),category:e.string(),wizardStep:e.number().int().nullable(),productionMode:e.string().nullable(),productionNotes:e.string().nullable(),streamingMode:e.enum(e$1).nullable()}),Ie=H.extend({crewIds:e.array(e.uuid()),crewAssignments:e.array(e.object({id:e.uuid(),producerId:e.uuid(),role:e.string(),state:e.string(),compensation:h$1,location:e.string()})).optional().default([])}),D=e.enum(["EVENT_DETAILS","PRICING","CREW_ASSIGNED","STREAM_TESTED"]),N=e.enum(["PASS","WARN","FAIL"]),P=e.enum(["OPEN_WIZARD_STEP_1","OPEN_WIZARD_STEP_2","OPEN_WIZARD_STEP_3","OPEN_HIRE_CREW","REPLACE_CREW","RUN_STREAM_TEST"]),f=e.enum(["CHECKLIST_INCOMPLETE","BEFORE_WINDOW","AFTER_WINDOW","ALREADY_LIVE","NOT_OWNED"]),y=e.enum(["NOT_PROVISIONED","READY_FOR_TEST","LIVE","STREAM_TEST_FAILED","STREAM_TEST_SUCCESSFUL"]),l=e.enum(["SELF","HIRE"]),w=e.object({id:D,label:e.string(),state:N,detail:e.string().optional(),cta:P.optional()}),c=e.object({progress:e.number().min(0).max(1),items:e.array(w),canGoLive:e.boolean(),blockReason:f.optional()}),Ce=e.object({crewSearch:e.string().trim().min(2).max(100).optional(),crewState:e.enum(b).optional()}),A=e.object({bookingId:e.string(),producerProfileId:e.string(),displayName:e.string(),companyName:e.string(),producerAvatarUrl:e.url().nullable(),producerServiceCategoryLabels:e.array(e.string()),producerEquipmentLabels:e.array(e.string()),producerIsVerified:e.boolean(),role:e.string().nullable(),responsibilities:e.string().nullable(),state:e.enum(b),confirmedAt:e.iso.datetime().nullable()}),_=e.enum(["ACTIVE","PAST"]),je=e.object({phase:_.default("ACTIVE"),eventId:e.uuid().optional(),crewSearch:e.string().trim().min(2).max(100).optional(),crewState:e.enum(b).optional(),...g.shape}),k=A.extend({eventId:e.uuid(),eventTitle:e.string()}),O=e.object({eventId:e.uuid(),totalViewers:e.number().int().nonnegative(),uniqueViewers:e.number().int().nonnegative(),peakConcurrent:e.number().int().nonnegative(),registeredCount:e.number().int().nonnegative(),paidCount:e.number().int().nonnegative(),refundedCount:e.number().int().nonnegative(),returningViewerCount:e.number().int().nonnegative().nullable(),highValueBuyerCount:e.number().int().nonnegative().nullable(),grossRevenue:h$1,computedAt:e.iso.datetime(),byDeviceType:e.record(e.string(),e.number()).nullable()}),M=e.object({eventId:e.uuid(),totalReplayViewers:e.number().int().nonnegative(),completedViews:e.number().int().nonnegative(),avgWatchProgressPct:e.number().min(0).max(1).nullable(),totalWatchTimeSec:e.number().int().nonnegative(),activeReplayPurchases:e.number().int().nonnegative(),replayRevenue:h$1,computedAt:e.iso.datetime(),points:e.array(e.object({date:e.string(),viewsCount:e.number().int().nonnegative(),revenue:h$1}))}),U=e.object({audience:O.nullable(),replayPerformance:M.nullable()}),Le=e.object({items:e.array(k),...k$1.shape}),He=e.object({serverNow:e.iso.datetime(),event:e.object({id:e.string(),title:e.string(),description:e.string().nullable(),coverImageUrl:e.string().nullable(),scheduledStartLocal:e.iso.datetime({local:true,offset:false}),scheduledStart:e.iso.datetime({local:true,offset:false}),scheduledEndLocal:e.iso.datetime({local:true,offset:false}),scheduledEnd:e.iso.datetime(),timezone:e.string(),accessModel:e.string(),ticketPrice:h$1.nullable(),shareableUrl:e.string().nullable(),state:e.string(),visibility:e.string(),productionMode:l.nullable(),goLiveEligibleAt:e.iso.datetime().nullable(),replayAccess:e.enum(a),replayAccessFee:h$1,retentionDays:e.number().int(),replayAvailableUntil:e.string().nullable()}),ticketing:e.object({totalPayingCapacity:e.number().int().nullable(),ticketsSold:e.number().int(),revenue:h$1,liveRevenue:h$1,ticketRevenue:h$1,replayRevenue:h$1,hostShare:h$1,platformFee:h$1}),audience:e.object({registered:e.number().int(),watchingNow:e.number().int().nonnegative(),byCountry:e.record(e.string(),e.number().int()).nullable(),byTrafficSource:e.record(e.string(),e.number().int()).nullable()}),readiness:c,production:e.object({mode:l,streamingMode:e.enum(e$1).nullable(),crew:e.array(A),vacantCrewCount:e.number().int().nonnegative()}),streaming:e.object({status:y,serverUrl:e.string().nullable(),streamKey:e.string().nullable(),lastStreamTestAt:e.iso.datetime().nullable(),testAvailableAt:e.iso.datetime().nullable(),lastStreamTestFailedAt:e.iso.datetime().nullable(),lastStreamTestFailureReason:e.string().nullable()}),share:e.object({shareableUrl:e.string(),slug:e.string()}),postEvent:U.nullable()}),De=c,Ne=e.object({serverNow:e.iso.datetime(),bookingId:e.uuid(),event:e.object({id:e.uuid(),title:e.string(),description:e.string().nullable(),coverImageUrl:e.string().nullable(),scheduledStartLocal:e.iso.datetime({local:true,offset:false}),scheduledStart:e.iso.datetime(),scheduledEndLocal:e.iso.datetime({local:true,offset:false}),scheduledEnd:e.iso.datetime(),timezone:e.string(),state:e.string(),visibility:e.string(),productionMode:l.nullable(),goLiveEligibleAt:e.iso.datetime().nullable()}),readiness:c,streaming:e.object({status:y,serverUrl:e.string().nullable(),streamKey:e.null(),lastStreamTestAt:e.iso.datetime().nullable(),testAvailableAt:e.iso.datetime().nullable(),lastStreamTestFailedAt:e.iso.datetime().nullable(),lastStreamTestFailureReason:e.string().nullable()})}),Pe=e.object({shareableUrl:e.string(),slug:e.string(),copyText:e.string(),channelLinks:e.object({twitter:e.string(),facebook:e.string(),email:e.string(),embed:e.string()}),qrCodeDataUrl:e.string()}),V=e.enum(["PRE_LIVE","LIVE","ENDED"]),F=e.enum(["PROCESSING","READY","UNAVAILABLE"]),W=e.enum(["HEALTHY","DEGRADED","INGEST_DOWN"]),G=e.enum(["HOST_TERMINATED","HOST_TERMINATED_EARLY","AUTO_AFTER_SILENCE","AUTO_AT_SCHEDULED_END","ADMIN_FORCED"]),z=e.enum(["AUDIO_QUALITY","VIDEO_QUALITY","BITRATE_DROP","INGEST_DISCONNECTED","INGEST_RECONNECTED","RECORDING_FAILED","STREAM_DENIED"]),B=e.enum(["INFO","WARN","ERROR"]),K=e.object({id:e.string(),title:e.string(),scheduledStart:e.iso.datetime(),scheduledEnd:e.iso.datetime(),scheduledStartLocal:e.iso.datetime({local:true,offset:false}),scheduledEndLocal:e.iso.datetime({local:true,offset:false}),state:e.enum(g$1),currency:e.string(),accessModel:e.string()}),Q=e.object({streamEnabled:e.boolean(),canGoLive:e.boolean(),canEndLive:e.boolean(),requiresReauthToEnd:e.boolean()}),Y=e.object({viewers:e.number().int(),peakViewers:e.number().int(),ticketsSold:e.number().int(),revenue:e.object({value:e.string(),currency:e.string()}),joinedTotal:e.number().int()}),q=e.object({bitrateKbps:e.number(),resolution:e.string(),latencyMs:e.number().nullable(),ingestHealth:W,lastSampleAt:e.iso.datetime()}),Z=e.object({bookingId:e.string(),producerProfileId:e.string(),displayName:e.string(),role:e.string().nullable(),online:e.boolean()}),J=e.object({id:e.string(),kind:z,severity:B,message:e.string(),startedAt:e.iso.datetime(),acknowledgedAt:e.iso.datetime().nullable()}),X=e.object({enabled:e.boolean(),socketNamespace:e.string(),backfill:e.array(f$1)}),$=e.object({endedAt:e.iso.datetime(),endedEarly:e.boolean(),endedReason:G,replayState:F,replayAvailableAt:e.iso.datetime().nullable()}),fe=e.object({serverNow:e.iso.datetime(),slice:V,event:K,controls:Q,metrics:Y,telemetry:q.nullable(),crew:e.array(Z),alerts:e.array(J),activity:e.array(e.never()),chat:X,ended:$.nullable(),livePreview:Ra.nullable()}),we=e.object({from:e.iso.datetime().optional(),to:e.iso.datetime().optional()}),ee=e.object({bucketStart:e.iso.datetime(),concurrentViewers:e.number().int().nonnegative(),chatMessages:e.number().int().nonnegative().nullable(),reactions:e.number().int().nonnegative().nullable(),bitrateKbps:e.number().int().nonnegative().nullable(),ingestHealth:e.enum(["HEALTHY","DEGRADED","INGEST_DOWN"]).nullable(),resolution:e.string().nullable()}),_e=e.object({eventId:e.uuid(),from:e.iso.datetime(),to:e.iso.datetime(),granularity:e.literal("minute"),buckets:e.array(ee)});export{Z as $,y as A,l as B,w as C,c as D,Ce as E,A as F,_ as G,je as H,k as I,O as J,M as K,U as L,Le as M,He as N,De as O,Ne as P,Pe as Q,V as R,F as S,W as T,G as U,z as V,B as W,K as X,Q as Y,Y as Z,q as _,S as a,J as aa,le as b,X as ba,r as c,$ as ca,ce as d,fe as da,ue as e,we as ea,me as f,ee as fa,v as g,_e as ga,de as h,be as i,pe as j,ge as k,Ee as l,Se as m,ve as n,he as o,ye as p,Ae as q,L as r,Re as s,Te as t,xe as u,H as v,Ie as w,D as x,N as y,f as z};//# sourceMappingURL=chunk-7YTPBEOO.mjs.map
2
+ //# sourceMappingURL=chunk-7YTPBEOO.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/host/host.enums.ts","../src/host/host.schemas.ts"],"names":["HOST_DATE_RANGE_PRESETS","HostOverviewQuerySchema","z","HostEventsTabSchema","HostSearchQuerySchema","HostEventPatchSchema","CategorySchema","CurrencySchema","VisibilitySchema","EventReplayAccess","HostEventsListQuerySchema","PaginationParamsSchema","HostEventRowResponseSchema","HostEventsTabResponseSchema","PaginationResponseSchema","HostEventsTabCountsResponseSchema","HostEventWizardStartSchema","HostEventsListPagedQuerySchema","EventProductionMode","HostEventWizardStartResponseSchema","HostEventWizardStepResponseSchema","MoneySchema","HostEventWizardPublishResponseSchema","HostEventCancelResponseSchema","MoneyKpiSchema","UpcomingEventsKpiSchema","LiveNowKpiSchema","TotalViewsKpiSchema","LiveEventEntrySchema","UpcomingEventRailEntrySchema","HostActivityEntrySchema","HostOverviewResponseSchema","HostActivityListPageSchema","HostSearchHitSchema","HostSearchResponseSchema","HostNotificationsUnreadCountSchema","HostEventsTabResponseClassSchema","HostEventFullResponseSchema","EventStreamingMode","HostEventWizardCurrentResponseSchema","ReadinessItemIdSchema","ReadinessItemStateSchema","ReadinessCtaSchema","ReadinessBlockReasonSchema","StreamingStatusSchema","ProductionModeSchema","ReadinessItemSchema","HostEventReadinessBlockSchema","ListHostEventDashboardQuerySchema","BookingState","HostEventCrewMemberSchema","HostProductionCrewPhaseSchema","ListHostProductionCrewQuerySchema","HostProductionCrewItemSchema","HostEventAudienceResponseSchema","HostEventReplayPerformanceResponseSchema","HostEventDashboardPostEventBlockSchema","PagedHostProductionCrewResponseSchema","HostEventDashboardResponseSchema","HostEventReadinessResponseSchema","ProducerAssignedEventResponseSchema","HostEventShareResponseSchema","LiveConsoleSliceSchema","EndedReplayStateSchema","LiveIngestHealthSchema","EndedReasonSchema","EventStreamAlertKindSchema","EventStreamAlertSeveritySchema","HostLiveConsoleEventSchema","EventState","HostLiveConsoleControlsSchema","HostLiveConsoleMetricsSchema","HostLiveConsoleTelemetrySchema","HostLiveConsoleCrewMemberSchema","HostLiveConsoleAlertSchema","HostLiveConsoleChatSchema","ChatMessageSchema","HostLiveConsoleEndedSchema","HostLiveConsolePayloadSchema","HostLivePreviewSchema","HostEventEngagementTimelineQuerySchema","HostEventEngagementTimelineBucketSchema","HostEventEngagementTimelineResponseSchema"],"mappings":"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","file":"chunk-7YTPBEOO.mjs","sourcesContent":["export const HOST_DATE_RANGE_PRESETS = ['last7d', 'last30d', 'last90d'] as const;\n","import z from 'zod';\nimport { BookingState } from '../booking/booking.enums';\nimport { ChatMessageSchema } from '../chat';\nimport { MoneySchema, PaginationParamsSchema, PaginationResponseSchema } from '../common';\nimport {\n CategorySchema,\n CurrencySchema,\n EventProductionMode,\n EventReplayAccess,\n EventState,\n EventStreamingMode,\n HostLivePreviewSchema,\n VisibilitySchema,\n} from '../event';\nimport { HOST_DATE_RANGE_PRESETS } from './host.enums';\n\nexport const HostOverviewQuerySchema = z.object({\n range: z.enum([...HOST_DATE_RANGE_PRESETS, 'custom'] as const).optional(),\n start: z.iso.datetime().optional(),\n end: z.iso.datetime().optional(),\n});\n\nexport const HostEventsTabSchema = z.enum(['UPCOMING', 'LIVE', 'ENDED', 'DRAFTS']);\n\nexport const HostSearchQuerySchema = z.object({\n q: z.string().trim().min(2).max(120),\n limit: z.coerce.number().int().min(1).max(10).default(10),\n});\n\nexport const HostEventPatchSchema = z.object({\n title: z.string().min(1).max(120).optional(),\n description: z.string().max(2000).optional(),\n coverImageUrl: z.any().optional(),\n previewClipUrl: z.url().nullable().optional(),\n ticketPrice: z.string().optional(),\n\n category: CategorySchema.optional(),\n scheduledStartLocal: z.iso.datetime({ local: true, offset: false }).optional(),\n durationMinutes: z.number().int().positive().optional(),\n tags: z.array(z.string()).optional(),\n location: z.string().max(255).optional(),\n\n // Access & Pricing\n accessModel: z.enum(['FREE', 'PAID']).optional(),\n currency: CurrencySchema.optional(),\n maxTickets: z.number().int().positive().nullable().optional(),\n visibility: VisibilitySchema.optional(),\n guestEmails: z.array(z.email()).optional(),\n replayAccess: z.enum(EventReplayAccess).optional(),\n replayWindow: z.number().int().positive().optional(),\n replayPrice: z.number().nonnegative().optional(),\n productionMode: z.enum(['SELF', 'HIRE']).optional(),\n crewIds: z.array(z.uuid()).optional(),\n productionNotes: z.string().max(2000).nullable().optional(),\n backupStreamEnabled: z.boolean().optional(),\n});\n\nexport const HostEventsListQuerySchema = z.object({\n tab: HostEventsTabSchema,\n ...PaginationParamsSchema.shape,\n});\n\nexport const HostEventRowResponseSchema = z.object({\n eventId: z.string(),\n title: z.string(),\n date: z.iso.datetime(),\n ticketsSold: z.number(),\n plannedDurationMinutes: z.number().nullable(),\n revenue: z.object({\n currency: z.string(),\n value: z.string(),\n }),\n status: z.enum(['ACTIVE', 'PAUSED', 'LIVE', 'ENDED', 'DRAFT', 'CANCELLED']),\n});\n\nexport const HostEventsTabResponseSchema = z.object({\n tab: HostEventsTabSchema,\n rows: z.array(HostEventRowResponseSchema),\n ...PaginationResponseSchema.shape,\n});\n\nexport const HostEventsTabCountsResponseSchema = z.object({\n upcoming: z.number(),\n live: z.number(),\n ended: z.number(),\n drafts: z.number(),\n});\n\nexport const HostEventWizardStartSchema = z.object({\n title: z.string().min(3).max(120).optional(),\n});\n\nexport const HostEventsListPagedQuerySchema = z.object({\n tab: HostEventsTabSchema,\n mode: z.enum(EventProductionMode).optional(),\n ...PaginationParamsSchema.shape,\n});\n\nexport const HostEventWizardStartResponseSchema = z.object({\n id: z.uuid(),\n state: z.literal('DRAFT'),\n wizardStep: z.number().int().min(1).max(5).nullable(),\n});\n\nexport const HostEventWizardStepResponseSchema = z.object({\n id: z.uuid(),\n wizardStep: z.number().int().min(1).max(5).nullable(),\n streamingVerified: z.boolean().optional(),\n verificationToken: z.string().optional(),\n crewIds: z.array(z.uuid()).optional(),\n /** Present on step-3 responses when Assign Role rows exist. */\n crewAssignments: z\n .array(\n z.object({\n id: z.uuid(),\n producerId: z.uuid(),\n role: z.string(),\n state: z.string(),\n compensation: MoneySchema,\n location: z.string(),\n }),\n )\n .optional(),\n});\n\nexport const HostEventWizardPublishResponseSchema = z.object({\n id: z.uuid(),\n state: z.literal('SCHEDULED'),\n publishedAt: z.iso.datetime().nullable(),\n bookingIds: z.array(z.uuid()),\n});\n\nexport const HostEventCancelResponseSchema = z.object({\n id: z.uuid(),\n state: z.literal('CANCELLED'),\n cancelledAt: z.iso.datetime().nullable(),\n});\n\n/**\n * Overview KPI tile with a money value + prior-period delta. Amount is\n * a MoneyDto per MONEY_MULTI_CURRENCY.md §4 so the FE formats without\n * threading currency separately. `deltaPct` is null when the prior\n * period had zero (avoids \"+∞%\").\n */\nconst MoneyKpiSchema = z.object({\n amount: MoneySchema,\n deltaPct: z.number().nullable(),\n});\n\nconst UpcomingEventsKpiSchema = z.object({\n count: z.number().int(),\n nextStartsAt: z.string().nullable(),\n});\n\nconst LiveNowKpiSchema = z.object({\n eventCount: z.number().int(),\n totalViewers: z.number().int(),\n});\n\nconst TotalViewsKpiSchema = z.object({\n value: z.number().int(),\n deltaPct: z.number().nullable(),\n});\n\nconst LiveEventEntrySchema = z.object({\n eventId: z.uuid(),\n title: z.string(),\n viewers: z.number().int(),\n});\n\nconst UpcomingEventRailEntrySchema = z.object({\n eventId: z.uuid(),\n title: z.string(),\n scheduledStart: z.string(),\n canGoLive: z.boolean(),\n});\n\nconst HostActivityEntrySchema = z.object({\n kind: z.string(),\n subjectType: z.enum(['Event', 'Booking', 'PaymentIntent', 'ReplayPurchase']),\n subjectId: z.string(),\n occurredAt: z.number().int(),\n payload: z.record(z.string(), z.unknown()),\n dedupeId: z.string(),\n});\n\nexport const HostOverviewResponseSchema = z.object({\n range: z.object({\n start: z.string(),\n end: z.string(),\n preset: z.string().optional(),\n }),\n kpis: z.object({\n totalRevenue: MoneyKpiSchema,\n upcomingEvents: UpcomingEventsKpiSchema,\n liveNow: LiveNowKpiSchema,\n totalViews: TotalViewsKpiSchema,\n }),\n live: z.array(LiveEventEntrySchema),\n upcoming: z.array(UpcomingEventRailEntrySchema),\n activity: z.array(HostActivityEntrySchema),\n});\n\nexport const HostActivityListPageSchema = z.object({\n items: z.array(HostActivityEntrySchema),\n ...PaginationResponseSchema.shape,\n});\n\nexport const HostSearchHitSchema = z.object({\n eventId: z.uuid(),\n title: z.string(),\n scheduledStart: z.string(),\n state: z.string(),\n});\n\nexport const HostSearchResponseSchema = z.object({\n hits: z.array(HostSearchHitSchema),\n});\n\nexport const HostNotificationsUnreadCountSchema = z.object({\n count: z.number().int(),\n});\n\nexport const HostEventsTabResponseClassSchema = z.object({\n tab: HostEventsTabSchema,\n items: z.array(HostEventRowResponseSchema),\n ...PaginationResponseSchema.shape,\n});\n\nexport const HostEventFullResponseSchema = z.object({\n id: z.uuid(),\n hostId: z.uuid(),\n title: z.string(),\n description: z.string().nullable(),\n coverImageUrl: z.string().nullable(),\n previewClipUrl: z.string().nullable(),\n venueLocation: z.string().nullable(),\n scheduledStartLocal: z.string(),\n scheduledEndLocal: z.string(),\n scheduledEnd: z.iso.datetime(),\n scheduledStart: z.iso.datetime(),\n timezone: z.string(),\n expectedAudience: z.number().int().nullable(),\n plannedDurationMinutes: z.number().int().nullable(),\n visibility: z.string(),\n accessModel: z.string(),\n /** MoneyDto per MONEY_MULTI_CURRENCY.md §4; null for FREE events. */\n ticketPrice: MoneySchema.nullable(),\n maxTickets: z.number().int().nullable(),\n allowlistData: z.array(z.string()),\n replayAccess: z.enum(EventReplayAccess),\n /** MoneyDto — inherits the event's currency. Zero for free replays. */\n replayAccessFee: MoneySchema,\n retentionDays: z.number().int(),\n replayAvailableUntil: z.string().nullable(),\n shareableUrl: z.string().nullable(),\n state: z.string(),\n tags: z.array(z.string()),\n isFeatured: z.boolean(),\n createdAt: z.string(),\n updatedAt: z.string(),\n publishedAt: z.string().nullable(),\n liveStartedAt: z.string().nullable(),\n liveEndedAt: z.string().nullable(),\n cancelledAt: z.string().nullable(),\n cancelledReason: z.string().nullable(),\n category: z.string(),\n wizardStep: z.number().int().nullable(),\n productionMode: z.string().nullable(),\n productionNotes: z.string().nullable(),\n streamingMode: z.enum(EventStreamingMode).nullable(),\n});\n\nexport const HostEventWizardCurrentResponseSchema = HostEventFullResponseSchema.extend({\n crewIds: z.array(z.uuid()),\n /** Direct Hire Assign Role rows (additive; empty when FE uses crewIds-only path). */\n crewAssignments: z\n .array(\n z.object({\n id: z.uuid(),\n producerId: z.uuid(),\n role: z.string(),\n state: z.string(),\n compensation: MoneySchema,\n location: z.string(),\n }),\n )\n .optional()\n .default([]),\n});\n\nexport const ReadinessItemIdSchema = z.enum([\n 'EVENT_DETAILS',\n 'PRICING',\n 'CREW_ASSIGNED',\n 'STREAM_TESTED',\n]);\n\nexport const ReadinessItemStateSchema = z.enum(['PASS', 'WARN', 'FAIL']);\n\nconst ReadinessCtaSchema = z.enum([\n 'OPEN_WIZARD_STEP_1',\n 'OPEN_WIZARD_STEP_2',\n 'OPEN_WIZARD_STEP_3',\n 'OPEN_HIRE_CREW',\n 'REPLACE_CREW',\n 'RUN_STREAM_TEST',\n]);\n\nexport const ReadinessBlockReasonSchema = z.enum([\n 'CHECKLIST_INCOMPLETE',\n 'BEFORE_WINDOW',\n 'AFTER_WINDOW',\n 'ALREADY_LIVE',\n 'NOT_OWNED',\n]);\n\nexport const StreamingStatusSchema = z.enum([\n 'NOT_PROVISIONED',\n 'READY_FOR_TEST',\n 'LIVE',\n 'STREAM_TEST_FAILED',\n 'STREAM_TEST_SUCCESSFUL',\n]);\n\nexport const ProductionModeSchema = z.enum(['SELF', 'HIRE']);\n\nexport const ReadinessItemSchema = z.object({\n id: ReadinessItemIdSchema,\n label: z.string(),\n state: ReadinessItemStateSchema,\n detail: z.string().optional(),\n cta: ReadinessCtaSchema.optional(),\n});\n\nexport const HostEventReadinessBlockSchema = z.object({\n progress: z.number().min(0).max(1),\n items: z.array(ReadinessItemSchema),\n canGoLive: z.boolean(),\n blockReason: ReadinessBlockReasonSchema.optional(),\n});\n\n/** `GET /host/events/:id/dashboard` — optional active-crew filters */\nexport const ListHostEventDashboardQuerySchema = z.object({\n /** Case-insensitive match on producer display name, role, or service category */\n crewSearch: z.string().trim().min(2).max(100).optional(),\n crewState: z.enum(BookingState).optional(),\n});\n\nexport const HostEventCrewMemberSchema = z.object({\n bookingId: z.string(),\n producerProfileId: z.string(),\n displayName: z.string(),\n companyName: z.string(),\n producerAvatarUrl: z.url().nullable(),\n producerServiceCategoryLabels: z.array(z.string()),\n producerEquipmentLabels: z.array(z.string()),\n producerIsVerified: z.boolean(),\n /** From Booking.serviceDetails.role (not scopeOfWork). */\n role: z.string().nullable(),\n /** From Booking.serviceDetails.responsibilities. */\n responsibilities: z.string().nullable(),\n state: z.enum(BookingState),\n confirmedAt: z.iso.datetime().nullable(),\n});\n\nexport const HostProductionCrewPhaseSchema = z.enum(['ACTIVE', 'PAST']);\n\n/** `GET /host/production/crew` — host-level crew roster across events */\nexport const ListHostProductionCrewQuerySchema = z.object({\n phase: HostProductionCrewPhaseSchema.default('ACTIVE'),\n eventId: z.uuid().optional(),\n crewSearch: z.string().trim().min(2).max(100).optional(),\n crewState: z.enum(BookingState).optional(),\n ...PaginationParamsSchema.shape,\n});\n\nexport const HostProductionCrewItemSchema = HostEventCrewMemberSchema.extend({\n eventId: z.uuid(),\n eventTitle: z.string(),\n});\n\nexport const HostEventAudienceResponseSchema = z.object({\n eventId: z.uuid(),\n totalViewers: z.number().int().nonnegative(),\n uniqueViewers: z.number().int().nonnegative(),\n peakConcurrent: z.number().int().nonnegative(),\n registeredCount: z.number().int().nonnegative(),\n paidCount: z.number().int().nonnegative(),\n refundedCount: z.number().int().nonnegative(),\n returningViewerCount: z.number().int().nonnegative().nullable(),\n highValueBuyerCount: z.number().int().nonnegative().nullable(),\n grossRevenue: MoneySchema,\n computedAt: z.iso.datetime(),\n byDeviceType: z.record(z.string(), z.number()).nullable(),\n});\n\nexport const HostEventReplayPerformanceResponseSchema = z.object({\n eventId: z.uuid(),\n totalReplayViewers: z.number().int().nonnegative(),\n completedViews: z.number().int().nonnegative(),\n /** Ratio in [0, 1]; null when no session carries a duration yet. */\n avgWatchProgressPct: z.number().min(0).max(1).nullable(),\n totalWatchTimeSec: z.number().int().nonnegative(),\n activeReplayPurchases: z.number().int().nonnegative(),\n replayRevenue: MoneySchema,\n computedAt: z.iso.datetime(),\n points: z.array(\n z.object({\n date: z.string(),\n viewsCount: z.number().int().nonnegative(),\n revenue: MoneySchema,\n }),\n ),\n});\n\nexport const HostEventDashboardPostEventBlockSchema = z.object({\n audience: HostEventAudienceResponseSchema.nullable(),\n replayPerformance: HostEventReplayPerformanceResponseSchema.nullable(),\n});\n\nexport const PagedHostProductionCrewResponseSchema = z.object({\n items: z.array(HostProductionCrewItemSchema),\n ...PaginationResponseSchema.shape,\n});\n\nexport const HostEventDashboardResponseSchema = z.object({\n serverNow: z.iso.datetime(),\n\n event: z.object({\n id: z.string(),\n title: z.string(),\n description: z.string().nullable(),\n coverImageUrl: z.string().nullable(),\n scheduledStartLocal: z.iso.datetime({ local: true, offset: false }),\n scheduledStart: z.iso.datetime({ local: true, offset: false }),\n scheduledEndLocal: z.iso.datetime({ local: true, offset: false }),\n scheduledEnd: z.iso.datetime(),\n timezone: z.string(),\n accessModel: z.string(),\n ticketPrice: MoneySchema.nullable(),\n shareableUrl: z.string().nullable(),\n state: z.string(),\n visibility: z.string(),\n productionMode: ProductionModeSchema.nullable(),\n goLiveEligibleAt: z.iso.datetime().nullable(),\n replayAccess: z.enum(EventReplayAccess),\n replayAccessFee: MoneySchema,\n retentionDays: z.number().int(),\n replayAvailableUntil: z.string().nullable(),\n }),\n\n ticketing: z.object({\n totalPayingCapacity: z.number().int().nullable(),\n ticketsSold: z.number().int(),\n revenue: MoneySchema,\n liveRevenue: MoneySchema,\n ticketRevenue: MoneySchema,\n replayRevenue: MoneySchema,\n hostShare: MoneySchema,\n platformFee: MoneySchema,\n }),\n\n audience: z.object({\n registered: z.number().int(),\n watchingNow: z.number().int().nonnegative(),\n byCountry: z.record(z.string(), z.number().int()).nullable(),\n byTrafficSource: z.record(z.string(), z.number().int()).nullable(),\n }),\n\n readiness: HostEventReadinessBlockSchema,\n\n production: z.object({\n mode: ProductionModeSchema,\n streamingMode: z.enum(EventStreamingMode).nullable(),\n crew: z.array(HostEventCrewMemberSchema),\n /** Cancelled/declined slots not yet replaced — drives the Replace Crew banner. */\n vacantCrewCount: z.number().int().nonnegative(),\n }),\n\n streaming: z.object({\n status: StreamingStatusSchema,\n serverUrl: z.string().nullable(),\n streamKey: z.string().nullable(),\n lastStreamTestAt: z.iso.datetime().nullable(),\n testAvailableAt: z.iso.datetime().nullable(),\n lastStreamTestFailedAt: z.iso.datetime().nullable(),\n lastStreamTestFailureReason: z.string().nullable(),\n }),\n\n share: z.object({\n shareableUrl: z.string(),\n slug: z.string(),\n }),\n postEvent: HostEventDashboardPostEventBlockSchema.nullable(),\n});\n\nexport const HostEventReadinessResponseSchema = HostEventReadinessBlockSchema;\n\n/**\n * `GET /marketplace/producer/events/:id` — assigned-event execution\n * context for a booked producer. Dashboard subset: schedule,\n * go-live, readiness, streaming status. Never discloses streamKey\n * (ingest credentials stay host-only).\n */\nexport const ProducerAssignedEventResponseSchema = z.object({\n serverNow: z.iso.datetime(),\n bookingId: z.uuid(),\n event: z.object({\n id: z.uuid(),\n title: z.string(),\n description: z.string().nullable(),\n coverImageUrl: z.string().nullable(),\n scheduledStartLocal: z.iso.datetime({ local: true, offset: false }),\n scheduledStart: z.iso.datetime(),\n scheduledEndLocal: z.iso.datetime({ local: true, offset: false }),\n scheduledEnd: z.iso.datetime(),\n timezone: z.string(),\n state: z.string(),\n visibility: z.string(),\n productionMode: ProductionModeSchema.nullable(),\n goLiveEligibleAt: z.iso.datetime().nullable(),\n }),\n readiness: HostEventReadinessBlockSchema,\n streaming: z.object({\n status: StreamingStatusSchema,\n serverUrl: z.string().nullable(),\n /** Always null — stream key is never disclosed on this surface. */\n streamKey: z.null(),\n lastStreamTestAt: z.iso.datetime().nullable(),\n testAvailableAt: z.iso.datetime().nullable(),\n lastStreamTestFailedAt: z.iso.datetime().nullable(),\n lastStreamTestFailureReason: z.string().nullable(),\n }),\n});\n\n// Share endpoint response\nexport const HostEventShareResponseSchema = z.object({\n shareableUrl: z.string(),\n slug: z.string(),\n copyText: z.string(),\n channelLinks: z.object({\n twitter: z.string(),\n facebook: z.string(),\n email: z.string(),\n embed: z.string(),\n }),\n qrCodeDataUrl: z.string(),\n});\n\n// ─── Host live-console (`GET /host/events/:id/live-console`) ─────────\n\nexport const LiveConsoleSliceSchema = z.enum(['PRE_LIVE', 'LIVE', 'ENDED']);\n\nexport const EndedReplayStateSchema = z.enum(['PROCESSING', 'READY', 'UNAVAILABLE']);\n\nexport const LiveIngestHealthSchema = z.enum(['HEALTHY', 'DEGRADED', 'INGEST_DOWN']);\n\nexport const EndedReasonSchema = z.enum([\n 'HOST_TERMINATED',\n 'HOST_TERMINATED_EARLY',\n 'AUTO_AFTER_SILENCE',\n 'AUTO_AT_SCHEDULED_END',\n 'ADMIN_FORCED',\n]);\n\nexport const EventStreamAlertKindSchema = z.enum([\n 'AUDIO_QUALITY',\n 'VIDEO_QUALITY',\n 'BITRATE_DROP',\n 'INGEST_DISCONNECTED',\n 'INGEST_RECONNECTED',\n 'RECORDING_FAILED',\n 'STREAM_DENIED',\n]);\n\nexport const EventStreamAlertSeveritySchema = z.enum(['INFO', 'WARN', 'ERROR']);\n\nexport const HostLiveConsoleEventSchema = z.object({\n id: z.string(),\n title: z.string(),\n scheduledStart: z.iso.datetime(),\n scheduledEnd: z.iso.datetime(),\n scheduledStartLocal: z.iso.datetime({ local: true, offset: false }),\n scheduledEndLocal: z.iso.datetime({ local: true, offset: false }),\n state: z.enum(EventState),\n currency: z.string(),\n accessModel: z.string(),\n});\n\nexport const HostLiveConsoleControlsSchema = z.object({\n streamEnabled: z.boolean(),\n canGoLive: z.boolean(),\n canEndLive: z.boolean(),\n requiresReauthToEnd: z.boolean(),\n});\n\nexport const HostLiveConsoleMetricsSchema = z.object({\n viewers: z.number().int(),\n peakViewers: z.number().int(),\n ticketsSold: z.number().int(),\n revenue: z.object({\n value: z.string(),\n currency: z.string(),\n }),\n joinedTotal: z.number().int(),\n});\n\nexport const HostLiveConsoleTelemetrySchema = z.object({\n bitrateKbps: z.number(),\n resolution: z.string(),\n latencyMs: z.number().nullable(),\n ingestHealth: LiveIngestHealthSchema,\n lastSampleAt: z.iso.datetime(),\n});\n\nexport const HostLiveConsoleCrewMemberSchema = z.object({\n bookingId: z.string(),\n producerProfileId: z.string(),\n displayName: z.string(),\n role: z.string().nullable(),\n online: z.boolean(),\n});\n\nexport const HostLiveConsoleAlertSchema = z.object({\n id: z.string(),\n kind: EventStreamAlertKindSchema,\n severity: EventStreamAlertSeveritySchema,\n message: z.string(),\n startedAt: z.iso.datetime(),\n acknowledgedAt: z.iso.datetime().nullable(),\n});\n\nexport const HostLiveConsoleChatSchema = z.object({\n enabled: z.boolean(),\n socketNamespace: z.string(),\n backfill: z.array(ChatMessageSchema),\n});\n\nexport const HostLiveConsoleEndedSchema = z.object({\n endedAt: z.iso.datetime(),\n endedEarly: z.boolean(),\n endedReason: EndedReasonSchema,\n replayState: EndedReplayStateSchema,\n replayAvailableAt: z.iso.datetime().nullable(),\n});\n\nexport const HostLiveConsolePayloadSchema = z.object({\n serverNow: z.iso.datetime(),\n slice: LiveConsoleSliceSchema,\n event: HostLiveConsoleEventSchema,\n controls: HostLiveConsoleControlsSchema,\n metrics: HostLiveConsoleMetricsSchema,\n telemetry: HostLiveConsoleTelemetrySchema.nullable(),\n crew: z.array(HostLiveConsoleCrewMemberSchema),\n alerts: z.array(HostLiveConsoleAlertSchema),\n activity: z.array(z.never()),\n chat: HostLiveConsoleChatSchema,\n ended: HostLiveConsoleEndedSchema.nullable(),\n livePreview: HostLivePreviewSchema.nullable(),\n});\n\nexport const HostEventEngagementTimelineQuerySchema = z.object({\n from: z.iso.datetime().optional(),\n to: z.iso.datetime().optional(),\n});\n\nexport const HostEventEngagementTimelineBucketSchema = z.object({\n bucketStart: z.iso.datetime(),\n concurrentViewers: z.number().int().nonnegative(),\n chatMessages: z.number().int().nonnegative().nullable(),\n reactions: z.number().int().nonnegative().nullable(),\n bitrateKbps: z.number().int().nonnegative().nullable(),\n ingestHealth: z.enum(['HEALTHY', 'DEGRADED', 'INGEST_DOWN']).nullable(),\n resolution: z.string().nullable(),\n});\n\nexport const HostEventEngagementTimelineResponseSchema = z.object({\n eventId: z.uuid(),\n from: z.iso.datetime(),\n to: z.iso.datetime(),\n granularity: z.literal('minute'),\n buckets: z.array(HostEventEngagementTimelineBucketSchema),\n});\n"]}
@@ -0,0 +1,2 @@
1
+ 'use strict';var chunkFG6EV3WQ_js=require('./chunk-FG6EV3WQ.js'),chunkEAKBQ5VD_js=require('./chunk-EAKBQ5VD.js'),chunkO3GYEMUB_js=require('./chunk-O3GYEMUB.js'),zod=require('zod');var J=[chunkFG6EV3WQ_js.b.REJECTED,chunkFG6EV3WQ_js.b.CANCELLED,chunkFG6EV3WQ_js.b.CLOSED],M=[...J,chunkFG6EV3WQ_js.b.IN_DISPUTE],$={[chunkFG6EV3WQ_js.b.DRAFT]:[chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RESPONSE,chunkFG6EV3WQ_js.b.CANCELLED],[chunkFG6EV3WQ_js.b.REQUESTED]:[chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RESPONSE,chunkFG6EV3WQ_js.b.CANCELLED],[chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RESPONSE]:[chunkFG6EV3WQ_js.b.IN_NEGOTIATION,chunkFG6EV3WQ_js.b.ACCEPTED,chunkFG6EV3WQ_js.b.REJECTED,chunkFG6EV3WQ_js.b.CANCELLED],[chunkFG6EV3WQ_js.b.IN_NEGOTIATION]:[chunkFG6EV3WQ_js.b.ACCEPTED,chunkFG6EV3WQ_js.b.REJECTED,chunkFG6EV3WQ_js.b.CANCELLED],[chunkFG6EV3WQ_js.b.ACCEPTED]:[chunkFG6EV3WQ_js.b.AWAITING_ESCROW_FUNDING,chunkFG6EV3WQ_js.b.CANCELLED],[chunkFG6EV3WQ_js.b.AWAITING_ESCROW_FUNDING]:[chunkFG6EV3WQ_js.b.CONFIRMED,chunkFG6EV3WQ_js.b.CANCELLED],[chunkFG6EV3WQ_js.b.CONFIRMED]:[chunkFG6EV3WQ_js.b.IN_PROGRESS,chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RECONFIRM],[chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RECONFIRM]:[chunkFG6EV3WQ_js.b.CONFIRMED,chunkFG6EV3WQ_js.b.CANCELLED],[chunkFG6EV3WQ_js.b.IN_PROGRESS]:[chunkFG6EV3WQ_js.b.SERVICE_COMPLETED,chunkFG6EV3WQ_js.b.CANCELLED],[chunkFG6EV3WQ_js.b.SERVICE_COMPLETED]:[chunkFG6EV3WQ_js.b.CLOSED],[chunkFG6EV3WQ_js.b.IN_DISPUTE]:[chunkFG6EV3WQ_js.b.CLOSED],[chunkFG6EV3WQ_js.b.REJECTED]:[],[chunkFG6EV3WQ_js.b.CANCELLED]:[],[chunkFG6EV3WQ_js.b.CLOSED]:[]},H={[`${chunkFG6EV3WQ_js.b.DRAFT}->${chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RESPONSE}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.SYSTEM],[`${chunkFG6EV3WQ_js.b.DRAFT}->${chunkFG6EV3WQ_js.b.CANCELLED}`]:[chunkFG6EV3WQ_js.f.HOST],[`${chunkFG6EV3WQ_js.b.REQUESTED}->${chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RESPONSE}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.SYSTEM],[`${chunkFG6EV3WQ_js.b.REQUESTED}->${chunkFG6EV3WQ_js.b.CANCELLED}`]:[chunkFG6EV3WQ_js.f.HOST],[`${chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RESPONSE}->${chunkFG6EV3WQ_js.b.IN_NEGOTIATION}`]:[chunkFG6EV3WQ_js.f.PRODUCER],[`${chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RESPONSE}->${chunkFG6EV3WQ_js.b.ACCEPTED}`]:[chunkFG6EV3WQ_js.f.PRODUCER],[`${chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RESPONSE}->${chunkFG6EV3WQ_js.b.REJECTED}`]:[chunkFG6EV3WQ_js.f.PRODUCER],[`${chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RESPONSE}->${chunkFG6EV3WQ_js.b.CANCELLED}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.PRODUCER],[`${chunkFG6EV3WQ_js.b.IN_NEGOTIATION}->${chunkFG6EV3WQ_js.b.ACCEPTED}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.PRODUCER],[`${chunkFG6EV3WQ_js.b.IN_NEGOTIATION}->${chunkFG6EV3WQ_js.b.REJECTED}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.PRODUCER],[`${chunkFG6EV3WQ_js.b.IN_NEGOTIATION}->${chunkFG6EV3WQ_js.b.CANCELLED}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.PRODUCER],[`${chunkFG6EV3WQ_js.b.ACCEPTED}->${chunkFG6EV3WQ_js.b.AWAITING_ESCROW_FUNDING}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.SYSTEM],[`${chunkFG6EV3WQ_js.b.ACCEPTED}->${chunkFG6EV3WQ_js.b.CANCELLED}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.PRODUCER],[`${chunkFG6EV3WQ_js.b.AWAITING_ESCROW_FUNDING}->${chunkFG6EV3WQ_js.b.CONFIRMED}`]:[chunkFG6EV3WQ_js.f.SYSTEM,chunkFG6EV3WQ_js.f.ADMIN],[`${chunkFG6EV3WQ_js.b.AWAITING_ESCROW_FUNDING}->${chunkFG6EV3WQ_js.b.CANCELLED}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.ADMIN],[`${chunkFG6EV3WQ_js.b.CONFIRMED}->${chunkFG6EV3WQ_js.b.IN_PROGRESS}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.PRODUCER,chunkFG6EV3WQ_js.f.ADMIN],[`${chunkFG6EV3WQ_js.b.CONFIRMED}->${chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RECONFIRM}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.SYSTEM,chunkFG6EV3WQ_js.f.ADMIN],[`${chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RECONFIRM}->${chunkFG6EV3WQ_js.b.CONFIRMED}`]:[chunkFG6EV3WQ_js.f.PRODUCER,chunkFG6EV3WQ_js.f.ADMIN],[`${chunkFG6EV3WQ_js.b.AWAITING_PRODUCER_RECONFIRM}->${chunkFG6EV3WQ_js.b.CANCELLED}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.PRODUCER,chunkFG6EV3WQ_js.f.ADMIN],[`${chunkFG6EV3WQ_js.b.IN_PROGRESS}->${chunkFG6EV3WQ_js.b.SERVICE_COMPLETED}`]:[chunkFG6EV3WQ_js.f.PRODUCER,chunkFG6EV3WQ_js.f.SYSTEM,chunkFG6EV3WQ_js.f.ADMIN],[`${chunkFG6EV3WQ_js.b.IN_PROGRESS}->${chunkFG6EV3WQ_js.b.CANCELLED}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.ADMIN],[`${chunkFG6EV3WQ_js.b.SERVICE_COMPLETED}->${chunkFG6EV3WQ_js.b.CLOSED}`]:[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.ADMIN,chunkFG6EV3WQ_js.f.SYSTEM],[`${chunkFG6EV3WQ_js.b.IN_DISPUTE}->${chunkFG6EV3WQ_js.b.CLOSED}`]:[chunkFG6EV3WQ_js.f.ADMIN,chunkFG6EV3WQ_js.f.HOST]},w=[chunkFG6EV3WQ_js.b.REJECTED,chunkFG6EV3WQ_js.b.CANCELLED,chunkFG6EV3WQ_js.b.IN_DISPUTE];function W(i,a){return `${i}->${a}`}function F(i){let a=$[i]??[];return M.includes(i)?a:[...a,chunkFG6EV3WQ_js.b.IN_DISPUTE]}function ge(i,a){return F(i).includes(a)}function z(i,a){return a===chunkFG6EV3WQ_js.b.IN_DISPUTE&&!M.includes(i)?[chunkFG6EV3WQ_js.f.HOST,chunkFG6EV3WQ_js.f.PRODUCER]:H[W(i,a)]??[]}function Ee(i,a,S){return z(i,a).includes(S)}function Ie(i,a){return w.includes(a)}var Ae=zod.z.object({origin:zod.z.enum(chunkFG6EV3WQ_js.a),eventId:zod.z.uuid().optional(),producerId:zod.z.uuid(),agreedAmount:zod.z.number().min(0)}),Te=zod.z.object({escrowReference:zod.z.string()}),Ce=zod.z.object({id:zod.z.uuid(),eventId:zod.z.uuid().optional(),hostId:zod.z.uuid(),producerId:zod.z.uuid(),quotedPrice:zod.z.number(),currency:zod.z.string(),scopeOfWork:zod.z.record(zod.z.string(),zod.z.any()).optional(),requiredStartAt:zod.z.iso.datetime(),requiredEndAt:zod.z.iso.datetime(),bookingState:zod.z.enum(chunkFG6EV3WQ_js.b),paymentStatus:zod.z.enum(chunkFG6EV3WQ_js.e),escrowReference:zod.z.string().optional(),completedAt:zod.z.iso.datetime().optional(),createdAt:zod.z.iso.datetime(),updatedAt:zod.z.iso.datetime()}),De=zod.z.object({title:zod.z.string().max(255),description:zod.z.string(),requiredDate:zod.z.iso.datetime(),estimatedDurationMinutes:zod.z.number().int().positive().optional(),location:zod.z.string(),budgetRangeMin:zod.z.number().optional(),budgetRangeMax:zod.z.number().optional()}),Ne=zod.z.object({id:zod.z.uuid(),hostProfileId:zod.z.uuid(),eventId:zod.z.uuid().optional(),title:zod.z.string(),description:zod.z.string(),requiredDate:zod.z.iso.datetime(),estimatedDurationMinutes:zod.z.number().int().nullable().optional(),location:zod.z.string(),budgetRangeMin:zod.z.number().optional(),budgetRangeMax:zod.z.number().optional(),state:zod.z.enum(chunkFG6EV3WQ_js.c),proposalCount:zod.z.number(),createdAt:zod.z.iso.datetime()});var m={ONSITE:"ONSITE",REMOTE:"REMOTE"},P={LOW:"LOW",MID:"MID",HIGH:"HIGH"};var y=zod.z.record(zod.z.string(),zod.z.unknown()),Pe=zod.z.object({producerId:zod.z.uuid(),origin:zod.z.enum(chunkFG6EV3WQ_js.a),eventId:zod.z.uuid().optional(),jobListingId:zod.z.uuid().optional(),sourceIoiId:zod.z.uuid().optional(),agreedAmount:zod.z.coerce.number().nonnegative().optional(),scopeOfWork:zod.z.string().max(5e3).optional()}).superRefine((i,a)=>{i.origin===chunkFG6EV3WQ_js.a.EVENT_DIRECT&&!i.eventId&&a.addIssue({code:"custom",message:"eventId is required when origin is EVENT_DIRECT",path:["eventId"]}),i.origin===chunkFG6EV3WQ_js.a.MARKETPLACE_DIRECT&&(i.eventId&&a.addIssue({code:"custom",message:"eventId must not be set when origin is MARKETPLACE_DIRECT",path:["eventId"]}),i.sourceIoiId&&a.addIssue({code:"custom",message:"sourceIoiId must not be set when origin is MARKETPLACE_DIRECT",path:["sourceIoiId"]})),i.origin===chunkFG6EV3WQ_js.a.JOB_LISTING&&(i.sourceIoiId||a.addIssue({code:"custom",message:"sourceIoiId is required when origin is JOB_LISTING",path:["sourceIoiId"]}),i.eventId&&a.addIssue({code:"custom",message:"eventId must not be set when origin is JOB_LISTING",path:["eventId"]})),i.sourceIoiId&&i.origin!==chunkFG6EV3WQ_js.a.JOB_LISTING&&a.addIssue({code:"custom",message:"sourceIoiId is only allowed when origin is JOB_LISTING",path:["sourceIoiId"]});}),K=zod.z.object({id:zod.z.uuid(),title:zod.z.string(),state:zod.z.string(),timezone:zod.z.string(),scheduledStart:zod.z.iso.datetime(),scheduledStartLocal:zod.z.iso.datetime({local:true,offset:false}),scheduledEnd:zod.z.iso.datetime(),scheduledEndLocal:zod.z.iso.datetime({local:true,offset:false}),requiredStartAt:zod.z.iso.datetime(),requiredEndAt:zod.z.iso.datetime(),goLiveEligibleAt:zod.z.iso.datetime().nullable()}),C=zod.z.object({id:zod.z.uuid(),eventId:zod.z.uuid().nullable(),eventLinked:zod.z.boolean(),hostProfileId:zod.z.uuid(),producerProfileId:zod.z.uuid(),origin:zod.z.enum(chunkFG6EV3WQ_js.a),jobListingId:zod.z.uuid().nullable(),sourceIoiId:zod.z.uuid().nullable(),state:zod.z.enum(chunkFG6EV3WQ_js.b),agreedAmount:chunkO3GYEMUB_js.h.nullable(),scopeOfWork:zod.z.string().nullable(),createdAt:zod.z.string(),updatedAt:zod.z.string(),assignedEvent:K.nullable()}),ye=zod.z.object({bookingId:zod.z.uuid(),booking:C}),V=zod.z.string().trim().min(5).max(500),ve=zod.z.object({targetState:zod.z.enum(chunkFG6EV3WQ_js.b),reason:V.optional()}).superRefine((i,a)=>{(i.targetState===chunkFG6EV3WQ_js.b.REJECTED||i.targetState===chunkFG6EV3WQ_js.b.CANCELLED||i.targetState===chunkFG6EV3WQ_js.b.IN_DISPUTE)&&i.reason===void 0&&a.addIssue({code:"custom",message:"reason is required for this transition",path:["reason"]});}),_e=zod.z.object({booking:C}),Be=zod.z.object({notes:zod.z.string().max(2e3).optional()}),je=zod.z.object({notes:zod.z.string().max(2e3).optional()}),Ge=zod.z.object({booking:C,hostAcked:zod.z.boolean(),producerAcked:zod.z.boolean(),completed:zod.z.boolean(),forced:zod.z.boolean().optional()}),Q=(i,a)=>{if(i.eventId)return;i.eventTitle?.trim()||i.title?.trim()||a.addIssue({code:"custom",message:"eventTitle is required when eventId is not provided",path:["eventTitle"]});},D=(i,a)=>{i.requiredDateLocal!==void 0&&!i.timezone?.trim()&&a.addIssue({code:"custom",message:"timezone is required when requiredDateLocal is provided",path:["timezone"]});},N=zod.z.object({eventTitle:zod.z.string().min(1).max(200).optional(),title:zod.z.string().min(1).max(200).optional(),description:zod.z.string().min(1).max(5e3),responsibilities:zod.z.string().min(1),requirements:zod.z.string().min(1),role:zod.z.string().min(1).max(120),requiredCount:zod.z.coerce.number().int().min(1),requiredDateLocal:zod.z.iso.datetime({local:true,offset:false}).optional(),timezone:zod.z.string().min(1).optional(),requiredDate:zod.z.iso.datetime().optional(),estimatedDurationMinutes:zod.z.coerce.number().int().positive().optional(),location:zod.z.enum(m),notes:zod.z.string().max(2e3).optional(),compensation:zod.z.coerce.number().nonnegative().optional(),attachments:y.optional(),eventId:zod.z.uuid().optional()}),Y=N.superRefine(Q).superRefine(D),X=zod.z.object({eventTitle:zod.z.string().min(1).max(200).optional(),title:zod.z.string().min(1).max(200).optional(),description:zod.z.string().min(1).max(5e3),responsibilities:zod.z.string().min(1),requirements:zod.z.string().min(1),role:zod.z.string().min(1).max(120),requiredCount:zod.z.coerce.number().int().min(1),location:zod.z.enum(m),eventId:zod.z.uuid().optional()}),Z=X,Ue=N.partial().extend({saveAsDraft:zod.z.boolean().optional().default(false)}).superRefine(D).superRefine((i,a)=>{if(i.saveAsDraft)return;let S=Y.safeParse(i);S.success||a.addIssue({code:"custom",message:S.error.issues.map(q=>q.message).join("; ")});}),qe=N.partial().superRefine(D),Je=zod.z.object({...chunkO3GYEMUB_js.g.shape,location:zod.z.enum(m).optional(),search:zod.z.string().trim().min(2).max(100).optional(),roles:zod.z.string().trim().min(1).max(500).optional(),requiredDateFrom:zod.z.string().optional(),requiredDateTo:zod.z.string().optional(),minCompensation:zod.z.coerce.number().int().min(0).optional(),maxCompensation:zod.z.coerce.number().int().min(0).optional(),compensationTier:zod.z.enum(P).optional(),matchMyAvailability:zod.z.enum(["true","false"]).optional().transform(i=>i==="true")}),$e=zod.z.object({...chunkO3GYEMUB_js.g.shape,state:zod.z.enum(chunkFG6EV3WQ_js.c).optional(),search:zod.z.string().trim().min(2).max(100).optional()}),He=Z.superRefine((i,a)=>{if(i.eventId)return;i.eventTitle?.trim()||i.title?.trim()||a.addIssue({code:"custom",message:"eventTitle is required for standalone job listings",path:["eventTitle"]});}),we=zod.z.object({id:zod.z.uuid(),state:zod.z.literal("OPEN")}),We=zod.z.object({id:zod.z.uuid(),hostProfileId:zod.z.uuid(),eventId:zod.z.uuid().nullable(),title:zod.z.string(),eventTitle:zod.z.string().nullable(),notes:zod.z.string().nullable(),description:zod.z.string(),responsibilities:zod.z.string(),requirements:zod.z.string(),role:zod.z.string(),requiredCount:zod.z.number().int().min(1),requiredDate:zod.z.string().nullable(),requiredDateLocal:zod.z.string().nullable(),timezone:zod.z.string().nullable(),estimatedDurationMinutes:zod.z.number().int().nullable(),location:zod.z.enum(m),compensation:chunkO3GYEMUB_js.h.nullable(),attachments:zod.z.unknown().nullable(),state:zod.z.enum(chunkFG6EV3WQ_js.c),proposalCount:zod.z.number().int(),cancelledAt:zod.z.string().nullable(),cancelledReason:zod.z.string().nullable(),createdAt:zod.z.string(),updatedAt:zod.z.string()}),Fe=zod.z.object({reason:zod.z.string().trim().min(5).max(500).optional()}),ze=zod.z.object({id:zod.z.uuid(),state:zod.z.literal("CANCELLED"),cancelledAt:zod.z.iso.datetime().nullable()}),Ke=zod.z.object({id:zod.z.uuid(),state:zod.z.literal(chunkFG6EV3WQ_js.c.SUSPENDED)}),Ve=zod.z.object({id:zod.z.uuid(),state:zod.z.literal(chunkFG6EV3WQ_js.c.OPEN)}),Qe=zod.z.object({coverMessage:zod.z.string().min(1).max(2e3).optional(),proposedAmount:zod.z.coerce.number().nonnegative().optional(),availabilityNotes:zod.z.string().max(2e3).optional(),attachments:y.optional()}),v=zod.z.object({id:zod.z.uuid(),jobListingId:zod.z.uuid(),producerProfileId:zod.z.uuid(),coverMessage:zod.z.string().nullable(),proposedAmount:chunkO3GYEMUB_js.h.nullable(),availabilityNotes:zod.z.string().nullable(),state:zod.z.enum(chunkEAKBQ5VD_js.a),resultingBookingId:zod.z.uuid().nullable(),withdrawnAt:zod.z.string().nullable(),selectedAt:zod.z.string().nullable(),createdAt:zod.z.string(),updatedAt:zod.z.string()}),ee=v.extend({producerCompanyName:zod.z.string().nullable()}),A={CREATED_AT:"createdAt",UPDATED_AT:"updatedAt",PROPOSED_AMOUNT:"proposedAmount"},T={ASC:"asc",DESC:"desc"},Ye=zod.z.object({...chunkO3GYEMUB_js.g.shape,jobListingId:zod.z.uuid().optional(),state:zod.z.enum(chunkEAKBQ5VD_js.a).optional(),search:zod.z.string().trim().min(2).max(100).optional(),sortBy:zod.z.enum(A).default(A.CREATED_AT),sortOrder:zod.z.enum(T).default(T.DESC)}),Xe=ee.extend({producerDisplayName:zod.z.string(),producerAvatarUrl:zod.z.url().nullable(),producerServiceCategoryLabels:zod.z.array(zod.z.string()),producerEquipmentLabels:zod.z.array(zod.z.string()),producerIsVerified:zod.z.boolean(),jobListingTitle:zod.z.string(),jobListingRole:zod.z.string(),jobListingState:zod.z.enum(chunkFG6EV3WQ_js.c),jobListingLocation:zod.z.enum(m),jobListingEventId:zod.z.uuid().nullable(),jobListingEventTitle:zod.z.string().nullable()}),Ze=zod.z.object({...chunkO3GYEMUB_js.g.shape,jobListingId:zod.z.uuid().optional(),state:zod.z.enum(chunkEAKBQ5VD_js.a).optional(),search:zod.z.string().trim().min(2).max(100).optional(),sortBy:zod.z.enum(A).default(A.CREATED_AT),sortOrder:zod.z.enum(T).default(T.DESC)}),et=v.extend({hostBusinessName:zod.z.string().nullable(),jobListingTitle:zod.z.string(),jobListingRole:zod.z.string(),jobListingState:zod.z.enum(chunkFG6EV3WQ_js.c),jobListingLocation:zod.z.enum(m),jobListingEventId:zod.z.uuid().nullable(),jobListingEventTitle:zod.z.string().nullable(),jobListingRequiredDate:zod.z.string().nullable(),jobListingCompensation:chunkO3GYEMUB_js.h.nullable()});var _={SENT:"SENT",DELIVERED:"DELIVERED",READ:"READ"};var te=zod.z.object({id:zod.z.uuid(),bookingId:zod.z.uuid(),hostProfileId:zod.z.uuid(),producerProfileId:zod.z.uuid(),createdAt:zod.z.string(),updatedAt:zod.z.string()}),oe=zod.z.object({id:zod.z.uuid(),url:zod.z.string(),mimeType:zod.z.string(),sizeBytes:zod.z.number().int(),createdAt:zod.z.string()}),O=zod.z.object({id:zod.z.uuid(),threadId:zod.z.uuid(),senderUserId:zod.z.uuid(),body:zod.z.string(),sentAt:zod.z.string(),deliveryStatus:zod.z.enum(_),readAt:zod.z.string().nullable(),attachments:zod.z.array(oe)}),at=chunkO3GYEMUB_js.g,ut=zod.z.object({messages:zod.z.array(O),...chunkO3GYEMUB_js.k.shape}),lt=zod.z.object({thread:te,messages:zod.z.array(O),...chunkO3GYEMUB_js.k.shape}),ct=zod.z.object({body:zod.z.string().trim().min(1).max(5e3),attachments:zod.z.array(zod.z.object({url:zod.z.string().url(),mimeType:zod.z.string().min(1).max(120),sizeBytes:zod.z.number().int().positive()})).max(10).optional()}),mt=zod.z.object({message:O}),dt=zod.z.object({url:zod.z.url(),key:zod.z.string().min(1),mimeType:zod.z.string().min(1).max(120),sizeBytes:zod.z.number().int().positive()}),pt=zod.z.object({upToMessageId:zod.z.uuid().optional()}),gt=zod.z.object({markedCount:zod.z.number().int().nonnegative()}),ne=zod.z.object({threadId:zod.z.uuid(),bookingId:zod.z.uuid(),title:zod.z.string(),lastMessagePreview:zod.z.string().nullable(),lastMessageAt:zod.z.string().nullable(),lastSenderUserId:zod.z.uuid().nullable(),lastSenderDisplayName:zod.z.string().nullable(),unreadCount:zod.z.number().int().nonnegative(),bookingState:zod.z.enum(chunkFG6EV3WQ_js.b),producerProfileId:zod.z.uuid(),producerDisplayName:zod.z.string(),producerAvatarUrl:zod.z.string().nullable(),hostProfileId:zod.z.uuid(),hostDisplayName:zod.z.string(),hostAvatarUrl:zod.z.string().nullable(),counterpartyDisplayName:zod.z.string(),counterpartyAvatarUrl:zod.z.string().nullable(),counterpartyRole:zod.z.enum(["HOST","PRODUCER"])}),Et=zod.z.object({items:zod.z.array(ne),...chunkO3GYEMUB_js.k.shape});var B=zod.z.enum(["APPLICATIONS","UPCOMING","LIVE","COMPLETED","JOB_INVITES"]),ie=zod.z.enum(["PENDING","SHORTLISTED","SELECTED","WITHDRAWN","REJECTED","CANCELLED","INVITED","NEGOTIATING","CONFIRMED","LIVE","COMPLETED","DISPUTED"]),re=zod.z.enum(["IOI","BOOKING","ASSIGNMENT"]),Rt=zod.z.object({tab:B,search:zod.z.string().trim().min(2).max(100).optional(),...chunkO3GYEMUB_js.g.shape}),se=zod.z.object({id:zod.z.uuid(),kind:re,eventName:zod.z.string(),date:zod.z.string().nullable(),role:zod.z.string(),payment:chunkO3GYEMUB_js.h.nullable(),status:ie,statusCode:zod.z.string(),jobListingId:zod.z.uuid().nullable(),bookingId:zod.z.uuid().nullable(),ioiId:zod.z.uuid().nullable(),eventId:zod.z.uuid().nullable(),assignmentId:zod.z.uuid().nullable().optional()}),At=zod.z.object({tab:B,items:zod.z.array(se),...chunkO3GYEMUB_js.k.shape}),Tt=zod.z.object({applications:zod.z.number().int().nonnegative(),upcoming:zod.z.number().int().nonnegative(),live:zod.z.number().int().nonnegative(),completed:zod.z.number().int().nonnegative(),jobInvites:zod.z.number().int().nonnegative()});var ae=zod.z.object({id:zod.z.string(),role:chunkO3GYEMUB_js.b}),L=zod.z.object({reason:zod.z.string().optional(),ipAddress:zod.z.string().optional(),userAgent:zod.z.string().optional(),traceId:zod.z.string().optional()}),j=zod.z.record(zod.z.string(),zod.z.unknown()),ue=L.extend({beforeState:j.optional(),afterState:j.optional()}),le=L.extend({messageId:zod.z.string(),bodyPreview:zod.z.string(),attachmentCount:zod.z.number().int().nonnegative().optional()}),ce=L.extend({messageId:zod.z.string(),attachmentId:zod.z.string(),url:zod.z.string(),mimeType:zod.z.string(),sizeBytes:zod.z.number().int().nonnegative()}),h={timestamp:zod.z.string().datetime(),actor:ae};function b(i){return zod.z.object({...h,action:zod.z.literal(i),details:ue})}var me=zod.z.discriminatedUnion("action",[b(chunkFG6EV3WQ_js.g.STATE_CHANGED),b(chunkFG6EV3WQ_js.g.TERMS_MODIFIED),b(chunkFG6EV3WQ_js.g.BOOKING_CREATED),b(chunkFG6EV3WQ_js.g.BOOKING_COMPLETED),b(chunkFG6EV3WQ_js.g.BOOKING_CANCELLED),b(chunkFG6EV3WQ_js.g.BOOKING_ACCEPTED),b(chunkFG6EV3WQ_js.g.BOOKING_REJECTED),zod.z.object({...h,action:zod.z.literal(chunkFG6EV3WQ_js.g.MESSAGE_SENT),details:le}),zod.z.object({...h,action:zod.z.literal(chunkFG6EV3WQ_js.g.ATTACHMENT_ADDED),details:ce})]),Lt=zod.z.object({items:zod.z.array(me),...chunkO3GYEMUB_js.k.shape});var G={DRAFT:"DRAFT",INVITED:"INVITED",ACCEPTED:"ACCEPTED",REJECTED:"REJECTED",CANCELLED:"CANCELLED",EXPIRED:"EXPIRED"};var U=zod.z.object({role:zod.z.string().trim().min(1).max(120),responsibilities:zod.z.string().trim().min(1).max(5e3),requirements:zod.z.string().trim().min(1).max(5e3),compensation:chunkO3GYEMUB_js.h,location:zod.z.enum(m),notes:zod.z.string().trim().max(2e3).optional()}),vt=U.extend({producerId:zod.z.uuid()}),_t=U.partial().refine(i=>Object.keys(i).length>0,{message:"At least one field is required"}),Bt=zod.z.object({producerId:zod.z.uuid(),role:zod.z.string().trim().min(1).max(120).optional(),responsibilities:zod.z.string().trim().min(1).max(5e3).optional(),requirements:zod.z.string().trim().min(1).max(5e3).optional(),compensation:chunkO3GYEMUB_js.h.optional(),location:zod.z.enum(m).optional(),notes:zod.z.string().trim().max(2e3).optional()}),de=zod.z.object({id:zod.z.uuid(),companyName:zod.z.string(),displayName:zod.z.string().nullable(),avatarUrl:zod.z.string().nullable(),producerIsVerified:zod.z.boolean()}),x=zod.z.object({id:zod.z.uuid(),eventId:zod.z.uuid(),hostId:zod.z.uuid(),producerId:zod.z.uuid(),role:zod.z.string(),responsibilities:zod.z.string(),requirements:zod.z.string(),compensation:chunkO3GYEMUB_js.h,location:zod.z.enum(m),notes:zod.z.string().nullable(),state:zod.z.enum(G),bookingId:zod.z.uuid().nullable(),invitedAt:zod.z.iso.datetime().nullable(),respondedAt:zod.z.iso.datetime().nullable(),rejectReason:zod.z.string().nullable(),createdAt:zod.z.iso.datetime(),updatedAt:zod.z.iso.datetime(),producer:de.optional(),eventTitle:zod.z.string().optional(),eventScheduledStartLocal:zod.z.iso.datetime({local:true,offset:false}).nullable().optional()}),jt=zod.z.object({items:zod.z.array(x)}),Gt=zod.z.object({reason:zod.z.string().trim().min(5).max(500)}),Ut=zod.z.object({assignment:x,bookingId:zod.z.uuid()}),qt=zod.z.object({assignment:x,replacedBookingId:zod.z.uuid()});exports.$=ct;exports.A=Ue;exports.Aa=x;exports.B=qe;exports.Ba=jt;exports.C=Je;exports.Ca=Gt;exports.D=$e;exports.Da=Ut;exports.E=He;exports.Ea=qt;exports.F=we;exports.G=We;exports.H=Fe;exports.I=ze;exports.J=Ke;exports.K=Ve;exports.L=Qe;exports.M=v;exports.N=ee;exports.O=A;exports.P=T;exports.Q=Ye;exports.R=Xe;exports.S=Ze;exports.T=et;exports.U=_;exports.V=te;exports.W=oe;exports.X=O;exports.Y=at;exports.Z=ut;exports._=lt;exports.a=J;exports.aa=mt;exports.b=$;exports.ba=dt;exports.c=H;exports.ca=pt;exports.d=w;exports.da=gt;exports.e=W;exports.ea=ne;exports.f=F;exports.fa=Et;exports.g=ge;exports.ga=B;exports.h=z;exports.ha=ie;exports.i=Ee;exports.ia=re;exports.j=Ie;exports.ja=Rt;exports.k=Ae;exports.ka=se;exports.l=Te;exports.la=At;exports.m=Ce;exports.ma=Tt;exports.n=De;exports.na=ae;exports.o=Ne;exports.oa=L;exports.p=m;exports.pa=j;exports.q=P;exports.qa=ue;exports.r=Pe;exports.ra=le;exports.s=K;exports.sa=ce;exports.t=C;exports.ta=me;exports.u=ye;exports.ua=Lt;exports.v=ve;exports.va=G;exports.w=_e;exports.wa=vt;exports.x=Be;exports.xa=_t;exports.y=je;exports.ya=Bt;exports.z=Ge;exports.za=de;//# sourceMappingURL=chunk-CMQ36ZUU.js.map
2
+ //# sourceMappingURL=chunk-CMQ36ZUU.js.map