@things-factory/calendar 6.2.65 → 6.2.77

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": "@things-factory/calendar",
3
- "version": "6.2.65",
3
+ "version": "6.2.77",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -30,8 +30,8 @@
30
30
  "@operato/event-view": "1.2.5",
31
31
  "@operato/graphql": "^1.0.0",
32
32
  "@operato/shell": "^1.0.0",
33
- "@things-factory/auth-base": "^6.2.65",
34
- "@things-factory/shell": "^6.2.65"
33
+ "@things-factory/auth-base": "^6.2.77",
34
+ "@things-factory/shell": "^6.2.77"
35
35
  },
36
- "gitHead": "320f62ab586b0c7058e7879f3e6592c960ae97bc"
36
+ "gitHead": "91090127331d8e4cdbbfeb2f82c8dfe8dc65bfee"
37
37
  }
@@ -1,5 +1,6 @@
1
1
  import { Entity, Index, Column, ManyToMany, JoinTable, PrimaryGeneratedColumn } from 'typeorm'
2
2
  import { ObjectType, Field, Int, ID, registerEnumType } from 'type-graphql'
3
+ import { GraphQLEmailAddress } from 'graphql-scalars'
3
4
 
4
5
  import { Event } from '../event/event'
5
6
 
@@ -26,7 +27,7 @@ export class Attendee {
26
27
  name?: string
27
28
 
28
29
  @Column()
29
- @Field({ nullable: true })
30
+ @Field(type => GraphQLEmailAddress, { nullable: true })
30
31
  email: string
31
32
 
32
33
  @ManyToMany(() => Event)