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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-api-schema",
3
- "version": "2.6.33",
3
+ "version": "2.6.34",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -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
  },