@autologix-engineering/shared 1.0.58 → 1.0.60
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/package.json +1 -1
- package/src/lib/data-transfer-objects/src/command/update.employee.info.dto.d.ts +2 -0
- package/src/lib/data-transfer-objects/src/command/update.employee.info.dto.js +7 -1
- package/src/lib/data-transfer-objects/src/command/update.employee.info.dto.js.map +1 -1
- package/src/lib/models/src/client.configuration.model.d.ts +2 -0
- package/src/lib/models/src/client.configuration.model.js +1 -0
- package/src/lib/models/src/client.configuration.model.js.map +1 -1
- package/src/lib/models/src/invoice.payment.model.d.ts +2 -0
- package/src/lib/models/src/invoice.payment.model.js +1 -0
- package/src/lib/models/src/invoice.payment.model.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Countries } from '../../../enums/src/countries.enum';
|
|
1
2
|
export declare class UpdateEmployeeInfoDTO {
|
|
2
3
|
passengerPersonaId: string;
|
|
3
4
|
employeeId?: string;
|
|
@@ -7,5 +8,6 @@ export declare class UpdateEmployeeInfoDTO {
|
|
|
7
8
|
managerApprovalRequired?: boolean;
|
|
8
9
|
managerId?: string;
|
|
9
10
|
name?: string;
|
|
11
|
+
country?: Countries;
|
|
10
12
|
constructor(obj?: Partial<UpdateEmployeeInfoDTO>);
|
|
11
13
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { __decorate, __metadata } from "tslib";
|
|
2
|
-
import { IsOptional, IsUUID } from 'class-validator';
|
|
2
|
+
import { IsEnum, IsOptional, IsUUID } from 'class-validator';
|
|
3
|
+
import { Countries } from '../../../enums/src/countries.enum';
|
|
3
4
|
export class UpdateEmployeeInfoDTO {
|
|
4
5
|
constructor(obj) {
|
|
5
6
|
Object.assign(this, obj);
|
|
@@ -37,4 +38,9 @@ __decorate([
|
|
|
37
38
|
IsOptional(),
|
|
38
39
|
__metadata("design:type", String)
|
|
39
40
|
], UpdateEmployeeInfoDTO.prototype, "name", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
IsOptional(),
|
|
43
|
+
IsEnum(Countries),
|
|
44
|
+
__metadata("design:type", String)
|
|
45
|
+
], UpdateEmployeeInfoDTO.prototype, "country", void 0);
|
|
40
46
|
//# sourceMappingURL=update.employee.info.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update.employee.info.dto.js","sourceRoot":"","sources":["../../../../../../../../libs/shared/src/lib/data-transfer-objects/src/command/update.employee.info.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"update.employee.info.dto.js","sourceRoot":"","sources":["../../../../../../../../libs/shared/src/lib/data-transfer-objects/src/command/update.employee.info.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAC7D,OAAO,EAAE,SAAS,EAAE,MAAM,mCAAmC,CAAC;AAE9D,MAAM,OAAO,qBAAqB;IA6BjC,YAAY,GAAoC;QAC/C,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAC1B,CAAC;CACD;AA9BA;IADC,MAAM,EAAE;;iEACkB;AAG3B;IADC,UAAU,EAAE;;yDACO;AAGpB;IADC,UAAU,EAAE;;0DACQ;AAGrB;IADC,UAAU,EAAE;;oDACE;AAGf;IADC,UAAU,EAAE;;oDACE;AAGf;IADC,UAAU,EAAE;;sEACqB;AAGlC;IADC,UAAU,EAAE;;wDACM;AAGnB;IADC,UAAU,EAAE;;mDACC;AAId;IAFC,UAAU,EAAE;IACZ,MAAM,CAAC,SAAS,CAAC;;sDACE"}
|
|
@@ -13,6 +13,7 @@ export declare enum ClientConfigurationField {
|
|
|
13
13
|
AdminEmails = "admnMails",
|
|
14
14
|
IsPassengerReceiptApproval = "isPsngrRctAprvl",
|
|
15
15
|
PaymentReminder = "pmntRmndr",
|
|
16
|
+
UserSignature = "usrSign",
|
|
16
17
|
TripReceiptApprovalCutOff = "trpRcptApprCtOff",
|
|
17
18
|
IsTripChangesAllowed = "isTrpChngsAlwd",
|
|
18
19
|
OngoingTripChangesAllowedActors = "ongTrpAlwdActrs",
|
|
@@ -36,6 +37,7 @@ export interface IClientConfiguraion extends TypedModel {
|
|
|
36
37
|
[ClientConfigurationField.AdminEmails]: string[];
|
|
37
38
|
[ClientConfigurationField.IsPassengerReceiptApproval]: boolean;
|
|
38
39
|
[ClientConfigurationField.PaymentReminder]: boolean;
|
|
40
|
+
[ClientConfigurationField.UserSignature]: boolean;
|
|
39
41
|
[ClientConfigurationField.IsTripChangesAllowed]: boolean;
|
|
40
42
|
[ClientConfigurationField.TripReceiptApprovalCutOff]: number;
|
|
41
43
|
[ClientConfigurationField.OngoingTripChangesAllowedActors]: OngoingTripChangesActors[];
|
|
@@ -11,6 +11,7 @@ export var ClientConfigurationField;
|
|
|
11
11
|
ClientConfigurationField["AdminEmails"] = "admnMails";
|
|
12
12
|
ClientConfigurationField["IsPassengerReceiptApproval"] = "isPsngrRctAprvl";
|
|
13
13
|
ClientConfigurationField["PaymentReminder"] = "pmntRmndr";
|
|
14
|
+
ClientConfigurationField["UserSignature"] = "usrSign";
|
|
14
15
|
ClientConfigurationField["TripReceiptApprovalCutOff"] = "trpRcptApprCtOff";
|
|
15
16
|
ClientConfigurationField["IsTripChangesAllowed"] = "isTrpChngsAlwd";
|
|
16
17
|
ClientConfigurationField["OngoingTripChangesAllowedActors"] = "ongTrpAlwdActrs";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.configuration.model.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/models/src/client.configuration.model.ts"],"names":[],"mappings":"AAOA,MAAM,CAAN,IAAY,
|
|
1
|
+
{"version":3,"file":"client.configuration.model.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/models/src/client.configuration.model.ts"],"names":[],"mappings":"AAOA,MAAM,CAAN,IAAY,wBAuBX;AAvBD,WAAY,wBAAwB;IACnC,2DAA+B,CAAA;IAC/B,uDAA2B,CAAA;IAC3B,2DAA+B,CAAA;IAC/B,wDAA4B,CAAA;IAC5B,qDAAyB,CAAA;IACzB,gEAAoC,CAAA;IACpC,qDAAyB,CAAA;IACzB,4DAAgC,CAAA;IAChC,qDAAyB,CAAA;IACzB,0EAA8C,CAAA;IAC9C,yDAA6B,CAAA;IAC7B,qDAAyB,CAAA;IACzB,0EAA8C,CAAA;IAC9C,mEAAuC,CAAA;IACvC,+EAAmD,CAAA;IACnD,uDAA2B,CAAA;IAC3B,iEAAqC,CAAA;IACrC,8DAAkC,CAAA;IAClC,yDAA6B,CAAA;IAC7B,gEAAoC,CAAA;IACpC,2EAA+C,CAAA;IAC/C,gFAAoD,CAAA;AACrD,CAAC,EAvBW,wBAAwB,KAAxB,wBAAwB,QAuBnC"}
|
|
@@ -14,6 +14,7 @@ export declare enum InvoicePaymentField {
|
|
|
14
14
|
ReceivedAt = "receivedAt",
|
|
15
15
|
ReceivedBy = "receivedBy",
|
|
16
16
|
ReceivedById = "receivedById",
|
|
17
|
+
RemindedAt = "remindedAt",
|
|
17
18
|
Info = "info"
|
|
18
19
|
}
|
|
19
20
|
export interface IInvoicePayment extends TypedModel {
|
|
@@ -29,5 +30,6 @@ export interface IInvoicePayment extends TypedModel {
|
|
|
29
30
|
[InvoicePaymentField.ReceivedAt]: Date;
|
|
30
31
|
[InvoicePaymentField.ReceivedBy]: IContextPersona;
|
|
31
32
|
[InvoicePaymentField.ReceivedById]: string;
|
|
33
|
+
[InvoicePaymentField.RemindedAt]?: Date;
|
|
32
34
|
[InvoicePaymentField.Info]: any;
|
|
33
35
|
}
|
|
@@ -12,6 +12,7 @@ export var InvoicePaymentField;
|
|
|
12
12
|
InvoicePaymentField["ReceivedAt"] = "receivedAt";
|
|
13
13
|
InvoicePaymentField["ReceivedBy"] = "receivedBy";
|
|
14
14
|
InvoicePaymentField["ReceivedById"] = "receivedById";
|
|
15
|
+
InvoicePaymentField["RemindedAt"] = "remindedAt";
|
|
15
16
|
InvoicePaymentField["Info"] = "info";
|
|
16
17
|
})(InvoicePaymentField || (InvoicePaymentField = {}));
|
|
17
18
|
//# sourceMappingURL=invoice.payment.model.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"invoice.payment.model.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/models/src/invoice.payment.model.ts"],"names":[],"mappings":"AAIA,MAAM,CAAN,IAAY,
|
|
1
|
+
{"version":3,"file":"invoice.payment.model.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/models/src/invoice.payment.model.ts"],"names":[],"mappings":"AAIA,MAAM,CAAN,IAAY,mBAeX;AAfD,WAAY,mBAAmB;IAC9B,4DAAqC,CAAA;IACrC,iDAA0B,CAAA;IAC1B,2CAAoB,CAAA;IACpB,6CAAsB,CAAA;IACtB,wCAAiB,CAAA;IACjB,wCAAiB,CAAA;IACjB,0CAAmB,CAAA;IACnB,0DAAmC,CAAA;IACnC,8DAAuC,CAAA;IACvC,gDAAyB,CAAA;IACzB,gDAAyB,CAAA;IACzB,oDAA6B,CAAA;IAC7B,gDAAyB,CAAA;IACzB,oCAAa,CAAA;AACd,CAAC,EAfW,mBAAmB,KAAnB,mBAAmB,QAe9B"}
|