File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
src/management/identities/_schemas Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import { IdentityState } from '../_enums/states.enum';
77import { AdditionalFieldsPart , AdditionalFieldsPartSchema } from './_parts/additionalFields.part.schema' ;
88import { InitStatesEnum } from '~/management/identities/_enums/init-state.enum' ;
99import { InitInfoPart , InitInfoPartSchema } from '~/management/identities/_schemas/_parts/init-info.part.schema' ;
10+ import { MixedValue } from '~/_common/types/mixed-value.type' ;
1011
1112export type IdentitiesDocument = Identities & Document ;
1213
@@ -35,6 +36,11 @@ export class Identities extends AbstractSchema {
3536
3637 @Prop ( { type : InitInfoPartSchema , default : { } } )
3738 public initInfo : InitInfoPart ;
39+
40+ @Prop ( {
41+ type : Object ,
42+ } )
43+ public customFields ?: { [ key : string ] : MixedValue }
3844}
3945
4046export const IdentitiesSchema = SchemaFactory . createForClass ( Identities ) ;
You can’t perform that action at this time.
0 commit comments