@phoenixlan/phoenix.js 2.33.0 → 2.36.0

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/README.md CHANGED
@@ -2,13 +2,9 @@
2
2
 
3
3
  This repo contains PhoenixJS - a common JavaScript library for interfacing easily with the phoenix REST api server.
4
4
 
5
- ## Usage
6
-
7
- Import it and use
8
-
9
5
  ## Requirements
10
6
 
11
- You need to install commitizen: `yarn global add commitizen`
7
+ You need to install commitizen: `yarn global add commitizen` in order to develop. I am so sorry.
12
8
 
13
9
  ## Commit rules
14
10
 
@@ -4,8 +4,9 @@ interface AgendaEntry {
4
4
  title: string;
5
5
  description: string;
6
6
  }
7
- export declare const getAgenda: () => Promise<Array<AgendaEntry>>;
8
- export declare const getAgendaElement: (uuid: string) => Promise<AgendaEntry>;
9
- export declare const createAgendaEntry: (title: string, description: string, event_uuid: string, time: number) => Promise<boolean>;
10
- export declare const deleteAgendaEntry: (uuid: string) => Promise<boolean>;
7
+ export declare const getAgenda: () => Promise<Array<AgendaEntry[]>>;
8
+ export declare const getAgendaElement: (uuid: string) => Promise<AgendaEntry[]>;
9
+ export declare const createAgendaEntry: (event_uuid: string, title: string, description: string, location: string, time: number, pinned: boolean) => Promise<AgendaEntry>;
10
+ export declare const modifyAgendaEntry: (uuid: string, event_uuid: string, title: string, description: string, time: number, location: string, deviating_time_unknown: boolean, deviating_location: string, deviating_information: string, pinned: boolean, cancelled: boolean, deviating_time?: number) => Promise<AgendaEntry>;
11
+ export declare const deleteAgendaEntry: (uuid: string) => Promise<AgendaEntry>;
11
12
  export {};