asv-hlps-market 1.0.20 → 1.0.21
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/lib/cjs/tonts/models/Tont.d.ts +29 -0
- package/lib/cjs/tonts/models/Tont.js +8 -0
- package/lib/cjs/tonts/models/TontCat.d.ts +3 -0
- package/lib/cjs/tonts/models/TontCat.js +2 -0
- package/lib/cjs/tonts/models/TontEvent.d.ts +8 -0
- package/lib/cjs/tonts/models/TontEvent.js +2 -0
- package/lib/cjs/tonts/models/TontMbr.d.ts +11 -0
- package/lib/cjs/tonts/models/TontMbr.js +2 -0
- package/lib/cjs/tonts/models/TontStatus.d.ts +3 -0
- package/lib/cjs/tonts/models/TontStatus.js +2 -0
- package/lib/esm/tonts/models/Tont.d.ts +29 -0
- package/lib/esm/tonts/models/Tont.js +5 -0
- package/lib/esm/tonts/models/TontCat.d.ts +3 -0
- package/lib/esm/tonts/models/TontCat.js +1 -0
- package/lib/esm/tonts/models/TontEvent.d.ts +8 -0
- package/lib/esm/tonts/models/TontEvent.js +1 -0
- package/lib/esm/tonts/models/TontMbr.d.ts +11 -0
- package/lib/esm/tonts/models/TontMbr.js +1 -0
- package/lib/esm/tonts/models/TontStatus.d.ts +3 -0
- package/lib/esm/tonts/models/TontStatus.js +1 -0
- package/package.json +2 -2
@@ -0,0 +1,29 @@
|
|
1
|
+
import EDatePeriodicity from "asv-hlps/lib/cjs/shared/models/EDatePeriodicity";
|
2
|
+
import User from "../../users/models/User";
|
3
|
+
import { TontCat } from "./TontCat";
|
4
|
+
import { TontMbr } from "./TontMbr";
|
5
|
+
export declare enum TontStatus {
|
6
|
+
PRIVATE = "private",
|
7
|
+
PUBLIC = "public"
|
8
|
+
}
|
9
|
+
export interface Tont {
|
10
|
+
id: number;
|
11
|
+
createdAt: Date;
|
12
|
+
updatedAt: Date;
|
13
|
+
ref: string;
|
14
|
+
name: string;
|
15
|
+
status: TontStatus;
|
16
|
+
startDate: Date;
|
17
|
+
closeDate: Date;
|
18
|
+
baseBet: number;
|
19
|
+
periodicity: EDatePeriodicity;
|
20
|
+
limitMbr: number;
|
21
|
+
isActive: boolean;
|
22
|
+
endDate: Date;
|
23
|
+
code: string;
|
24
|
+
participants: number;
|
25
|
+
contribution: number;
|
26
|
+
cat: TontCat;
|
27
|
+
author: User;
|
28
|
+
mbrs: TontMbr[];
|
29
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.TontStatus = void 0;
|
4
|
+
var TontStatus;
|
5
|
+
(function (TontStatus) {
|
6
|
+
TontStatus["PRIVATE"] = "private";
|
7
|
+
TontStatus["PUBLIC"] = "public";
|
8
|
+
})(TontStatus || (exports.TontStatus = TontStatus = {}));
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import EDatePeriodicity from "asv-hlps/lib/cjs/shared/models/EDatePeriodicity";
|
2
|
+
import User from "../../users/models/User";
|
3
|
+
import { TontCat } from "./TontCat";
|
4
|
+
import { TontMbr } from "./TontMbr";
|
5
|
+
export declare enum TontStatus {
|
6
|
+
PRIVATE = "private",
|
7
|
+
PUBLIC = "public"
|
8
|
+
}
|
9
|
+
export interface Tont {
|
10
|
+
id: number;
|
11
|
+
createdAt: Date;
|
12
|
+
updatedAt: Date;
|
13
|
+
ref: string;
|
14
|
+
name: string;
|
15
|
+
status: TontStatus;
|
16
|
+
startDate: Date;
|
17
|
+
closeDate: Date;
|
18
|
+
baseBet: number;
|
19
|
+
periodicity: EDatePeriodicity;
|
20
|
+
limitMbr: number;
|
21
|
+
isActive: boolean;
|
22
|
+
endDate: Date;
|
23
|
+
code: string;
|
24
|
+
participants: number;
|
25
|
+
contribution: number;
|
26
|
+
cat: TontCat;
|
27
|
+
author: User;
|
28
|
+
mbrs: TontMbr[];
|
29
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "asv-hlps-market",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.21",
|
4
4
|
"description": "",
|
5
5
|
"main": "./lib/cjs/index.js",
|
6
6
|
"module": "./lib/esm/index.js",
|
@@ -19,6 +19,6 @@
|
|
19
19
|
"typescript": "^5.8.3"
|
20
20
|
},
|
21
21
|
"dependencies": {
|
22
|
-
"asv-hlps": "^1.4.
|
22
|
+
"asv-hlps": "^1.4.35"
|
23
23
|
}
|
24
24
|
}
|