tango-api-schema 2.0.75 → 2.0.77

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/index.js CHANGED
@@ -20,6 +20,7 @@ import clientRequestModel from "./schema/clientRequest.model.js";
20
20
  import basePricingModel from "./schema/basePricing.model.js";
21
21
  import invoiceModel from "./schema/invoice.model.js";
22
22
  import workstationModel from "./schema/workstation.model.js";
23
+ import dailyPricingModel from "./schema/dailyPricing.model.js";
23
24
 
24
25
  export default {
25
26
  leadModel,
@@ -43,5 +44,6 @@ export default {
43
44
  clientRequestModel,
44
45
  basePricingModel,
45
46
  invoiceModel,
46
- workstationModel
47
+ workstationModel,
48
+ dailyPricingModel,
47
49
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-api-schema",
3
- "version": "2.0.75",
3
+ "version": "2.0.77",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -140,6 +140,9 @@ const tangoTickets = new mongoose.Schema(
140
140
  address:{
141
141
  type: String,
142
142
  trim: true,
143
+ },
144
+ timezone:{
145
+ type: String,
143
146
  }
144
147
  },
145
148
  status: {