backend/source/types.ts

116 lines
1.3 KiB
TypeScript
Raw Permalink Normal View History

2024-09-12 00:03:29 +02:00
/**
*/
2024-09-21 11:05:24 +02:00
namespace _zeitbild
2024-09-12 00:03:29 +02:00
{
/**
*/
2024-09-21 10:56:00 +02:00
export enum enum_access_level {
none,
view,
edit,
admin
}
2024-09-12 00:03:29 +02:00
/**
*/
2024-09-21 11:05:24 +02:00
export type type_user_id = int;
2024-09-12 00:03:29 +02:00
/**
*/
2024-09-21 11:05:24 +02:00
export type type_user_object = {
2024-09-12 00:03:29 +02:00
name : string;
2024-09-13 17:49:32 +02:00
email_address : (
null
|
string
);
2024-09-12 00:03:29 +02:00
};
/**
*/
2024-09-21 11:05:24 +02:00
export type type_event_object = {
2024-09-12 00:03:29 +02:00
name : string;
2024-09-26 16:47:38 +02:00
begin : lib_plankton.pit.type_datetime;
2024-09-12 00:03:29 +02:00
end : (
null
|
2024-09-26 16:47:38 +02:00
lib_plankton.pit.type_datetime
2024-09-12 00:03:29 +02:00
);
location : (
null
|
string
);
link : (
null
|
string
);
2024-09-12 00:03:29 +02:00
description : (
null
|
string
);
};
/**
*/
export type type_local_resource_event_id = int;
2024-09-12 00:03:29 +02:00
/**
*/
2024-09-21 11:05:24 +02:00
export type type_resource_id = int;
2024-09-12 00:03:29 +02:00
/**
*/
2024-09-21 11:05:24 +02:00
export type type_resource_object = (
2024-09-12 00:03:29 +02:00
{
2024-09-12 16:35:57 +02:00
kind : "local";
data : {
event_ids : Array<
type_local_resource_event_id
>;
2024-09-12 16:35:57 +02:00
};
2024-09-12 00:03:29 +02:00
}
2024-09-12 16:35:57 +02:00
|
{
kind : "caldav";
data : {
url : string;
2024-09-25 14:50:32 +02:00
read_only : boolean;
from_fucked_up_wordpress : boolean;
2024-09-12 16:35:57 +02:00
};
}
);
/**
*/
2024-09-21 11:05:24 +02:00
export type type_calendar_id = int;
2024-09-12 16:35:57 +02:00
/**
*/
2024-09-21 11:05:24 +02:00
export type type_calendar_object = {
2024-09-12 16:35:57 +02:00
name : string;
2024-09-21 10:56:00 +02:00
access : {
2024-10-10 23:00:29 +02:00
public : boolean;
2024-09-21 10:56:00 +02:00
default_level : enum_access_level;
attributed : lib_plankton.map.type_map<
2024-09-21 11:05:24 +02:00
type_user_id,
2024-09-21 10:56:00 +02:00
enum_access_level
>;
};
2024-09-21 11:05:24 +02:00
resource_id : type_resource_id;
2024-09-12 16:35:57 +02:00
};
2024-09-12 00:03:29 +02:00
}