@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 +1 -5
- package/build/agenda/index.d.ts +5 -4
- package/build/index.es.js +158 -297
- package/build/index.es.js.map +1 -1
- package/build/index.js +158 -297
- package/build/index.js.map +1 -1
- package/build/user/oauth/index.d.ts +3 -0
- package/package.json +1 -1
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
|
|
package/build/agenda/index.d.ts
CHANGED
|
@@ -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,
|
|
10
|
-
export declare const
|
|
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 {};
|