tango-api-schema 2.0.5 → 2.0.6
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/index.js
CHANGED
|
@@ -3,11 +3,13 @@ import otpModel from "./schema/otp.model.js";
|
|
|
3
3
|
import storeModel from "./schema/store.model.js";
|
|
4
4
|
import countryCodesModel from './schema/countryCodes.model.js';
|
|
5
5
|
import clientModel from "./schema/client.model.js";
|
|
6
|
+
import tangoTicket from "./schema/tangoTicket.model.js"
|
|
6
7
|
|
|
7
8
|
export default {
|
|
8
9
|
leadModel,
|
|
9
10
|
otpModel,
|
|
10
11
|
storeModel,
|
|
11
12
|
countryCodesModel,
|
|
12
|
-
clientModel
|
|
13
|
+
clientModel,
|
|
14
|
+
tangoTicket
|
|
13
15
|
};
|