meemup-library 1.3.32 → 1.3.34

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,10 @@
1
+ export default interface IManagementMembership {
2
+ id: number;
3
+ enabled: boolean;
4
+ name: string;
5
+ durations: number;
6
+ costs: number;
7
+ dateTime: string;
8
+ taxIncluded: boolean;
9
+ }
10
+ export declare const initManagementMembership: IManagementMembership;
@@ -0,0 +1,9 @@
1
+ export const initManagementMembership = {
2
+ id: -1,
3
+ enabled: false,
4
+ name: "",
5
+ durations: 0,
6
+ costs: 0,
7
+ dateTime: "",
8
+ taxIncluded: false
9
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.3.32",
3
+ "version": "1.3.34",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "remove:one": "rimraf dist",
12
12
  "remove:two": "rimraf ./src/dist",
13
13
  "test": "echo \"Error: no test specified\" && exit 1",
14
- "commit": "git add . && git commit -m \"version.1.3.32 \" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.3.34 \" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"
@@ -1,9 +0,0 @@
1
- export default interface IManagementMembershipRow {
2
- id: number;
3
- enabled: boolean;
4
- name: string;
5
- durations: number;
6
- costs: number;
7
- dateTime: string;
8
- }
9
- export declare const initManagementMembershipRow: IManagementMembershipRow;
@@ -1,8 +0,0 @@
1
- export const initManagementMembershipRow = {
2
- id: -1,
3
- enabled: false,
4
- name: "",
5
- durations: 0,
6
- costs: 0,
7
- dateTime: ""
8
- };