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 +3 -1
- package/package.json +1 -1
- package/schema/tangoTicket.model.js +3 -0
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