File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @carbonhost/typescript" ,
3- "version" : " 1.1.6 " ,
3+ "version" : " 1.1.7 " ,
44 "main" : " dist/index.js" ,
55 "module" : " dist/index.mjs" ,
66 "types" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -63,9 +63,12 @@ export class CarbonStar {
6363 suspended : boolean ;
6464
6565 createdAt : Date ;
66- lastBilled ?: Date ;
6766
67+ lastBilled ?: Date ;
6868 billingCycle : "monthly" | "hourly" ;
69+ billingEnabled : boolean ;
70+ billingStoppedAt ?: Date ;
71+ billingStoppedReason ?: string ;
6972
7073 constructor ( carbonClient : Carbon , carbonStar : CarbonStarType ) {
7174 this . carbonClient = carbonClient ;
@@ -111,9 +114,12 @@ export class CarbonStar {
111114 this . suspended = carbonStar . suspended ;
112115
113116 this . createdAt = carbonStar . createdAt ;
117+
114118 this . lastBilled = carbonStar . lastBilled ;
115-
116119 this . billingCycle = carbonStar . billingCycle ;
120+ this . billingEnabled = carbonStar . billingEnabled ;
121+ this . billingStoppedAt = carbonStar . billingStoppedAt ;
122+ this . billingStoppedReason = carbonStar . billingStoppedReason ;
117123 }
118124
119125 get users ( ) {
You can’t perform that action at this time.
0 commit comments