@livdot-tech/contracts 1.3.2 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/dist/auth/index.js +1 -1
  2. package/dist/auth/index.mjs +1 -1
  3. package/dist/{chunk-HKU2VYQL.mjs → chunk-23M7ZAFZ.mjs} +2 -2
  4. package/dist/{chunk-HKU2VYQL.mjs.map → chunk-23M7ZAFZ.mjs.map} +1 -1
  5. package/dist/{chunk-2HCYHD66.mjs → chunk-2N4M7ZID.mjs} +2 -2
  6. package/dist/chunk-2N4M7ZID.mjs.map +1 -0
  7. package/dist/chunk-HDCQKBMZ.js +2 -0
  8. package/dist/chunk-HDCQKBMZ.js.map +1 -0
  9. package/dist/{chunk-UNCRGZ3F.js → chunk-HVL3EWNB.js} +2 -2
  10. package/dist/{chunk-UNCRGZ3F.js.map → chunk-HVL3EWNB.js.map} +1 -1
  11. package/dist/{chunk-26JAML7N.js → chunk-OJKPKP4M.js} +2 -2
  12. package/dist/{chunk-26JAML7N.js.map → chunk-OJKPKP4M.js.map} +1 -1
  13. package/dist/chunk-QIDNKMGT.mjs +2 -0
  14. package/dist/chunk-QIDNKMGT.mjs.map +1 -0
  15. package/dist/chunk-RXQ2VPMW.js +2 -0
  16. package/dist/chunk-RXQ2VPMW.js.map +1 -0
  17. package/dist/chunk-U36JHPMK.mjs +2 -0
  18. package/dist/chunk-U36JHPMK.mjs.map +1 -0
  19. package/dist/{chunk-I62TAYOH.js → chunk-VSYDI3WD.js} +2 -2
  20. package/dist/chunk-VSYDI3WD.js.map +1 -0
  21. package/dist/{chunk-JY2QSZFF.mjs → chunk-ZUHLL2YZ.mjs} +2 -2
  22. package/dist/{chunk-JY2QSZFF.mjs.map → chunk-ZUHLL2YZ.mjs.map} +1 -1
  23. package/dist/event/index.d.mts +14 -1
  24. package/dist/event/index.d.ts +14 -1
  25. package/dist/event/index.js +1 -1
  26. package/dist/event/index.mjs +1 -1
  27. package/dist/index.d.mts +3 -2
  28. package/dist/index.d.ts +3 -2
  29. package/dist/index.js +1 -1
  30. package/dist/index.mjs +1 -1
  31. package/dist/marketplace/index.d.mts +198 -0
  32. package/dist/marketplace/index.d.ts +198 -0
  33. package/dist/marketplace/index.js +2 -0
  34. package/dist/marketplace/index.js.map +1 -0
  35. package/dist/marketplace/index.mjs +2 -0
  36. package/dist/marketplace/index.mjs.map +1 -0
  37. package/dist/payment/index.d.mts +149 -1
  38. package/dist/payment/index.d.ts +149 -1
  39. package/dist/payment/index.js +1 -1
  40. package/dist/payment/index.mjs +1 -1
  41. package/dist/user/index.js +1 -1
  42. package/dist/user/index.mjs +1 -1
  43. package/package.json +1 -1
  44. package/dist/chunk-2HCYHD66.mjs.map +0 -1
  45. package/dist/chunk-DAQYQHNR.js +0 -2
  46. package/dist/chunk-DAQYQHNR.js.map +0 -1
  47. package/dist/chunk-I62TAYOH.js.map +0 -1
  48. package/dist/chunk-ZWWSPLKF.mjs +0 -2
  49. package/dist/chunk-ZWWSPLKF.mjs.map +0 -1
@@ -786,6 +786,17 @@ declare const UpdateWatchProgressRequestSchema: z.ZodObject<{
786
786
  positionSec: z.ZodNumber;
787
787
  durationSec: z.ZodOptional<z.ZodNumber>;
788
788
  }, z.core.$strip>;
789
+ declare const LivePlaybackSchema: z.ZodObject<{
790
+ kind: z.ZodLiteral<"LIVE">;
791
+ playbackUrl: z.ZodURL;
792
+ token: z.ZodString;
793
+ expiresAt: z.ZodISODateTime;
794
+ }, z.core.$strip>;
795
+ declare const ReplayPlaybackSchema: z.ZodObject<{
796
+ kind: z.ZodLiteral<"REPLAY">;
797
+ playbackUrl: z.ZodURL;
798
+ expiresAt: z.ZodISODateTime;
799
+ }, z.core.$strip>;
789
800
  declare const PlaybackResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
790
801
  kind: z.ZodLiteral<"LIVE">;
791
802
  playbackUrl: z.ZodURL;
@@ -981,5 +992,7 @@ type MyEventsQuery = z.infer<typeof MyEventsQuerySchema>;
981
992
  type StartViewingSessionResponse = z.infer<typeof StartViewingSessionResponseSchema>;
982
993
  type ViewingSessionHeartbeatResponse = z.infer<typeof ViewingSessionHeartbeatResponseSchema>;
983
994
  type EndViewingSessionResponse = z.infer<typeof EndViewingSessionResponseSchema>;
995
+ type LivePlayback = z.infer<typeof LivePlaybackSchema>;
996
+ type ReplayPlayback = z.infer<typeof ReplayPlaybackSchema>;
984
997
 
985
- export { type CreateEventRequest, CreateEventRequestSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, type EventCard, EventCardSchema, EventCategory, type EventResponse, EventResponseSchema, EventState, EventVisibility, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PaginationCursor, PaginationCursorSchema, type PlaybackResponse, PlaybackResponseSchema, type RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, type SearchEventsQuery, SearchEventsQuerySchema, type StartViewingSessionResponse, StartViewingSessionResponseSchema, type UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, type ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, type ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema };
998
+ export { type CreateEventRequest, CreateEventRequestSchema, type EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, type EventCard, EventCardSchema, EventCategory, type EventResponse, EventResponseSchema, EventState, EventVisibility, type LivePlayback, LivePlaybackSchema, type MyEventCard, MyEventCardSchema, type MyEventsQuery, MyEventsQuerySchema, type MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, type PagedEventsResponse, PagedEventsResponseSchema, type PaginationCursor, PaginationCursorSchema, type PlaybackResponse, PlaybackResponseSchema, type RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, type ReplayPlayback, ReplayPlaybackSchema, type SearchEventsQuery, SearchEventsQuerySchema, type StartViewingSessionResponse, StartViewingSessionResponseSchema, type UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, type ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, type ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema };
@@ -1,2 +1,2 @@
1
- 'use strict';var chunkI62TAYOH_js=require('../chunk-I62TAYOH.js');Object.defineProperty(exports,"CreateEventRequestSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.j}});Object.defineProperty(exports,"EndViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.z}});Object.defineProperty(exports,"EventAccessModel",{enumerable:true,get:function(){return chunkI62TAYOH_js.b}});Object.defineProperty(exports,"EventAllowListType",{enumerable:true,get:function(){return chunkI62TAYOH_js.c}});Object.defineProperty(exports,"EventCardSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.m}});Object.defineProperty(exports,"EventCategory",{enumerable:true,get:function(){return chunkI62TAYOH_js.e}});Object.defineProperty(exports,"EventResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.l}});Object.defineProperty(exports,"EventState",{enumerable:true,get:function(){return chunkI62TAYOH_js.d}});Object.defineProperty(exports,"EventVisibility",{enumerable:true,get:function(){return chunkI62TAYOH_js.a}});Object.defineProperty(exports,"MyEventCardSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.u}});Object.defineProperty(exports,"MyEventsQuerySchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.w}});Object.defineProperty(exports,"MyEventsResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.v}});Object.defineProperty(exports,"MyEventsTabSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.i}});Object.defineProperty(exports,"PagedEventsResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.q}});Object.defineProperty(exports,"PaginationCursorSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.o}});Object.defineProperty(exports,"PlaybackResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.t}});Object.defineProperty(exports,"RegisterForEventResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.r}});Object.defineProperty(exports,"RegistrationScope",{enumerable:true,get:function(){return chunkI62TAYOH_js.g}});Object.defineProperty(exports,"RegistrationStatus",{enumerable:true,get:function(){return chunkI62TAYOH_js.f}});Object.defineProperty(exports,"SearchEventsQuerySchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.p}});Object.defineProperty(exports,"StartViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.x}});Object.defineProperty(exports,"UpdateEventRequestSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.k}});Object.defineProperty(exports,"UpdateWatchProgressRequestSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.s}});Object.defineProperty(exports,"ViewerHomeResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.n}});Object.defineProperty(exports,"ViewerRegistrationView",{enumerable:true,get:function(){return chunkI62TAYOH_js.h}});Object.defineProperty(exports,"ViewingSessionHeartbeatResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.y}});//# sourceMappingURL=index.js.map
1
+ 'use strict';var chunkVSYDI3WD_js=require('../chunk-VSYDI3WD.js');Object.defineProperty(exports,"CreateEventRequestSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.j}});Object.defineProperty(exports,"EndViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.B}});Object.defineProperty(exports,"EventAccessModel",{enumerable:true,get:function(){return chunkVSYDI3WD_js.b}});Object.defineProperty(exports,"EventAllowListType",{enumerable:true,get:function(){return chunkVSYDI3WD_js.c}});Object.defineProperty(exports,"EventCardSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.m}});Object.defineProperty(exports,"EventCategory",{enumerable:true,get:function(){return chunkVSYDI3WD_js.e}});Object.defineProperty(exports,"EventResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.l}});Object.defineProperty(exports,"EventState",{enumerable:true,get:function(){return chunkVSYDI3WD_js.d}});Object.defineProperty(exports,"EventVisibility",{enumerable:true,get:function(){return chunkVSYDI3WD_js.a}});Object.defineProperty(exports,"LivePlaybackSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.t}});Object.defineProperty(exports,"MyEventCardSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.w}});Object.defineProperty(exports,"MyEventsQuerySchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.y}});Object.defineProperty(exports,"MyEventsResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.x}});Object.defineProperty(exports,"MyEventsTabSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.i}});Object.defineProperty(exports,"PagedEventsResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.q}});Object.defineProperty(exports,"PaginationCursorSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.o}});Object.defineProperty(exports,"PlaybackResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.v}});Object.defineProperty(exports,"RegisterForEventResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.r}});Object.defineProperty(exports,"RegistrationScope",{enumerable:true,get:function(){return chunkVSYDI3WD_js.g}});Object.defineProperty(exports,"RegistrationStatus",{enumerable:true,get:function(){return chunkVSYDI3WD_js.f}});Object.defineProperty(exports,"ReplayPlaybackSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.u}});Object.defineProperty(exports,"SearchEventsQuerySchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.p}});Object.defineProperty(exports,"StartViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.z}});Object.defineProperty(exports,"UpdateEventRequestSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.k}});Object.defineProperty(exports,"UpdateWatchProgressRequestSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.s}});Object.defineProperty(exports,"ViewerHomeResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.n}});Object.defineProperty(exports,"ViewerRegistrationView",{enumerable:true,get:function(){return chunkVSYDI3WD_js.h}});Object.defineProperty(exports,"ViewingSessionHeartbeatResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.A}});//# sourceMappingURL=index.js.map
2
2
  //# sourceMappingURL=index.js.map
@@ -1,2 +1,2 @@
1
- export{j as CreateEventRequestSchema,z as EndViewingSessionResponseSchema,b as EventAccessModel,c as EventAllowListType,m as EventCardSchema,e as EventCategory,l as EventResponseSchema,d as EventState,a as EventVisibility,u as MyEventCardSchema,w as MyEventsQuerySchema,v as MyEventsResponseSchema,i as MyEventsTabSchema,q as PagedEventsResponseSchema,o as PaginationCursorSchema,t as PlaybackResponseSchema,r as RegisterForEventResponseSchema,g as RegistrationScope,f as RegistrationStatus,p as SearchEventsQuerySchema,x as StartViewingSessionResponseSchema,k as UpdateEventRequestSchema,s as UpdateWatchProgressRequestSchema,n as ViewerHomeResponseSchema,h as ViewerRegistrationView,y as ViewingSessionHeartbeatResponseSchema}from'../chunk-2HCYHD66.mjs';//# sourceMappingURL=index.mjs.map
1
+ export{j as CreateEventRequestSchema,B as EndViewingSessionResponseSchema,b as EventAccessModel,c as EventAllowListType,m as EventCardSchema,e as EventCategory,l as EventResponseSchema,d as EventState,a as EventVisibility,t as LivePlaybackSchema,w as MyEventCardSchema,y as MyEventsQuerySchema,x as MyEventsResponseSchema,i as MyEventsTabSchema,q as PagedEventsResponseSchema,o as PaginationCursorSchema,v as PlaybackResponseSchema,r as RegisterForEventResponseSchema,g as RegistrationScope,f as RegistrationStatus,u as ReplayPlaybackSchema,p as SearchEventsQuerySchema,z as StartViewingSessionResponseSchema,k as UpdateEventRequestSchema,s as UpdateWatchProgressRequestSchema,n as ViewerHomeResponseSchema,h as ViewerRegistrationView,A as ViewingSessionHeartbeatResponseSchema}from'../chunk-2N4M7ZID.mjs';//# sourceMappingURL=index.mjs.map
2
2
  //# sourceMappingURL=index.mjs.map
package/dist/index.d.mts CHANGED
@@ -1,10 +1,11 @@
1
1
  export { ApiError, ApiResponse, ApiResponseSchema, PaginatedResponse, PaginationMeta, PaginationParams, PaginationParamsSchema, ResponseMessages } from './common/index.mjs';
2
2
  export { ChangePasswordRequest, ChangePasswordRequestSchema, CognitoTokenPayload, CognitoTokenPayloadSchema, ForgotPasswordRequest, ForgotPasswordRequestSchema, ForgotPasswordResponseSchema, LoginRequest, LoginRequestSchema, LoginResponse, LoginResponseSchema, LogoutRequestPayload, LogoutRequestSchema, RefreshTokenRequest, RefreshTokenRequestSchema, RegisterRequest, RegisterRequestSchema, RegisterResponsePayload, RegisterResponseSchema, ResendOtpRequestSchema, ResetPasswordRequest, ResetPasswordRequestSchema, VerifyOtpRequest, VerifyOtpRequestSchema, VerifyOtpResponseSchema } from './auth/index.mjs';
3
3
  export { AccountStatus, AdminScopeCode, CreateHostProfileRequest, CreateHostProfileRequestSchema, CreateProducerProfileRequest, CreateProducerProfileRequestSchema, HostProfileResponse, HostProfileResponseSchema, KycStatus, ProducerExperienceLevel, ProducerProfileResponse, ProducerProfileResponseSchema, ProducerVerificationStatus, UpdateUserRequest, UpdateUserRequestSchema, UserResponse, UserResponseSchema, UserRole } from './user/index.mjs';
4
- export { CreateEventRequest, CreateEventRequestSchema, EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, EventCard, EventCardSchema, EventCategory, EventResponse, EventResponseSchema, EventState, EventVisibility, MyEventCard, MyEventCardSchema, MyEventsQuery, MyEventsQuerySchema, MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, PagedEventsResponse, PagedEventsResponseSchema, PaginationCursor, PaginationCursorSchema, PlaybackResponse, PlaybackResponseSchema, RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, SearchEventsQuery, SearchEventsQuerySchema, StartViewingSessionResponse, StartViewingSessionResponseSchema, UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema } from './event/index.mjs';
4
+ export { CreateEventRequest, CreateEventRequestSchema, EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, EventCard, EventCardSchema, EventCategory, EventResponse, EventResponseSchema, EventState, EventVisibility, LivePlayback, LivePlaybackSchema, MyEventCard, MyEventCardSchema, MyEventsQuery, MyEventsQuerySchema, MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, PagedEventsResponse, PagedEventsResponseSchema, PaginationCursor, PaginationCursorSchema, PlaybackResponse, PlaybackResponseSchema, RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, ReplayPlayback, ReplayPlaybackSchema, SearchEventsQuery, SearchEventsQuerySchema, StartViewingSessionResponse, StartViewingSessionResponseSchema, UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema } from './event/index.mjs';
5
5
  export { BookingOrigin, BookingPaymentStatus, BookingResponse, BookingResponseSchema, BookingState, ConfirmBookingRequest, ConfirmBookingRequestSchema, CreateBookingRequest, CreateBookingRequestSchema, CreateJobListingRequest, CreateJobListingRequestSchema, IndicationOfInterestResponse, IndicationOfInterestResponseSchema, IoiState, JobListingResponse, JobListingResponseSchema, JobListingState, SubmitIndicationOfInterestRequest, SubmitIndicationOfInterestRequestSchema } from './booking/index.mjs';
6
6
  export { IngestCredentialsResponse, IngestCredentialsResponseSchema, IngestProtocol, PlaybackTokenResponse, PlaybackTokenResponseSchema, StreamStatus, TelemetryReportRequest, TelemetryReportRequestSchema } from './streaming/index.mjs';
7
- export { InitiatePaymentRequest, InitiatePaymentRequestSchema, InitiatePaymentResponse, InitiatePaymentResponseSchema, PayoutResponse, PayoutResponseSchema, PayoutStatus, TransactionStatus, TransactionType } from './payment/index.mjs';
7
+ export { AccessCheckRequest, AccessCheckRequestSchema, AccessCheckResponse, AccessCheckResponseSchema, AccessReason, CreatePurchaseResponse, CreatePurchaseResponseSchema, CtaMode, EntitlementStatus, InitiatePaymentRequest, InitiatePaymentRequestSchema, InitiatePaymentResponse, InitiatePaymentResponseSchema, PaymentStatus, PayoutResponse, PayoutResponseSchema, PayoutStatus, PaystackWebhook, PaystackWebhookSchema, PricingQuoteResponse, PricingQuoteResponseSchema, PurchaseStatusResponse, PurchaseStatusResponseSchema, TransactionStatus, TransactionType, ViewerEventDetailResponseSchema } from './payment/index.mjs';
8
+ export { EquipmentCategory, ListProducersQuery, ListProducersQuerySchema, ListProducersResponse, ListProducersResponseSchema, MarketplaceCurrency, PublicProducerListCategory, PublicProducerListCategorySchema, PublicProducerListEquipmentItem, PublicProducerListEquipmentItemSchema, PublicProducerListItem, PublicProducerListItemSchema, PublicProducerListPortfolioItem, PublicProducerListPortfolioItemSchema, PublicProducerListRateCardItem, PublicProducerListRateCardItemSchema, ServiceCategoryCode } from './marketplace/index.mjs';
8
9
  export { DisputeResponse, DisputeResponseSchema, DisputeStatus, DisputeType } from './dispute/index.mjs';
9
10
  export { NotificationChannel, NotificationPriority, NotificationResponse, NotificationResponseSchema, NotificationType } from './notification/index.mjs';
10
11
  export { JobInterestState } from './joblisting/index.mjs';
package/dist/index.d.ts CHANGED
@@ -1,10 +1,11 @@
1
1
  export { ApiError, ApiResponse, ApiResponseSchema, PaginatedResponse, PaginationMeta, PaginationParams, PaginationParamsSchema, ResponseMessages } from './common/index.js';
