@autologix-engineering/shared 1.0.58 → 1.0.59
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/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
|
@@ -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"}
|