[API] Added events / schedule api
This commit is contained in:
parent
4082f64e78
commit
dbdbeb3a4d
|
@ -0,0 +1,13 @@
|
||||||
|
# Flaschengeist `schedule` fontend-plugin
|
||||||
|
|
||||||
|
This package provides the [Flaschengeist](https://flaschengeist.dev/Flaschengeist/flaschengeist) frontend for the schedule plugin (event and schedule management).
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
Licensed under the MIT license, see [LICENSE](./LICENSE) for more details.
|
||||||
|
|
||||||
|
## Development
|
||||||
|
|
||||||
|
Feel free to report bugs, issues and feature requests using the [Issues function](https://flaschengeist.dev/Flaschengeist/flaschengeist-schedule/issues).
|
||||||
|
|
||||||
|
Please follow our [general development guide](https://flaschengeist.dev/Flaschengeist/flaschengeist/wiki/Development#general-development).
|
10
package.json
10
package.json
|
@ -1,9 +1,8 @@
|
||||||
{
|
{
|
||||||
"private": true,
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "1.0.0-alpha.1",
|
"version": "1.0.0-alpha.1",
|
||||||
"name": "@flaschengeist/schedule",
|
"name": "@flaschengeist/schedule",
|
||||||
"author": "Ferdinand <rpm@fthiessen.de>",
|
"author": "Ferdinand Thiessen <rpm@fthiessen.de>",
|
||||||
"homepage": "https://flaschengeist.dev/Flaschengeist",
|
"homepage": "https://flaschengeist.dev/Flaschengeist",
|
||||||
"description": "Flaschengeist schedule plugin",
|
"description": "Flaschengeist schedule plugin",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
|
@ -14,8 +13,8 @@
|
||||||
"url": "https://flaschengeist.dev/Flaschengeist/flaschengeist-schedule"
|
"url": "https://flaschengeist.dev/Flaschengeist/flaschengeist-schedule"
|
||||||
},
|
},
|
||||||
"main": "src/index.ts",
|
"main": "src/index.ts",
|
||||||
|
"types": "src/api.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"valid": "tsc --noEmit",
|
|
||||||
"pretty": "prettier --config ./package.json --write '{,!(node_modules)/**/}*.ts'",
|
"pretty": "prettier --config ./package.json --write '{,!(node_modules)/**/}*.ts'",
|
||||||
"lint": "eslint --ext .js,.ts,.vue ./src"
|
"lint": "eslint --ext .js,.ts,.vue ./src"
|
||||||
},
|
},
|
||||||
|
@ -23,8 +22,7 @@
|
||||||
"@quasar/quasar-ui-qcalendar": "^4.0.0-alpha.8"
|
"@quasar/quasar-ui-qcalendar": "^4.0.0-alpha.8"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@flaschengeist/api": "file:../flaschengeist-frontend/api",
|
"@flaschengeist/types": "^1.0.0-alpha.1",
|
||||||
"@flaschengeist/types": "git+https://flaschengeist.dev/ferfissimo/flaschengeist-types.git#develop",
|
|
||||||
"@quasar/app": "^3.0.0-beta.26",
|
"@quasar/app": "^3.0.0-beta.26",
|
||||||
"quasar": "^2.0.0-beta.18",
|
"quasar": "^2.0.0-beta.18",
|
||||||
"axios": "^0.21.1",
|
"axios": "^0.21.1",
|
||||||
|
@ -44,7 +42,7 @@
|
||||||
"prettier": {
|
"prettier": {
|
||||||
"singleQuote": true,
|
"singleQuote": true,
|
||||||
"semi": true,
|
"semi": true,
|
||||||
"printWidth": 100,
|
"printWidth": 120,
|
||||||
"arrowParens": "always"
|
"arrowParens": "always"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
declare namespace FG {
|
||||||
|
interface Event {
|
||||||
|
id: number;
|
||||||
|
start: Date;
|
||||||
|
end?: Date;
|
||||||
|
name?: string;
|
||||||
|
description?: string;
|
||||||
|
type: EventType | number;
|
||||||
|
is_template: boolean;
|
||||||
|
jobs: Array<Job>;
|
||||||
|
}
|
||||||
|
interface EventType {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
}
|
||||||
|
interface Invite {
|
||||||
|
id: number;
|
||||||
|
job_id: number;
|
||||||
|
invitee_id: string;
|
||||||
|
sender_id: string;
|
||||||
|
}
|
||||||
|
interface Job {
|
||||||
|
id: number;
|
||||||
|
start: Date;
|
||||||
|
end?: Date;
|
||||||
|
type: JobType | number;
|
||||||
|
comment?: string;
|
||||||
|
services: Array<Service>;
|
||||||
|
required_services: number;
|
||||||
|
}
|
||||||
|
interface JobType {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
}
|
||||||
|
interface Service {
|
||||||
|
userid: string;
|
||||||
|
is_backup: boolean;
|
||||||
|
value: number;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue