mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-11 04:20:58 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.474.0
This commit is contained in:
@@ -216,9 +216,30 @@ export enum GetLibraryItemsLibraryType {
|
||||
Episode = "episode",
|
||||
}
|
||||
|
||||
/**
|
||||
* Setting that indicates if seasons are set to hidden for the show. (-1 = Library default, 0 = Hide, 1 = Show).
|
||||
*/
|
||||
export enum GetLibraryItemsFlattenSeasons {
|
||||
False = "0",
|
||||
True = "1",
|
||||
LibraryDefault = "-1",
|
||||
Hide = "0",
|
||||
Show = "1",
|
||||
}
|
||||
|
||||
/**
|
||||
* Setting that indicates how episodes are sorted for the show. (-1 = Library default, 0 = Oldest first, 1 = Newest first).
|
||||
*/
|
||||
export enum GetLibraryItemsEpisodeSort {
|
||||
LibraryDefault = "-1",
|
||||
OldestFirst = "0",
|
||||
NewestFirst = "1",
|
||||
}
|
||||
|
||||
/**
|
||||
* Setting that indicates if credits markers detection is enabled. (-1 = Library default, 0 = Disabled).
|
||||
*/
|
||||
export enum GetLibraryItemsEnableCreditsMarkerGeneration {
|
||||
LibraryDefault = "-1",
|
||||
Disabled = "0",
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -560,7 +581,20 @@ export type GetLibraryItemsMetadata = {
|
||||
year?: number | undefined;
|
||||
seasonCount?: number | undefined;
|
||||
tagline?: string | undefined;
|
||||
/**
|
||||
* Setting that indicates if seasons are set to hidden for the show. (-1 = Library default, 0 = Hide, 1 = Show).
|
||||
*/
|
||||
flattenSeasons?: GetLibraryItemsFlattenSeasons | undefined;
|
||||
/**
|
||||
* Setting that indicates how episodes are sorted for the show. (-1 = Library default, 0 = Oldest first, 1 = Newest first).
|
||||
*/
|
||||
episodeSort?: GetLibraryItemsEpisodeSort | undefined;
|
||||
/**
|
||||
* Setting that indicates if credits markers detection is enabled. (-1 = Library default, 0 = Disabled).
|
||||
*/
|
||||
enableCreditsMarkerGeneration?:
|
||||
| GetLibraryItemsEnableCreditsMarkerGeneration
|
||||
| undefined;
|
||||
/**
|
||||
* Setting that indicates the episode ordering for the show
|
||||
*
|
||||
@@ -1466,6 +1500,50 @@ export namespace GetLibraryItemsFlattenSeasons$ {
|
||||
export const outboundSchema = GetLibraryItemsFlattenSeasons$outboundSchema;
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
export const GetLibraryItemsEpisodeSort$inboundSchema: z.ZodNativeEnum<
|
||||
typeof GetLibraryItemsEpisodeSort
|
||||
> = z.nativeEnum(GetLibraryItemsEpisodeSort);
|
||||
|
||||
/** @internal */
|
||||
export const GetLibraryItemsEpisodeSort$outboundSchema: z.ZodNativeEnum<
|
||||
typeof GetLibraryItemsEpisodeSort
|
||||
> = GetLibraryItemsEpisodeSort$inboundSchema;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
||||
*/
|
||||
export namespace GetLibraryItemsEpisodeSort$ {
|
||||
/** @deprecated use `GetLibraryItemsEpisodeSort$inboundSchema` instead. */
|
||||
export const inboundSchema = GetLibraryItemsEpisodeSort$inboundSchema;
|
||||
/** @deprecated use `GetLibraryItemsEpisodeSort$outboundSchema` instead. */
|
||||
export const outboundSchema = GetLibraryItemsEpisodeSort$outboundSchema;
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
export const GetLibraryItemsEnableCreditsMarkerGeneration$inboundSchema:
|
||||
z.ZodNativeEnum<typeof GetLibraryItemsEnableCreditsMarkerGeneration> = z
|
||||
.nativeEnum(GetLibraryItemsEnableCreditsMarkerGeneration);
|
||||
|
||||
/** @internal */
|
||||
export const GetLibraryItemsEnableCreditsMarkerGeneration$outboundSchema:
|
||||
z.ZodNativeEnum<typeof GetLibraryItemsEnableCreditsMarkerGeneration> =
|
||||
GetLibraryItemsEnableCreditsMarkerGeneration$inboundSchema;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
||||
*/
|
||||
export namespace GetLibraryItemsEnableCreditsMarkerGeneration$ {
|
||||
/** @deprecated use `GetLibraryItemsEnableCreditsMarkerGeneration$inboundSchema` instead. */
|
||||
export const inboundSchema =
|
||||
GetLibraryItemsEnableCreditsMarkerGeneration$inboundSchema;
|
||||
/** @deprecated use `GetLibraryItemsEnableCreditsMarkerGeneration$outboundSchema` instead. */
|
||||
export const outboundSchema =
|
||||
GetLibraryItemsEnableCreditsMarkerGeneration$outboundSchema;
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
export const GetLibraryItemsShowOrdering$inboundSchema: z.ZodNativeEnum<
|
||||
typeof GetLibraryItemsShowOrdering
|
||||
@@ -2596,9 +2674,10 @@ export const GetLibraryItemsMetadata$inboundSchema: z.ZodType<
|
||||
year: z.number().int().optional(),
|
||||
seasonCount: z.number().int().optional(),
|
||||
tagline: z.string().optional(),
|
||||
flattenSeasons: GetLibraryItemsFlattenSeasons$inboundSchema.default(
|
||||
GetLibraryItemsFlattenSeasons.False,
|
||||
),
|
||||
flattenSeasons: GetLibraryItemsFlattenSeasons$inboundSchema.optional(),
|
||||
episodeSort: GetLibraryItemsEpisodeSort$inboundSchema.optional(),
|
||||
enableCreditsMarkerGeneration:
|
||||
GetLibraryItemsEnableCreditsMarkerGeneration$inboundSchema.optional(),
|
||||
showOrdering: GetLibraryItemsShowOrdering$inboundSchema.optional(),
|
||||
thumb: z.string().optional(),
|
||||
art: z.string().optional(),
|
||||
@@ -2698,7 +2777,9 @@ export type GetLibraryItemsMetadata$Outbound = {
|
||||
year?: number | undefined;
|
||||
seasonCount?: number | undefined;
|
||||
tagline?: string | undefined;
|
||||
flattenSeasons: string;
|
||||
flattenSeasons?: string | undefined;
|
||||
episodeSort?: string | undefined;
|
||||
enableCreditsMarkerGeneration?: string | undefined;
|
||||
showOrdering?: string | undefined;
|
||||
thumb?: string | undefined;
|
||||
art?: string | undefined;
|
||||
@@ -2780,9 +2861,10 @@ export const GetLibraryItemsMetadata$outboundSchema: z.ZodType<
|
||||
year: z.number().int().optional(),
|
||||
seasonCount: z.number().int().optional(),
|
||||
tagline: z.string().optional(),
|
||||
flattenSeasons: GetLibraryItemsFlattenSeasons$outboundSchema.default(
|
||||
GetLibraryItemsFlattenSeasons.False,
|
||||
),
|
||||
flattenSeasons: GetLibraryItemsFlattenSeasons$outboundSchema.optional(),
|
||||
episodeSort: GetLibraryItemsEpisodeSort$outboundSchema.optional(),
|
||||
enableCreditsMarkerGeneration:
|
||||
GetLibraryItemsEnableCreditsMarkerGeneration$outboundSchema.optional(),
|
||||
showOrdering: GetLibraryItemsShowOrdering$outboundSchema.optional(),
|
||||
thumb: z.string().optional(),
|
||||
art: z.string().optional(),
|
||||
|
||||
@@ -185,9 +185,30 @@ export enum GetRecentlyAddedHubsType {
|
||||
Episode = "episode",
|
||||
}
|
||||
|
||||
/**
|
||||
* Setting that indicates if seasons are set to hidden for the show. (-1 = Library default, 0 = Hide, 1 = Show).
|
||||
*/
|
||||
export enum FlattenSeasons {
|
||||
False = "0",
|
||||
True = "1",
|
||||
LibraryDefault = "-1",
|
||||
Hide = "0",
|
||||
Show = "1",
|
||||
}
|
||||
|
||||
/**
|
||||
* Setting that indicates how episodes are sorted for the show. (-1 = Library default, 0 = Oldest first, 1 = Newest first).
|
||||
*/
|
||||
export enum EpisodeSort {
|
||||
LibraryDefault = "-1",
|
||||
OldestFirst = "0",
|
||||
NewestFirst = "1",
|
||||
}
|
||||
|
||||
/**
|
||||
* Setting that indicates if credits markers detection is enabled. (-1 = Library default, 0 = Disabled).
|
||||
*/
|
||||
export enum EnableCreditsMarkerGeneration {
|
||||
LibraryDefault = "-1",
|
||||
Disabled = "0",
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -529,7 +550,18 @@ export type GetRecentlyAddedMetadata = {
|
||||
year?: number | undefined;
|
||||
seasonCount?: number | undefined;
|
||||
tagline?: string | undefined;
|
||||
/**
|
||||
* Setting that indicates if seasons are set to hidden for the show. (-1 = Library default, 0 = Hide, 1 = Show).
|
||||
*/
|
||||
flattenSeasons?: FlattenSeasons | undefined;
|
||||
/**
|
||||
* Setting that indicates how episodes are sorted for the show. (-1 = Library default, 0 = Oldest first, 1 = Newest first).
|
||||
*/
|
||||
episodeSort?: EpisodeSort | undefined;
|
||||
/**
|
||||
* Setting that indicates if credits markers detection is enabled. (-1 = Library default, 0 = Disabled).
|
||||
*/
|
||||
enableCreditsMarkerGeneration?: EnableCreditsMarkerGeneration | undefined;
|
||||
/**
|
||||
* Setting that indicates the episode ordering for the show
|
||||
*
|
||||
@@ -1343,6 +1375,46 @@ export namespace FlattenSeasons$ {
|
||||
export const outboundSchema = FlattenSeasons$outboundSchema;
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
export const EpisodeSort$inboundSchema: z.ZodNativeEnum<typeof EpisodeSort> = z
|
||||
.nativeEnum(EpisodeSort);
|
||||
|
||||
/** @internal */
|
||||
export const EpisodeSort$outboundSchema: z.ZodNativeEnum<typeof EpisodeSort> =
|
||||
EpisodeSort$inboundSchema;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
||||
*/
|
||||
export namespace EpisodeSort$ {
|
||||
/** @deprecated use `EpisodeSort$inboundSchema` instead. */
|
||||
export const inboundSchema = EpisodeSort$inboundSchema;
|
||||
/** @deprecated use `EpisodeSort$outboundSchema` instead. */
|
||||
export const outboundSchema = EpisodeSort$outboundSchema;
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
export const EnableCreditsMarkerGeneration$inboundSchema: z.ZodNativeEnum<
|
||||
typeof EnableCreditsMarkerGeneration
|
||||
> = z.nativeEnum(EnableCreditsMarkerGeneration);
|
||||
|
||||
/** @internal */
|
||||
export const EnableCreditsMarkerGeneration$outboundSchema: z.ZodNativeEnum<
|
||||
typeof EnableCreditsMarkerGeneration
|
||||
> = EnableCreditsMarkerGeneration$inboundSchema;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
||||
*/
|
||||
export namespace EnableCreditsMarkerGeneration$ {
|
||||
/** @deprecated use `EnableCreditsMarkerGeneration$inboundSchema` instead. */
|
||||
export const inboundSchema = EnableCreditsMarkerGeneration$inboundSchema;
|
||||
/** @deprecated use `EnableCreditsMarkerGeneration$outboundSchema` instead. */
|
||||
export const outboundSchema = EnableCreditsMarkerGeneration$outboundSchema;
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
export const ShowOrdering$inboundSchema: z.ZodNativeEnum<typeof ShowOrdering> =
|
||||
z.nativeEnum(ShowOrdering);
|
||||
@@ -2378,7 +2450,10 @@ export const GetRecentlyAddedMetadata$inboundSchema: z.ZodType<
|
||||
year: z.number().int().optional(),
|
||||
seasonCount: z.number().int().optional(),
|
||||
tagline: z.string().optional(),
|
||||
flattenSeasons: FlattenSeasons$inboundSchema.default(FlattenSeasons.False),
|
||||
flattenSeasons: FlattenSeasons$inboundSchema.optional(),
|
||||
episodeSort: EpisodeSort$inboundSchema.optional(),
|
||||
enableCreditsMarkerGeneration: EnableCreditsMarkerGeneration$inboundSchema
|
||||
.optional(),
|
||||
showOrdering: ShowOrdering$inboundSchema.optional(),
|
||||
thumb: z.string().optional(),
|
||||
art: z.string().optional(),
|
||||
@@ -2471,7 +2546,9 @@ export type GetRecentlyAddedMetadata$Outbound = {
|
||||
year?: number | undefined;
|
||||
seasonCount?: number | undefined;
|
||||
tagline?: string | undefined;
|
||||
flattenSeasons: string;
|
||||
flattenSeasons?: string | undefined;
|
||||
episodeSort?: string | undefined;
|
||||
enableCreditsMarkerGeneration?: string | undefined;
|
||||
showOrdering?: string | undefined;
|
||||
thumb?: string | undefined;
|
||||
art?: string | undefined;
|
||||
@@ -2553,7 +2630,10 @@ export const GetRecentlyAddedMetadata$outboundSchema: z.ZodType<
|
||||
year: z.number().int().optional(),
|
||||
seasonCount: z.number().int().optional(),
|
||||
tagline: z.string().optional(),
|
||||
flattenSeasons: FlattenSeasons$outboundSchema.default(FlattenSeasons.False),
|
||||
flattenSeasons: FlattenSeasons$outboundSchema.optional(),
|
||||
episodeSort: EpisodeSort$outboundSchema.optional(),
|
||||
enableCreditsMarkerGeneration: EnableCreditsMarkerGeneration$outboundSchema
|
||||
.optional(),
|
||||
showOrdering: ShowOrdering$outboundSchema.optional(),
|
||||
thumb: z.string().optional(),
|
||||
art: z.string().optional(),
|
||||
|
||||
@@ -74,9 +74,30 @@ export enum GetSearchAllLibrariesType {
|
||||
Episode = "episode",
|
||||
}
|
||||
|
||||
/**
|
||||
* Setting that indicates if seasons are set to hidden for the show. (-1 = Library default, 0 = Hide, 1 = Show).
|
||||
*/
|
||||
export enum GetSearchAllLibrariesFlattenSeasons {
|
||||
False = "0",
|
||||
True = "1",
|
||||
LibraryDefault = "-1",
|
||||
Hide = "0",
|
||||
Show = "1",
|
||||
}
|
||||
|
||||
/**
|
||||
* Setting that indicates how episodes are sorted for the show. (-1 = Library default, 0 = Oldest first, 1 = Newest first).
|
||||
*/
|
||||
export enum GetSearchAllLibrariesEpisodeSort {
|
||||
LibraryDefault = "-1",
|
||||
OldestFirst = "0",
|
||||
NewestFirst = "1",
|
||||
}
|
||||
|
||||
/**
|
||||
* Setting that indicates if credits markers detection is enabled. (-1 = Library default, 0 = Disabled).
|
||||
*/
|
||||
export enum GetSearchAllLibrariesEnableCreditsMarkerGeneration {
|
||||
LibraryDefault = "-1",
|
||||
Disabled = "0",
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -420,7 +441,20 @@ export type GetSearchAllLibrariesMetadata = {
|
||||
year?: number | undefined;
|
||||
seasonCount?: number | undefined;
|
||||
tagline?: string | undefined;
|
||||
/**
|
||||
* Setting that indicates if seasons are set to hidden for the show. (-1 = Library default, 0 = Hide, 1 = Show).
|
||||
*/
|
||||
flattenSeasons?: GetSearchAllLibrariesFlattenSeasons | undefined;
|
||||
/**
|
||||
* Setting that indicates how episodes are sorted for the show. (-1 = Library default, 0 = Oldest first, 1 = Newest first).
|
||||
*/
|
||||
episodeSort?: GetSearchAllLibrariesEpisodeSort | undefined;
|
||||
/**
|
||||
* Setting that indicates if credits markers detection is enabled. (-1 = Library default, 0 = Disabled).
|
||||
*/
|
||||
enableCreditsMarkerGeneration?:
|
||||
| GetSearchAllLibrariesEnableCreditsMarkerGeneration
|
||||
| undefined;
|
||||
/**
|
||||
* Setting that indicates the episode ordering for the show
|
||||
*
|
||||
@@ -733,6 +767,50 @@ export namespace GetSearchAllLibrariesFlattenSeasons$ {
|
||||
GetSearchAllLibrariesFlattenSeasons$outboundSchema;
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
export const GetSearchAllLibrariesEpisodeSort$inboundSchema: z.ZodNativeEnum<
|
||||
typeof GetSearchAllLibrariesEpisodeSort
|
||||
> = z.nativeEnum(GetSearchAllLibrariesEpisodeSort);
|
||||
|
||||
/** @internal */
|
||||
export const GetSearchAllLibrariesEpisodeSort$outboundSchema: z.ZodNativeEnum<
|
||||
typeof GetSearchAllLibrariesEpisodeSort
|
||||
> = GetSearchAllLibrariesEpisodeSort$inboundSchema;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
||||
*/
|
||||
export namespace GetSearchAllLibrariesEpisodeSort$ {
|
||||
/** @deprecated use `GetSearchAllLibrariesEpisodeSort$inboundSchema` instead. */
|
||||
export const inboundSchema = GetSearchAllLibrariesEpisodeSort$inboundSchema;
|
||||
/** @deprecated use `GetSearchAllLibrariesEpisodeSort$outboundSchema` instead. */
|
||||
export const outboundSchema = GetSearchAllLibrariesEpisodeSort$outboundSchema;
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
export const GetSearchAllLibrariesEnableCreditsMarkerGeneration$inboundSchema:
|
||||
z.ZodNativeEnum<typeof GetSearchAllLibrariesEnableCreditsMarkerGeneration> = z
|
||||
.nativeEnum(GetSearchAllLibrariesEnableCreditsMarkerGeneration);
|
||||
|
||||
/** @internal */
|
||||
export const GetSearchAllLibrariesEnableCreditsMarkerGeneration$outboundSchema:
|
||||
z.ZodNativeEnum<typeof GetSearchAllLibrariesEnableCreditsMarkerGeneration> =
|
||||
GetSearchAllLibrariesEnableCreditsMarkerGeneration$inboundSchema;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
||||
*/
|
||||
export namespace GetSearchAllLibrariesEnableCreditsMarkerGeneration$ {
|
||||
/** @deprecated use `GetSearchAllLibrariesEnableCreditsMarkerGeneration$inboundSchema` instead. */
|
||||
export const inboundSchema =
|
||||
GetSearchAllLibrariesEnableCreditsMarkerGeneration$inboundSchema;
|
||||
/** @deprecated use `GetSearchAllLibrariesEnableCreditsMarkerGeneration$outboundSchema` instead. */
|
||||
export const outboundSchema =
|
||||
GetSearchAllLibrariesEnableCreditsMarkerGeneration$outboundSchema;
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
export const GetSearchAllLibrariesShowOrdering$inboundSchema: z.ZodNativeEnum<
|
||||
typeof GetSearchAllLibrariesShowOrdering
|
||||
@@ -1885,9 +1963,10 @@ export const GetSearchAllLibrariesMetadata$inboundSchema: z.ZodType<
|
||||
year: z.number().int().optional(),
|
||||
seasonCount: z.number().int().optional(),
|
||||
tagline: z.string().optional(),
|
||||
flattenSeasons: GetSearchAllLibrariesFlattenSeasons$inboundSchema.default(
|
||||
GetSearchAllLibrariesFlattenSeasons.False,
|
||||
),
|
||||
flattenSeasons: GetSearchAllLibrariesFlattenSeasons$inboundSchema.optional(),
|
||||
episodeSort: GetSearchAllLibrariesEpisodeSort$inboundSchema.optional(),
|
||||
enableCreditsMarkerGeneration:
|
||||
GetSearchAllLibrariesEnableCreditsMarkerGeneration$inboundSchema.optional(),
|
||||
showOrdering: GetSearchAllLibrariesShowOrdering$inboundSchema.optional(),
|
||||
thumb: z.string().optional(),
|
||||
art: z.string().optional(),
|
||||
@@ -1995,7 +2074,9 @@ export type GetSearchAllLibrariesMetadata$Outbound = {
|
||||
year?: number | undefined;
|
||||
seasonCount?: number | undefined;
|
||||
tagline?: string | undefined;
|
||||
flattenSeasons: string;
|
||||
flattenSeasons?: string | undefined;
|
||||
episodeSort?: string | undefined;
|
||||
enableCreditsMarkerGeneration?: string | undefined;
|
||||
showOrdering?: string | undefined;
|
||||
thumb?: string | undefined;
|
||||
art?: string | undefined;
|
||||
@@ -2077,9 +2158,11 @@ export const GetSearchAllLibrariesMetadata$outboundSchema: z.ZodType<
|
||||
year: z.number().int().optional(),
|
||||
seasonCount: z.number().int().optional(),
|
||||
tagline: z.string().optional(),
|
||||
flattenSeasons: GetSearchAllLibrariesFlattenSeasons$outboundSchema.default(
|
||||
GetSearchAllLibrariesFlattenSeasons.False,
|
||||
),
|
||||
flattenSeasons: GetSearchAllLibrariesFlattenSeasons$outboundSchema.optional(),
|
||||
episodeSort: GetSearchAllLibrariesEpisodeSort$outboundSchema.optional(),
|
||||
enableCreditsMarkerGeneration:
|
||||
GetSearchAllLibrariesEnableCreditsMarkerGeneration$outboundSchema
|
||||
.optional(),
|
||||
showOrdering: GetSearchAllLibrariesShowOrdering$outboundSchema.optional(),
|
||||
thumb: z.string().optional(),
|
||||
art: z.string().optional(),
|
||||
|
||||
Reference in New Issue
Block a user