@livdot-tech/contracts 1.11.22 → 1.11.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/index.js +1 -1
- package/dist/auth/index.mjs +1 -1
- package/dist/{chunk-L3KEUJF7.mjs → chunk-5LO5B6I4.mjs} +2 -2
- package/dist/{chunk-L3KEUJF7.mjs.map → chunk-5LO5B6I4.mjs.map} +1 -1
- package/dist/{chunk-K5FMVZM6.mjs → chunk-FRKIW4XY.mjs} +2 -2
- package/dist/{chunk-K5FMVZM6.mjs.map → chunk-FRKIW4XY.mjs.map} +1 -1
- package/dist/{chunk-FNCKN2GO.js → chunk-GC3S2VCJ.js} +2 -2
- package/dist/{chunk-FNCKN2GO.js.map → chunk-GC3S2VCJ.js.map} +1 -1
- package/dist/{chunk-T7XJMKJN.js → chunk-GSVMAZB3.js} +2 -2
- package/dist/{chunk-T7XJMKJN.js.map → chunk-GSVMAZB3.js.map} +1 -1
- package/dist/{chunk-7YTPBEOO.mjs → chunk-HTPPIZBE.mjs} +2 -2
- package/dist/{chunk-7YTPBEOO.mjs.map → chunk-HTPPIZBE.mjs.map} +1 -1
- package/dist/chunk-KK3YLEFV.js +2 -0
- package/dist/chunk-KK3YLEFV.js.map +1 -0
- package/dist/chunk-MAKIYFAD.mjs +2 -0
- package/dist/chunk-MAKIYFAD.mjs.map +1 -0
- package/dist/chunk-MMROBRAM.js +2 -0
- package/dist/chunk-MMROBRAM.js.map +1 -0
- package/dist/{chunk-2UZXINLZ.js → chunk-P3PKA6IF.js} +2 -2
- package/dist/{chunk-2UZXINLZ.js.map → chunk-P3PKA6IF.js.map} +1 -1
- package/dist/chunk-PCCOCHJN.mjs +2 -0
- package/dist/chunk-PCCOCHJN.mjs.map +1 -0
- package/dist/dispute/index.js +1 -1
- package/dist/dispute/index.mjs +1 -1
- package/dist/event/index.d.mts +99 -0
- package/dist/event/index.d.ts +99 -0
- package/dist/event/index.js +1 -1
- package/dist/event/index.mjs +1 -1
- package/dist/host/index.js +1 -1
- package/dist/host/index.mjs +1 -1
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/moment/index.d.mts +112 -0
- package/dist/moment/index.d.ts +112 -0
- package/dist/moment/index.js +2 -0
- package/dist/moment/index.js.map +1 -0
- package/dist/moment/index.mjs +2 -0
- package/dist/moment/index.mjs.map +1 -0
- package/dist/notification/index.js +1 -1
- package/dist/notification/index.mjs +1 -1
- package/dist/payment/index.js +1 -1
- package/dist/payment/index.mjs +1 -1
- package/dist/user/index.js +1 -1
- package/dist/user/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-MFRAOZDF.mjs +0 -2
- package/dist/chunk-MFRAOZDF.mjs.map +0 -1
- package/dist/chunk-WYUQXTFQ.js +0 -2
- package/dist/chunk-WYUQXTFQ.js.map +0 -1
package/dist/event/index.d.mts
CHANGED
|
@@ -835,6 +835,105 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
835
835
|
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
836
836
|
}, z.core.$strip>;
|
|
837
837
|
}, z.core.$strip>>;
|
|
838
|
+
featured: z.ZodNullable<z.ZodObject<{
|
|
839
|
+
id: z.ZodUUID;
|
|
840
|
+
title: z.ZodString;
|
|
841
|
+
timezone: z.ZodString;
|
|
842
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
843
|
+
category: z.ZodEnum<{
|
|
844
|
+
readonly ART: "ART";
|
|
845
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
846
|
+
readonly SCIENCE: "SCIENCE";
|
|
847
|
+
readonly TRAVEL: "TRAVEL";
|
|
848
|
+
readonly HISTORY: "HISTORY";
|
|
849
|
+
readonly LITERATURE: "LITERATURE";
|
|
850
|
+
readonly COOKING: "COOKING";
|
|
851
|
+
readonly FITNESS: "FITNESS";
|
|
852
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
853
|
+
readonly GARDENING: "GARDENING";
|
|
854
|
+
readonly EDUCATION: "EDUCATION";
|
|
855
|
+
readonly FASHION: "FASHION";
|
|
856
|
+
readonly MOVIES: "MOVIES";
|
|
857
|
+
readonly SPORTS: "SPORTS";
|
|
858
|
+
readonly POLITICS: "POLITICS";
|
|
859
|
+
readonly HEALTH: "HEALTH";
|
|
860
|
+
readonly GAMING: "GAMING";
|
|
861
|
+
readonly FINANCE: "FINANCE";
|
|
862
|
+
readonly NATURE: "NATURE";
|
|
863
|
+
readonly CONCERT: "CONCERT";
|
|
864
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
865
|
+
readonly WEDDING: "WEDDING";
|
|
866
|
+
readonly CORPORATE: "CORPORATE";
|
|
867
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
868
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
869
|
+
readonly PARTY: "PARTY";
|
|
870
|
+
readonly OTHER: "OTHER";
|
|
871
|
+
}>;
|
|
872
|
+
scheduledStartLocal: z.ZodString;
|
|
873
|
+
scheduledEndLocal: z.ZodString;
|
|
874
|
+
scheduledStart: z.ZodISODateTime;
|
|
875
|
+
scheduledEnd: z.ZodISODateTime;
|
|
876
|
+
state: z.ZodEnum<{
|
|
877
|
+
readonly DRAFT: "DRAFT";
|
|
878
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
879
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
880
|
+
readonly LIVE: "LIVE";
|
|
881
|
+
readonly ENDED: "ENDED";
|
|
882
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
883
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
884
|
+
readonly CANCELLED: "CANCELLED";
|
|
885
|
+
readonly PAUSED: "PAUSED";
|
|
886
|
+
readonly FAILED: "FAILED";
|
|
887
|
+
}>;
|
|
888
|
+
accessModel: z.ZodEnum<{
|
|
889
|
+
readonly FREE: "FREE";
|
|
890
|
+
readonly PAID: "PAID";
|
|
891
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
892
|
+
}>;
|
|
893
|
+
ticketPrice: z.ZodNullable<z.ZodObject<{
|
|
894
|
+
amountMinor: z.ZodString;
|
|
895
|
+
currency: z.ZodEnum<{
|
|
896
|
+
readonly NGN: "NGN";
|
|
897
|
+
readonly USD: "USD";
|
|
898
|
+
readonly GBP: "GBP";
|
|
899
|
+
readonly EUR: "EUR";
|
|
900
|
+
}>;
|
|
901
|
+
}, z.core.$strip>>;
|
|
902
|
+
isFeatured: z.ZodBoolean;
|
|
903
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
904
|
+
viewerCount: z.ZodNumber;
|
|
905
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
906
|
+
kind: z.ZodEnum<{
|
|
907
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
908
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
909
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
910
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
911
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
912
|
+
readonly WAITLIST: "WAITLIST";
|
|
913
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
914
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
915
|
+
}>;
|
|
916
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
917
|
+
amountMinor: z.ZodString;
|
|
918
|
+
currency: z.ZodEnum<{
|
|
919
|
+
readonly NGN: "NGN";
|
|
920
|
+
readonly USD: "USD";
|
|
921
|
+
readonly GBP: "GBP";
|
|
922
|
+
readonly EUR: "EUR";
|
|
923
|
+
}>;
|
|
924
|
+
}, z.core.$strip>>;
|
|
925
|
+
}, z.core.$strip>>;
|
|
926
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
927
|
+
viewer: z.ZodObject<{
|
|
928
|
+
registration: z.ZodEnum<{
|
|
929
|
+
ACTIVE: string;
|
|
930
|
+
PENDING: string;
|
|
931
|
+
NONE: string;
|
|
932
|
+
}>;
|
|
933
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
934
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
935
|
+
}, z.core.$strip>;
|
|
936
|
+
}, z.core.$strip>>;
|
|
838
937
|
}, z.core.$strip>;
|
|
839
938
|
declare const SearchEventsQuerySchema: z.ZodObject<{
|
|
840
939
|
pageNumber: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
package/dist/event/index.d.ts
CHANGED
|
@@ -835,6 +835,105 @@ declare const ViewerHomeResponseSchema: z.ZodObject<{
|
|
|
835
835
|
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
836
836
|
}, z.core.$strip>;
|
|
837
837
|
}, z.core.$strip>>;
|
|
838
|
+
featured: z.ZodNullable<z.ZodObject<{
|
|
839
|
+
id: z.ZodUUID;
|
|
840
|
+
title: z.ZodString;
|
|
841
|
+
timezone: z.ZodString;
|
|
842
|
+
coverImageUrl: z.ZodNullable<z.ZodURL>;
|
|
843
|
+
category: z.ZodEnum<{
|
|
844
|
+
readonly ART: "ART";
|
|
845
|
+
readonly TECHNOLOGY: "TECHNOLOGY";
|
|
846
|
+
readonly SCIENCE: "SCIENCE";
|
|
847
|
+
readonly TRAVEL: "TRAVEL";
|
|
848
|
+
readonly HISTORY: "HISTORY";
|
|
849
|
+
readonly LITERATURE: "LITERATURE";
|
|
850
|
+
readonly COOKING: "COOKING";
|
|
851
|
+
readonly FITNESS: "FITNESS";
|
|
852
|
+
readonly PHOTOGRAPHY: "PHOTOGRAPHY";
|
|
853
|
+
readonly GARDENING: "GARDENING";
|
|
854
|
+
readonly EDUCATION: "EDUCATION";
|
|
855
|
+
readonly FASHION: "FASHION";
|
|
856
|
+
readonly MOVIES: "MOVIES";
|
|
857
|
+
readonly SPORTS: "SPORTS";
|
|
858
|
+
readonly POLITICS: "POLITICS";
|
|
859
|
+
readonly HEALTH: "HEALTH";
|
|
860
|
+
readonly GAMING: "GAMING";
|
|
861
|
+
readonly FINANCE: "FINANCE";
|
|
862
|
+
readonly NATURE: "NATURE";
|
|
863
|
+
readonly CONCERT: "CONCERT";
|
|
864
|
+
readonly FESTIVAL: "FESTIVAL";
|
|
865
|
+
readonly WEDDING: "WEDDING";
|
|
866
|
+
readonly CORPORATE: "CORPORATE";
|
|
867
|
+
readonly RELIGIOUS: "RELIGIOUS";
|
|
868
|
+
readonly BIRTHDAY: "BIRTHDAY";
|
|
869
|
+
readonly PARTY: "PARTY";
|
|
870
|
+
readonly OTHER: "OTHER";
|
|
871
|
+
}>;
|
|
872
|
+
scheduledStartLocal: z.ZodString;
|
|
873
|
+
scheduledEndLocal: z.ZodString;
|
|
874
|
+
scheduledStart: z.ZodISODateTime;
|
|
875
|
+
scheduledEnd: z.ZodISODateTime;
|
|
876
|
+
state: z.ZodEnum<{
|
|
877
|
+
readonly DRAFT: "DRAFT";
|
|
878
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
879
|
+
readonly READY_FOR_TEST: "READY_FOR_TEST";
|
|
880
|
+
readonly LIVE: "LIVE";
|
|
881
|
+
readonly ENDED: "ENDED";
|
|
882
|
+
readonly REPLAY_READY: "REPLAY_READY";
|
|
883
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
884
|
+
readonly CANCELLED: "CANCELLED";
|
|
885
|
+
readonly PAUSED: "PAUSED";
|
|
886
|
+
readonly FAILED: "FAILED";
|
|
887
|
+
}>;
|
|
888
|
+
accessModel: z.ZodEnum<{
|
|
889
|
+
readonly FREE: "FREE";
|
|
890
|
+
readonly PAID: "PAID";
|
|
891
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
892
|
+
}>;
|
|
893
|
+
ticketPrice: z.ZodNullable<z.ZodObject<{
|
|
894
|
+
amountMinor: z.ZodString;
|
|
895
|
+
currency: z.ZodEnum<{
|
|
896
|
+
readonly NGN: "NGN";
|
|
897
|
+
readonly USD: "USD";
|
|
898
|
+
readonly GBP: "GBP";
|
|
899
|
+
readonly EUR: "EUR";
|
|
900
|
+
}>;
|
|
901
|
+
}, z.core.$strip>>;
|
|
902
|
+
isFeatured: z.ZodBoolean;
|
|
903
|
+
hostDisplayName: z.ZodNullable<z.ZodString>;
|
|
904
|
+
viewerCount: z.ZodNumber;
|
|
905
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
906
|
+
kind: z.ZodEnum<{
|
|
907
|
+
readonly BUY_TICKET: "BUY_TICKET";
|
|
908
|
+
readonly COMPLETE_PAYMENT: "COMPLETE_PAYMENT";
|
|
909
|
+
readonly WATCH_NOW: "WATCH_NOW";
|
|
910
|
+
readonly WATCH_REPLAY: "WATCH_REPLAY";
|
|
911
|
+
readonly REGISTER_FREE: "REGISTER_FREE";
|
|
912
|
+
readonly WAITLIST: "WAITLIST";
|
|
913
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
914
|
+
readonly REPLAY_PROCESSING: "REPLAY_PROCESSING";
|
|
915
|
+
}>;
|
|
916
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
917
|
+
amountMinor: z.ZodString;
|
|
918
|
+
currency: z.ZodEnum<{
|
|
919
|
+
readonly NGN: "NGN";
|
|
920
|
+
readonly USD: "USD";
|
|
921
|
+
readonly GBP: "GBP";
|
|
922
|
+
readonly EUR: "EUR";
|
|
923
|
+
}>;
|
|
924
|
+
}, z.core.$strip>>;
|
|
925
|
+
}, z.core.$strip>>;
|
|
926
|
+
durationMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
927
|
+
viewer: z.ZodObject<{
|
|
928
|
+
registration: z.ZodEnum<{
|
|
929
|
+
ACTIVE: string;
|
|
930
|
+
PENDING: string;
|
|
931
|
+
NONE: string;
|
|
932
|
+
}>;
|
|
933
|
+
progressPct: z.ZodOptional<z.ZodNumber>;
|
|
934
|
+
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
935
|
+
}, z.core.$strip>;
|
|
936
|
+
}, z.core.$strip>>;
|
|
838
937
|
}, z.core.$strip>;
|
|
839
938
|
declare const SearchEventsQuerySchema: z.ZodObject<{
|
|
840
939
|
pageNumber: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
package/dist/event/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var chunkMMROBRAM_js=require('../chunk-MMROBRAM.js');require('../chunk-O3GYEMUB.js');Object.defineProperty(exports,"CategorySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ya}});Object.defineProperty(exports,"CreateEventRequestSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js._}});Object.defineProperty(exports,"CurrencySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.xa}});Object.defineProperty(exports,"DiscoverAggregateResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.fa}});Object.defineProperty(exports,"DiscoverEvents",{enumerable:true,get:function(){return chunkMMROBRAM_js.l}});Object.defineProperty(exports,"DiscoverResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ha}});Object.defineProperty(exports,"DiscoverSectionResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ga}});Object.defineProperty(exports,"EndViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.va}});Object.defineProperty(exports,"EntitlementKind",{enumerable:true,get:function(){return chunkMMROBRAM_js.n}});Object.defineProperty(exports,"EventAccessModel",{enumerable:true,get:function(){return chunkMMROBRAM_js.c}});Object.defineProperty(exports,"EventAllowListType",{enumerable:true,get:function(){return chunkMMROBRAM_js.f}});Object.defineProperty(exports,"EventCardCtaSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.aa}});Object.defineProperty(exports,"EventCardSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ca}});Object.defineProperty(exports,"EventCategory",{enumerable:true,get:function(){return chunkMMROBRAM_js.h}});Object.defineProperty(exports,"EventProductionMode",{enumerable:true,get:function(){return chunkMMROBRAM_js.d}});Object.defineProperty(exports,"EventReplayAccess",{enumerable:true,get:function(){return chunkMMROBRAM_js.a}});Object.defineProperty(exports,"EventResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ba}});Object.defineProperty(exports,"EventState",{enumerable:true,get:function(){return chunkMMROBRAM_js.g}});Object.defineProperty(exports,"EventStreamingMode",{enumerable:true,get:function(){return chunkMMROBRAM_js.e}});Object.defineProperty(exports,"EventVisibility",{enumerable:true,get:function(){return chunkMMROBRAM_js.b}});Object.defineProperty(exports,"HostAudienceActivityFeedResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.bb}});Object.defineProperty(exports,"HostAudienceDevicesResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.db}});Object.defineProperty(exports,"HostAudienceEngagementQuerySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Za}});Object.defineProperty(exports,"HostAudienceEngagementResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js._a}});Object.defineProperty(exports,"HostAudienceGeoResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.cb}});Object.defineProperty(exports,"HostAudienceQuerySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Xa}});Object.defineProperty(exports,"HostAudienceSummaryResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Ya}});Object.defineProperty(exports,"HostAudienceTopViewersQuerySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.$a}});Object.defineProperty(exports,"HostAudienceTopViewersResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ab}});Object.defineProperty(exports,"HostAudienceViewerActivityQuerySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.fb}});Object.defineProperty(exports,"HostAudienceViewerActivityResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.eb}});Object.defineProperty(exports,"HostEarningsBreakdownItemSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Ia}});Object.defineProperty(exports,"HostEarningsBreakdownQuerySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Fa}});Object.defineProperty(exports,"HostEarningsBreakdownResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Ja}});Object.defineProperty(exports,"HostEarningsSummaryQuerySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Ea}});Object.defineProperty(exports,"HostEarningsSummaryResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Ha}});Object.defineProperty(exports,"HostEarningsTimeseriesPointSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Ka}});Object.defineProperty(exports,"HostEarningsTimeseriesQuerySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Ga}});Object.defineProperty(exports,"HostEarningsTimeseriesResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.La}});Object.defineProperty(exports,"HostEventTicketSalesTimelinePointSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Va}});Object.defineProperty(exports,"HostEventTicketSalesTimelineQuerySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Ua}});Object.defineProperty(exports,"HostEventTicketSalesTimelineResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Wa}});Object.defineProperty(exports,"HostEventWizardPatchSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Da}});Object.defineProperty(exports,"HostLivePreviewSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Ra}});Object.defineProperty(exports,"LiveCatchupSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ma}});Object.defineProperty(exports,"LivePlaybackSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.na}});Object.defineProperty(exports,"MyEventCardSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.qa}});Object.defineProperty(exports,"MyEventsQuerySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.sa}});Object.defineProperty(exports,"MyEventsResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ra}});Object.defineProperty(exports,"MyEventsTabSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.m}});Object.defineProperty(exports,"PagedEventsResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ia}});Object.defineProperty(exports,"PatchReplayPeriodRequestSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Sa}});Object.defineProperty(exports,"PatchReplayPeriodResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Ta}});Object.defineProperty(exports,"PatchStreamControlRequestSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Ca}});Object.defineProperty(exports,"PlaybackResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.pa}});Object.defineProperty(exports,"PublicEventCardSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Na}});Object.defineProperty(exports,"PublicEventDetailResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Qa}});Object.defineProperty(exports,"PublicEventStatusSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Ma}});Object.defineProperty(exports,"PublicEventsQuerySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Oa}});Object.defineProperty(exports,"PublicEventsResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Pa}});Object.defineProperty(exports,"RegisterForEventRequestSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ja}});Object.defineProperty(exports,"RegisterForEventResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ka}});Object.defineProperty(exports,"RegistrationScope",{enumerable:true,get:function(){return chunkMMROBRAM_js.j}});Object.defineProperty(exports,"RegistrationStatus",{enumerable:true,get:function(){return chunkMMROBRAM_js.i}});Object.defineProperty(exports,"ReplayPlaybackSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.oa}});Object.defineProperty(exports,"ReplaySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.wa}});Object.defineProperty(exports,"SearchEventsQuerySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ea}});Object.defineProperty(exports,"StartViewingSessionRequestSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Ba}});Object.defineProperty(exports,"StartViewingSessionResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ta}});Object.defineProperty(exports,"UpdateEventRequestSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.$}});Object.defineProperty(exports,"UpdateWatchProgressRequestSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.la}});Object.defineProperty(exports,"ViewerHomeResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.da}});Object.defineProperty(exports,"ViewerRegistrationView",{enumerable:true,get:function(){return chunkMMROBRAM_js.k}});Object.defineProperty(exports,"ViewingSessionHeartbeatResponseSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.ua}});Object.defineProperty(exports,"ViewingSessionModeSchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.Aa}});Object.defineProperty(exports,"VisibilitySchema",{enumerable:true,get:function(){return chunkMMROBRAM_js.za}});//# sourceMappingURL=index.js.map
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/event/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export{ya as CategorySchema,_ as CreateEventRequestSchema,xa as CurrencySchema,fa as DiscoverAggregateResponseSchema,l as DiscoverEvents,ha as DiscoverResponseSchema,ga as DiscoverSectionResponseSchema,va as EndViewingSessionResponseSchema,n as EntitlementKind,c as EventAccessModel,f as EventAllowListType,aa as EventCardCtaSchema,ca as EventCardSchema,h as EventCategory,d as EventProductionMode,a as EventReplayAccess,ba as EventResponseSchema,g as EventState,e as EventStreamingMode,b as EventVisibility,bb as HostAudienceActivityFeedResponseSchema,db as HostAudienceDevicesResponseSchema,Za as HostAudienceEngagementQuerySchema,_a as HostAudienceEngagementResponseSchema,cb as HostAudienceGeoResponseSchema,Xa as HostAudienceQuerySchema,Ya as HostAudienceSummaryResponseSchema,$a as HostAudienceTopViewersQuerySchema,ab as HostAudienceTopViewersResponseSchema,fb as HostAudienceViewerActivityQuerySchema,eb as HostAudienceViewerActivityResponseSchema,Ia as HostEarningsBreakdownItemSchema,Fa as HostEarningsBreakdownQuerySchema,Ja as HostEarningsBreakdownResponseSchema,Ea as HostEarningsSummaryQuerySchema,Ha as HostEarningsSummaryResponseSchema,Ka as HostEarningsTimeseriesPointSchema,Ga as HostEarningsTimeseriesQuerySchema,La as HostEarningsTimeseriesResponseSchema,Va as HostEventTicketSalesTimelinePointSchema,Ua as HostEventTicketSalesTimelineQuerySchema,Wa as HostEventTicketSalesTimelineResponseSchema,Da as HostEventWizardPatchSchema,Ra as HostLivePreviewSchema,ma as LiveCatchupSchema,na as LivePlaybackSchema,qa as MyEventCardSchema,sa as MyEventsQuerySchema,ra as MyEventsResponseSchema,m as MyEventsTabSchema,ia as PagedEventsResponseSchema,Sa as PatchReplayPeriodRequestSchema,Ta as PatchReplayPeriodResponseSchema,Ca as PatchStreamControlRequestSchema,pa as PlaybackResponseSchema,Na as PublicEventCardSchema,Qa as PublicEventDetailResponseSchema,Ma as PublicEventStatusSchema,Oa as PublicEventsQuerySchema,Pa as PublicEventsResponseSchema,ja as RegisterForEventRequestSchema,ka as RegisterForEventResponseSchema,j as RegistrationScope,i as RegistrationStatus,oa as ReplayPlaybackSchema,wa as ReplaySchema,ea as SearchEventsQuerySchema,Ba as StartViewingSessionRequestSchema,ta as StartViewingSessionResponseSchema,$ as UpdateEventRequestSchema,la as UpdateWatchProgressRequestSchema,da as ViewerHomeResponseSchema,k as ViewerRegistrationView,ua as ViewingSessionHeartbeatResponseSchema,Aa as ViewingSessionModeSchema,za as VisibilitySchema}from'../chunk-
|
|
1
|
+
export{ya as CategorySchema,_ as CreateEventRequestSchema,xa as CurrencySchema,fa as DiscoverAggregateResponseSchema,l as DiscoverEvents,ha as DiscoverResponseSchema,ga as DiscoverSectionResponseSchema,va as EndViewingSessionResponseSchema,n as EntitlementKind,c as EventAccessModel,f as EventAllowListType,aa as EventCardCtaSchema,ca as EventCardSchema,h as EventCategory,d as EventProductionMode,a as EventReplayAccess,ba as EventResponseSchema,g as EventState,e as EventStreamingMode,b as EventVisibility,bb as HostAudienceActivityFeedResponseSchema,db as HostAudienceDevicesResponseSchema,Za as HostAudienceEngagementQuerySchema,_a as HostAudienceEngagementResponseSchema,cb as HostAudienceGeoResponseSchema,Xa as HostAudienceQuerySchema,Ya as HostAudienceSummaryResponseSchema,$a as HostAudienceTopViewersQuerySchema,ab as HostAudienceTopViewersResponseSchema,fb as HostAudienceViewerActivityQuerySchema,eb as HostAudienceViewerActivityResponseSchema,Ia as HostEarningsBreakdownItemSchema,Fa as HostEarningsBreakdownQuerySchema,Ja as HostEarningsBreakdownResponseSchema,Ea as HostEarningsSummaryQuerySchema,Ha as HostEarningsSummaryResponseSchema,Ka as HostEarningsTimeseriesPointSchema,Ga as HostEarningsTimeseriesQuerySchema,La as HostEarningsTimeseriesResponseSchema,Va as HostEventTicketSalesTimelinePointSchema,Ua as HostEventTicketSalesTimelineQuerySchema,Wa as HostEventTicketSalesTimelineResponseSchema,Da as HostEventWizardPatchSchema,Ra as HostLivePreviewSchema,ma as LiveCatchupSchema,na as LivePlaybackSchema,qa as MyEventCardSchema,sa as MyEventsQuerySchema,ra as MyEventsResponseSchema,m as MyEventsTabSchema,ia as PagedEventsResponseSchema,Sa as PatchReplayPeriodRequestSchema,Ta as PatchReplayPeriodResponseSchema,Ca as PatchStreamControlRequestSchema,pa as PlaybackResponseSchema,Na as PublicEventCardSchema,Qa as PublicEventDetailResponseSchema,Ma as PublicEventStatusSchema,Oa as PublicEventsQuerySchema,Pa as PublicEventsResponseSchema,ja as RegisterForEventRequestSchema,ka as RegisterForEventResponseSchema,j as RegistrationScope,i as RegistrationStatus,oa as ReplayPlaybackSchema,wa as ReplaySchema,ea as SearchEventsQuerySchema,Ba as StartViewingSessionRequestSchema,ta as StartViewingSessionResponseSchema,$ as UpdateEventRequestSchema,la as UpdateWatchProgressRequestSchema,da as ViewerHomeResponseSchema,k as ViewerRegistrationView,ua as ViewingSessionHeartbeatResponseSchema,Aa as ViewingSessionModeSchema,za as VisibilitySchema}from'../chunk-MAKIYFAD.mjs';import'../chunk-L4QDS3ET.mjs';//# sourceMappingURL=index.mjs.map
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/dist/host/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var chunkGC3S2VCJ_js=require('../chunk-GC3S2VCJ.js');require('../chunk-FG6EV3WQ.js'),require('../chunk-ZYLTIJXP.js'),require('../chunk-MMROBRAM.js'),require('../chunk-O3GYEMUB.js');Object.defineProperty(exports,"EndedReasonSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.U}});Object.defineProperty(exports,"EndedReplayStateSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.S}});Object.defineProperty(exports,"EventStreamAlertKindSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.V}});Object.defineProperty(exports,"EventStreamAlertSeveritySchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.W}});Object.defineProperty(exports,"HOST_DATE_RANGE_PRESETS",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.a}});Object.defineProperty(exports,"HostActivityListPageSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.q}});Object.defineProperty(exports,"HostEventAudienceResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.J}});Object.defineProperty(exports,"HostEventCancelResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.o}});Object.defineProperty(exports,"HostEventCrewMemberSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.F}});Object.defineProperty(exports,"HostEventDashboardPostEventBlockSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.L}});Object.defineProperty(exports,"HostEventDashboardResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.N}});Object.defineProperty(exports,"HostEventEngagementTimelineBucketSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.fa}});Object.defineProperty(exports,"HostEventEngagementTimelineQuerySchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.ea}});Object.defineProperty(exports,"HostEventEngagementTimelineResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.ga}});Object.defineProperty(exports,"HostEventFullResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.v}});Object.defineProperty(exports,"HostEventPatchSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.e}});Object.defineProperty(exports,"HostEventReadinessBlockSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.D}});Object.defineProperty(exports,"HostEventReadinessResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.O}});Object.defineProperty(exports,"HostEventReplayPerformanceResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.K}});Object.defineProperty(exports,"HostEventRowResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.g}});Object.defineProperty(exports,"HostEventShareResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.Q}});Object.defineProperty(exports,"HostEventWizardCurrentResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.w}});Object.defineProperty(exports,"HostEventWizardPublishResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.n}});Object.defineProperty(exports,"HostEventWizardStartResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.l}});Object.defineProperty(exports,"HostEventWizardStartSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.j}});Object.defineProperty(exports,"HostEventWizardStepResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.m}});Object.defineProperty(exports,"HostEventsListPagedQuerySchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.k}});Object.defineProperty(exports,"HostEventsListQuerySchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.f}});Object.defineProperty(exports,"HostEventsTabCountsResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.i}});Object.defineProperty(exports,"HostEventsTabResponseClassSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.u}});Object.defineProperty(exports,"HostEventsTabResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.h}});Object.defineProperty(exports,"HostEventsTabSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.c}});Object.defineProperty(exports,"HostLiveConsoleAlertSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.aa}});Object.defineProperty(exports,"HostLiveConsoleChatSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.ba}});Object.defineProperty(exports,"HostLiveConsoleControlsSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.Y}});Object.defineProperty(exports,"HostLiveConsoleCrewMemberSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.$}});Object.defineProperty(exports,"HostLiveConsoleEndedSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.ca}});Object.defineProperty(exports,"HostLiveConsoleEventSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.X}});Object.defineProperty(exports,"HostLiveConsoleMetricsSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.Z}});Object.defineProperty(exports,"HostLiveConsolePayloadSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.da}});Object.defineProperty(exports,"HostLiveConsoleTelemetrySchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js._}});Object.defineProperty(exports,"HostNotificationsUnreadCountSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.t}});Object.defineProperty(exports,"HostOverviewQuerySchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.b}});Object.defineProperty(exports,"HostOverviewResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.p}});Object.defineProperty(exports,"HostProductionCrewItemSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.I}});Object.defineProperty(exports,"HostProductionCrewPhaseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.G}});Object.defineProperty(exports,"HostSearchHitSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.r}});Object.defineProperty(exports,"HostSearchQuerySchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.d}});Object.defineProperty(exports,"HostSearchResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.s}});Object.defineProperty(exports,"ListHostEventDashboardQuerySchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.E}});Object.defineProperty(exports,"ListHostProductionCrewQuerySchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.H}});Object.defineProperty(exports,"LiveConsoleSliceSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.R}});Object.defineProperty(exports,"LiveIngestHealthSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.T}});Object.defineProperty(exports,"PagedHostProductionCrewResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.M}});Object.defineProperty(exports,"ProducerAssignedEventResponseSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.P}});Object.defineProperty(exports,"ProductionModeSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.B}});Object.defineProperty(exports,"ReadinessBlockReasonSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.z}});Object.defineProperty(exports,"ReadinessItemIdSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.x}});Object.defineProperty(exports,"ReadinessItemSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.C}});Object.defineProperty(exports,"ReadinessItemStateSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.y}});Object.defineProperty(exports,"StreamingStatusSchema",{enumerable:true,get:function(){return chunkGC3S2VCJ_js.A}});//# sourceMappingURL=index.js.map
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/host/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export{U as EndedReasonSchema,S as EndedReplayStateSchema,V as EventStreamAlertKindSchema,W as EventStreamAlertSeveritySchema,a as HOST_DATE_RANGE_PRESETS,q as HostActivityListPageSchema,J as HostEventAudienceResponseSchema,o as HostEventCancelResponseSchema,F as HostEventCrewMemberSchema,L as HostEventDashboardPostEventBlockSchema,N as HostEventDashboardResponseSchema,fa as HostEventEngagementTimelineBucketSchema,ea as HostEventEngagementTimelineQuerySchema,ga as HostEventEngagementTimelineResponseSchema,v as HostEventFullResponseSchema,e as HostEventPatchSchema,D as HostEventReadinessBlockSchema,O as HostEventReadinessResponseSchema,K as HostEventReplayPerformanceResponseSchema,g as HostEventRowResponseSchema,Q as HostEventShareResponseSchema,w as HostEventWizardCurrentResponseSchema,n as HostEventWizardPublishResponseSchema,l as HostEventWizardStartResponseSchema,j as HostEventWizardStartSchema,m as HostEventWizardStepResponseSchema,k as HostEventsListPagedQuerySchema,f as HostEventsListQuerySchema,i as HostEventsTabCountsResponseSchema,u as HostEventsTabResponseClassSchema,h as HostEventsTabResponseSchema,c as HostEventsTabSchema,aa as HostLiveConsoleAlertSchema,ba as HostLiveConsoleChatSchema,Y as HostLiveConsoleControlsSchema,$ as HostLiveConsoleCrewMemberSchema,ca as HostLiveConsoleEndedSchema,X as HostLiveConsoleEventSchema,Z as HostLiveConsoleMetricsSchema,da as HostLiveConsolePayloadSchema,_ as HostLiveConsoleTelemetrySchema,t as HostNotificationsUnreadCountSchema,b as HostOverviewQuerySchema,p as HostOverviewResponseSchema,I as HostProductionCrewItemSchema,G as HostProductionCrewPhaseSchema,r as HostSearchHitSchema,d as HostSearchQuerySchema,s as HostSearchResponseSchema,E as ListHostEventDashboardQuerySchema,H as ListHostProductionCrewQuerySchema,R as LiveConsoleSliceSchema,T as LiveIngestHealthSchema,M as PagedHostProductionCrewResponseSchema,P as ProducerAssignedEventResponseSchema,B as ProductionModeSchema,z as ReadinessBlockReasonSchema,x as ReadinessItemIdSchema,C as ReadinessItemSchema,y as ReadinessItemStateSchema,A as StreamingStatusSchema}from'../chunk-
|
|
1
|
+
export{U as EndedReasonSchema,S as EndedReplayStateSchema,V as EventStreamAlertKindSchema,W as EventStreamAlertSeveritySchema,a as HOST_DATE_RANGE_PRESETS,q as HostActivityListPageSchema,J as HostEventAudienceResponseSchema,o as HostEventCancelResponseSchema,F as HostEventCrewMemberSchema,L as HostEventDashboardPostEventBlockSchema,N as HostEventDashboardResponseSchema,fa as HostEventEngagementTimelineBucketSchema,ea as HostEventEngagementTimelineQuerySchema,ga as HostEventEngagementTimelineResponseSchema,v as HostEventFullResponseSchema,e as HostEventPatchSchema,D as HostEventReadinessBlockSchema,O as HostEventReadinessResponseSchema,K as HostEventReplayPerformanceResponseSchema,g as HostEventRowResponseSchema,Q as HostEventShareResponseSchema,w as HostEventWizardCurrentResponseSchema,n as HostEventWizardPublishResponseSchema,l as HostEventWizardStartResponseSchema,j as HostEventWizardStartSchema,m as HostEventWizardStepResponseSchema,k as HostEventsListPagedQuerySchema,f as HostEventsListQuerySchema,i as HostEventsTabCountsResponseSchema,u as HostEventsTabResponseClassSchema,h as HostEventsTabResponseSchema,c as HostEventsTabSchema,aa as HostLiveConsoleAlertSchema,ba as HostLiveConsoleChatSchema,Y as HostLiveConsoleControlsSchema,$ as HostLiveConsoleCrewMemberSchema,ca as HostLiveConsoleEndedSchema,X as HostLiveConsoleEventSchema,Z as HostLiveConsoleMetricsSchema,da as HostLiveConsolePayloadSchema,_ as HostLiveConsoleTelemetrySchema,t as HostNotificationsUnreadCountSchema,b as HostOverviewQuerySchema,p as HostOverviewResponseSchema,I as HostProductionCrewItemSchema,G as HostProductionCrewPhaseSchema,r as HostSearchHitSchema,d as HostSearchQuerySchema,s as HostSearchResponseSchema,E as ListHostEventDashboardQuerySchema,H as ListHostProductionCrewQuerySchema,R as LiveConsoleSliceSchema,T as LiveIngestHealthSchema,M as PagedHostProductionCrewResponseSchema,P as ProducerAssignedEventResponseSchema,B as ProductionModeSchema,z as ReadinessBlockReasonSchema,x as ReadinessItemIdSchema,C as ReadinessItemSchema,y as ReadinessItemStateSchema,A as StreamingStatusSchema}from'../chunk-HTPPIZBE.mjs';import'../chunk-B7B7YFFC.mjs';import'../chunk-5VUOLH4C.mjs';import'../chunk-MAKIYFAD.mjs';import'../chunk-L4QDS3ET.mjs';//# sourceMappingURL=index.mjs.map
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.d.mts
CHANGED
|
@@ -12,4 +12,5 @@ export { JobInterestState } from './joblisting/index.mjs';
|
|
|
12
12
|
export { ApiErrorCode } from './errors/index.mjs';
|
|
13
13
|
export { CHAT_MESSAGE_BODY_MAX_LENGTH, CHAT_MESSAGE_BODY_MIN_LENGTH, CHAT_MESSAGE_VIDEO_OFFSET_MAX_SECONDS, CHAT_MODERATION_REASON_MAX_LENGTH, ChatCredentialsResponse, ChatCredentialsResponseSchema, ChatHistoryResponse, ChatHistoryResponseSchema, ChatMessage, ChatMessageSchema, ChatMessageUser, ChatMessageUserSchema, ChatModerationDeleteRequest, ChatModerationDeleteRequestSchema, ChatModerationMuteRequest, ChatModerationMuteRequestSchema, ChatMuteStateResponse, ChatMuteStateResponseSchema, InProcessChatCredentials, InProcessChatCredentialsSchema, IvsChatCredentials, IvsChatCredentialsSchema, PostChatMessageRequest, PostChatMessageRequestSchema } from './chat/index.mjs';
|
|
14
14
|
export { EndedReason, EndedReasonSchema, EndedReplayState, EndedReplayStateSchema, EventStreamAlertKind, EventStreamAlertKindSchema, EventStreamAlertSeverity, EventStreamAlertSeveritySchema, HOST_DATE_RANGE_PRESETS, HostActivityListPage, HostActivityListPageSchema, HostEventAudienceResponse, HostEventAudienceResponseSchema, HostEventCancelResponse, HostEventCancelResponseSchema, HostEventCrewMember, HostEventCrewMemberSchema, HostEventDashboardPostEventBlockSchema, HostEventDashboardResponse, HostEventDashboardResponseSchema, HostEventEngagementTimeline, HostEventEngagementTimelineBucket, HostEventEngagementTimelineBucketSchema, HostEventEngagementTimelineQuerySchema, HostEventEngagementTimelineResponse, HostEventEngagementTimelineResponseSchema, HostEventFullResponse, HostEventFullResponseSchema, HostEventPatch, HostEventPatchSchema, HostEventReadinessBlock, HostEventReadinessBlockSchema, HostEventReadinessResponse, HostEventReadinessResponseSchema, HostEventReplayPerformanceResponse, HostEventReplayPerformanceResponseSchema, HostEventRowResponse, HostEventRowResponseSchema, HostEventShareResponse, HostEventShareResponseSchema, HostEventWizardCurrentResponse, HostEventWizardCurrentResponseSchema, HostEventWizardPublishResponse, HostEventWizardPublishResponseSchema, HostEventWizardStart, HostEventWizardStartResponse, HostEventWizardStartResponseSchema, HostEventWizardStartSchema, HostEventWizardStepResponse, HostEventWizardStepResponseSchema, HostEventsListPagedQuery, HostEventsListPagedQuerySchema, HostEventsListQuery, HostEventsListQuerySchema, HostEventsTab, HostEventsTabCountsResponse, HostEventsTabCountsResponseSchema, HostEventsTabResponse, HostEventsTabResponseClass, HostEventsTabResponseClassSchema, HostEventsTabResponseSchema, HostEventsTabSchema, HostLiveConsoleAlert, HostLiveConsoleAlertSchema, HostLiveConsoleChat, HostLiveConsoleChatSchema, HostLiveConsoleControls, HostLiveConsoleControlsSchema, HostLiveConsoleCrewMember, HostLiveConsoleCrewMemberSchema, HostLiveConsoleEnded, HostLiveConsoleEndedSchema, HostLiveConsoleEvent, HostLiveConsoleEventSchema, HostLiveConsoleMetrics, HostLiveConsoleMetricsSchema, HostLiveConsolePayload, HostLiveConsolePayloadSchema, HostLiveConsoleTelemetry, HostLiveConsoleTelemetrySchema, HostNotificationsUnreadCount, HostNotificationsUnreadCountSchema, HostOverviewQuery, HostOverviewQuerySchema, HostOverviewResponse, HostOverviewResponseSchema, HostProductionCrewItem, HostProductionCrewItemSchema, HostProductionCrewPhase, HostProductionCrewPhaseSchema, HostSearchHit, HostSearchHitSchema, HostSearchQuery, HostSearchQuerySchema, HostSearchResponse, HostSearchResponseSchema, ListHostEventDashboardQuery, ListHostEventDashboardQuerySchema, ListHostProductionCrewQuery, ListHostProductionCrewQuerySchema, LiveConsoleSlice, LiveConsoleSliceSchema, LiveIngestHealth, LiveIngestHealthSchema, PagedHostProductionCrewResponse, PagedHostProductionCrewResponseSchema, ProducerAssignedEventResponse, ProducerAssignedEventResponseSchema, ProductionMode, ProductionModeSchema, ReadinessBlockReason, ReadinessBlockReasonSchema, ReadinessItem, ReadinessItemId, ReadinessItemIdSchema, ReadinessItemSchema, ReadinessItemState, ReadinessItemStateSchema, StreamingStatus, StreamingStatusSchema } from './host/index.mjs';
|
|
15
|
+
export { EndMomentViewingSessionResponse, EndMomentViewingSessionResponseSchema, GoLiveMomentRequest, GoLiveMomentRequestSchema, GoLiveMomentResponse, GoLiveMomentResponseSchema, HostMomentLivePayload, HostMomentLivePayloadSchema, MomentState, MomentViewingSessionHeartbeatAck, MomentViewingSessionHeartbeatAckSchema, StartMomentViewingSessionRequest, StartMomentViewingSessionRequestSchema, StartMomentViewingSessionResponse, StartMomentViewingSessionResponseSchema, ViewerMomentPayload, ViewerMomentPayloadSchema } from './moment/index.mjs';
|
|
15
16
|
import 'zod';
|
package/dist/index.d.ts
CHANGED
|
@@ -12,4 +12,5 @@ export { JobInterestState } from './joblisting/index.js';
|
|
|
12
12
|
export { ApiErrorCode } from './errors/index.js';
|
|
13
13
|
export { CHAT_MESSAGE_BODY_MAX_LENGTH, CHAT_MESSAGE_BODY_MIN_LENGTH, CHAT_MESSAGE_VIDEO_OFFSET_MAX_SECONDS, CHAT_MODERATION_REASON_MAX_LENGTH, ChatCredentialsResponse, ChatCredentialsResponseSchema, ChatHistoryResponse, ChatHistoryResponseSchema, ChatMessage, ChatMessageSchema, ChatMessageUser, ChatMessageUserSchema, ChatModerationDeleteRequest, ChatModerationDeleteRequestSchema, ChatModerationMuteRequest, ChatModerationMuteRequestSchema, ChatMuteStateResponse, ChatMuteStateResponseSchema, InProcessChatCredentials, InProcessChatCredentialsSchema, IvsChatCredentials, IvsChatCredentialsSchema, PostChatMessageRequest, PostChatMessageRequestSchema } from './chat/index.js';
|
|
14
14
|
export { EndedReason, EndedReasonSchema, EndedReplayState, EndedReplayStateSchema, EventStreamAlertKind, EventStreamAlertKindSchema, EventStreamAlertSeverity, EventStreamAlertSeveritySchema, HOST_DATE_RANGE_PRESETS, HostActivityListPage, HostActivityListPageSchema, HostEventAudienceResponse, HostEventAudienceResponseSchema, HostEventCancelResponse, HostEventCancelResponseSchema, HostEventCrewMember, HostEventCrewMemberSchema, HostEventDashboardPostEventBlockSchema, HostEventDashboardResponse, HostEventDashboardResponseSchema, HostEventEngagementTimeline, HostEventEngagementTimelineBucket, HostEventEngagementTimelineBucketSchema, HostEventEngagementTimelineQuerySchema, HostEventEngagementTimelineResponse, HostEventEngagementTimelineResponseSchema, HostEventFullResponse, HostEventFullResponseSchema, HostEventPatch, HostEventPatchSchema, HostEventReadinessBlock, HostEventReadinessBlockSchema, HostEventReadinessResponse, HostEventReadinessResponseSchema, HostEventReplayPerformanceResponse, HostEventReplayPerformanceResponseSchema, HostEventRowResponse, HostEventRowResponseSchema, HostEventShareResponse, HostEventShareResponseSchema, HostEventWizardCurrentResponse, HostEventWizardCurrentResponseSchema, HostEventWizardPublishResponse, HostEventWizardPublishResponseSchema, HostEventWizardStart, HostEventWizardStartResponse, HostEventWizardStartResponseSchema, HostEventWizardStartSchema, HostEventWizardStepResponse, HostEventWizardStepResponseSchema, HostEventsListPagedQuery, HostEventsListPagedQuerySchema, HostEventsListQuery, HostEventsListQuerySchema, HostEventsTab, HostEventsTabCountsResponse, HostEventsTabCountsResponseSchema, HostEventsTabResponse, HostEventsTabResponseClass, HostEventsTabResponseClassSchema, HostEventsTabResponseSchema, HostEventsTabSchema, HostLiveConsoleAlert, HostLiveConsoleAlertSchema, HostLiveConsoleChat, HostLiveConsoleChatSchema, HostLiveConsoleControls, HostLiveConsoleControlsSchema, HostLiveConsoleCrewMember, HostLiveConsoleCrewMemberSchema, HostLiveConsoleEnded, HostLiveConsoleEndedSchema, HostLiveConsoleEvent, HostLiveConsoleEventSchema, HostLiveConsoleMetrics, HostLiveConsoleMetricsSchema, HostLiveConsolePayload, HostLiveConsolePayloadSchema, HostLiveConsoleTelemetry, HostLiveConsoleTelemetrySchema, HostNotificationsUnreadCount, HostNotificationsUnreadCountSchema, HostOverviewQuery, HostOverviewQuerySchema, HostOverviewResponse, HostOverviewResponseSchema, HostProductionCrewItem, HostProductionCrewItemSchema, HostProductionCrewPhase, HostProductionCrewPhaseSchema, HostSearchHit, HostSearchHitSchema, HostSearchQuery, HostSearchQuerySchema, HostSearchResponse, HostSearchResponseSchema, ListHostEventDashboardQuery, ListHostEventDashboardQuerySchema, ListHostProductionCrewQuery, ListHostProductionCrewQuerySchema, LiveConsoleSlice, LiveConsoleSliceSchema, LiveIngestHealth, LiveIngestHealthSchema, PagedHostProductionCrewResponse, PagedHostProductionCrewResponseSchema, ProducerAssignedEventResponse, ProducerAssignedEventResponseSchema, ProductionMode, ProductionModeSchema, ReadinessBlockReason, ReadinessBlockReasonSchema, ReadinessItem, ReadinessItemId, ReadinessItemIdSchema, ReadinessItemSchema, ReadinessItemState, ReadinessItemStateSchema, StreamingStatus, StreamingStatusSchema } from './host/index.js';
|
|
15
|
+
export { EndMomentViewingSessionResponse, EndMomentViewingSessionResponseSchema, GoLiveMomentRequest, GoLiveMomentRequestSchema, GoLiveMomentResponse, GoLiveMomentResponseSchema, HostMomentLivePayload, HostMomentLivePayloadSchema, MomentState, MomentViewingSessionHeartbeatAck, MomentViewingSessionHeartbeatAckSchema, StartMomentViewingSessionRequest, StartMomentViewingSessionRequestSchema, StartMomentViewingSessionResponse, StartMomentViewingSessionResponseSchema, ViewerMomentPayload, ViewerMomentPayloadSchema } from './moment/index.js';
|
|
15
16
|
import 'zod';
|