@autologix-engineering/shared 1.0.120 → 1.0.121

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autologix-engineering/shared",
3
- "version": "1.0.120",
3
+ "version": "1.0.121",
4
4
  "dependencies": {
5
5
  "tslib": "^2.3.0"
6
6
  },
@@ -1,13 +1,11 @@
1
- import { BookingType, IntermediateStopsActors, TimeUnit, TripModificationActors } from '../../enums/src/index';
1
+ import { BookingType, IntermediateStopsActors } from '../../enums/src/index';
2
2
  import { IDutyColumn } from './duty.column.interface';
3
- import { IPhone } from './phone.model';
4
3
  import { TypedModel } from './typed.model';
5
4
  export declare enum ConfigurationField {
6
5
  ConfigurationId = "configurationId",
7
6
  BusinessContextOwnerId = "bsnsCtxOwnrId",
8
7
  AdminApprovalRequired = "adminAprlReqd",
9
8
  UpdatedAt = "updatedAt",
10
- Phones = "phones",
11
9
  AdminEmails = "admnMails",
12
10
  GEmails = "gMails",
13
11
  GPhones = "gPhones",
@@ -19,19 +17,8 @@ export declare enum ConfigurationField {
19
17
  BookingType = "bkngType",
20
18
  DefaultPassengerBookingType = "dfltPsgrBkType",
21
19
  DefaultSystemBookingType = "dfltStmBkType",
22
- TripModificationCutOff = "trpModCtOff",
23
- TripModificationCutOffUnit = "trpModCtOffUnt",
24
- TripModificationAllowedActors = "tmAlwdActs",
25
- RaiseRequestCutOff = "rsReqCtOff",
26
- RaiseRequestCutOffUnit = "rsReqCtOffUnt",
27
- RaiseRequestAllowedActors = "rrAlwdActs",
28
- CancelTripCutOff = "cnlTrpCtOff",
29
- CancelTripCutOffUnit = "cnlTrpCtOffUnt",
30
- CancelTripAllowedActors = "ctAlwdActs",
31
20
  IsPersonalRequestsAllowed = "isPrsnlReqAlwd",
32
21
  IsDriverConfirmationRequired = "isDvrCnfrmReqd",
33
- DriverConfirmNoShow = "dvrCnfrmNoShow",
34
- TermsAndConditions = "tnc",
35
22
  IsOdoImgMandatory = "isOdoImgMndtry",
36
23
  VndrPriorityOrderRequired = "vndrPrtyOdrRqd",
37
24
  StateCity = "stateCity",
@@ -43,7 +30,6 @@ export interface IConfigurations extends TypedModel {
43
30
  [ConfigurationField.BusinessContextOwnerId]: string;
44
31
  [ConfigurationField.AdminApprovalRequired]: boolean;
45
32
  [ConfigurationField.UpdatedAt]: Date;
46
- [ConfigurationField.Phones]: IPhone[];
47
33
  [ConfigurationField.AdminEmails]: string[];
48
34
  [ConfigurationField.GEmails]: string[];
49
35
  [ConfigurationField.GPhones]: string[];
@@ -55,19 +41,8 @@ export interface IConfigurations extends TypedModel {
55
41
  [ConfigurationField.BookingType]: string;
56
42
  [ConfigurationField.DefaultPassengerBookingType]: BookingType;
57
43
  [ConfigurationField.DefaultSystemBookingType]: BookingType;
58
- [ConfigurationField.TripModificationCutOff]: number;
59
- [ConfigurationField.TripModificationCutOffUnit]: TimeUnit;
60
- [ConfigurationField.TripModificationAllowedActors]: TripModificationActors[];
61
- [ConfigurationField.RaiseRequestCutOff]: number;
62
- [ConfigurationField.RaiseRequestCutOffUnit]: TimeUnit;
63
- [ConfigurationField.RaiseRequestAllowedActors]: TripModificationActors[];
64
- [ConfigurationField.CancelTripCutOff]: number;
65
- [ConfigurationField.CancelTripCutOffUnit]: TimeUnit;
66
- [ConfigurationField.CancelTripAllowedActors]: TripModificationActors[];
67
44
  [ConfigurationField.IsPersonalRequestsAllowed]: boolean;
68
45
  [ConfigurationField.IsDriverConfirmationRequired]: boolean;
69
- [ConfigurationField.DriverConfirmNoShow]: number;
70
- [ConfigurationField.TermsAndConditions]: string;
71
46
  [ConfigurationField.IsOdoImgMandatory]: boolean;
72
47
  [ConfigurationField.VndrPriorityOrderRequired]: boolean;
73
48
  [ConfigurationField.StateCity]: {
@@ -4,7 +4,6 @@ export var ConfigurationField;
4
4
  ConfigurationField["BusinessContextOwnerId"] = "bsnsCtxOwnrId";
5
5
  ConfigurationField["AdminApprovalRequired"] = "adminAprlReqd";
6
6
  ConfigurationField["UpdatedAt"] = "updatedAt";
7
- ConfigurationField["Phones"] = "phones";
8
7
  ConfigurationField["AdminEmails"] = "admnMails";
9
8
  ConfigurationField["GEmails"] = "gMails";
10
9
  ConfigurationField["GPhones"] = "gPhones";
@@ -16,19 +15,8 @@ export var ConfigurationField;
16
15
  ConfigurationField["BookingType"] = "bkngType";
17
16
  ConfigurationField["DefaultPassengerBookingType"] = "dfltPsgrBkType";
18
17
  ConfigurationField["DefaultSystemBookingType"] = "dfltStmBkType";
19
- ConfigurationField["TripModificationCutOff"] = "trpModCtOff";
20
- ConfigurationField["TripModificationCutOffUnit"] = "trpModCtOffUnt";
21
- ConfigurationField["TripModificationAllowedActors"] = "tmAlwdActs";
22
- ConfigurationField["RaiseRequestCutOff"] = "rsReqCtOff";
23
- ConfigurationField["RaiseRequestCutOffUnit"] = "rsReqCtOffUnt";
24
- ConfigurationField["RaiseRequestAllowedActors"] = "rrAlwdActs";
25
- ConfigurationField["CancelTripCutOff"] = "cnlTrpCtOff";
26
- ConfigurationField["CancelTripCutOffUnit"] = "cnlTrpCtOffUnt";
27
- ConfigurationField["CancelTripAllowedActors"] = "ctAlwdActs";
28
18
  ConfigurationField["IsPersonalRequestsAllowed"] = "isPrsnlReqAlwd";
29
19
  ConfigurationField["IsDriverConfirmationRequired"] = "isDvrCnfrmReqd";
30
- ConfigurationField["DriverConfirmNoShow"] = "dvrCnfrmNoShow";
31
- ConfigurationField["TermsAndConditions"] = "tnc";
32
20
  ConfigurationField["IsOdoImgMandatory"] = "isOdoImgMndtry";
33
21
  ConfigurationField["VndrPriorityOrderRequired"] = "vndrPrtyOdrRqd";
34
22
  ConfigurationField["StateCity"] = "stateCity";
@@ -1 +1 @@
1
- {"version":3,"file":"configurations.model.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/models/src/configurations.model.ts"],"names":[],"mappings":"AAWA,MAAM,CAAN,IAAY,kBAmCX;AAnCD,WAAY,kBAAkB;IAC7B,yDAAmC,CAAA;IACnC,8DAAwC,CAAA;IACxC,6DAAuC,CAAA;IACvC,6CAAuB,CAAA;IACvB,uCAAiB,CAAA;IACjB,+CAAyB,CAAA;IACzB,wCAAkB,CAAA;IAClB,yCAAmB,CAAA;IACnB,kDAA4B,CAAA;IAC5B,yDAAmC,CAAA;IACnC,qDAA+B,CAAA;IAC/B,+CAAyB,CAAA;IACzB,mEAA6C,CAAA;IAC7C,8CAAwB,CAAA;IACxB,oEAA8C,CAAA;IAC9C,gEAA0C,CAAA;IAC1C,4DAAsC,CAAA;IACtC,mEAA6C,CAAA;IAC7C,kEAA4C,CAAA;IAC5C,uDAAiC,CAAA;IACjC,8DAAwC,CAAA;IACxC,8DAAwC,CAAA;IACxC,sDAAgC,CAAA;IAChC,6DAAuC,CAAA;IACvC,4DAAsC,CAAA;IACtC,kEAA4C,CAAA;IAC5C,qEAA+C,CAAA;IAC/C,4DAAsC,CAAA;IACtC,gDAA0B,CAAA;IAC1B,0DAAoC,CAAA;IACpC,kEAA4C,CAAA;IAC5C,6CAAuB,CAAA;IACvB,sDAAgC,CAAA;IAChC,6CAAuB,CAAA;AACxB,CAAC,EAnCW,kBAAkB,KAAlB,kBAAkB,QAmC7B"}
1
+ {"version":3,"file":"configurations.model.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/models/src/configurations.model.ts"],"names":[],"mappings":"AAWA,MAAM,CAAN,IAAY,kBAuBX;AAvBD,WAAY,kBAAkB;IAC7B,yDAAmC,CAAA;IACnC,8DAAwC,CAAA;IACxC,6DAAuC,CAAA;IACvC,6CAAuB,CAAA;IACvB,+CAAyB,CAAA;IACzB,wCAAkB,CAAA;IAClB,yCAAmB,CAAA;IACnB,kDAA4B,CAAA;IAC5B,yDAAmC,CAAA;IACnC,qDAA+B,CAAA;IAC/B,+CAAyB,CAAA;IACzB,mEAA6C,CAAA;IAC7C,8CAAwB,CAAA;IACxB,oEAA8C,CAAA;IAC9C,gEAA0C,CAAA;IAC1C,kEAA4C,CAAA;IAC5C,qEAA+C,CAAA;IAC/C,0DAAoC,CAAA;IACpC,kEAA4C,CAAA;IAC5C,6CAAuB,CAAA;IACvB,sDAAgC,CAAA;IAChC,6CAAuB,CAAA;AACxB,CAAC,EAvBW,kBAAkB,KAAlB,kBAAkB,QAuB7B"}
@@ -2,7 +2,6 @@ import { IContactProfile } from './contact.profile.model';
2
2
  import { IVerifiableContact } from './verifiable.contact.model';
3
3
  import { TypedModel } from './typed.model';
4
4
  import { IFcm } from './fcm.model';
5
- import { IConfigurations } from '.';
6
5
  export declare enum PhoneField {
7
6
  PhoneId = "phoneId",
8
7
  Phone = "phone",
@@ -10,9 +9,7 @@ export declare enum PhoneField {
10
9
  ContactProfileId = "cntcPrfId",
11
10
  Verification = "verification",
12
11
  FcmTokens = "FcmTokens",
13
- CreatedAt = "crdAt",
14
- configurations = "configurations",
15
- configurationIds = "configurationId"
12
+ CreatedAt = "crdAt"
16
13
  }
17
14
  export interface IPhone extends TypedModel {
18
15
  [PhoneField.PhoneId]: string;
@@ -22,6 +19,4 @@ export interface IPhone extends TypedModel {
22
19
  [PhoneField.Verification]: IVerifiableContact;
23
20
  [PhoneField.FcmTokens]: IFcm[];
24
21
  [PhoneField.CreatedAt]: Date;
25
- [PhoneField.configurations]: IConfigurations[];
26
- [PhoneField.configurationIds]: string[];
27
22
  }
@@ -7,7 +7,5 @@ export var PhoneField;
7
7
  PhoneField["Verification"] = "verification";
8
8
  PhoneField["FcmTokens"] = "FcmTokens";
9
9
  PhoneField["CreatedAt"] = "crdAt";
10
- PhoneField["configurations"] = "configurations";
11
- PhoneField["configurationIds"] = "configurationId";
12
10
  })(PhoneField || (PhoneField = {}));
13
11
  //# sourceMappingURL=phone.model.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"phone.model.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/models/src/phone.model.ts"],"names":[],"mappings":"AAMA,MAAM,CAAN,IAAY,UAUX;AAVD,WAAY,UAAU;IACrB,iCAAmB,CAAA;IACnB,6BAAe,CAAA;IACf,wCAA0B,CAAA;IAC1B,4CAA8B,CAAA;IAC9B,2CAA6B,CAAA;IAC7B,qCAAuB,CAAA;IACvB,iCAAmB,CAAA;IACnB,+CAAiC,CAAA;IACjC,kDAAoC,CAAA;AACrC,CAAC,EAVW,UAAU,KAAV,UAAU,QAUrB"}
1
+ {"version":3,"file":"phone.model.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/models/src/phone.model.ts"],"names":[],"mappings":"AAMA,MAAM,CAAN,IAAY,UAQX;AARD,WAAY,UAAU;IACrB,iCAAmB,CAAA;IACnB,6BAAe,CAAA;IACf,wCAA0B,CAAA;IAC1B,4CAA8B,CAAA;IAC9B,2CAA6B,CAAA;IAC7B,qCAAuB,CAAA;IACvB,iCAAmB,CAAA;AACpB,CAAC,EARW,UAAU,KAAV,UAAU,QAQrB"}