asv-hlps 1.4.14 → 1.4.15
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/shared/constants/CDatePeriodicity.d.ts +5 -0
- package/lib/cjs/shared/constants/CDatePeriodicity.js +10 -0
- package/lib/cjs/shared/constants/index.d.ts +1 -0
- package/lib/cjs/shared/constants/index.js +8 -0
- package/lib/cjs/shared/index.d.ts +1 -0
- package/lib/cjs/shared/index.js +1 -0
- package/lib/esm/shared/constants/CDatePeriodicity.d.ts +5 -0
- package/lib/esm/shared/constants/CDatePeriodicity.js +8 -0
- package/lib/esm/shared/constants/index.d.ts +1 -0
- package/lib/esm/shared/constants/index.js +1 -0
- package/lib/esm/shared/index.d.ts +1 -0
- package/lib/esm/shared/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
// export default CBillPeriod = [
|
|
4
|
+
const CDatePeriodicity = [
|
|
5
|
+
{ id: "day", name: "Jour" },
|
|
6
|
+
{ id: "week", name: "Semaine" },
|
|
7
|
+
{ id: "two_weeks", name: "Quinzaine" },
|
|
8
|
+
{ id: "month", name: "Mois" },
|
|
9
|
+
];
|
|
10
|
+
exports.default = CDatePeriodicity;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CDatePeriodicity } from "./CDatePeriodicity";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.CDatePeriodicity = void 0;
|
|
7
|
+
var CDatePeriodicity_1 = require("./CDatePeriodicity");
|
|
8
|
+
Object.defineProperty(exports, "CDatePeriodicity", { enumerable: true, get: function () { return __importDefault(CDatePeriodicity_1).default; } });
|
package/lib/cjs/shared/index.js
CHANGED
|
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.HlpCrud = void 0;
|
|
18
|
+
__exportStar(require("./constants"), exports);
|
|
18
19
|
var HlpCrud_1 = require("./HlpCrud");
|
|
19
20
|
Object.defineProperty(exports, "HlpCrud", { enumerable: true, get: function () { return HlpCrud_1.HlpCrud; } });
|
|
20
21
|
__exportStar(require("./models"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CDatePeriodicity } from "./CDatePeriodicity";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CDatePeriodicity } from "./CDatePeriodicity";
|
package/lib/esm/shared/index.js
CHANGED