pristine-member-nest-api-database 1.0.85 → 1.0.87

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.
@@ -88,6 +88,8 @@ const ApplicationSchemSchema = new mongoose_1.Schema({
88
88
  organizationApplicationEnabled: { type: Boolean, default: true },
89
89
  SLITOptionEnabled: { type: Boolean, default: true },
90
90
  OtherInfoEnabled: { type: Boolean, default: true },
91
+ HotelSubscriptionEnabled: { type: Boolean, default: true },
92
+ FinancialInformationEnabled: { type: Boolean, default: true },
91
93
  createdDate: { type: Date, default: Date.now },
92
94
  isActive: { type: Boolean, default: true },
93
95
  audit: [
@@ -24,6 +24,8 @@ interface IApplicationDocument extends Document {
24
24
  IsMembershipExtraDetailsEnabled: boolean;
25
25
  OtherInfoEnabled: boolean;
26
26
 
27
+ HotelSubscriptionEnabled: boolean;
28
+ FinancialInformationEnabled: boolean;
27
29
  // STATIC VARIBLE CONFIG ON BRANCH CONFIG LEVEL END HERE
28
30
  createdDate: Schema.Types.Date;
29
31
  isActive: boolean;
@@ -97,6 +99,8 @@ const ApplicationSchemSchema = new Schema<IApplicationDocument>({
97
99
  organizationApplicationEnabled: { type: Boolean, default: true },
98
100
  SLITOptionEnabled: { type: Boolean, default: true },
99
101
  OtherInfoEnabled: { type: Boolean, default: true },
102
+ HotelSubscriptionEnabled: { type: Boolean, default: true },
103
+ FinancialInformationEnabled: { type: Boolean, default: true },
100
104
  createdDate: { type: Date, default: Date.now },
101
105
  isActive: { type: Boolean, default: true },
102
106
  audit: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pristine-member-nest-api-database",
3
- "version": "1.0.85",
3
+ "version": "1.0.87",
4
4
  "description": "application verification database changes with gs1 branch. not tested. ",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {