shuttlepro-shared 1.1.60 → 1.1.61

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.
@@ -23,3 +23,18 @@ exports.GenericMessages = {
23
23
  URL_FETCH_SUCCESS: "Url Fetched successfully!",
24
24
  WORKSPACE_NOT_FOUND: "Workspace not found!",
25
25
  };
26
+
27
+ exports.DYNAMIC_FIELD_TYPES = [
28
+ "text",
29
+ "autocomplete",
30
+ "radio",
31
+ "text area",
32
+ "number",
33
+ "date",
34
+ "time",
35
+ "email",
36
+ "range",
37
+ "url",
38
+ "colour",
39
+ "file",
40
+ ];
package/models.js CHANGED
@@ -15,7 +15,6 @@ const OrderQueue = require("./models/OrderQueue");
15
15
  const AgentActivity = require("./models/AgentActivity");
16
16
  const Assignment = require("./models/Assignment");
17
17
  const BusinessDistribution = require("./models/BusinessDistribution");
18
- const Card = require("./models/Card");
19
18
  const CardComments = require("./models/CardComments");
20
19
  const Checkpoint = require("./models/Checkpoint");
21
20
  const City = require("./models/City");
@@ -33,6 +32,7 @@ const Status = require("./models/Status");
33
32
  const StatusType = require("./models/StatusType");
34
33
  const Type = require("./models/Type");
35
34
  const Workspace = require("./models/Workspace");
35
+ const Card = require("./models/Card");
36
36
 
37
37
  module.exports = {
38
38
  Website,
@@ -52,7 +52,6 @@ module.exports = {
52
52
  AgentActivity,
53
53
  Assignment,
54
54
  BusinessDistribution,
55
- Card,
56
55
  CardComments,
57
56
  Checkpoint,
58
57
  Column,
@@ -70,4 +69,5 @@ module.exports = {
70
69
  Type,
71
70
  Workspace,
72
71
  StatusType,
72
+ Card,
73
73
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuttlepro-shared",
3
- "version": "1.1.60",
3
+ "version": "1.1.61",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {