gemcap-be-common 1.5.93 → 1.5.94

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.
@@ -86,11 +86,12 @@ export interface IYieldDataLean extends IYieldData {
86
86
  createdAt: Date;
87
87
  updatedAt: Date;
88
88
  }
89
- export interface IYieldDataPlain extends Omit<IYieldData, 'productId' | 'chargeId' | 'facilityId'> {
89
+ export interface IYieldDataPlain extends Omit<IYieldData, 'productId' | 'chargeId' | 'facilityId' | 'facilityChargeGroupId'> {
90
90
  _id: string;
91
- productId: string;
92
- chargeId: string;
93
- facilityId: string;
91
+ productId?: string;
92
+ chargeId?: string;
93
+ facilityId?: string;
94
+ facilityChargeGroupId?: string;
94
95
  }
95
96
  export type TYieldDataModel = mongoose.Model<IYieldData>;
96
97
  export declare const YieldDataSchema: mongoose.Schema<IYieldData, TYieldDataModel, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, IYieldData, mongoose.Document<unknown, {}, mongoose.FlatRecord<IYieldData>> & mongoose.FlatRecord<IYieldData> & {
@@ -92,11 +92,12 @@ export interface IYieldDataLean extends IYieldData {
92
92
  updatedAt: Date;
93
93
  }
94
94
 
95
- export interface IYieldDataPlain extends Omit<IYieldData, 'productId' | 'chargeId' | 'facilityId'> {
95
+ export interface IYieldDataPlain extends Omit<IYieldData, 'productId' | 'chargeId' | 'facilityId' | 'facilityChargeGroupId'> {
96
96
  _id: string;
97
- productId: string;
98
- chargeId: string;
99
- facilityId: string;
97
+ productId?: string;
98
+ chargeId?: string;
99
+ facilityId?: string;
100
+ facilityChargeGroupId?: string;
100
101
  }
101
102
 
102
103
  export type TYieldDataModel = mongoose.Model<IYieldData>;
@@ -35,8 +35,8 @@ export declare const allSchemas: {
35
35
  createdAt: NativeDate;
36
36
  updatedAt: NativeDate;
37
37
  } & {
38
- bbcSheetId: import("mongoose").Types.ObjectId;
39
38
  order: number;
39
+ bbcSheetId: import("mongoose").Types.ObjectId;
40
40
  apDate: Date;
41
41
  amount: number;
42
42
  __v?: number;
@@ -49,8 +49,8 @@ export declare const allSchemas: {
49
49
  createdAt: NativeDate;
50
50
  updatedAt: NativeDate;
51
51
  } & {
52
- bbcSheetId: import("mongoose").Types.ObjectId;
53
52
  order: number;
53
+ bbcSheetId: import("mongoose").Types.ObjectId;
54
54
  apDate: Date;
55
55
  amount: number;
56
56
  __v?: number;
@@ -63,8 +63,8 @@ export declare const allSchemas: {
63
63
  createdAt: NativeDate;
64
64
  updatedAt: NativeDate;
65
65
  } & {
66
- bbcSheetId: import("mongoose").Types.ObjectId;
67
66
  order: number;
67
+ bbcSheetId: import("mongoose").Types.ObjectId;
68
68
  apDate: Date;
69
69
  amount: number;
70
70
  __v?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.5.93",
3
+ "version": "1.5.94",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {