need4deed-sdk 0.0.110 → 0.0.111

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.
@@ -0,0 +1,15 @@
1
+ export interface ApiActivityLogEntry {
2
+ id: number;
3
+ date: Date;
4
+ hours: number;
5
+ }
6
+ export interface ApiActivityLogGet {
7
+ data: ApiActivityLogEntry[];
8
+ totalHours: number;
9
+ count: number;
10
+ }
11
+ export interface ApiActivityLogPost {
12
+ date: Date;
13
+ hours: number;
14
+ }
15
+ export type ApiActivityLogPatch = Partial<ApiActivityLogPost>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export interface ApiAddressGet {
2
+ street: string;
3
+ city: string;
4
+ postcode: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,5 @@
1
1
  export * from "./accompanying";
2
+ export * from "./activity-log";
2
3
  export * from "./agent";
3
4
  export * from "./appreciation";
4
5
  export * from "./comment";
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./accompanying"), exports);
18
+ __exportStar(require("./activity-log"), exports);
18
19
  __exportStar(require("./agent"), exports);
19
20
  __exportStar(require("./appreciation"), exports);
20
21
  __exportStar(require("./comment"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "need4deed-sdk",
3
- "version": "0.0.110",
3
+ "version": "0.0.111",
4
4
  "description": "Need4Deed.org SDK",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",