@@ -1276,6 +1276,7 @@ export type Person = {
1276
1276
ActivityTarget ?: Maybe < Array < ActivityTarget > > ;
1277
1277
_activityCount : Scalars [ 'Int' ] ;
1278
1278
activities : Array < Activity > ;
1279
+ avatarUrl ?: Maybe < Scalars [ 'String' ] > ;
1279
1280
city ?: Maybe < Scalars [ 'String' ] > ;
1280
1281
comments : Array < Comment > ;
1281
1282
company ?: Maybe < Company > ;
@@ -1296,6 +1297,7 @@ export type Person = {
1296
1297
export type PersonCreateInput = {
1297
1298
Favorite ?: InputMaybe < FavoriteCreateNestedManyWithoutPersonInput > ;
1298
1299
ActivityTarget ?: InputMaybe < ActivityTargetCreateNestedManyWithoutPersonInput > ;
1300
+ avatarUrl ?: InputMaybe < Scalars [ 'String' ] > ;
1299
1301
city ?: InputMaybe < Scalars [ 'String' ] > ;
1300
1302
company ?: InputMaybe < CompanyCreateNestedOneWithoutPeopleInput > ;
1301
1303
createdAt ?: InputMaybe < Scalars [ 'DateTime' ] > ;
@@ -1335,6 +1337,7 @@ export type PersonOrderByRelationAggregateInput = {
1335
1337
export type PersonOrderByWithRelationInput = {
1336
1338
Favorite ?: InputMaybe < FavoriteOrderByRelationAggregateInput > ;
1337
1339
ActivityTarget ?: InputMaybe < ActivityTargetOrderByRelationAggregateInput > ;
1340
+ avatarUrl ?: InputMaybe < SortOrder > ;
1338
1341
city ?: InputMaybe < SortOrder > ;
1339
1342
company ?: InputMaybe < CompanyOrderByWithRelationInput > ;
1340
1343
companyId ?: InputMaybe < SortOrder > ;
@@ -1356,6 +1359,7 @@ export type PersonRelationFilter = {
1356
1359
} ;
1357
1360
1358
1361
export enum PersonScalarFieldEnum {
1362
+ AvatarUrl = 'avatarUrl' ,
1359
1363
City = 'city' ,
1360
1364
CompanyId = 'companyId' ,
1361
1365
CreatedAt = 'createdAt' ,
@@ -1374,6 +1378,7 @@ export enum PersonScalarFieldEnum {
1374
1378
export type PersonUpdateInput = {
1375
1379
Favorite ?: InputMaybe < FavoriteUpdateManyWithoutPersonNestedInput > ;
1376
1380
ActivityTarget ?: InputMaybe < ActivityTargetUpdateManyWithoutPersonNestedInput > ;
1381
+ avatarUrl ?: InputMaybe < Scalars [ 'String' ] > ;
1377
1382
city ?: InputMaybe < Scalars [ 'String' ] > ;
1378
1383
company ?: InputMaybe < CompanyUpdateOneWithoutPeopleNestedInput > ;
1379
1384
createdAt ?: InputMaybe < Scalars [ 'DateTime' ] > ;
@@ -1411,6 +1416,7 @@ export type PersonWhereInput = {
1411
1416
ActivityTarget ?: InputMaybe < ActivityTargetListRelationFilter > ;
1412
1417
NOT ?: InputMaybe < Array < PersonWhereInput > > ;
1413
1418
OR ?: InputMaybe < Array < PersonWhereInput > > ;
1419
+ avatarUrl ?: InputMaybe < StringNullableFilter > ;
1414
1420
city ?: InputMaybe < StringNullableFilter > ;
1415
1421
company ?: InputMaybe < CompanyRelationFilter > ;
1416
1422
companyId ?: InputMaybe < StringNullableFilter > ;
@@ -2492,7 +2498,7 @@ export type GetPeopleQueryVariables = Exact<{
2492
2498
} > ;
2493
2499
2494
2500
2495
- export type GetPeopleQuery = { __typename ?: 'Query' , people : Array < { __typename ?: 'Person' , id : string , phone ?: string | null , email ?: string | null , city ?: string | null , firstName ?: string | null , lastName ?: string | null , displayName : string , jobTitle ?: string | null , linkedinUrl ?: string | null , createdAt : string , _activityCount : number , company ?: { __typename ?: 'Company' , id : string , name : string , domainName : string } | null } > } ;
2501
+ export type GetPeopleQuery = { __typename ?: 'Query' , people : Array < { __typename ?: 'Person' , id : string , phone ?: string | null , email ?: string | null , city ?: string | null , firstName ?: string | null , lastName ?: string | null , displayName : string , jobTitle ?: string | null , linkedinUrl ?: string | null , avatarUrl ?: string | null , createdAt : string , _activityCount : number , company ?: { __typename ?: 'Company' , id : string , name : string , domainName : string } | null } > } ;
2496
2502
2497
2503
export type GetPersonPhoneByIdQueryVariables = Exact < {
2498
2504
id : Scalars [ 'String' ] ;
@@ -2548,7 +2554,7 @@ export type GetPersonQueryVariables = Exact<{
2548
2554
} > ;
2549
2555
2550
2556
2551
- export type GetPersonQuery = { __typename ?: 'Query' , findUniquePerson : { __typename ?: 'Person' , id : string , firstName ?: string | null , lastName ?: string | null , displayName : string , email ?: string | null , createdAt : string , city ?: string | null , jobTitle ?: string | null , linkedinUrl ?: string | null , phone ?: string | null , _activityCount : number , company ?: { __typename ?: 'Company' , id : string , name : string , domainName : string } | null } } ;
2557
+ export type GetPersonQuery = { __typename ?: 'Query' , findUniquePerson : { __typename ?: 'Person' , id : string , firstName ?: string | null , lastName ?: string | null , displayName : string , email ?: string | null , createdAt : string , city ?: string | null , jobTitle ?: string | null , linkedinUrl ?: string | null , avatarUrl ?: string | null , phone ?: string | null , _activityCount : number , company ?: { __typename ?: 'Company' , id : string , name : string , domainName : string } | null } } ;
2552
2558
2553
2559
export type UpdateOnePersonMutationVariables = Exact < {
2554
2560
where : PersonWhereUniqueInput ;
@@ -2585,7 +2591,7 @@ export type GetPipelineProgressQueryVariables = Exact<{
2585
2591
} > ;
2586
2592
2587
2593
2588
- export type GetPipelineProgressQuery = { __typename ?: 'Query' , findManyPipelineProgress : Array < { __typename ?: 'PipelineProgress' , id : string , pipelineStageId : string , progressableType : PipelineProgressableType , progressableId : string , amount ?: number | null , closeDate ?: string | null , pointOfContactId ?: string | null , probability ?: number | null , pointOfContact ?: { __typename ?: 'Person' , id : string , firstName ?: string | null , lastName ?: string | null , displayName : string } | null } > } ;
2594
+ export type GetPipelineProgressQuery = { __typename ?: 'Query' , findManyPipelineProgress : Array < { __typename ?: 'PipelineProgress' , id : string , pipelineStageId : string , progressableType : PipelineProgressableType , progressableId : string , amount ?: number | null , closeDate ?: string | null , pointOfContactId ?: string | null , probability ?: number | null , pointOfContact ?: { __typename ?: 'Person' , id : string , firstName ?: string | null , lastName ?: string | null , displayName : string , avatarUrl ?: string | null } | null } > } ;
2589
2595
2590
2596
export type UpdateOnePipelineProgressMutationVariables = Exact < {
2591
2597
id ?: InputMaybe < Scalars [ 'String' ] > ;
@@ -2639,7 +2645,7 @@ export type SearchPeopleQueryVariables = Exact<{
2639
2645
} > ;
2640
2646
2641
2647
2642
- export type SearchPeopleQuery = { __typename ?: 'Query' , searchResults : Array < { __typename ?: 'Person' , id : string , phone ?: string | null , email ?: string | null , city ?: string | null , firstName ?: string | null , lastName ?: string | null , displayName : string , createdAt : string } > } ;
2648
+ export type SearchPeopleQuery = { __typename ?: 'Query' , searchResults : Array < { __typename ?: 'Person' , id : string , phone ?: string | null , email ?: string | null , city ?: string | null , firstName ?: string | null , lastName ?: string | null , displayName : string , avatarUrl ?: string | null , createdAt : string } > } ;
2643
2649
2644
2650
export type SearchUserQueryVariables = Exact < {
2645
2651
where ?: InputMaybe < UserWhereInput > ;
@@ -3826,6 +3832,7 @@ export const GetPeopleDocument = gql`
3826
3832
displayName
3827
3833
jobTitle
3828
3834
linkedinUrl
3835
+ avatarUrl
3829
3836
createdAt
3830
3837
_activityCount
3831
3838
company {
@@ -4137,6 +4144,7 @@ export const GetPersonDocument = gql`
4137
4144
city
4138
4145
jobTitle
4139
4146
linkedinUrl
4147
+ avatarUrl
4140
4148
phone
4141
4149
_activityCount
4142
4150
company {
@@ -4361,6 +4369,7 @@ export const GetPipelineProgressDocument = gql`
4361
4369
firstName
4362
4370
lastName
4363
4371
displayName
4372
+ avatarUrl
4364
4373
}
4365
4374
probability
4366
4375
}
@@ -4592,6 +4601,7 @@ export const SearchPeopleDocument = gql`
4592
4601
firstName
4593
4602
lastName
4594
4603
displayName
4604
+ avatarUrl
4595
4605
createdAt
4596
4606
}
4597
4607
}
0 commit comments