205 lines
3.6 KiB
TypeScript
205 lines
3.6 KiB
TypeScript
/**
|
|
* Interface of the server (auto-generated code)
|
|
*/
|
|
import {
|
|
HTTPMimeType,
|
|
HTTPRequestModel,
|
|
RESTCallbacks,
|
|
RESTConfig,
|
|
RESTRequestJson,
|
|
RESTRequestVoid,
|
|
} from "../rest-tools";
|
|
|
|
import { z as zod } from "zod"
|
|
import {
|
|
Long,
|
|
Series,
|
|
SeriesWrite,
|
|
UUID,
|
|
ZodSeries,
|
|
isSeries,
|
|
} from "../model";
|
|
|
|
export namespace SeriesResource {
|
|
|
|
/**
|
|
* Get a specific Series with his ID
|
|
*/
|
|
export function get({
|
|
restConfig,
|
|
params,
|
|
}: {
|
|
restConfig: RESTConfig,
|
|
params: {
|
|
id: Long,
|
|
},
|
|
}): Promise<Series> {
|
|
return RESTRequestJson({
|
|
restModel: {
|
|
endPoint: "/series/{id}",
|
|
requestType: HTTPRequestModel.GET,
|
|
contentType: HTTPMimeType.JSON,
|
|
accept: HTTPMimeType.JSON,
|
|
},
|
|
restConfig,
|
|
params,
|
|
}, isSeries);
|
|
};
|
|
|
|
export const ZodGetsTypeReturn = zod.array(ZodSeries);
|
|
export type GetsTypeReturn = zod.infer<typeof ZodGetsTypeReturn>;
|
|
|
|
export function isGetsTypeReturn(data: any): data is GetsTypeReturn {
|
|
try {
|
|
ZodGetsTypeReturn.parse(data);
|
|
return true;
|
|
} catch (e: any) {
|
|
console.log(`Fail to parse data type='ZodGetsTypeReturn' error=${e}`);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get all Series
|
|
*/
|
|
export function gets({
|
|
restConfig,
|
|
}: {
|
|
restConfig: RESTConfig,
|
|
}): Promise<GetsTypeReturn> {
|
|
return RESTRequestJson({
|
|
restModel: {
|
|
endPoint: "/series/",
|
|
requestType: HTTPRequestModel.GET,
|
|
accept: HTTPMimeType.JSON,
|
|
},
|
|
restConfig,
|
|
}, isGetsTypeReturn);
|
|
};
|
|
/**
|
|
* Modify a specific Series
|
|
*/
|
|
export function patch({
|
|
restConfig,
|
|
params,
|
|
data,
|
|
}: {
|
|
restConfig: RESTConfig,
|
|
params: {
|
|
id: Long,
|
|
},
|
|
data: SeriesWrite,
|
|
}): Promise<Series> {
|
|
return RESTRequestJson({
|
|
restModel: {
|
|
endPoint: "/series/{id}",
|
|
requestType: HTTPRequestModel.PATCH,
|
|
contentType: HTTPMimeType.JSON,
|
|
accept: HTTPMimeType.JSON,
|
|
},
|
|
restConfig,
|
|
params,
|
|
data,
|
|
}, isSeries);
|
|
};
|
|
/**
|
|
* Create a new Series
|
|
*/
|
|
export function post({
|
|
restConfig,
|
|
data,
|
|
}: {
|
|
restConfig: RESTConfig,
|
|
data: SeriesWrite,
|
|
}): Promise<Series> {
|
|
return RESTRequestJson({
|
|
restModel: {
|
|
endPoint: "/series/",
|
|
requestType: HTTPRequestModel.POST,
|
|
contentType: HTTPMimeType.JSON,
|
|
accept: HTTPMimeType.JSON,
|
|
},
|
|
restConfig,
|
|
data,
|
|
}, isSeries);
|
|
};
|
|
/**
|
|
* Remove a specific Series
|
|
*/
|
|
export function remove({
|
|
restConfig,
|
|
params,
|
|
}: {
|
|
restConfig: RESTConfig,
|
|
params: {
|
|
id: Long,
|
|
},
|
|
}): Promise<void> {
|
|
return RESTRequestVoid({
|
|
restModel: {
|
|
endPoint: "/series/{id}",
|
|
requestType: HTTPRequestModel.DELETE,
|
|
contentType: HTTPMimeType.TEXT_PLAIN,
|
|
},
|
|
restConfig,
|
|
params,
|
|
});
|
|
};
|
|
/**
|
|
* Remove a specific Series of a season
|
|
*/
|
|
export function removeCover({
|
|
restConfig,
|
|
params,
|
|
}: {
|
|
restConfig: RESTConfig,
|
|
params: {
|
|
coverId: UUID,
|
|
id: Long,
|
|
},
|
|
}): Promise<Series> {
|
|
return RESTRequestJson({
|
|
restModel: {
|
|
endPoint: "/series/{id}/cover/{coverId}",
|
|
requestType: HTTPRequestModel.DELETE,
|
|
contentType: HTTPMimeType.TEXT_PLAIN,
|
|
accept: HTTPMimeType.JSON,
|
|
},
|
|
restConfig,
|
|
params,
|
|
}, isSeries);
|
|
};
|
|
/**
|
|
* Upload a new season cover Series
|
|
*/
|
|
export function uploadCover({
|
|
restConfig,
|
|
params,
|
|
data,
|
|
callback,
|
|
}: {
|
|
restConfig: RESTConfig,
|
|
params: {
|
|
id: Long,
|
|
},
|
|
data: {
|
|
fileName: string,
|
|
file: File,
|
|
},
|
|
callback?: RESTCallbacks,
|
|
}): Promise<Series> {
|
|
return RESTRequestJson({
|
|
restModel: {
|
|
endPoint: "/series/{id}/cover",
|
|
requestType: HTTPRequestModel.POST,
|
|
contentType: HTTPMimeType.MULTIPART,
|
|
accept: HTTPMimeType.JSON,
|
|
},
|
|
restConfig,
|
|
params,
|
|
data,
|
|
callback,
|
|
}, isSeries);
|
|
};
|
|
}
|