asv-hlps 1.2.13 → 1.2.16
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/index.d.ts +2 -0
- package/lib/cjs/index.js +2 -0
- package/lib/cjs/models/entities/users/UserAbs.d.ts +31 -0
- package/lib/cjs/models/entities/users/UserAbs.js +2 -0
- package/lib/cjs/models/entities/users/UserNotatial.d.ts +9 -0
- package/lib/cjs/models/entities/users/UserNotatial.js +2 -0
- package/lib/cjs/models/entities/users/index.d.ts +15 -0
- package/lib/cjs/models/entities/users/index.js +5 -0
- package/lib/cjs/models/index.d.ts +1 -15
- package/lib/cjs/models/index.js +1 -3
- package/lib/esm/index.d.ts +2 -0
- package/lib/esm/index.js +2 -0
- package/lib/esm/models/entities/users/UserAbs.d.ts +31 -0
- package/lib/esm/models/entities/users/UserAbs.js +1 -0
- package/lib/esm/models/entities/users/UserNotatial.d.ts +9 -0
- package/lib/esm/models/entities/users/UserNotatial.js +1 -0
- package/lib/esm/models/entities/users/index.d.ts +15 -0
- package/lib/esm/models/entities/users/index.js +2 -0
- package/lib/esm/models/index.d.ts +1 -15
- package/lib/esm/models/index.js +1 -2
- package/package.json +1 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import "./auth";
|
|
|
9
9
|
import "./bill";
|
|
10
10
|
import "./bootstrap";
|
|
11
11
|
import "./models/entities/estates/index";
|
|
12
|
+
import "./models/entities/users/index";
|
|
12
13
|
import "./models/index";
|
|
13
14
|
import "./pdfs/invoices/amountInvoice";
|
|
14
15
|
import "./pdfs/invoices/infoInvoice";
|
|
@@ -34,4 +35,5 @@ export * from "./typeorm";
|
|
|
34
35
|
export * from "./user";
|
|
35
36
|
export * from "./utils";
|
|
36
37
|
export * from "./models/entities/estates/index";
|
|
38
|
+
export * from "./models/entities/users/index";
|
|
37
39
|
export { AuthService, StorageService, HlpProduct, HlpEntry, StockPipe, AmountOnListBillPipe, AmountOnBillPipe };
|
package/lib/cjs/index.js
CHANGED
|
@@ -36,6 +36,7 @@ require("./auth");
|
|
|
36
36
|
require("./bill");
|
|
37
37
|
require("./bootstrap");
|
|
38
38
|
require("./models/entities/estates/index");
|
|
39
|
+
require("./models/entities/users/index");
|
|
39
40
|
require("./models/index");
|
|
40
41
|
require("./pdfs/invoices/amountInvoice");
|
|
41
42
|
require("./pdfs/invoices/infoInvoice");
|
|
@@ -61,3 +62,4 @@ __exportStar(require("./typeorm"), exports);
|
|
|
61
62
|
__exportStar(require("./user"), exports);
|
|
62
63
|
__exportStar(require("./utils"), exports);
|
|
63
64
|
__exportStar(require("./models/entities/estates/index"), exports);
|
|
65
|
+
__exportStar(require("./models/entities/users/index"), exports);
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { AuthTag } from "../auth/AuthTag";
|
|
2
|
+
import { Address } from "./Address";
|
|
3
|
+
import { Gender } from "./Gender";
|
|
4
|
+
import { Ste } from "./Ste";
|
|
5
|
+
import { UserGrp } from "./UserGrp";
|
|
6
|
+
import { UserRole } from "./UserRole";
|
|
7
|
+
import { UserTitr } from "./UserTitr";
|
|
8
|
+
export interface UserAbs extends Address {
|
|
9
|
+
id: number;
|
|
10
|
+
codeCompta?: string | number;
|
|
11
|
+
firstname?: string;
|
|
12
|
+
lastname?: string;
|
|
13
|
+
username?: string;
|
|
14
|
+
birthday?: Date | string;
|
|
15
|
+
password?: string;
|
|
16
|
+
ip?: string;
|
|
17
|
+
isActive: boolean;
|
|
18
|
+
disabled?: boolean;
|
|
19
|
+
foto?: string;
|
|
20
|
+
clp?: string;
|
|
21
|
+
periodBill?: string;
|
|
22
|
+
gender?: Gender;
|
|
23
|
+
titr?: UserTitr;
|
|
24
|
+
clientId?: number;
|
|
25
|
+
grp?: UserGrp;
|
|
26
|
+
tags?: AuthTag[];
|
|
27
|
+
role?: UserRole;
|
|
28
|
+
roles?: UserRole[];
|
|
29
|
+
ste?: Ste;
|
|
30
|
+
fullname?: string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Estate } from "../estates/Estate";
|
|
2
|
+
import { Housing } from "../estates/Housing";
|
|
3
|
+
import { UserAbs } from "./UserAbs";
|
|
4
|
+
export interface UserNotarial extends UserAbs {
|
|
5
|
+
estates?: Estate[];
|
|
6
|
+
entryYear?: string;
|
|
7
|
+
hasHousing?: boolean;
|
|
8
|
+
housing?: Housing;
|
|
9
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Address } from "./Address";
|
|
2
|
+
import { DutyPhcie } from "./DutyPhcie";
|
|
3
|
+
import { Gender } from "./Gender";
|
|
4
|
+
import { Leave } from "./Leave";
|
|
5
|
+
import { Ste } from "./Ste";
|
|
6
|
+
import { SteGrp } from "./SteGrp";
|
|
7
|
+
import { User } from "./User";
|
|
8
|
+
import { UserCredit } from "./UserCredit";
|
|
9
|
+
import { UserGrp } from "./UserGrp";
|
|
10
|
+
import { UserNote } from "./UserNote";
|
|
11
|
+
import { UserOnline } from "./UserOnline";
|
|
12
|
+
import { UserRole } from "./UserRole";
|
|
13
|
+
import { UserTitr } from "./UserTitr";
|
|
14
|
+
import { Zone } from "./Zone";
|
|
15
|
+
export { Address, DutyPhcie, Gender, Leave, Ste, SteGrp, User, UserCredit, UserGrp, UserNote, UserOnline, UserRole, UserTitr, Zone };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UserCredit = void 0;
|
|
4
|
+
const UserCredit_1 = require("./UserCredit");
|
|
5
|
+
Object.defineProperty(exports, "UserCredit", { enumerable: true, get: function () { return UserCredit_1.UserCredit; } });
|
|
@@ -72,20 +72,6 @@ import { SaleProductLot } from "./entities/sales/SaleProductLot";
|
|
|
72
72
|
import { SaleProductQtityIssue } from "./entities/sales/SaleProductQtityIssue";
|
|
73
73
|
import { SaleShop } from "./entities/sales/SaleShop";
|
|
74
74
|
import { ShopCart } from "./entities/sales/ShopCart";
|
|
75
|
-
import { Address } from "./entities/users/Address";
|
|
76
|
-
import { DutyPhcie } from "./entities/users/DutyPhcie";
|
|
77
|
-
import { Gender } from "./entities/users/Gender";
|
|
78
|
-
import { Leave } from "./entities/users/Leave";
|
|
79
|
-
import { Ste } from "./entities/users/Ste";
|
|
80
|
-
import { SteGrp } from "./entities/users/SteGrp";
|
|
81
|
-
import { User } from "./entities/users/User";
|
|
82
|
-
import { UserCredit } from "./entities/users/UserCredit";
|
|
83
|
-
import { UserGrp } from "./entities/users/UserGrp";
|
|
84
|
-
import { UserNote } from "./entities/users/UserNote";
|
|
85
|
-
import { UserOnline } from "./entities/users/UserOnline";
|
|
86
|
-
import { UserRole } from "./entities/users/UserRole";
|
|
87
|
-
import { UserTitr } from "./entities/users/UserTitr";
|
|
88
|
-
import { Zone } from "./entities/users/Zone";
|
|
89
75
|
import { Todo } from "./entities/utilities/Todo";
|
|
90
76
|
import { Vehicle } from "./entities/utilities/Vehicle";
|
|
91
77
|
import { Wish } from "./entities/utilities/Wish";
|
|
@@ -99,4 +85,4 @@ import { NaAc } from "./shared/NaAc";
|
|
|
99
85
|
import { NaCoAc } from "./shared/NaCoAc";
|
|
100
86
|
import { NaCoShortAc } from "./shared/NaCoShortAc";
|
|
101
87
|
import { colNa, colNaCo, colNaCoSh, FormProps, HeaderTableColumnType, IPath, MenuItemType } from "./types/Type";
|
|
102
|
-
export { AuthTag, AuthTagCat, Docu, DocuCat, Faq, FaqCat, Memo, MemoCat, NaAc, NaCoAc, NaCoShortAc, Buy, BuyCart, BuyItem, BuyItems, Mail, MailMass, MsgAlert, MsgChat, Account, Bank, Currency, Deposit, Feed, Spent, Entry, EntryAccount, EntryCat, EntryLine, OhadaCat, OhadaGrp, OhadaPlan, OhadaSubCat,
|
|
88
|
+
export { AuthTag, AuthTagCat, Docu, DocuCat, Faq, FaqCat, Memo, MemoCat, NaAc, NaCoAc, NaCoShortAc, Buy, BuyCart, BuyItem, BuyItems, Mail, MailMass, MsgAlert, MsgChat, Account, Bank, Currency, Deposit, Feed, Spent, Entry, EntryAccount, EntryCat, EntryLine, OhadaCat, OhadaGrp, OhadaPlan, OhadaSubCat, CartItem, DelideryProcess, Sale, SaleDelivery, SaleInfo, SaleItems, SaleProduct, SaleProductLot, SaleProductQtityIssue, SaleShop, SaleTreatStatus, ShopCart, Product, ProductAgcy, ProductAmm, ProductBuy, ProductCat, ProductDci, ProductDepot, ProductDos, ProductFg, ProductIn, ProductInOut, ProductInventory, ProductLabo, ProductLoc, ProductMvt, ProductMvtInventory, ProductOutReason, ProductPromo, ProductPvd, ProductSof, ProductStore, ProductTcl, ProductTclGrp, ProductTransfert, ProductWanted, Bill, BillLine, BillPayment, BillPaymentMethod, CBillPeriod, EBillPeriod, EPayMethod, Todo, Vehicle, Wish, City, Continent, Country, Department, Quarter, Region, MenuItemType, HeaderTableColumnType, IPath, colNa, colNaCo, colNaCoSh, FormProps, };
|
package/lib/cjs/models/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.colNaCoSh = exports.colNaCo = exports.colNa = exports.Region = exports.Continent = exports.City = exports.Wish = exports.Todo = exports.EPayMethod = exports.EBillPeriod = exports.CBillPeriod = exports.ProductPromo = exports.ShopCart = exports.SaleTreatStatus = exports.SaleShop = exports.SaleProductLot = exports.SaleProduct = exports.SaleItems = exports.
|
|
3
|
+
exports.colNaCoSh = exports.colNaCo = exports.colNa = exports.Region = exports.Continent = exports.City = exports.Wish = exports.Todo = exports.EPayMethod = exports.EBillPeriod = exports.CBillPeriod = exports.ProductPromo = exports.ShopCart = exports.SaleTreatStatus = exports.SaleShop = exports.SaleProductLot = exports.SaleProduct = exports.SaleItems = exports.BuyItems = void 0;
|
|
4
4
|
const CBillPeriod_1 = require("./entities/bills/CBillPeriod");
|
|
5
5
|
Object.defineProperty(exports, "CBillPeriod", { enumerable: true, get: function () { return CBillPeriod_1.CBillPeriod; } });
|
|
6
6
|
const EBillPeriod_1 = require("./entities/bills/EBillPeriod");
|
|
@@ -23,8 +23,6 @@ const SaleShop_1 = require("./entities/sales/SaleShop");
|
|
|
23
23
|
Object.defineProperty(exports, "SaleShop", { enumerable: true, get: function () { return SaleShop_1.SaleShop; } });
|
|
24
24
|
const ShopCart_1 = require("./entities/sales/ShopCart");
|
|
25
25
|
Object.defineProperty(exports, "ShopCart", { enumerable: true, get: function () { return ShopCart_1.ShopCart; } });
|
|
26
|
-
const UserCredit_1 = require("./entities/users/UserCredit");
|
|
27
|
-
Object.defineProperty(exports, "UserCredit", { enumerable: true, get: function () { return UserCredit_1.UserCredit; } });
|
|
28
26
|
const Todo_1 = require("./entities/utilities/Todo");
|
|
29
27
|
Object.defineProperty(exports, "Todo", { enumerable: true, get: function () { return Todo_1.Todo; } });
|
|
30
28
|
const Wish_1 = require("./entities/utilities/Wish");
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import "./auth";
|
|
|
9
9
|
import "./bill";
|
|
10
10
|
import "./bootstrap";
|
|
11
11
|
import "./models/entities/estates/index";
|
|
12
|
+
import "./models/entities/users/index";
|
|
12
13
|
import "./models/index";
|
|
13
14
|
import "./pdfs/invoices/amountInvoice";
|
|
14
15
|
import "./pdfs/invoices/infoInvoice";
|
|
@@ -34,4 +35,5 @@ export * from "./typeorm";
|
|
|
34
35
|
export * from "./user";
|
|
35
36
|
export * from "./utils";
|
|
36
37
|
export * from "./models/entities/estates/index";
|
|
38
|
+
export * from "./models/entities/users/index";
|
|
37
39
|
export { AuthService, StorageService, HlpProduct, HlpEntry, StockPipe, AmountOnListBillPipe, AmountOnBillPipe };
|
package/lib/esm/index.js
CHANGED
|
@@ -9,6 +9,7 @@ import "./auth";
|
|
|
9
9
|
import "./bill";
|
|
10
10
|
import "./bootstrap";
|
|
11
11
|
import "./models/entities/estates/index";
|
|
12
|
+
import "./models/entities/users/index";
|
|
12
13
|
import "./models/index";
|
|
13
14
|
import "./pdfs/invoices/amountInvoice";
|
|
14
15
|
import "./pdfs/invoices/infoInvoice";
|
|
@@ -34,5 +35,6 @@ export * from "./typeorm";
|
|
|
34
35
|
export * from "./user";
|
|
35
36
|
export * from "./utils";
|
|
36
37
|
export * from "./models/entities/estates/index";
|
|
38
|
+
export * from "./models/entities/users/index";
|
|
37
39
|
// export * from "./helpers/hlpProduct";
|
|
38
40
|
export { AuthService, StorageService, HlpProduct, HlpEntry, StockPipe, AmountOnListBillPipe, AmountOnBillPipe };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { AuthTag } from "../auth/AuthTag";
|
|
2
|
+
import { Address } from "./Address";
|
|
3
|
+
import { Gender } from "./Gender";
|
|
4
|
+
import { Ste } from "./Ste";
|
|
5
|
+
import { UserGrp } from "./UserGrp";
|
|
6
|
+
import { UserRole } from "./UserRole";
|
|
7
|
+
import { UserTitr } from "./UserTitr";
|
|
8
|
+
export interface UserAbs extends Address {
|
|
9
|
+
id: number;
|
|
10
|
+
codeCompta?: string | number;
|
|
11
|
+
firstname?: string;
|
|
12
|
+
lastname?: string;
|
|
13
|
+
username?: string;
|
|
14
|
+
birthday?: Date | string;
|
|
15
|
+
password?: string;
|
|
16
|
+
ip?: string;
|
|
17
|
+
isActive: boolean;
|
|
18
|
+
disabled?: boolean;
|
|
19
|
+
foto?: string;
|
|
20
|
+
clp?: string;
|
|
21
|
+
periodBill?: string;
|
|
22
|
+
gender?: Gender;
|
|
23
|
+
titr?: UserTitr;
|
|
24
|
+
clientId?: number;
|
|
25
|
+
grp?: UserGrp;
|
|
26
|
+
tags?: AuthTag[];
|
|
27
|
+
role?: UserRole;
|
|
28
|
+
roles?: UserRole[];
|
|
29
|
+
ste?: Ste;
|
|
30
|
+
fullname?: string;
|
|
31
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Estate } from "../estates/Estate";
|
|
2
|
+
import { Housing } from "../estates/Housing";
|
|
3
|
+
import { UserAbs } from "./UserAbs";
|
|
4
|
+
export interface UserNotarial extends UserAbs {
|
|
5
|
+
estates?: Estate[];
|
|
6
|
+
entryYear?: string;
|
|
7
|
+
hasHousing?: boolean;
|
|
8
|
+
housing?: Housing;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Address } from "./Address";
|
|
2
|
+
import { DutyPhcie } from "./DutyPhcie";
|
|
3
|
+
import { Gender } from "./Gender";
|
|
4
|
+
import { Leave } from "./Leave";
|
|
5
|
+
import { Ste } from "./Ste";
|
|
6
|
+
import { SteGrp } from "./SteGrp";
|
|
7
|
+
import { User } from "./User";
|
|
8
|
+
import { UserCredit } from "./UserCredit";
|
|
9
|
+
import { UserGrp } from "./UserGrp";
|
|
10
|
+
import { UserNote } from "./UserNote";
|
|
11
|
+
import { UserOnline } from "./UserOnline";
|
|
12
|
+
import { UserRole } from "./UserRole";
|
|
13
|
+
import { UserTitr } from "./UserTitr";
|
|
14
|
+
import { Zone } from "./Zone";
|
|
15
|
+
export { Address, DutyPhcie, Gender, Leave, Ste, SteGrp, User, UserCredit, UserGrp, UserNote, UserOnline, UserRole, UserTitr, Zone };
|
|
@@ -72,20 +72,6 @@ import { SaleProductLot } from "./entities/sales/SaleProductLot";
|
|
|
72
72
|
import { SaleProductQtityIssue } from "./entities/sales/SaleProductQtityIssue";
|
|
73
73
|
import { SaleShop } from "./entities/sales/SaleShop";
|
|
74
74
|
import { ShopCart } from "./entities/sales/ShopCart";
|
|
75
|
-
import { Address } from "./entities/users/Address";
|
|
76
|
-
import { DutyPhcie } from "./entities/users/DutyPhcie";
|
|
77
|
-
import { Gender } from "./entities/users/Gender";
|
|
78
|
-
import { Leave } from "./entities/users/Leave";
|
|
79
|
-
import { Ste } from "./entities/users/Ste";
|
|
80
|
-
import { SteGrp } from "./entities/users/SteGrp";
|
|
81
|
-
import { User } from "./entities/users/User";
|
|
82
|
-
import { UserCredit } from "./entities/users/UserCredit";
|
|
83
|
-
import { UserGrp } from "./entities/users/UserGrp";
|
|
84
|
-
import { UserNote } from "./entities/users/UserNote";
|
|
85
|
-
import { UserOnline } from "./entities/users/UserOnline";
|
|
86
|
-
import { UserRole } from "./entities/users/UserRole";
|
|
87
|
-
import { UserTitr } from "./entities/users/UserTitr";
|
|
88
|
-
import { Zone } from "./entities/users/Zone";
|
|
89
75
|
import { Todo } from "./entities/utilities/Todo";
|
|
90
76
|
import { Vehicle } from "./entities/utilities/Vehicle";
|
|
91
77
|
import { Wish } from "./entities/utilities/Wish";
|
|
@@ -99,4 +85,4 @@ import { NaAc } from "./shared/NaAc";
|
|
|
99
85
|
import { NaCoAc } from "./shared/NaCoAc";
|
|
100
86
|
import { NaCoShortAc } from "./shared/NaCoShortAc";
|
|
101
87
|
import { colNa, colNaCo, colNaCoSh, FormProps, HeaderTableColumnType, IPath, MenuItemType } from "./types/Type";
|
|
102
|
-
export { AuthTag, AuthTagCat, Docu, DocuCat, Faq, FaqCat, Memo, MemoCat, NaAc, NaCoAc, NaCoShortAc, Buy, BuyCart, BuyItem, BuyItems, Mail, MailMass, MsgAlert, MsgChat, Account, Bank, Currency, Deposit, Feed, Spent, Entry, EntryAccount, EntryCat, EntryLine, OhadaCat, OhadaGrp, OhadaPlan, OhadaSubCat,
|
|
88
|
+
export { AuthTag, AuthTagCat, Docu, DocuCat, Faq, FaqCat, Memo, MemoCat, NaAc, NaCoAc, NaCoShortAc, Buy, BuyCart, BuyItem, BuyItems, Mail, MailMass, MsgAlert, MsgChat, Account, Bank, Currency, Deposit, Feed, Spent, Entry, EntryAccount, EntryCat, EntryLine, OhadaCat, OhadaGrp, OhadaPlan, OhadaSubCat, CartItem, DelideryProcess, Sale, SaleDelivery, SaleInfo, SaleItems, SaleProduct, SaleProductLot, SaleProductQtityIssue, SaleShop, SaleTreatStatus, ShopCart, Product, ProductAgcy, ProductAmm, ProductBuy, ProductCat, ProductDci, ProductDepot, ProductDos, ProductFg, ProductIn, ProductInOut, ProductInventory, ProductLabo, ProductLoc, ProductMvt, ProductMvtInventory, ProductOutReason, ProductPromo, ProductPvd, ProductSof, ProductStore, ProductTcl, ProductTclGrp, ProductTransfert, ProductWanted, Bill, BillLine, BillPayment, BillPaymentMethod, CBillPeriod, EBillPeriod, EPayMethod, Todo, Vehicle, Wish, City, Continent, Country, Department, Quarter, Region, MenuItemType, HeaderTableColumnType, IPath, colNa, colNaCo, colNaCoSh, FormProps, };
|
package/lib/esm/models/index.js
CHANGED
|
@@ -9,14 +9,13 @@ import { SaleProduct } from "./entities/sales/SaleProduct";
|
|
|
9
9
|
import { SaleProductLot } from "./entities/sales/SaleProductLot";
|
|
10
10
|
import { SaleShop } from "./entities/sales/SaleShop";
|
|
11
11
|
import { ShopCart } from "./entities/sales/ShopCart";
|
|
12
|
-
import { UserCredit } from "./entities/users/UserCredit";
|
|
13
12
|
import { Todo } from "./entities/utilities/Todo";
|
|
14
13
|
import { Wish } from "./entities/utilities/Wish";
|
|
15
14
|
import { City } from "./entities/world/City";
|
|
16
15
|
import { Continent } from "./entities/world/Continent";
|
|
17
16
|
import { Region } from "./entities/world/Region";
|
|
18
17
|
import { colNa, colNaCo, colNaCoSh } from "./types/Type";
|
|
19
|
-
export { BuyItems,
|
|
18
|
+
export { BuyItems, SaleItems, SaleProduct, SaleProductLot, SaleShop, SaleTreatStatus, ShopCart, ProductPromo, CBillPeriod, EBillPeriod, EPayMethod,
|
|
20
19
|
// ------ utilities ------
|
|
21
20
|
Todo, Wish,
|
|
22
21
|
// ------ world ------
|