shuttlepro-shared 1.4.42 → 1.4.44

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.
@@ -10,11 +10,6 @@ const AttributeSchema = new Schema(
10
10
  ref: "Workspace",
11
11
  default: null,
12
12
  },
13
- websiteId: {
14
- type: Schema.Types.ObjectId,
15
- ref: "Website",
16
- default: null,
17
- },
18
13
  oldId: { type: String, default: "" },
19
14
  createdBy: { type: Schema.Types.ObjectId, ref: "User", default: null },
20
15
  updatedBy: { type: Schema.Types.ObjectId, ref: "User", default: null },
package/models/Call.js CHANGED
@@ -65,11 +65,6 @@ const callSchema = new mongoose.Schema(
65
65
  type: String,
66
66
  default: null,
67
67
  },
68
- labels: [{ type: Schema.Types.ObjectId, ref: "Label" }],
69
- remarks: {
70
- type: String,
71
- default: "",
72
- },
73
68
  callHistory: [
74
69
  {
75
70
  action: {
@@ -11,11 +11,6 @@ const CategorySchema = new Schema(
11
11
  ref: "Workspace",
12
12
  default: null,
13
13
  },
14
- websiteId: {
15
- type: Schema.Types.ObjectId,
16
- ref: "Website",
17
- default: null,
18
- },
19
14
  oldId: { type: String, default: "" },
20
15
  webCategoryId: { type: Number, default: null },
21
16
  parentId: { type: Schema.Types.ObjectId, ref: "Category", default: null },
@@ -14,11 +14,6 @@ const CheckpointSchema = new Schema(
14
14
  ref: "Workspace",
15
15
  default: null,
16
16
  },
17
- websiteId: {
18
- type: Schema.Types.ObjectId,
19
- ref: "Website",
20
- default: null,
21
- },
22
17
  },
23
18
  { timestamps: true, toJSON: { virtuals: true }, toObject: { virtuals: true } }
24
19
  );
@@ -18,11 +18,6 @@ const CustomerSchema = new Schema(
18
18
  ref: "Workspace",
19
19
  default: null,
20
20
  },
21
- websiteId: {
22
- type: Schema.Types.ObjectId,
23
- ref: "Website",
24
- default: null,
25
- },
26
21
  isBlackListed: { type: Boolean, default: false },
27
22
  createdBy: {
28
23
  type: Schema.Types.ObjectId,
@@ -14,11 +14,6 @@ const LocationSchema = new Schema(
14
14
  oldId: { type: String, default: "" },
15
15
  webLocationId: { type: Number, default: null },
16
16
  bcLocationId: { type: String, default: "" },
17
- websiteId: {
18
- type: Schema.Types.ObjectId,
19
- ref: "Website",
20
- default: null,
21
- },
22
17
  workspaceId: {
23
18
  type: Schema.Types.ObjectId,
24
19
  ref: "Workspace",
package/models/Order.js CHANGED
@@ -103,11 +103,6 @@ const OrderSchema = new Schema(
103
103
  ref: "Workspace",
104
104
  default: null,
105
105
  },
106
- websiteId: {
107
- type: Schema.Types.ObjectId,
108
- ref: "Website",
109
- default: null,
110
- },
111
106
  orderType: { type: String, default: "" },
112
107
  barCode: { type: String, default: "" },
113
108
  quantity: { type: Number, default: 0 },
@@ -228,7 +223,6 @@ const markOrUnMarkOrderAsDuplicate = async (doc) => {
228
223
  const phoneRegex = getPhoneRegex(doc?.customerPhone);
229
224
  let orders = await Order.find({
230
225
  workspaceId: doc?.workspaceId,
231
- websiteId: doc?.websiteId,
232
226
  isDeleted: false,
233
227
  statusType: "pending",
234
228
  customerPhone: phoneRegex,
@@ -20,11 +20,6 @@ const OrderPdfScehma = new mongoose.Schema(
20
20
  ref: "Workspace",
21
21
  default: null,
22
22
  },
23
- websiteId: {
24
- type: Schema.Types.ObjectId,
25
- ref: "Website",
26
- default: null,
27
- },
28
23
  createdBy: { type: Schema.Types.ObjectId, ref: "User", default: null },
29
24
  updatedBy: { type: Schema.Types.ObjectId, ref: "User", default: null },
30
25
  },
@@ -31,11 +31,6 @@ const OrderProductSchema = new Schema(
31
31
  ref: "Workspace",
32
32
  default: null,
33
33
  },
34
- websiteId: {
35
- type: Schema.Types.ObjectId,
36
- ref: "Website",
37
- default: null,
38
- },
39
34
  },
40
35
  { timestamps: true, toJSON: { virtuals: true }, toObject: { virtuals: true } }
41
36
  );
package/models/Product.js CHANGED
@@ -31,11 +31,6 @@ const ProductSchema = new Schema(
31
31
  type: Schema.Types.ObjectId,
32
32
  ref: "Workspace",
33
33
  default: null,
34
- },
35
- websiteId: {
36
- type: Schema.Types.ObjectId,
37
- ref: "Website",
38
- default: null,
39
34
  },
40
35
  storeType: { type: String, default: "LOCAL" },
41
36
  isDeleted: { type: Boolean, default: false },
@@ -141,6 +136,11 @@ const transformProductData = async (product) => {
141
136
  costPrice: p?.costPrice || 0,
142
137
  salePrice: p?.salePrice || 0,
143
138
  quantity: p?.quantity || 0,
139
+ barcode: p?.barcode || "",
140
+ presentedName: p?.presentedName || "",
141
+ presentedCurrency: p?.presentedCurrency || "",
142
+ presentedCurrencySymbol: p?.presentedCurrencySymbol || "",
143
+ websiteId: p?.websiteId || null,
144
144
  })) || [],
145
145
  attachments:
146
146
  populatedProduct.productAttachments?.map((x) => ({
@@ -161,6 +161,7 @@ const transformProductData = async (product) => {
161
161
  costPrice: p?.costPrice || 0,
162
162
  salePrice: p?.salePrice || 0,
163
163
  quantity: p?.quantity || 0,
164
+ barcode: p?.barcode || "",
164
165
  presentedName: p?.presentedName || "",
165
166
  presentedCurrency: p?.presentedCurrency || "",
166
167
  presentedCurrencySymbol: p?.presentedCurrencySymbol || "",
@@ -22,11 +22,6 @@ const ProductAttachmentSchema = new Schema(
22
22
  ref: "Workspace",
23
23
  default: null,
24
24
  },
25
- websiteId: {
26
- type: Schema.Types.ObjectId,
27
- ref: "Website",
28
- default: null,
29
- },
30
25
  height: { type: Number, default: 0 },
31
26
  variantIds: [
32
27
  { type: Schema.Types.ObjectId, ref: "ProductVariant", default: null },
@@ -16,11 +16,6 @@ const ProductAttributeSchema = new mongoose.Schema(
16
16
  ref: "Workspace",
17
17
  default: null,
18
18
  },
19
- websiteId: {
20
- type: Schema.Types.ObjectId,
21
- ref: "Website",
22
- default: null,
23
- },
24
19
  isDeleted: { type: Boolean, default: false },
25
20
  position: { type: String, default: "1" },
26
21
  },
@@ -11,11 +11,6 @@ const ProductCategorySchema = new Schema(
11
11
  ref: "Workspace",
12
12
  default: null,
13
13
  },
14
- websiteId: {
15
- type: Schema.Types.ObjectId,
16
- ref: "Website",
17
- default: null,
18
- },
19
14
  createdBy: { type: Schema.Types.ObjectId, ref: "User", default: null },
20
15
  updatedBy: { type: Schema.Types.ObjectId, ref: "User", default: null },
21
16
  isDeleted: { type: Boolean, default: false },
@@ -11,11 +11,6 @@ const ProductTagSchema = new Schema(
11
11
  ref: "Workspace",
12
12
  default: null,
13
13
  },
14
- websiteId: {
15
- type: Schema.Types.ObjectId,
16
- ref: "Website",
17
- default: null,
18
- },
19
14
  createdBy: { type: Schema.Types.ObjectId, ref: "User", default: null },
20
15
  updatedBy: { type: Schema.Types.ObjectId, ref: "User", default: null },
21
16
  isDeleted: { type: Boolean, default: false },
@@ -17,11 +17,6 @@ const ProductVariantSchema = new Schema(
17
17
  ref: "Workspace",
18
18
  default: null,
19
19
  },
20
- websiteId: {
21
- type: Schema.Types.ObjectId,
22
- ref: "Website",
23
- default: null,
24
- },
25
20
  webVariantId: { type: Number, default: null },
26
21
  inventoryPolicy: { type: String, default: "deny" }, //deny,continue
27
22
  taxable: { type: Boolean, default: false },
@@ -50,6 +45,7 @@ const ProductVariantSchema = new Schema(
50
45
  createdBy: { type: Schema.Types.ObjectId, ref: "User", default: null },
51
46
  updatedBy: { type: Schema.Types.ObjectId, ref: "User", default: null },
52
47
  isDeleted: { type: Boolean, default: false },
48
+ barcode: { type: String, default: "" },
53
49
  bcVariantId: { type: String, default: "" },
54
50
  presentedName: { type: String, default: "" },
55
51
  presentedCurrency: { type: String, default: "" },
package/models/Tag.js CHANGED
@@ -8,11 +8,6 @@ const TagSchema = new Schema(
8
8
  ref: "Workspace",
9
9
  default: null,
10
10
  },
11
- websiteId: {
12
- type: Schema.Types.ObjectId,
13
- ref: "Website",
14
- default: null,
15
- },
16
11
  oldId: { type: String, default: "" },
17
12
  webTagId: { type: Number, default: "" },
18
13
  createdBy: { type: Schema.Types.ObjectId, ref: "User", default: null },
@@ -13,11 +13,6 @@ const VariantLocationSchema = new Schema(
13
13
  ref: "Workspace",
14
14
  default: null,
15
15
  },
16
- websiteId: {
17
- type: Schema.Types.ObjectId,
18
- ref: "Website",
19
- default: null,
20
- },
21
16
  productId: { type: Schema.Types.ObjectId, ref: "Product", default: null },
22
17
  locationId: { type: Schema.Types.ObjectId, ref: "Location", default: null },
23
18
  webVariantLocationId: { type: Number, default: null },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuttlepro-shared",
3
- "version": "1.4.42",
3
+ "version": "1.4.44",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {