File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " hawk.api" ,
3- "version" : " 1.2.6 " ,
3+ "version" : " 1.2.7 " ,
44 "main" : " index.ts" ,
55 "license" : " BUSL-1.1" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -65,7 +65,9 @@ export default {
6565 priority : TaskPriorities . IMPORTANT ,
6666 } ) ;
6767
68- telegram . sendMessage ( `🚶 User "${ email } " signed up` ) ;
68+ const source = user . utm ?. source ;
69+
70+ telegram . sendMessage ( `🚶 User "${ email } " signed up` + ( source ? `, from ${ source } ` : '' ) ) ;
6971
7072 return isE2E ? password : true ;
7173 } catch ( e ) {
Original file line number Diff line number Diff line change @@ -122,6 +122,11 @@ export default gql`
122122 """ True if workspace is blocked """
123123 isBlocked: Boolean
124124
125+ """
126+ For prepaid workspaces, date until which the workspace is paid
127+ """
128+ paidUntil: DateTime
129+
125130 """
126131 Workspace projects array
127132 """
You can’t perform that action at this time.
0 commit comments