tango-api-schema 2.0.150 → 2.0.152
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 +1 -5
- package/package.json +1 -1
- package/schema/auditStoreData.model.js +6 -0
package/index.js
CHANGED
|
@@ -30,13 +30,11 @@ import assignAuditModel from "./schema/assignAudit.model.js";
|
|
|
30
30
|
import auditStoreDataModel from "./schema/auditStoreData.model.js";
|
|
31
31
|
import matLogModel from "./schema/matLog.model.js";
|
|
32
32
|
import billingModel from "./schema/billing.model.js";
|
|
33
|
-
import auditClientDataModel from "./schema/auditClientData.model.js";
|
|
34
33
|
import auditLogsModel from "./schema/auditLogs.model.js";
|
|
35
34
|
import internalAuthModel from "./schema/internalAuth.model.js";
|
|
36
35
|
import paymentAccountModel from "./schema/paymentAccount.model.js";
|
|
37
36
|
import externalParameterModel from "./schema/externalParameter.model.js";
|
|
38
37
|
import transactionModel from "./schema/transaction.model.js";
|
|
39
|
-
import assignZoneAuditModel from "./schema/assignZoneAudit.model.js";
|
|
40
38
|
|
|
41
39
|
export default {
|
|
42
40
|
leadModel,
|
|
@@ -69,13 +67,11 @@ export default {
|
|
|
69
67
|
storeAuditModel,
|
|
70
68
|
assignAuditModel,
|
|
71
69
|
auditStoreDataModel,
|
|
72
|
-
auditClientDataModel,
|
|
73
70
|
matLogModel,
|
|
74
71
|
billingModel,
|
|
75
72
|
auditLogsModel,
|
|
76
73
|
internalAuthModel,
|
|
77
74
|
paymentAccountModel,
|
|
78
75
|
externalParameterModel,
|
|
79
|
-
transactionModel
|
|
80
|
-
assignZoneAuditModel
|
|
76
|
+
transactionModel
|
|
81
77
|
};
|
package/package.json
CHANGED