2
2
  export { ChangePasswordRequest, ChangePasswordRequestSchema, CognitoTokenPayload, CognitoTokenPayloadSchema, ForgotPasswordRequest, ForgotPasswordRequestSchema, ForgotPasswordResponseSchema, LoginRequest, LoginRequestSchema, LoginResponse, LoginResponseSchema, LogoutRequestPayload, LogoutRequestSchema, RefreshTokenRequest, RefreshTokenRequestSchema, RegisterRequest, RegisterRequestSchema, RegisterResponsePayload, RegisterResponseSchema, ResendOtpRequestSchema, ResetPasswordRequest, ResetPasswordRequestSchema, VerifyOtpRequest, VerifyOtpRequestSchema, VerifyOtpResponseSchema } from './auth/index.js';
3
3
  export { AccountStatus, AdminScopeCode, CreateHostProfileRequest, CreateHostProfileRequestSchema, CreateProducerProfileRequest, CreateProducerProfileRequestSchema, HostProfileResponse, HostProfileResponseSchema, KycStatus, ProducerExperienceLevel, ProducerProfileResponse, ProducerProfileResponseSchema, ProducerVerificationStatus, UpdateUserRequest, UpdateUserRequestSchema, UserResponse, UserResponseSchema, UserRole } from './user/index.js';
4
- export { CreateEventRequest, CreateEventRequestSchema, EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, EventCard, EventCardSchema, EventCategory, EventResponse, EventResponseSchema, EventState, EventVisibility, MyEventCard, MyEventCardSchema, MyEventsQuery, MyEventsQuerySchema, MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, PagedEventsResponse, PagedEventsResponseSchema, PaginationCursor, PaginationCursorSchema, PlaybackResponse, PlaybackResponseSchema, RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, SearchEventsQuery, SearchEventsQuerySchema, StartViewingSessionResponse, StartViewingSessionResponseSchema, UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema } from './event/index.js';
4
+ export { CreateEventRequest, CreateEventRequestSchema, EndViewingSessionResponse, EndViewingSessionResponseSchema, EventAccessModel, EventAllowListType, EventCard, EventCardSchema, EventCategory, EventResponse, EventResponseSchema, EventState, EventVisibility, LivePlayback, LivePlaybackSchema, MyEventCard, MyEventCardSchema, MyEventsQuery, MyEventsQuerySchema, MyEventsResponse, MyEventsResponseSchema, MyEventsTabSchema, PagedEventsResponse, PagedEventsResponseSchema, PaginationCursor, PaginationCursorSchema, PlaybackResponse, PlaybackResponseSchema, RegisterForEventResponse, RegisterForEventResponseSchema, RegistrationScope, RegistrationStatus, ReplayPlayback, ReplayPlaybackSchema, SearchEventsQuery, SearchEventsQuerySchema, StartViewingSessionResponse, StartViewingSessionResponseSchema, UpdateEventRequest, UpdateEventRequestSchema, UpdateWatchProgressRequestSchema, ViewerHomeResponse, ViewerHomeResponseSchema, ViewerRegistrationView, ViewingSessionHeartbeatResponse, ViewingSessionHeartbeatResponseSchema } from './event/index.js';
5
5
  export { BookingOrigin, BookingPaymentStatus, BookingResponse, BookingResponseSchema, BookingState, ConfirmBookingRequest, ConfirmBookingRequestSchema, CreateBookingRequest, CreateBookingRequestSchema, CreateJobListingRequest, CreateJobListingRequestSchema, IndicationOfInterestResponse, IndicationOfInterestResponseSchema, IoiState, JobListingResponse, JobListingResponseSchema, JobListingState, SubmitIndicationOfInterestRequest, SubmitIndicationOfInterestRequestSchema } from './booking/index.js';
6
6
  export { IngestCredentialsResponse, IngestCredentialsResponseSchema, IngestProtocol, PlaybackTokenResponse, PlaybackTokenResponseSchema, StreamStatus, TelemetryReportRequest, TelemetryReportRequestSchema } from './streaming/index.js';
7
- export { InitiatePaymentRequest, InitiatePaymentRequestSchema, InitiatePaymentResponse, InitiatePaymentResponseSchema, PayoutResponse, PayoutResponseSchema, PayoutStatus, TransactionStatus, TransactionType } from './payment/index.js';
7
+ export { AccessCheckRequest, AccessCheckRequestSchema, AccessCheckResponse, AccessCheckResponseSchema, AccessReason, CreatePurchaseResponse, CreatePurchaseResponseSchema, CtaMode, EntitlementStatus, InitiatePaymentRequest, InitiatePaymentRequestSchema, InitiatePaymentResponse, InitiatePaymentResponseSchema, PaymentStatus, PayoutResponse, PayoutResponseSchema, PayoutStatus, PaystackWebhook, PaystackWebhookSchema, PricingQuoteResponse, PricingQuoteResponseSchema, PurchaseStatusResponse, PurchaseStatusResponseSchema, TransactionStatus, TransactionType, ViewerEventDetailResponseSchema } from './payment/index.js';
8
+ export { EquipmentCategory, ListProducersQuery, ListProducersQuerySchema, ListProducersResponse, ListProducersResponseSchema, MarketplaceCurrency, PublicProducerListCategory, PublicProducerListCategorySchema, PublicProducerListEquipmentItem, PublicProducerListEquipmentItemSchema, PublicProducerListItem, PublicProducerListItemSchema, PublicProducerListPortfolioItem, PublicProducerListPortfolioItemSchema, PublicProducerListRateCardItem, PublicProducerListRateCardItemSchema, ServiceCategoryCode } from './marketplace/index.js';
8
9
  export { DisputeResponse, DisputeResponseSchema, DisputeStatus, DisputeType } from './dispute/index.js';
9
10
  export { NotificationChannel, NotificationPriority, NotificationResponse, NotificationResponseSchema, NotificationType } from './notification/index.js';
10
11
  export { JobInterestState } from './joblisting/index.js';
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- 'use strict';var chunk4YYJEPT6_js=require('./chunk-4YYJEPT6.js'),chunkDAQYQHNR_js=require('./chunk-DAQYQHNR.js'),chunkC7FWAE4X_js=require('./chunk-C7FWAE4X.js'),chunk26JAML7N_js=require('./chunk-26JAML7N.js'),chunkUNCRGZ3F_js=require('./chunk-UNCRGZ3F.js'),chunkVPAZHULG_js=require('./chunk-VPAZHULG.js'),chunkGKYB3J5L_js=require('./chunk-GKYB3J5L.js'),chunkZOBM5OSW_js=require('./chunk-ZOBM5OSW.js'),chunkJT7SH43N_js=require('./chunk-JT7SH43N.js'),chunkI62TAYOH_js=require('./chunk-I62TAYOH.js'),chunkUZZ46ZPG_js=require('./chunk-UZZ46ZPG.js');Object.defineProperty(exports,"NotificationChannel",{enumerable:true,get:function(){return chunk4YYJEPT6_js.b}});Object.defineProperty(exports,"NotificationPriority",{enumerable:true,get:function(){return chunk4YYJEPT6_js.a}});Object.defineProperty(exports,"NotificationResponseSchema",{enumerable:true,get:function(){return chunk4YYJEPT6_js.d}});Object.defineProperty(exports,"NotificationType",{enumerable:true,get:function(){return chunk4YYJEPT6_js.c}});Object.defineProperty(exports,"InitiatePaymentRequestSchema",{enumerable:true,get:function(){return chunkDAQYQHNR_js.d}});Object.defineProperty(exports,"InitiatePaymentResponseSchema",{enumerable:true,get:function(){return chunkDAQYQHNR_js.e}});Object.defineProperty(exports,"PayoutResponseSchema",{enumerable:true,get:function(){return chunkDAQYQHNR_js.f}});Object.defineProperty(exports,"PayoutStatus",{enumerable:true,get:function(){return chunkDAQYQHNR_js.c}});Object.defineProperty(exports,"TransactionStatus",{enumerable:true,get:function(){return chunkDAQYQHNR_js.b}});Object.defineProperty(exports,"TransactionType",{enumerable:true,get:function(){return chunkDAQYQHNR_js.a}});Object.defineProperty(exports,"IngestCredentialsResponseSchema",{enumerable:true,get:function(){return chunkC7FWAE4X_js.d}});Object.defineProperty(exports,"IngestProtocol",{enumerable:true,get:function(){return chunkC7FWAE4X_js.b}});Object.defineProperty(exports,"PlaybackTokenResponseSchema",{enumerable:true,get:function(){return chunkC7FWAE4X_js.c}});Object.defineProperty(exports,"StreamStatus",{enumerable:true,get:function(){return chunkC7FWAE4X_js.a}});Object.defineProperty(exports,"TelemetryReportRequestSchema",{enumerable:true,get:function(){return chunkC7FWAE4X_js.e}});Object.defineProperty(exports,"ChangePasswordRequestSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.m}});Object.defineProperty(exports,"CognitoTokenPayloadSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.n}});Object.defineProperty(exports,"ForgotPasswordRequestSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.j}});Object.defineProperty(exports,"ForgotPasswordResponseSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.k}});Object.defineProperty(exports,"LoginRequestSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.c}});Object.defineProperty(exports,"LoginResponseSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.g}});Object.defineProperty(exports,"LogoutRequestSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.i}});Object.defineProperty(exports,"RefreshTokenRequestSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.h}});Object.defineProperty(exports,"RegisterRequestSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.a}});Object.defineProperty(exports,"RegisterResponseSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.b}});Object.defineProperty(exports,"ResendOtpRequestSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.e}});Object.defineProperty(exports,"ResetPasswordRequestSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.l}});Object.defineProperty(exports,"VerifyOtpRequestSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.d}});Object.defineProperty(exports,"VerifyOtpResponseSchema",{enumerable:true,get:function(){return chunk26JAML7N_js.f}});Object.defineProperty(exports,"AccountStatus",{enumerable:true,get:function(){return chunkUNCRGZ3F_js.b}});Object.defineProperty(exports,"AdminScopeCode",{enumerable:true,get:function(){return chunkUNCRGZ3F_js.d}});Object.defineProperty(exports,"CreateHostProfileRequestSchema",{enumerable:true,get:function(){return chunkUNCRGZ3F_js.k}});Object.defineProperty(exports,"CreateProducerProfileRequestSchema",{enumerable:true,get:function(){return chunkUNCRGZ3F_js.l}});Object.defineProperty(exports,"HostProfileResponseSchema",{enumerable:true,get:function(){return chunkUNCRGZ3F_js.g}});Object.defineProperty(exports,"KycStatus",{enumerable:true,get:function(){return chunkUNCRGZ3F_js.c}});Object.defineProperty(exports,"ProducerExperienceLevel",{enumerable:true,get:function(){return chunkUNCRGZ3F_js.f}});Object.defineProperty(exports,"ProducerProfileResponseSchema",{enumerable:true,get:function(){return chunkUNCRGZ3F_js.h}});Object.defineProperty(exports,"ProducerVerificationStatus",{enumerable:true,get:function(){return chunkUNCRGZ3F_js.e}});Object.defineProperty(exports,"UpdateUserRequestSchema",{enumerable:true,get:function(){return chunkUNCRGZ3F_js.j}});Object.defineProperty(exports,"UserResponseSchema",{enumerable:true,get:function(){return chunkUNCRGZ3F_js.i}});Object.defineProperty(exports,"UserRole",{enumerable:true,get:function(){return chunkUNCRGZ3F_js.a}});Object.defineProperty(exports,"BookingOrigin",{enumerable:true,get:function(){return chunkVPAZHULG_js.a}});Object.defineProperty(exports,"BookingPaymentStatus",{enumerable:true,get:function(){return chunkVPAZHULG_js.e}});Object.defineProperty(exports,"BookingResponseSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.h}});Object.defineProperty(exports,"BookingState",{enumerable:true,get:function(){return chunkVPAZHULG_js.b}});Object.defineProperty(exports,"ConfirmBookingRequestSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.g}});Object.defineProperty(exports,"CreateBookingRequestSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.f}});Object.defineProperty(exports,"CreateJobListingRequestSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.i}});Object.defineProperty(exports,"IndicationOfInterestResponseSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.l}});Object.defineProperty(exports,"IoiState",{enumerable:true,get:function(){return chunkVPAZHULG_js.d}});Object.defineProperty(exports,"JobListingResponseSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.j}});Object.defineProperty(exports,"JobListingState",{enumerable:true,get:function(){return chunkVPAZHULG_js.c}});Object.defineProperty(exports,"SubmitIndicationOfInterestRequestSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.k}});Object.defineProperty(exports,"ApiResponseSchema",{enumerable:true,get:function(){return chunkGKYB3J5L_js.a}});Object.defineProperty(exports,"PaginationParamsSchema",{enumerable:true,get:function(){return chunkGKYB3J5L_js.b}});Object.defineProperty(exports,"ResponseMessages",{enumerable:true,get:function(){return chunkGKYB3J5L_js.c}});Object.defineProperty(exports,"DisputeResponseSchema",{enumerable:true,get:function(){return chunkZOBM5OSW_js.c}});Object.defineProperty(exports,"DisputeStatus",{enumerable:true,get:function(){return chunkZOBM5OSW_js.b}});Object.defineProperty(exports,"DisputeType",{enumerable:true,get:function(){return chunkZOBM5OSW_js.a}});Object.defineProperty(exports,"ApiErrorCode",{enumerable:true,get:function(){return chunkJT7SH43N_js.a}});Object.defineProperty(exports,"CreateEventRequestSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.j}});Object.defineProperty(exports,"EndViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.z}});Object.defineProperty(exports,"EventAccessModel",{enumerable:true,get:function(){return chunkI62TAYOH_js.b}});Object.defineProperty(exports,"EventAllowListType",{enumerable:true,get:function(){return chunkI62TAYOH_js.c}});Object.defineProperty(exports,"EventCardSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.m}});Object.defineProperty(exports,"EventCategory",{enumerable:true,get:function(){return chunkI62TAYOH_js.e}});Object.defineProperty(exports,"EventResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.l}});Object.defineProperty(exports,"EventState",{enumerable:true,get:function(){return chunkI62TAYOH_js.d}});Object.defineProperty(exports,"EventVisibility",{enumerable:true,get:function(){return chunkI62TAYOH_js.a}});Object.defineProperty(exports,"MyEventCardSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.u}});Object.defineProperty(exports,"MyEventsQuerySchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.w}});Object.defineProperty(exports,"MyEventsResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.v}});Object.defineProperty(exports,"MyEventsTabSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.i}});Object.defineProperty(exports,"PagedEventsResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.q}});Object.defineProperty(exports,"PaginationCursorSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.o}});Object.defineProperty(exports,"PlaybackResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.t}});Object.defineProperty(exports,"RegisterForEventResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.r}});Object.defineProperty(exports,"RegistrationScope",{enumerable:true,get:function(){return chunkI62TAYOH_js.g}});Object.defineProperty(exports,"RegistrationStatus",{enumerable:true,get:function(){return chunkI62TAYOH_js.f}});Object.defineProperty(exports,"SearchEventsQuerySchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.p}});Object.defineProperty(exports,"StartViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.x}});Object.defineProperty(exports,"UpdateEventRequestSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.k}});Object.defineProperty(exports,"UpdateWatchProgressRequestSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.s}});Object.defineProperty(exports,"ViewerHomeResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.n}});Object.defineProperty(exports,"ViewerRegistrationView",{enumerable:true,get:function(){return chunkI62TAYOH_js.h}});Object.defineProperty(exports,"ViewingSessionHeartbeatResponseSchema",{enumerable:true,get:function(){return chunkI62TAYOH_js.y}});Object.defineProperty(exports,"JobInterestState",{enumerable:true,get:function(){return chunkUZZ46ZPG_js.a}});//# sourceMappingURL=index.js.map
1
+ 'use strict';var chunkRXQ2VPMW_js=require('./chunk-RXQ2VPMW.js'),chunk4YYJEPT6_js=require('./chunk-4YYJEPT6.js'),chunkHDCQKBMZ_js=require('./chunk-HDCQKBMZ.js'),chunkC7FWAE4X_js=require('./chunk-C7FWAE4X.js'),chunkOJKPKP4M_js=require('./chunk-OJKPKP4M.js'),chunkHVL3EWNB_js=require('./chunk-HVL3EWNB.js'),chunkVPAZHULG_js=require('./chunk-VPAZHULG.js'),chunkGKYB3J5L_js=require('./chunk-GKYB3J5L.js'),chunkZOBM5OSW_js=require('./chunk-ZOBM5OSW.js'),chunkJT7SH43N_js=require('./chunk-JT7SH43N.js'),chunkVSYDI3WD_js=require('./chunk-VSYDI3WD.js'),chunkUZZ46ZPG_js=require('./chunk-UZZ46ZPG.js');Object.defineProperty(exports,"EquipmentCategory",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.c}});Object.defineProperty(exports,"ListProducersQuerySchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.d}});Object.defineProperty(exports,"ListProducersResponseSchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.j}});Object.defineProperty(exports,"MarketplaceCurrency",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.a}});Object.defineProperty(exports,"PublicProducerListCategorySchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.f}});Object.defineProperty(exports,"PublicProducerListEquipmentItemSchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.e}});Object.defineProperty(exports,"PublicProducerListItemSchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.i}});Object.defineProperty(exports,"PublicProducerListPortfolioItemSchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.g}});Object.defineProperty(exports,"PublicProducerListRateCardItemSchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.h}});Object.defineProperty(exports,"ServiceCategoryCode",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.b}});Object.defineProperty(exports,"NotificationChannel",{enumerable:true,get:function(){return chunk4YYJEPT6_js.b}});Object.defineProperty(exports,"NotificationPriority",{enumerable:true,get:function(){return chunk4YYJEPT6_js.a}});Object.defineProperty(exports,"NotificationResponseSchema",{enumerable:true,get:function(){return chunk4YYJEPT6_js.d}});Object.defineProperty(exports,"NotificationType",{enumerable:true,get:function(){return chunk4YYJEPT6_js.c}});Object.defineProperty(exports,"AccessCheckRequestSchema",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.m}});Object.defineProperty(exports,"AccessCheckResponseSchema",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.o}});Object.defineProperty(exports,"AccessReason",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.e}});Object.defineProperty(exports,"CreatePurchaseResponseSchema",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.k}});Object.defineProperty(exports,"CtaMode",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.g}});Object.defineProperty(exports,"EntitlementStatus",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.f}});Object.defineProperty(exports,"InitiatePaymentRequestSchema",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.h}});Object.defineProperty(exports,"InitiatePaymentResponseSchema",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.i}});Object.defineProperty(exports,"PaymentStatus",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.d}});Object.defineProperty(exports,"PayoutResponseSchema",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.j}});Object.defineProperty(exports,"PayoutStatus",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.c}});Object.defineProperty(exports,"PaystackWebhookSchema",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.n}});Object.defineProperty(exports,"PricingQuoteResponseSchema",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.p}});Object.defineProperty(exports,"PurchaseStatusResponseSchema",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.l}});Object.defineProperty(exports,"TransactionStatus",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.b}});Object.defineProperty(exports,"TransactionType",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.a}});Object.defineProperty(exports,"ViewerEventDetailResponseSchema",{enumerable:true,get:function(){return chunkHDCQKBMZ_js.q}});Object.defineProperty(exports,"IngestCredentialsResponseSchema",{enumerable:true,get:function(){return chunkC7FWAE4X_js.d}});Object.defineProperty(exports,"IngestProtocol",{enumerable:true,get:function(){return chunkC7FWAE4X_js.b}});Object.defineProperty(exports,"PlaybackTokenResponseSchema",{enumerable:true,get:function(){return chunkC7FWAE4X_js.c}});Object.defineProperty(exports,"StreamStatus",{enumerable:true,get:function(){return chunkC7FWAE4X_js.a}});Object.defineProperty(exports,"TelemetryReportRequestSchema",{enumerable:true,get:function(){return chunkC7FWAE4X_js.e}});Object.defineProperty(exports,"ChangePasswordRequestSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.m}});Object.defineProperty(exports,"CognitoTokenPayloadSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.n}});Object.defineProperty(exports,"ForgotPasswordRequestSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.j}});Object.defineProperty(exports,"ForgotPasswordResponseSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.k}});Object.defineProperty(exports,"LoginRequestSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.c}});Object.defineProperty(exports,"LoginResponseSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.g}});Object.defineProperty(exports,"LogoutRequestSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.i}});Object.defineProperty(exports,"RefreshTokenRequestSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.h}});Object.defineProperty(exports,"RegisterRequestSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.a}});Object.defineProperty(exports,"RegisterResponseSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.b}});Object.defineProperty(exports,"ResendOtpRequestSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.e}});Object.defineProperty(exports,"ResetPasswordRequestSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.l}});Object.defineProperty(exports,"VerifyOtpRequestSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.d}});Object.defineProperty(exports,"VerifyOtpResponseSchema",{enumerable:true,get:function(){return chunkOJKPKP4M_js.f}});Object.defineProperty(exports,"AccountStatus",{enumerable:true,get:function(){return chunkHVL3EWNB_js.b}});Object.defineProperty(exports,"AdminScopeCode",{enumerable:true,get:function(){return chunkHVL3EWNB_js.d}});Object.defineProperty(exports,"CreateHostProfileRequestSchema",{enumerable:true,get:function(){return chunkHVL3EWNB_js.k}});Object.defineProperty(exports,"CreateProducerProfileRequestSchema",{enumerable:true,get:function(){return chunkHVL3EWNB_js.l}});Object.defineProperty(exports,"HostProfileResponseSchema",{enumerable:true,get:function(){return chunkHVL3EWNB_js.g}});Object.defineProperty(exports,"KycStatus",{enumerable:true,get:function(){return chunkHVL3EWNB_js.c}});Object.defineProperty(exports,"ProducerExperienceLevel",{enumerable:true,get:function(){return chunkHVL3EWNB_js.f}});Object.defineProperty(exports,"ProducerProfileResponseSchema",{enumerable:true,get:function(){return chunkHVL3EWNB_js.h}});Object.defineProperty(exports,"ProducerVerificationStatus",{enumerable:true,get:function(){return chunkHVL3EWNB_js.e}});Object.defineProperty(exports,"UpdateUserRequestSchema",{enumerable:true,get:function(){return chunkHVL3EWNB_js.j}});Object.defineProperty(exports,"UserResponseSchema",{enumerable:true,get:function(){return chunkHVL3EWNB_js.i}});Object.defineProperty(exports,"UserRole",{enumerable:true,get:function(){return chunkHVL3EWNB_js.a}});Object.defineProperty(exports,"BookingOrigin",{enumerable:true,get:function(){return chunkVPAZHULG_js.a}});Object.defineProperty(exports,"BookingPaymentStatus",{enumerable:true,get:function(){return chunkVPAZHULG_js.e}});Object.defineProperty(exports,"BookingResponseSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.h}});Object.defineProperty(exports,"BookingState",{enumerable:true,get:function(){return chunkVPAZHULG_js.b}});Object.defineProperty(exports,"ConfirmBookingRequestSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.g}});Object.defineProperty(exports,"CreateBookingRequestSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.f}});Object.defineProperty(exports,"CreateJobListingRequestSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.i}});Object.defineProperty(exports,"IndicationOfInterestResponseSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.l}});Object.defineProperty(exports,"IoiState",{enumerable:true,get:function(){return chunkVPAZHULG_js.d}});Object.defineProperty(exports,"JobListingResponseSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.j}});Object.defineProperty(exports,"JobListingState",{enumerable:true,get:function(){return chunkVPAZHULG_js.c}});Object.defineProperty(exports,"SubmitIndicationOfInterestRequestSchema",{enumerable:true,get:function(){return chunkVPAZHULG_js.k}});Object.defineProperty(exports,"ApiResponseSchema",{enumerable:true,get:function(){return chunkGKYB3J5L_js.a}});Object.defineProperty(exports,"PaginationParamsSchema",{enumerable:true,get:function(){return chunkGKYB3J5L_js.b}});Object.defineProperty(exports,"ResponseMessages",{enumerable:true,get:function(){return chunkGKYB3J5L_js.c}});Object.defineProperty(exports,"DisputeResponseSchema",{enumerable:true,get:function(){return chunkZOBM5OSW_js.c}});Object.defineProperty(exports,"DisputeStatus",{enumerable:true,get:function(){return chunkZOBM5OSW_js.b}});Object.defineProperty(exports,"DisputeType",{enumerable:true,get:function(){return chunkZOBM5OSW_js.a}});Object.defineProperty(exports,"ApiErrorCode",{enumerable:true,get:function(){return chunkJT7SH43N_js.a}});Object.defineProperty(exports,"CreateEventRequestSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.j}});Object.defineProperty(exports,"EndViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.B}});Object.defineProperty(exports,"EventAccessModel",{enumerable:true,get:function(){return chunkVSYDI3WD_js.b}});Object.defineProperty(exports,"EventAllowListType",{enumerable:true,get:function(){return chunkVSYDI3WD_js.c}});Object.defineProperty(exports,"EventCardSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.m}});Object.defineProperty(exports,"EventCategory",{enumerable:true,get:function(){return chunkVSYDI3WD_js.e}});Object.defineProperty(exports,"EventResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.l}});Object.defineProperty(exports,"EventState",{enumerable:true,get:function(){return chunkVSYDI3WD_js.d}});Object.defineProperty(exports,"EventVisibility",{enumerable:true,get:function(){return chunkVSYDI3WD_js.a}});Object.defineProperty(exports,"LivePlaybackSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.t}});Object.defineProperty(exports,"MyEventCardSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.w}});Object.defineProperty(exports,"MyEventsQuerySchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.y}});Object.defineProperty(exports,"MyEventsResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.x}});Object.defineProperty(exports,"MyEventsTabSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.i}});Object.defineProperty(exports,"PagedEventsResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.q}});Object.defineProperty(exports,"PaginationCursorSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.o}});Object.defineProperty(exports,"PlaybackResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.v}});Object.defineProperty(exports,"RegisterForEventResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.r}});Object.defineProperty(exports,"RegistrationScope",{enumerable:true,get:function(){return chunkVSYDI3WD_js.g}});Object.defineProperty(exports,"RegistrationStatus",{enumerable:true,get:function(){return chunkVSYDI3WD_js.f}});Object.defineProperty(exports,"ReplayPlaybackSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.u}});Object.defineProperty(exports,"SearchEventsQuerySchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.p}});Object.defineProperty(exports,"StartViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.z}});Object.defineProperty(exports,"UpdateEventRequestSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.k}});Object.defineProperty(exports,"UpdateWatchProgressRequestSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.s}});Object.defineProperty(exports,"ViewerHomeResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.n}});Object.defineProperty(exports,"ViewerRegistrationView",{enumerable:true,get:function(){return chunkVSYDI3WD_js.h}});Object.defineProperty(exports,"ViewingSessionHeartbeatResponseSchema",{enumerable:true,get:function(){return chunkVSYDI3WD_js.A}});Object.defineProperty(exports,"JobInterestState",{enumerable:true,get:function(){return chunkUZZ46ZPG_js.a}});//# sourceMappingURL=index.js.map
2
2
  //# sourceMappingURL=index.js.map
package/dist/index.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export{b as NotificationChannel,a as NotificationPriority,d as NotificationResponseSchema,c as NotificationType}from'./chunk-SA4F4CDG.mjs';export{d as InitiatePaymentRequestSchema,e as InitiatePaymentResponseSchema,f as PayoutResponseSchema,c as PayoutStatus,b as TransactionStatus,a as TransactionType}from'./chunk-ZWWSPLKF.mjs';export{d as IngestCredentialsResponseSchema,b as IngestProtocol,c as PlaybackTokenResponseSchema,a as StreamStatus,e as TelemetryReportRequestSchema}from'./chunk-MIIRC5BK.mjs';export{m as ChangePasswordRequestSchema,n as CognitoTokenPayloadSchema,j as ForgotPasswordRequestSchema,k as ForgotPasswordResponseSchema,c as LoginRequestSchema,g as LoginResponseSchema,i as LogoutRequestSchema,h as RefreshTokenRequestSchema,a as RegisterRequestSchema,b as RegisterResponseSchema,e as ResendOtpRequestSchema,l as ResetPasswordRequestSchema,d as VerifyOtpRequestSchema,f as VerifyOtpResponseSchema}from'./chunk-HKU2VYQL.mjs';export{b as AccountStatus,d as AdminScopeCode,k as CreateHostProfileRequestSchema,l as CreateProducerProfileRequestSchema,g as HostProfileResponseSchema,c as KycStatus,f as ProducerExperienceLevel,h as ProducerProfileResponseSchema,e as ProducerVerificationStatus,j as UpdateUserRequestSchema,i as UserResponseSchema,a as UserRole}from'./chunk-JY2QSZFF.mjs';export{a as BookingOrigin,e as BookingPaymentStatus,h as BookingResponseSchema,b as BookingState,g as ConfirmBookingRequestSchema,f as CreateBookingRequestSchema,i as CreateJobListingRequestSchema,l as IndicationOfInterestResponseSchema,d as IoiState,j as JobListingResponseSchema,c as JobListingState,k as SubmitIndicationOfInterestRequestSchema}from'./chunk-SOOB6WM6.mjs';export{a as ApiResponseSchema,b as PaginationParamsSchema,c as ResponseMessages}from'./chunk-FE3AMYQL.mjs';export{c as DisputeResponseSchema,b as DisputeStatus,a as DisputeType}from'./chunk-CWGSFDFC.mjs';export{a as ApiErrorCode}from'./chunk-FSQX27QM.mjs';export{j as CreateEventRequestSchema,z as EndViewingSessionResponseSchema,b as EventAccessModel,c as EventAllowListType,m as EventCardSchema,e as EventCategory,l as EventResponseSchema,d as EventState,a as EventVisibility,u as MyEventCardSchema,w as MyEventsQuerySchema,v as MyEventsResponseSchema,i as MyEventsTabSchema,q as PagedEventsResponseSchema,o as PaginationCursorSchema,t as PlaybackResponseSchema,r as RegisterForEventResponseSchema,g as RegistrationScope,f as RegistrationStatus,p as SearchEventsQuerySchema,x as StartViewingSessionResponseSchema,k as UpdateEventRequestSchema,s as UpdateWatchProgressRequestSchema,n as ViewerHomeResponseSchema,h as ViewerRegistrationView,y as ViewingSessionHeartbeatResponseSchema}from'./chunk-2HCYHD66.mjs';export{a as JobInterestState}from'./chunk-Y5QIEJG2.mjs';//# sourceMappingURL=index.mjs.map
1
+ export{c as EquipmentCategory,d as ListProducersQuerySchema,j as ListProducersResponseSchema,a as MarketplaceCurrency,f as PublicProducerListCategorySchema,e as PublicProducerListEquipmentItemSchema,i as PublicProducerListItemSchema,g as PublicProducerListPortfolioItemSchema,h as PublicProducerListRateCardItemSchema,b as ServiceCategoryCode}from'./chunk-U36JHPMK.mjs';export{b as NotificationChannel,a as NotificationPriority,d as NotificationResponseSchema,c as NotificationType}from'./chunk-SA4F4CDG.mjs';export{m as AccessCheckRequestSchema,o as AccessCheckResponseSchema,e as AccessReason,k as CreatePurchaseResponseSchema,g as CtaMode,f as EntitlementStatus,h as InitiatePaymentRequestSchema,i as InitiatePaymentResponseSchema,d as PaymentStatus,j as PayoutResponseSchema,c as PayoutStatus,n as PaystackWebhookSchema,p as PricingQuoteResponseSchema,l as PurchaseStatusResponseSchema,b as TransactionStatus,a as TransactionType,q as ViewerEventDetailResponseSchema}from'./chunk-QIDNKMGT.mjs';export{d as IngestCredentialsResponseSchema,b as IngestProtocol,c as PlaybackTokenResponseSchema,a as StreamStatus,e as TelemetryReportRequestSchema}from'./chunk-MIIRC5BK.mjs';export{m as ChangePasswordRequestSchema,n as CognitoTokenPayloadSchema,j as ForgotPasswordRequestSchema,k as ForgotPasswordResponseSchema,c as LoginRequestSchema,g as LoginResponseSchema,i as LogoutRequestSchema,h as RefreshTokenRequestSchema,a as RegisterRequestSchema,b as RegisterResponseSchema,e as ResendOtpRequestSchema,l as ResetPasswordRequestSchema,d as VerifyOtpRequestSchema,f as VerifyOtpResponseSchema}from'./chunk-23M7ZAFZ.mjs';export{b as AccountStatus,d as AdminScopeCode,k as CreateHostProfileRequestSchema,l as CreateProducerProfileRequestSchema,g as HostProfileResponseSchema,c as KycStatus,f as ProducerExperienceLevel,h as ProducerProfileResponseSchema,e as ProducerVerificationStatus,j as UpdateUserRequestSchema,i as UserResponseSchema,a as UserRole}from'./chunk-ZUHLL2YZ.mjs';export{a as BookingOrigin,e as BookingPaymentStatus,h as BookingResponseSchema,b as BookingState,g as ConfirmBookingRequestSchema,f as CreateBookingRequestSchema,i as CreateJobListingRequestSchema,l as IndicationOfInterestResponseSchema,d as IoiState,j as JobListingResponseSchema,c as JobListingState,k as SubmitIndicationOfInterestRequestSchema}from'./chunk-SOOB6WM6.mjs';export{a as ApiResponseSchema,b as PaginationParamsSchema,c as ResponseMessages}from'./chunk-FE3AMYQL.mjs';export{c as DisputeResponseSchema,b as DisputeStatus,a as DisputeType}from'./chunk-CWGSFDFC.mjs';export{a as ApiErrorCode}from'./chunk-FSQX27QM.mjs';export{j as CreateEventRequestSchema,B as EndViewingSessionResponseSchema,b as EventAccessModel,c as EventAllowListType,m as EventCardSchema,e as EventCategory,l as EventResponseSchema,d as EventState,a as EventVisibility,t as LivePlaybackSchema,w as MyEventCardSchema,y as MyEventsQuerySchema,x as MyEventsResponseSchema,i as MyEventsTabSchema,q as PagedEventsResponseSchema,o as PaginationCursorSchema,v as PlaybackResponseSchema,r as RegisterForEventResponseSchema,g as RegistrationScope,f as RegistrationStatus,u as ReplayPlaybackSchema,p as SearchEventsQuerySchema,z as StartViewingSessionResponseSchema,k as UpdateEventRequestSchema,s as UpdateWatchProgressRequestSchema,n as ViewerHomeResponseSchema,h as ViewerRegistrationView,A as ViewingSessionHeartbeatResponseSchema}from'./chunk-2N4M7ZID.mjs';export{a as JobInterestState}from'./chunk-Y5QIEJG2.mjs';//# sourceMappingURL=index.mjs.map
2
2
  //# sourceMappingURL=index.mjs.map
@@ -0,0 +1,198 @@
1
+ import { z } from 'zod';
2
+
3
+ /** ISO 4217 codes supported on marketplace rate cards. */
4
+ declare const MarketplaceCurrency: {
5
+ readonly NGN: "NGN";
6
+ };
7
+ type MarketplaceCurrency = (typeof MarketplaceCurrency)[keyof typeof MarketplaceCurrency];
8
+ /**
9
+ * Known service category codes for producer capability filters.
10
+ * Additional codes may exist in the catalog; listing responses use `z.string()` for `code`.
11
+ */
12
+ declare const ServiceCategoryCode: {
13
+ readonly SOUND: "sound";
14
+ readonly LIGHTING: "lighting";
15
+ readonly VIDEO: "video";
16
+ readonly STAGING: "staging";
17
+ readonly AV: "av";
18
+ readonly LOGISTICS: "logistics";
19
+ };
20
+ type ServiceCategoryCode = (typeof ServiceCategoryCode)[keyof typeof ServiceCategoryCode];
21
+ /** Equipment manifest categories on public producer listings. */
22
+ declare const EquipmentCategory: {
23
+ readonly AUDIO: "audio";
24
+ readonly VIDEO: "video";
25
+ readonly LIGHTING: "lighting";
26
+ readonly STAGING: "staging";
27
+ readonly POWER: "power";
28
+ readonly OTHER: "other";
29
+ };
30
+ type EquipmentCategory = (typeof EquipmentCategory)[keyof typeof EquipmentCategory];
31
+
32
+ /**
33
+ * Query params for `GET /marketplace/producers`.
34
+ * Pagination: `cursor` is the bare `ProducerProfile.id` from the prior page's
35
+ * `nextCursor` (ordering is `createdAt DESC`, then `id DESC`).
36
+ */
37
+ declare const ListProducersQuerySchema: z.ZodObject<{
38
+ category: z.ZodOptional<z.ZodEnum<{
39
+ readonly SOUND: "sound";
40
+ readonly LIGHTING: "lighting";
41
+ readonly VIDEO: "video";
42
+ readonly STAGING: "staging";
43
+ readonly AV: "av";
44
+ readonly LOGISTICS: "logistics";
45
+ }>>;
46
+ location: z.ZodOptional<z.ZodString>;
47
+ minRate: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
48
+ maxRate: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
49
+ availabilityDate: z.ZodOptional<z.ZodString>;
50
+ limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
51
+ cursor: z.ZodOptional<z.ZodString>;
52
+ }, z.core.$strip>;
53
+ declare const PublicProducerListEquipmentItemSchema: z.ZodObject<{
54
+ id: z.ZodUUID;
55
+ name: z.ZodString;
56
+ category: z.ZodEnum<{
57
+ readonly AUDIO: "audio";
58
+ readonly VIDEO: "video";
59
+ readonly LIGHTING: "lighting";
60
+ readonly STAGING: "staging";
61
+ readonly POWER: "power";
62
+ readonly OTHER: "other";
63
+ }>;
64
+ notes: z.ZodNullable<z.ZodString>;
65
+ }, z.core.$strip>;
66
+ declare const PublicProducerListCategorySchema: z.ZodObject<{
67
+ code: z.ZodString;
68
+ label: z.ZodString;
69
+ }, z.core.$strip>;
70
+ declare const PublicProducerListPortfolioItemSchema: z.ZodObject<{
71
+ id: z.ZodUUID;
72
+ title: z.ZodString;
73
+ description: z.ZodNullable<z.ZodString>;
74
+ mediaUrl: z.ZodNullable<z.ZodURL>;
75
+ externalUrl: z.ZodNullable<z.ZodURL>;
76
+ createdAt: z.ZodISODateTime;
77
+ }, z.core.$strip>;
78
+ declare const PublicProducerListRateCardItemSchema: z.ZodObject<{
79
+ id: z.ZodUUID;
80
+ label: z.ZodString;
81
+ amount: z.ZodString;
82
+ currency: z.ZodEnum<{
83
+ readonly NGN: "NGN";
84
+ }>;
85
+ notes: z.ZodNullable<z.ZodString>;
86
+ }, z.core.$strip>;
87
+ /** One element of `ListProducersResponse.producers`. */
88
+ declare const PublicProducerListItemSchema: z.ZodObject<{
89
+ id: z.ZodUUID;
90
+ userId: z.ZodUUID;
91
+ companyName: z.ZodNullable<z.ZodString>;
92
+ bio: z.ZodNullable<z.ZodString>;
93
+ yearsExperience: z.ZodNullable<z.ZodNumber>;
94
+ serviceAreas: z.ZodArray<z.ZodString>;
95
+ maxDistanceKm: z.ZodNullable<z.ZodNumber>;
96
+ isAvailable: z.ZodBoolean;
97
+ averageRating: z.ZodString;
98
+ totalReviews: z.ZodNumber;
99
+ completionRate: z.ZodString;
100
+ equipmentManifest: z.ZodArray<z.ZodObject<{
101
+ id: z.ZodUUID;
102
+ name: z.ZodString;
103
+ category: z.ZodEnum<{
104
+ readonly AUDIO: "audio";
105
+ readonly VIDEO: "video";
106
+ readonly LIGHTING: "lighting";
107
+ readonly STAGING: "staging";
108
+ readonly POWER: "power";
109
+ readonly OTHER: "other";
110
+ }>;
111
+ notes: z.ZodNullable<z.ZodString>;
112
+ }, z.core.$strip>>;
113
+ categories: z.ZodArray<z.ZodObject<{
114
+ code: z.ZodString;
115
+ label: z.ZodString;
116
+ }, z.core.$strip>>;
117
+ portfolio: z.ZodArray<z.ZodObject<{
118
+ id: z.ZodUUID;
119
+ title: z.ZodString;
120
+ description: z.ZodNullable<z.ZodString>;
121
+ mediaUrl: z.ZodNullable<z.ZodURL>;
122
+ externalUrl: z.ZodNullable<z.ZodURL>;
123
+ createdAt: z.ZodISODateTime;
124
+ }, z.core.$strip>>;
125
+ rateCard: z.ZodArray<z.ZodObject<{
126
+ id: z.ZodUUID;
127
+ label: z.ZodString;
128
+ amount: z.ZodString;
129
+ currency: z.ZodEnum<{
130
+ readonly NGN: "NGN";
131
+ }>;
132
+ notes: z.ZodNullable<z.ZodString>;
133
+ }, z.core.$strip>>;
134
+ createdAt: z.ZodISODateTime;
135
+ updatedAt: z.ZodISODateTime;
136
+ }, z.core.$strip>;
137
+ declare const ListProducersResponseSchema: z.ZodObject<{
138
+ producers: z.ZodArray<z.ZodObject<{
139
+ id: z.ZodUUID;
140
+ userId: z.ZodUUID;
141
+ companyName: z.ZodNullable<z.ZodString>;
142
+ bio: z.ZodNullable<z.ZodString>;
143
+ yearsExperience: z.ZodNullable<z.ZodNumber>;
144
+ serviceAreas: z.ZodArray<z.ZodString>;
145
+ maxDistanceKm: z.ZodNullable<z.ZodNumber>;
146
+ isAvailable: z.ZodBoolean;
147
+ averageRating: z.ZodString;
148
+ totalReviews: z.ZodNumber;
149
+ completionRate: z.ZodString;
150
+ equipmentManifest: z.ZodArray<z.ZodObject<{
151
+ id: z.ZodUUID;
152
+ name: z.ZodString;
153
+ category: z.ZodEnum<{
154
+ readonly AUDIO: "audio";
155
+ readonly VIDEO: "video";
156
+ readonly LIGHTING: "lighting";
157
+ readonly STAGING: "staging";
158
+ readonly POWER: "power";
159
+ readonly OTHER: "other";
160
+ }>;
161
+ notes: z.ZodNullable<z.ZodString>;
162
+ }, z.core.$strip>>;
163
+ categories: z.ZodArray<z.ZodObject<{
164
+ code: z.ZodString;
165
+ label: z.ZodString;
166
+ }, z.core.$strip>>;
167
+ portfolio: z.ZodArray<z.ZodObject<{
168
+ id: z.ZodUUID;
169
+ title: z.ZodString;
170
+ description: z.ZodNullable<z.ZodString>;
171
+ mediaUrl: z.ZodNullable<z.ZodURL>;
172
+ externalUrl: z.ZodNullable<z.ZodURL>;
173
+ createdAt: z.ZodISODateTime;
174
+ }, z.core.$strip>>;
175
+ rateCard: z.ZodArray<z.ZodObject<{
176
+ id: z.ZodUUID;
177
+ label: z.ZodString;
178
+ amount: z.ZodString;
179
+ currency: z.ZodEnum<{
180
+ readonly NGN: "NGN";
181
+ }>;
182
+ notes: z.ZodNullable<z.ZodString>;
183
+ }, z.core.$strip>>;
184
+ createdAt: z.ZodISODateTime;
185
+ updatedAt: z.ZodISODateTime;
186
+ }, z.core.$strip>>;
187
+ nextCursor: z.ZodNullable<z.ZodUUID>;
188
+ }, z.core.$strip>;
189
+
190
+ type ListProducersQuery = z.infer<typeof ListProducersQuerySchema>;
191
+ type PublicProducerListEquipmentItem = z.infer<typeof PublicProducerListEquipmentItemSchema>;
192
+ type PublicProducerListCategory = z.infer<typeof PublicProducerListCategorySchema>;
193
+ type PublicProducerListPortfolioItem = z.infer<typeof PublicProducerListPortfolioItemSchema>;
194
+ type PublicProducerListRateCardItem = z.infer<typeof PublicProducerListRateCardItemSchema>;
195
+ type PublicProducerListItem = z.infer<typeof PublicProducerListItemSchema>;
196
+ type ListProducersResponse = z.infer<typeof ListProducersResponseSchema>;
197
+
198
+ export { EquipmentCategory, type ListProducersQuery, ListProducersQuerySchema, type ListProducersResponse, ListProducersResponseSchema, MarketplaceCurrency, type PublicProducerListCategory, PublicProducerListCategorySchema, type PublicProducerListEquipmentItem, PublicProducerListEquipmentItemSchema, type PublicProducerListItem, PublicProducerListItemSchema, type PublicProducerListPortfolioItem, PublicProducerListPortfolioItemSchema, type PublicProducerListRateCardItem, PublicProducerListRateCardItemSchema, ServiceCategoryCode };
@@ -0,0 +1,198 @@
1
+ import { z } from 'zod';
2
+
3
+ /** ISO 4217 codes supported on marketplace rate cards. */
4
+ declare const MarketplaceCurrency: {
5
+ readonly NGN: "NGN";
6
+ };
7
+ type MarketplaceCurrency = (typeof MarketplaceCurrency)[keyof typeof MarketplaceCurrency];
8
+ /**
9
+ * Known service category codes for producer capability filters.
10
+ * Additional codes may exist in the catalog; listing responses use `z.string()` for `code`.
11
+ */
12
+ declare const ServiceCategoryCode: {
13
+ readonly SOUND: "sound";
14
+ readonly LIGHTING: "lighting";
15
+ readonly VIDEO: "video";
16
+ readonly STAGING: "staging";
17
+ readonly AV: "av";
18
+ readonly LOGISTICS: "logistics";
19
+ };
20
+ type ServiceCategoryCode = (typeof ServiceCategoryCode)[keyof typeof ServiceCategoryCode];
21
+ /** Equipment manifest categories on public producer listings. */
22
+ declare const EquipmentCategory: {
23
+ readonly AUDIO: "audio";
24
+ readonly VIDEO: "video";
25
+ readonly LIGHTING: "lighting";
26
+ readonly STAGING: "staging";
27
+ readonly POWER: "power";
28
+ readonly OTHER: "other";
29
+ };
30
+ type EquipmentCategory = (typeof EquipmentCategory)[keyof typeof EquipmentCategory];
31
+
32
+ /**
33
+ * Query params for `GET /marketplace/producers`.
34
+ * Pagination: `cursor` is the bare `ProducerProfile.id` from the prior page's
35
+ * `nextCursor` (ordering is `createdAt DESC`, then `id DESC`).
36
+ */
37
+ declare const ListProducersQuerySchema: z.ZodObject<{
38
+ category: z.ZodOptional<z.ZodEnum<{
39
+ readonly SOUND: "sound";
40
+ readonly LIGHTING: "lighting";
41
+ readonly VIDEO: "video";
42
+ readonly STAGING: "staging";
43
+ readonly AV: "av";
44
+ readonly LOGISTICS: "logistics";
45
+ }>>;
46
+ location: z.ZodOptional<z.ZodString>;
47
+ minRate: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
48
+ maxRate: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
49
+ availabilityDate: z.ZodOptional<z.ZodString>;
50
+ limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
51
+ cursor: z.ZodOptional<z.ZodString>;
52
+ }, z.core.$strip>;
53
+ declare const PublicProducerListEquipmentItemSchema: z.ZodObject<{
54
+ id: z.ZodUUID;
55
+ name: z.ZodString;
56
+ category: z.ZodEnum<{
57
+ readonly AUDIO: "audio";
58
+ readonly VIDEO: "video";
59
+ readonly LIGHTING: "lighting";
60
+ readonly STAGING: "staging";
61
+ readonly POWER: "power";
62
+ readonly OTHER: "other";
63
+ }>;
64
+ notes: z.ZodNullable<z.ZodString>;
65
+ }, z.core.$strip>;
66
+ declare const PublicProducerListCategorySchema: z.ZodObject<{
67
+ code: z.ZodString;
68
+ label: z.ZodString;
69
+ }, z.core.$strip>;
70
+ declare const PublicProducerListPortfolioItemSchema: z.ZodObject<{
71
+ id: z.ZodUUID;
72
+ title: z.ZodString;
73
+ description: z.ZodNullable<z.ZodString>;
74
+ mediaUrl: z.ZodNullable<z.ZodURL>;
75
+ externalUrl: z.ZodNullable<z.ZodURL>;
76
+ createdAt: z.ZodISODateTime;
77
+ }, z.core.$strip>;
78
+ declare const PublicProducerListRateCardItemSchema: z.ZodObject<{
79
+ id: z.ZodUUID;
80
+ label: z.ZodString;
81
+ amount: z.ZodString;
82
+ currency: z.ZodEnum<{
83
+ readonly NGN: "NGN";
84
+ }>;
85
+ notes: z.ZodNullable<z.ZodString>;
86
+ }, z.core.$strip>;
87
+ /** One element of `ListProducersResponse.producers`. */
88
+ declare const PublicProducerListItemSchema: z.ZodObject<{
89
+ id: z.ZodUUID;
90
+ userId: z.ZodUUID;
91
+ companyName: z.ZodNullable<z.ZodString>;
92
+ bio: z.ZodNullable<z.ZodString>;
93
+ yearsExperience: z.ZodNullable<z.ZodNumber>;
94
+ serviceAreas: z.ZodArray<z.ZodString>;
95
+ maxDistanceKm: z.ZodNullable<z.ZodNumber>;
96
+ isAvailable: z.ZodBoolean;
97
+ averageRating: z.ZodString;
98
+ totalReviews: z.ZodNumber;
99
+ completionRate: z.ZodString;
100
+ equipmentManifest: z.ZodArray<z.ZodObject<{
101
+ id: z.ZodUUID;
102
+ name: z.ZodString;
103
+ category: z.ZodEnum<{
104
+ readonly AUDIO: "audio";
105
+ readonly VIDEO: "video";
106
+ readonly LIGHTING: "lighting";
107
+ readonly STAGING: "staging";
108
+ readonly POWER: "power";
109
+ readonly OTHER: "other";
110
+ }>;
111
+ notes: z.ZodNullable<z.ZodString>;
112
+ }, z.core.$strip>>;
113
+ categories: z.ZodArray<z.ZodObject<{
114
+ code: z.ZodString;
115
+ label: z.ZodString;
116
+ }, z.core.$strip>>;
117
+ portfolio: z.ZodArray<z.ZodObject<{
118
+ id: z.ZodUUID;
119
+ title: z.ZodString;
120
+ description: z.ZodNullable<z.ZodString>;
121
+ mediaUrl: z.ZodNullable<z.ZodURL>;
122
+ externalUrl: z.ZodNullable<z.ZodURL>;
123
+ createdAt: z.ZodISODateTime;
124
+ }, z.core.$strip>>;
125
+ rateCard: z.ZodArray<z.ZodObject<{
126
+ id: z.ZodUUID;
127
+ label: z.ZodString;
128
+ amount: z.ZodString;
129
+ currency: z.ZodEnum<{
130
+ readonly NGN: "NGN";
131
+ }>;
132
+ notes: z.ZodNullable<z.ZodString>;
133
+ }, z.core.$strip>>;
134
+ createdAt: z.ZodISODateTime;
135
+ updatedAt: z.ZodISODateTime;
136
+ }, z.core.$strip>;
137
+ declare const ListProducersResponseSchema: z.ZodObject<{
138
+ producers: z.ZodArray<z.ZodObject<{
139
+ id: z.ZodUUID;
140
+ userId: z.ZodUUID;
141
+ companyName: z.ZodNullable<z.ZodString>;
142
+ bio: z.ZodNullable<z.ZodString>;
143
+ yearsExperience: z.ZodNullable<z.ZodNumber>;
144
+ serviceAreas: z.ZodArray<z.ZodString>;
145
+ maxDistanceKm: z.ZodNullable<z.ZodNumber>;
146
+ isAvailable: z.ZodBoolean;
147
+ averageRating: z.ZodString;
148
+ totalReviews: z.ZodNumber;
149
+ completionRate: z.ZodString;
150
+ equipmentManifest: z.ZodArray<z.ZodObject<{
151
+ id: z.ZodUUID;
152
+ name: z.ZodString;
153
+ category: z.ZodEnum<{
154
+ readonly AUDIO: "audio";
155
+ readonly VIDEO: "video";
156
+ readonly LIGHTING: "lighting";
157
+ readonly STAGING: "staging";
158
+ readonly POWER: "power";
159
+ readonly OTHER: "other";
160
+ }>;
161
+ notes: z.ZodNullable<z.ZodString>;
162
+ }, z.core.$strip>>;
163
+ categories: z.ZodArray<z.ZodObject<{
164
+ code: z.ZodString;
165
+ label: z.ZodString;
166
+ }, z.core.$strip>>;
167
+ portfolio: z.ZodArray<z.ZodObject<{
168
+ id: z.ZodUUID;
169
+ title: z.ZodString;
170
+ description: z.ZodNullable<z.ZodString>;
171
+ mediaUrl: z.ZodNullable<z.ZodURL>;
172
+ externalUrl: z.ZodNullable<z.ZodURL>;
173
+ createdAt: z.ZodISODateTime;
174
+ }, z.core.$strip>>;
175
+ rateCard: z.ZodArray<z.ZodObject<{
176
+ id: z.ZodUUID;
177
+ label: z.ZodString;
178
+ amount: z.ZodString;
179
+ currency: z.ZodEnum<{
180
+ readonly NGN: "NGN";
181
+ }>;
182
+ notes: z.ZodNullable<z.ZodString>;
183
+ }, z.core.$strip>>;
184
+ createdAt: z.ZodISODateTime;
185
+ updatedAt: z.ZodISODateTime;
186
+ }, z.core.$strip>>;
187
+ nextCursor: z.ZodNullable<z.ZodUUID>;
188
+ }, z.core.$strip>;
189
+
190
+ type ListProducersQuery = z.infer<typeof ListProducersQuerySchema>;
191
+ type PublicProducerListEquipmentItem = z.infer<typeof PublicProducerListEquipmentItemSchema>;
192
+ type PublicProducerListCategory = z.infer<typeof PublicProducerListCategorySchema>;
193
+ type PublicProducerListPortfolioItem = z.infer<typeof PublicProducerListPortfolioItemSchema>;
194
+ type PublicProducerListRateCardItem = z.infer<typeof PublicProducerListRateCardItemSchema>;
195
+ type PublicProducerListItem = z.infer<typeof PublicProducerListItemSchema>;
196
+ type ListProducersResponse = z.infer<typeof ListProducersResponseSchema>;
197
+
198
+ export { EquipmentCategory, type ListProducersQuery, ListProducersQuerySchema, type ListProducersResponse, ListProducersResponseSchema, MarketplaceCurrency, type PublicProducerListCategory, PublicProducerListCategorySchema, type PublicProducerListEquipmentItem, PublicProducerListEquipmentItemSchema, type PublicProducerListItem, PublicProducerListItemSchema, type PublicProducerListPortfolioItem, PublicProducerListPortfolioItemSchema, type PublicProducerListRateCardItem, PublicProducerListRateCardItemSchema, ServiceCategoryCode };
@@ -0,0 +1,2 @@
1
+ 'use strict';var chunkRXQ2VPMW_js=require('../chunk-RXQ2VPMW.js');Object.defineProperty(exports,"EquipmentCategory",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.c}});Object.defineProperty(exports,"ListProducersQuerySchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.d}});Object.defineProperty(exports,"ListProducersResponseSchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.j}});Object.defineProperty(exports,"MarketplaceCurrency",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.a}});Object.defineProperty(exports,"PublicProducerListCategorySchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.f}});Object.defineProperty(exports,"PublicProducerListEquipmentItemSchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.e}});Object.defineProperty(exports,"PublicProducerListItemSchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.i}});Object.defineProperty(exports,"PublicProducerListPortfolioItemSchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.g}});Object.defineProperty(exports,"PublicProducerListRateCardItemSchema",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.h}});Object.defineProperty(exports,"ServiceCategoryCode",{enumerable:true,get:function(){return chunkRXQ2VPMW_js.b}});//# sourceMappingURL=index.js.map
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
@@ -0,0 +1,2 @@
1
+ export{c as EquipmentCategory,d as ListProducersQuerySchema,j as ListProducersResponseSchema,a as MarketplaceCurrency,f as PublicProducerListCategorySchema,e as PublicProducerListEquipmentItemSchema,i as PublicProducerListItemSchema,g as PublicProducerListPortfolioItemSchema,h as PublicProducerListRateCardItemSchema,b as ServiceCategoryCode}from'../chunk-U36JHPMK.mjs';//# sourceMappingURL=index.mjs.map
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.mjs"}