tango-api-schema 2.6.33 → 2.6.34
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/package.json +1 -1
- package/schema/client.model.js +18 -0
package/package.json
CHANGED
package/schema/client.model.js
CHANGED
|
@@ -682,6 +682,24 @@ const client = new mongoose.Schema(
|
|
|
682
682
|
},
|
|
683
683
|
|
|
684
684
|
},
|
|
685
|
+
// Arbitrary brand-level documents uploaded from Plans & Subscription
|
|
686
|
+
// (name + stored S3 path, PDF only). path is relative to the assets bucket.
|
|
687
|
+
additionalDocuments: [
|
|
688
|
+
{
|
|
689
|
+
documentName: {
|
|
690
|
+
type: String,
|
|
691
|
+
},
|
|
692
|
+
path: {
|
|
693
|
+
type: String,
|
|
694
|
+
},
|
|
695
|
+
expiryDate: {
|
|
696
|
+
type: Date,
|
|
697
|
+
},
|
|
698
|
+
uploadedAt: {
|
|
699
|
+
type: Date,
|
|
700
|
+
},
|
|
701
|
+
},
|
|
702
|
+
],
|
|
685
703
|
price: {
|
|
686
704
|
type: Number
|
|
687
705
|
},
|