shuttlepro-shared 1.3.55 → 1.3.57
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/models/Conversation.js
CHANGED
|
@@ -12,6 +12,7 @@ const DescriptionTemplateSchema = new Schema(
|
|
|
12
12
|
body: {},
|
|
13
13
|
arbitraryValues: {},
|
|
14
14
|
moduleType: { type: String, default: "" },
|
|
15
|
+
subType: { type: String, default: "" }
|
|
15
16
|
},
|
|
16
17
|
{ timestamps: true, toJSON: { virtuals: true }, toObject: { virtuals: true } }
|
|
17
18
|
);
|
package/models/Integration.js
CHANGED
package/models/Workspace.js
CHANGED
|
@@ -333,6 +333,10 @@ const workspaceSchema = new mongoose.Schema(
|
|
|
333
333
|
default: 3,
|
|
334
334
|
},
|
|
335
335
|
},
|
|
336
|
+
shopify: {
|
|
337
|
+
secretToken: { type: String, default: "" },
|
|
338
|
+
workspaceId: { type: String, default: "" },
|
|
339
|
+
},
|
|
336
340
|
},
|
|
337
341
|
{ timestamps: true, toJSON: { virtuals: true }, toObject: { virtuals: true } }
|
|
338
342
|
);
|