lib_angar_new 2.0.7 → 2.0.9
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_angar/TimesheeStock/ClsTimesheeDatePut.d.ts +21 -0
- package/lib_angar/TimesheeStock/ClsTimesheeDatePut.js +45 -0
- package/lib_angar/TimesheeStock/ClsTimesheeDatePut.js.map +1 -0
- package/lib_angar/TimesheeStock/ClsTimesheeDatePut.ts +42 -0
- package/lib_angar/TimesheeStock/ClsTimesheeStock.d.ts +6 -2
- package/lib_angar/TimesheeStock/ClsTimesheeStock.js +5 -0
- package/lib_angar/TimesheeStock/ClsTimesheeStock.js.map +1 -1
- package/lib_angar/TimesheeStock/ClsTimesheeStock.ts +9 -2
- package/lib_angar/index.d.ts +1 -0
- package/lib_angar/index.js +3 -1
- package/lib_angar/index.js.map +1 -1
- package/lib_angar/index.ts +3 -1
- package/lib_angar/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Serializable } from 'ts-serializer';
|
|
2
|
+
import { ClsApiRequest } from '../ApiRequest/ClsApiRequest';
|
|
3
|
+
export declare class ClsTimesheeDatePut extends Serializable {
|
|
4
|
+
/**
|
|
5
|
+
* Параметры запроса
|
|
6
|
+
*/
|
|
7
|
+
ClsApiRequest: ClsApiRequest;
|
|
8
|
+
/**
|
|
9
|
+
* День
|
|
10
|
+
*/
|
|
11
|
+
DateTimeshee: Date;
|
|
12
|
+
/**
|
|
13
|
+
* Кладовщик
|
|
14
|
+
*/
|
|
15
|
+
LinkT14login: number;
|
|
16
|
+
/**
|
|
17
|
+
* План
|
|
18
|
+
*/
|
|
19
|
+
Plan: number;
|
|
20
|
+
constructor();
|
|
21
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.ClsTimesheeDatePut = void 0;
|
|
13
|
+
const ts_serializer_1 = require("ts-serializer");
|
|
14
|
+
const ClsApiRequest_1 = require("../ApiRequest/ClsApiRequest");
|
|
15
|
+
let ClsTimesheeDatePut = class ClsTimesheeDatePut extends ts_serializer_1.Serializable {
|
|
16
|
+
constructor() {
|
|
17
|
+
super();
|
|
18
|
+
this.ClsApiRequest = new ClsApiRequest_1.ClsApiRequest();
|
|
19
|
+
this.DateTimeshee = new Date();
|
|
20
|
+
this.LinkT14login = 0;
|
|
21
|
+
this.Plan = 0;
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
exports.ClsTimesheeDatePut = ClsTimesheeDatePut;
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "clsApiRequest", type: ClsApiRequest_1.ClsApiRequest, optional: true }),
|
|
27
|
+
__metadata("design:type", ClsApiRequest_1.ClsApiRequest)
|
|
28
|
+
], ClsTimesheeDatePut.prototype, "ClsApiRequest", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "date", optional: true }),
|
|
31
|
+
__metadata("design:type", Date)
|
|
32
|
+
], ClsTimesheeDatePut.prototype, "DateTimeshee", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "link_t14login", optional: true }),
|
|
35
|
+
__metadata("design:type", Number)
|
|
36
|
+
], ClsTimesheeDatePut.prototype, "LinkT14login", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "plan", optional: true }),
|
|
39
|
+
__metadata("design:type", Number)
|
|
40
|
+
], ClsTimesheeDatePut.prototype, "Plan", void 0);
|
|
41
|
+
exports.ClsTimesheeDatePut = ClsTimesheeDatePut = __decorate([
|
|
42
|
+
(0, ts_serializer_1.Serialize)({}),
|
|
43
|
+
__metadata("design:paramtypes", [])
|
|
44
|
+
], ClsTimesheeDatePut);
|
|
45
|
+
//# sourceMappingURL=ClsTimesheeDatePut.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClsTimesheeDatePut.js","sourceRoot":"","sources":["ClsTimesheeDatePut.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA2E;AAC3E,+DAA4D;AAGrD,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,4BAAY;IAyBnD;QAEC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,aAAa,GAAG,IAAI,6BAAa,EAAE,CAAC;QACzC,IAAI,CAAC,YAAY,GAAG,IAAI,IAAI,EAAE,CAAC;QAC/B,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;QACtB,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;IACf,CAAC;CACD,CAAA;AAjCY,gDAAkB;AAMvB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,eAAe,EAAE,IAAI,EAAE,6BAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC3D,6BAAa;yDAAC;AAM7B;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC9B,IAAI;wDAAC;AAMnB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wDAChC;AAMrB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDAC/B;6BAxBR,kBAAkB;IAD9B,IAAA,yBAAS,EAAC,EAAE,CAAC;;GACD,kBAAkB,CAiC9B"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { SerializeProperty, Serializable, Serialize } from 'ts-serializer';
|
|
2
|
+
import { ClsApiRequest } from '../ApiRequest/ClsApiRequest';
|
|
3
|
+
|
|
4
|
+
@Serialize({})
|
|
5
|
+
export class ClsTimesheeDatePut extends Serializable
|
|
6
|
+
{
|
|
7
|
+
/**
|
|
8
|
+
* Параметры запроса
|
|
9
|
+
*/
|
|
10
|
+
@SerializeProperty({ map: "clsApiRequest", type: ClsApiRequest, optional: true })
|
|
11
|
+
public ClsApiRequest: ClsApiRequest;
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* День
|
|
15
|
+
*/
|
|
16
|
+
@SerializeProperty({ map: "date", optional: true })
|
|
17
|
+
public DateTimeshee: Date;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Кладовщик
|
|
21
|
+
*/
|
|
22
|
+
@SerializeProperty({ map: "link_t14login", optional: true })
|
|
23
|
+
public LinkT14login: number;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* План
|
|
27
|
+
*/
|
|
28
|
+
@SerializeProperty({ map: "plan", optional: true })
|
|
29
|
+
public Plan: number;
|
|
30
|
+
constructor()
|
|
31
|
+
{
|
|
32
|
+
super();
|
|
33
|
+
this.ClsApiRequest = new ClsApiRequest();
|
|
34
|
+
this.DateTimeshee = new Date();
|
|
35
|
+
this.LinkT14login = 0;
|
|
36
|
+
this.Plan = 0;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
@@ -2,11 +2,15 @@ import { Serializable } from 'ts-serializer';
|
|
|
2
2
|
import { ClsTimesheeDate } from './ClsTimesheeDate';
|
|
3
3
|
export declare class ClsTimesheeStock extends Serializable {
|
|
4
4
|
/**
|
|
5
|
-
* id
|
|
5
|
+
* id записи
|
|
6
6
|
*/
|
|
7
7
|
Storeman: number;
|
|
8
8
|
/**
|
|
9
|
-
|
|
9
|
+
* id записи
|
|
10
|
+
*/
|
|
11
|
+
Title: string;
|
|
12
|
+
/**
|
|
13
|
+
* Код пользователя
|
|
10
14
|
*/
|
|
11
15
|
List: Array<ClsTimesheeDate>;
|
|
12
16
|
constructor();
|
|
@@ -16,6 +16,7 @@ let ClsTimesheeStock = class ClsTimesheeStock extends ts_serializer_1.Serializab
|
|
|
16
16
|
constructor() {
|
|
17
17
|
super();
|
|
18
18
|
this.Storeman = 0;
|
|
19
|
+
this.Title = "";
|
|
19
20
|
this.List = new Array();
|
|
20
21
|
}
|
|
21
22
|
};
|
|
@@ -24,6 +25,10 @@ __decorate([
|
|
|
24
25
|
(0, ts_serializer_1.SerializeProperty)({ map: "Storeman", optional: true }),
|
|
25
26
|
__metadata("design:type", Number)
|
|
26
27
|
], ClsTimesheeStock.prototype, "Storeman", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, ts_serializer_1.SerializeProperty)({ map: "Title", optional: true }),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], ClsTimesheeStock.prototype, "Title", void 0);
|
|
27
32
|
__decorate([
|
|
28
33
|
(0, ts_serializer_1.SerializeProperty)({ map: "List", list: true, type: ClsTimesheeDate_1.ClsTimesheeDate, optional: true }),
|
|
29
34
|
__metadata("design:type", Array)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ClsTimesheeStock.js","sourceRoot":"","sources":["ClsTimesheeStock.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA2E;AAC3E,uDAAoD;AAG7C,IAAM,gBAAgB,GAAtB,MAAM,gBAAiB,SAAQ,4BAAY;
|
|
1
|
+
{"version":3,"file":"ClsTimesheeStock.js","sourceRoot":"","sources":["ClsTimesheeStock.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA2E;AAC3E,uDAAoD;AAG7C,IAAM,gBAAgB,GAAtB,MAAM,gBAAiB,SAAQ,4BAAY;IAoBjD;QAEC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;QAClB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;QAChB,IAAI,CAAC,IAAI,GAAG,IAAI,KAAK,EAAmB,CAAC;IAC1C,CAAC;CACD,CAAA;AA3BY,4CAAgB;AAMrB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,UAAU,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDAC/B;AAMjB;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CAC/B;AAMd;IADN,IAAA,iCAAiB,EAAC,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,iCAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACzE,KAAK;8CAAkB;2BAlBxB,gBAAgB;IAD5B,IAAA,yBAAS,EAAC,EAAE,CAAC;;GACD,gBAAgB,CA2B5B"}
|
|
@@ -5,13 +5,19 @@ import { ClsTimesheeDate } from './ClsTimesheeDate';
|
|
|
5
5
|
export class ClsTimesheeStock extends Serializable
|
|
6
6
|
{
|
|
7
7
|
/**
|
|
8
|
-
* id
|
|
8
|
+
* id записи
|
|
9
9
|
*/
|
|
10
10
|
@SerializeProperty({ map: "Storeman", optional: true })
|
|
11
11
|
public Storeman: number;
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
|
-
|
|
14
|
+
* id записи
|
|
15
|
+
*/
|
|
16
|
+
@SerializeProperty({ map: "Title", optional: true })
|
|
17
|
+
public Title: string;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Код пользователя
|
|
15
21
|
*/
|
|
16
22
|
@SerializeProperty({ map: "List", list: true, type: ClsTimesheeDate, optional: true })
|
|
17
23
|
public List: Array<ClsTimesheeDate>;
|
|
@@ -20,6 +26,7 @@ export class ClsTimesheeStock extends Serializable
|
|
|
20
26
|
{
|
|
21
27
|
super();
|
|
22
28
|
this.Storeman = 0;
|
|
29
|
+
this.Title = "";
|
|
23
30
|
this.List = new Array<ClsTimesheeDate>();
|
|
24
31
|
}
|
|
25
32
|
}
|
package/lib_angar/index.d.ts
CHANGED
|
@@ -26,3 +26,4 @@ export { ClsPercent } from "./SalaryAll/ClsPercent";
|
|
|
26
26
|
export { ClsTimesheeStockFilter } from "./TimesheeStock/ClsTimesheeStockFilter";
|
|
27
27
|
export { ClsTimesheeDate } from "./TimesheeStock/ClsTimesheeDate";
|
|
28
28
|
export { ClsTimesheeStock } from "./TimesheeStock/ClsTimesheeStock";
|
|
29
|
+
export { ClsTimesheeDatePut } from "./TimesheeStock/ClsTimesheeDatePut";
|
package/lib_angar/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ClsTimesheeStock = exports.ClsTimesheeDate = exports.ClsTimesheeStockFilter = exports.ClsPercent = exports.ArrayTableField = exports.TableField = exports.ClsDetentionPremium = exports.ClsTotalHand = exports.ClsInOutRoot = exports.ClsPrinter = exports.ClsInOut = exports.ClsCompletedWorkFilter = exports.ClsCompletedWork = exports.ClsJobDone = exports.ClsPrintDistribute = exports.ClsDistribute = exports.ClsRootDistribute = exports.ClsOutcoming = exports.ClsOutcomingFilter = exports.ClsInvoice = exports.ClsSalaryAll = exports.ClsSalaryAllFilter = exports.ClsInvoiceFilter = exports.ClsRoot = exports.ClsApiResponse = exports.ClsApiRequest = exports.ClsUser = exports.ClsAlert = void 0;
|
|
3
|
+
exports.ClsTimesheeDatePut = exports.ClsTimesheeStock = exports.ClsTimesheeDate = exports.ClsTimesheeStockFilter = exports.ClsPercent = exports.ArrayTableField = exports.TableField = exports.ClsDetentionPremium = exports.ClsTotalHand = exports.ClsInOutRoot = exports.ClsPrinter = exports.ClsInOut = exports.ClsCompletedWorkFilter = exports.ClsCompletedWork = exports.ClsJobDone = exports.ClsPrintDistribute = exports.ClsDistribute = exports.ClsRootDistribute = exports.ClsOutcoming = exports.ClsOutcomingFilter = exports.ClsInvoice = exports.ClsSalaryAll = exports.ClsSalaryAllFilter = exports.ClsInvoiceFilter = exports.ClsRoot = exports.ClsApiResponse = exports.ClsApiRequest = exports.ClsUser = exports.ClsAlert = void 0;
|
|
4
4
|
var ClsAlert_1 = require("./Alert/ClsAlert");
|
|
5
5
|
Object.defineProperty(exports, "ClsAlert", { enumerable: true, get: function () { return ClsAlert_1.ClsAlert; } });
|
|
6
6
|
var ClsUser_1 = require("./User/ClsUser");
|
|
@@ -57,4 +57,6 @@ var ClsTimesheeDate_1 = require("./TimesheeStock/ClsTimesheeDate");
|
|
|
57
57
|
Object.defineProperty(exports, "ClsTimesheeDate", { enumerable: true, get: function () { return ClsTimesheeDate_1.ClsTimesheeDate; } });
|
|
58
58
|
var ClsTimesheeStock_1 = require("./TimesheeStock/ClsTimesheeStock");
|
|
59
59
|
Object.defineProperty(exports, "ClsTimesheeStock", { enumerable: true, get: function () { return ClsTimesheeStock_1.ClsTimesheeStock; } });
|
|
60
|
+
var ClsTimesheeDatePut_1 = require("./TimesheeStock/ClsTimesheeDatePut");
|
|
61
|
+
Object.defineProperty(exports, "ClsTimesheeDatePut", { enumerable: true, get: function () { return ClsTimesheeDatePut_1.ClsTimesheeDatePut; } });
|
|
60
62
|
//# sourceMappingURL=index.js.map
|
package/lib_angar/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";;;AAAA,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,0CAAyC;AAAhC,kGAAA,OAAO,OAAA;AAChB,4DAA2D;AAAlD,8GAAA,aAAa,OAAA;AACtB,+DAA8D;AAArD,gHAAA,cAAc,OAAA;AACvB,0CAAyC;AAAhC,kGAAA,OAAO,OAAA;AAChB,+DAA8D;AAArD,oHAAA,gBAAgB,OAAA;AACzB,qEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,yDAAwD;AAA/C,4GAAA,YAAY,OAAA;AACrB,mDAAkD;AAAzC,wGAAA,UAAU,OAAA;AACnB,qEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,yDAAwD;AAA/C,4GAAA,YAAY,OAAA;AACrB,mEAAkE;AAAzD,sHAAA,iBAAiB,OAAA;AAC1B,2DAA0D;AAAjD,8GAAA,aAAa,OAAA;AACtB,qEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,mDAAkD;AAAzC,wGAAA,UAAU,OAAA;AACnB,qEAAmE;AAA1D,oHAAA,gBAAgB,OAAA;AACzB,iFAAgF;AAAvE,gIAAA,sBAAsB,OAAA;AAC/B,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,mDAAkD;AAAzC,wGAAA,UAAU,OAAA;AACnB,qDAAoD;AAA3C,4GAAA,YAAY,OAAA;AACrB,qDAAoD;AAA3C,4GAAA,YAAY,OAAA;AACrB,8EAA6E;AAApE,0HAAA,mBAAmB,OAAA;AAC5B,wDAAuD;AAA9C,wGAAA,UAAU,OAAA;AACnB,kEAAiE;AAAxD,kHAAA,eAAe,OAAA;AACxB,qDAAoD;AAA3C,wGAAA,UAAU,OAAA;AACnB,iFAAgF;AAAvE,gIAAA,sBAAsB,OAAA;AAC/B,mEAAkE;AAAzD,kHAAA,eAAe,OAAA;AACxB,qEAAoE;AAA3D,oHAAA,gBAAgB,OAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";;;AAAA,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,0CAAyC;AAAhC,kGAAA,OAAO,OAAA;AAChB,4DAA2D;AAAlD,8GAAA,aAAa,OAAA;AACtB,+DAA8D;AAArD,gHAAA,cAAc,OAAA;AACvB,0CAAyC;AAAhC,kGAAA,OAAO,OAAA;AAChB,+DAA8D;AAArD,oHAAA,gBAAgB,OAAA;AACzB,qEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,yDAAwD;AAA/C,4GAAA,YAAY,OAAA;AACrB,mDAAkD;AAAzC,wGAAA,UAAU,OAAA;AACnB,qEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,yDAAwD;AAA/C,4GAAA,YAAY,OAAA;AACrB,mEAAkE;AAAzD,sHAAA,iBAAiB,OAAA;AAC1B,2DAA0D;AAAjD,8GAAA,aAAa,OAAA;AACtB,qEAAoE;AAA3D,wHAAA,kBAAkB,OAAA;AAC3B,mDAAkD;AAAzC,wGAAA,UAAU,OAAA;AACnB,qEAAmE;AAA1D,oHAAA,gBAAgB,OAAA;AACzB,iFAAgF;AAAvE,gIAAA,sBAAsB,OAAA;AAC/B,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,mDAAkD;AAAzC,wGAAA,UAAU,OAAA;AACnB,qDAAoD;AAA3C,4GAAA,YAAY,OAAA;AACrB,qDAAoD;AAA3C,4GAAA,YAAY,OAAA;AACrB,8EAA6E;AAApE,0HAAA,mBAAmB,OAAA;AAC5B,wDAAuD;AAA9C,wGAAA,UAAU,OAAA;AACnB,kEAAiE;AAAxD,kHAAA,eAAe,OAAA;AACxB,qDAAoD;AAA3C,wGAAA,UAAU,OAAA;AACnB,iFAAgF;AAAvE,gIAAA,sBAAsB,OAAA;AAC/B,mEAAkE;AAAzD,kHAAA,eAAe,OAAA;AACxB,qEAAoE;AAA3D,oHAAA,gBAAgB,OAAA;AACzB,yEAAwE;AAA/D,wHAAA,kBAAkB,OAAA"}
|
package/lib_angar/index.ts
CHANGED
|
@@ -25,4 +25,6 @@ export { ArrayTableField } from "./ViewProperty/ArrayTableField";
|
|
|
25
25
|
export { ClsPercent } from "./SalaryAll/ClsPercent";
|
|
26
26
|
export { ClsTimesheeStockFilter } from "./TimesheeStock/ClsTimesheeStockFilter";
|
|
27
27
|
export { ClsTimesheeDate } from "./TimesheeStock/ClsTimesheeDate";
|
|
28
|
-
export { ClsTimesheeStock } from "./TimesheeStock/ClsTimesheeStock";
|
|
28
|
+
export { ClsTimesheeStock } from "./TimesheeStock/ClsTimesheeStock";
|
|
29
|
+
export { ClsTimesheeDatePut } from "./TimesheeStock/ClsTimesheeDatePut";
|
|
30
|
+
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./index.ts","./alert/clsalert.ts","./apirequest/clsapirequest.ts","./apiresponse/clsapiresponse.ts","./completedwork/clscompletedwork.ts","./completedwork/clscompletedworkfilter.ts","./detentionpremium/clsdetentionpremium.ts","./inout/clsinout.ts","./inout/clsinoutroot.ts","./inout/clstotalhand.ts","./invoice/clsinvoice.ts","./invoice/clsinvoicefilter.ts","./jobdone/clsjobdone.ts","./outcoming/clsdistribute.ts","./outcoming/clsoutcoming.ts","./outcoming/clsoutcomingfilter.ts","./outcoming/clsprintdistribute.ts","./outcoming/clsrootdistribute.ts","./printer/clsprinter.ts","./root/clsroot.ts","./salaryall/clspercent.ts","./salaryall/clssalaryall.ts","./salaryall/clssalaryallfilter.ts","./timesheestock/clstimesheedate.ts","./timesheestock/clstimesheestock.ts","./timesheestock/clstimesheestockfilter.ts","./user/clsuser.ts","./viewproperty/arraytablefield.ts","./viewproperty/tablefield.ts"],"version":"5.6.3"}
|
|
1
|
+
{"root":["./index.ts","./alert/clsalert.ts","./apirequest/clsapirequest.ts","./apiresponse/clsapiresponse.ts","./completedwork/clscompletedwork.ts","./completedwork/clscompletedworkfilter.ts","./detentionpremium/clsdetentionpremium.ts","./inout/clsinout.ts","./inout/clsinoutroot.ts","./inout/clstotalhand.ts","./invoice/clsinvoice.ts","./invoice/clsinvoicefilter.ts","./jobdone/clsjobdone.ts","./outcoming/clsdistribute.ts","./outcoming/clsoutcoming.ts","./outcoming/clsoutcomingfilter.ts","./outcoming/clsprintdistribute.ts","./outcoming/clsrootdistribute.ts","./printer/clsprinter.ts","./root/clsroot.ts","./salaryall/clspercent.ts","./salaryall/clssalaryall.ts","./salaryall/clssalaryallfilter.ts","./timesheestock/clstimesheedate.ts","./timesheestock/clstimesheedateput.ts","./timesheestock/clstimesheestock.ts","./timesheestock/clstimesheestockfilter.ts","./user/clsuser.ts","./viewproperty/arraytablefield.ts","./viewproperty/tablefield.ts"],"version":"5.6.3"}
|