File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ class CoreGenericAccount(CoreNode):
121121 account_type : Enum
122122 status : Dropdown
123123 tokens : RelationshipManager
124+ external_identities : RelationshipManager
124125
125126
126127class CoreGenericRepository (CoreNode ):
@@ -590,6 +591,13 @@ class InternalAccountToken(CoreNode):
590591 account : RelatedNode
591592
592593
594+ class InternalExternalIdentity (CoreNode ):
595+ sub : String
596+ provider_name : String
597+ protocol : String
598+ account : RelatedNode
599+
600+
593601class InternalIPPrefixAvailable (BuiltinIPPrefix ):
594602 pass
595603
@@ -698,6 +706,7 @@ class CoreGenericAccountSync(CoreNodeSync):
698706 account_type : Enum
699707 status : Dropdown
700708 tokens : RelationshipManagerSync
709+ external_identities : RelationshipManagerSync
701710
702711
703712class CoreGenericRepositorySync (CoreNodeSync ):
@@ -1167,6 +1176,13 @@ class InternalAccountTokenSync(CoreNodeSync):
11671176 account : RelatedNodeSync
11681177
11691178
1179+ class InternalExternalIdentitySync (CoreNodeSync ):
1180+ sub : String
1181+ provider_name : String
1182+ protocol : String
1183+ account : RelatedNodeSync
1184+
1185+
11701186class InternalIPPrefixAvailableSync (BuiltinIPPrefixSync ):
11711187 pass
11721188
You can’t perform that action at this time.
0 commit comments