@forge/cli-shared 6.4.0-next.11 → 6.4.0-next.12
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/CHANGELOG.md +6 -0
- package/out/graphql/graphql-types.d.ts +127 -25
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +2 -8
- package/out/service/statsig-service.d.ts +1 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +9 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -19802,6 +19802,7 @@ export declare type EcosystemConnectInstallation = {
|
|
|
19802
19802
|
export declare type EcosystemConnectInstallationLicense = {
|
|
19803
19803
|
__typename?: 'EcosystemConnectInstallationLicense';
|
|
19804
19804
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
19805
|
+
capabilitySet?: Maybe<CapabilitySet>;
|
|
19805
19806
|
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
19806
19807
|
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
19807
19808
|
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -25472,6 +25473,7 @@ export declare type GraphStore = {
|
|
|
25472
25473
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
25473
25474
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
25474
25475
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
25476
|
+
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
25475
25477
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
25476
25478
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
25477
25479
|
atlasProjectContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
|
|
@@ -25821,11 +25823,15 @@ export declare type GraphStore = {
|
|
|
25821
25823
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
25822
25824
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
25823
25825
|
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
25826
|
+
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
25827
|
+
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
25824
25828
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
25825
25829
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
25826
25830
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
25827
25831
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
25828
25832
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
25833
|
+
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
25834
|
+
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
25829
25835
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
25830
25836
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
25831
25837
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
@@ -25939,6 +25945,10 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
25939
25945
|
id: Scalars['ID']['input'];
|
|
25940
25946
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
25941
25947
|
};
|
|
25948
|
+
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
25949
|
+
organizationId: Scalars['ID']['input'];
|
|
25950
|
+
userId: Scalars['ID']['input'];
|
|
25951
|
+
};
|
|
25942
25952
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalArgs = {
|
|
25943
25953
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25944
25954
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28138,6 +28148,20 @@ export declare type GraphStoreUserAuthoredPrInverseArgs = {
|
|
|
28138
28148
|
id: Scalars['ID']['input'];
|
|
28139
28149
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
28140
28150
|
};
|
|
28151
|
+
export declare type GraphStoreUserCreatedConfluencePageArgs = {
|
|
28152
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28153
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28154
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28155
|
+
id: Scalars['ID']['input'];
|
|
28156
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
28157
|
+
};
|
|
28158
|
+
export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
28159
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28160
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28161
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28162
|
+
id: Scalars['ID']['input'];
|
|
28163
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
28164
|
+
};
|
|
28141
28165
|
export declare type GraphStoreUserHasTopProjectArgs = {
|
|
28142
28166
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28143
28167
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28173,6 +28197,20 @@ export declare type GraphStoreUserOwnsComponentInverseArgs = {
|
|
|
28173
28197
|
id: Scalars['ID']['input'];
|
|
28174
28198
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
28175
28199
|
};
|
|
28200
|
+
export declare type GraphStoreUserReportsIssueArgs = {
|
|
28201
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28202
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28203
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28204
|
+
id: Scalars['ID']['input'];
|
|
28205
|
+
sort?: InputMaybe<GraphStoreUserReportsIssueSortInput>;
|
|
28206
|
+
};
|
|
28207
|
+
export declare type GraphStoreUserReportsIssueInverseArgs = {
|
|
28208
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28209
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28210
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28211
|
+
id: Scalars['ID']['input'];
|
|
28212
|
+
sort?: InputMaybe<GraphStoreUserReportsIssueSortInput>;
|
|
28213
|
+
};
|
|
28176
28214
|
export declare type GraphStoreUserReviewsPrArgs = {
|
|
28177
28215
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28178
28216
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28478,6 +28516,11 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
28478
28516
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
28479
28517
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28480
28518
|
};
|
|
28519
|
+
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
28520
|
+
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
28521
|
+
edges?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
28522
|
+
pageInfo: PageInfo;
|
|
28523
|
+
};
|
|
28481
28524
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
28482
28525
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28483
28526
|
};
|
|
@@ -29552,7 +29595,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
29552
29595
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
29553
29596
|
id: Scalars['ID']['output'];
|
|
29554
29597
|
};
|
|
29555
|
-
export declare type GraphStoreCypherQueryToNodeUnion = JiraIssue;
|
|
29598
|
+
export declare type GraphStoreCypherQueryToNodeUnion = ConfluencePage | JiraIssue;
|
|
29556
29599
|
export declare type GraphStoreDateFilterInput = {
|
|
29557
29600
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29558
29601
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -36871,6 +36914,34 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
36871
36914
|
};
|
|
36872
36915
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36873
36916
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails;
|
|
36917
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageConnection = HasPageInfo & {
|
|
36918
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageConnection';
|
|
36919
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageEdge>>>;
|
|
36920
|
+
pageInfo: PageInfo;
|
|
36921
|
+
};
|
|
36922
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageEdge = {
|
|
36923
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageEdge';
|
|
36924
|
+
createdAt: Scalars['DateTime']['output'];
|
|
36925
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36926
|
+
id: Scalars['ID']['output'];
|
|
36927
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
36928
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageUnion>;
|
|
36929
|
+
};
|
|
36930
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection = HasPageInfo & {
|
|
36931
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection';
|
|
36932
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge>>>;
|
|
36933
|
+
pageInfo: PageInfo;
|
|
36934
|
+
};
|
|
36935
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
36936
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge';
|
|
36937
|
+
createdAt: Scalars['DateTime']['output'];
|
|
36938
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36939
|
+
id: Scalars['ID']['output'];
|
|
36940
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
36941
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion>;
|
|
36942
|
+
};
|
|
36943
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36944
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageUnion = ConfluencePage;
|
|
36874
36945
|
export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
|
|
36875
36946
|
__typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
|
|
36876
36947
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopProjectEdge>>>;
|
|
@@ -36945,6 +37016,34 @@ export declare type GraphStoreSimplifiedUserOwnsComponentInverseEdge = {
|
|
|
36945
37016
|
};
|
|
36946
37017
|
export declare type GraphStoreSimplifiedUserOwnsComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36947
37018
|
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
37019
|
+
export declare type GraphStoreSimplifiedUserReportsIssueConnection = HasPageInfo & {
|
|
37020
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueConnection';
|
|
37021
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportsIssueEdge>>>;
|
|
37022
|
+
pageInfo: PageInfo;
|
|
37023
|
+
};
|
|
37024
|
+
export declare type GraphStoreSimplifiedUserReportsIssueEdge = {
|
|
37025
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueEdge';
|
|
37026
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37027
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37028
|
+
id: Scalars['ID']['output'];
|
|
37029
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37030
|
+
node?: Maybe<GraphStoreSimplifiedUserReportsIssueUnion>;
|
|
37031
|
+
};
|
|
37032
|
+
export declare type GraphStoreSimplifiedUserReportsIssueInverseConnection = HasPageInfo & {
|
|
37033
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueInverseConnection';
|
|
37034
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportsIssueInverseEdge>>>;
|
|
37035
|
+
pageInfo: PageInfo;
|
|
37036
|
+
};
|
|
37037
|
+
export declare type GraphStoreSimplifiedUserReportsIssueInverseEdge = {
|
|
37038
|
+
__typename?: 'GraphStoreSimplifiedUserReportsIssueInverseEdge';
|
|
37039
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37040
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37041
|
+
id: Scalars['ID']['output'];
|
|
37042
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37043
|
+
node?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseUnion>;
|
|
37044
|
+
};
|
|
37045
|
+
export declare type GraphStoreSimplifiedUserReportsIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37046
|
+
export declare type GraphStoreSimplifiedUserReportsIssueUnion = JiraIssue;
|
|
36948
37047
|
export declare type GraphStoreSimplifiedUserReviewsPrConnection = HasPageInfo & {
|
|
36949
37048
|
__typename?: 'GraphStoreSimplifiedUserReviewsPrConnection';
|
|
36950
37049
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReviewsPrEdge>>>;
|
|
@@ -37632,6 +37731,9 @@ export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
|
37632
37731
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
37633
37732
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37634
37733
|
};
|
|
37734
|
+
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
37735
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37736
|
+
};
|
|
37635
37737
|
export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
37636
37738
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37637
37739
|
};
|
|
@@ -37644,6 +37746,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
|
37644
37746
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37645
37747
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
37646
37748
|
};
|
|
37749
|
+
export declare type GraphStoreUserReportsIssueSortInput = {
|
|
37750
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37751
|
+
};
|
|
37647
37752
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
37648
37753
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37649
37754
|
};
|
|
@@ -70247,14 +70352,29 @@ export declare type ThirdPartyUser = LocalizationContext & {
|
|
|
70247
70352
|
canonicalAccountId: Scalars['ID']['output'];
|
|
70248
70353
|
createdAt: Scalars['DateTime']['output'];
|
|
70249
70354
|
email?: Maybe<Scalars['String']['output']>;
|
|
70355
|
+
extendedProfile?: Maybe<ThirdPartyUserExtendedProfile>;
|
|
70250
70356
|
externalId: Scalars['String']['output'];
|
|
70251
70357
|
id: Scalars['ID']['output'];
|
|
70252
70358
|
locale?: Maybe<Scalars['String']['output']>;
|
|
70253
70359
|
name?: Maybe<Scalars['String']['output']>;
|
|
70360
|
+
nickname?: Maybe<Scalars['String']['output']>;
|
|
70254
70361
|
picture?: Maybe<Scalars['URL']['output']>;
|
|
70255
70362
|
updatedAt: Scalars['DateTime']['output'];
|
|
70256
70363
|
zoneinfo?: Maybe<Scalars['String']['output']>;
|
|
70257
70364
|
};
|
|
70365
|
+
export declare type ThirdPartyUserExtendedProfile = {
|
|
70366
|
+
__typename?: 'ThirdPartyUserExtendedProfile';
|
|
70367
|
+
department?: Maybe<Scalars['String']['output']>;
|
|
70368
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
70369
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
70370
|
+
organization?: Maybe<Scalars['String']['output']>;
|
|
70371
|
+
phoneNumbers?: Maybe<Array<Maybe<ThirdPartyUserPhoneNumber>>>;
|
|
70372
|
+
};
|
|
70373
|
+
export declare type ThirdPartyUserPhoneNumber = {
|
|
70374
|
+
__typename?: 'ThirdPartyUserPhoneNumber';
|
|
70375
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
70376
|
+
value: Scalars['String']['output'];
|
|
70377
|
+
};
|
|
70258
70378
|
export declare type TimeSeriesPoint = {
|
|
70259
70379
|
__typename?: 'TimeSeriesPoint';
|
|
70260
70380
|
id: Scalars['ID']['output'];
|
|
@@ -70278,7 +70398,6 @@ export declare type Toolchain = {
|
|
|
70278
70398
|
checkAuth?: Maybe<ToolchainCheckAuth>;
|
|
70279
70399
|
checkAuthV2?: Maybe<ToolchainCheckAuthResult>;
|
|
70280
70400
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
70281
|
-
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
70282
70401
|
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
70283
70402
|
};
|
|
70284
70403
|
export declare type ToolchainCheckAuthArgs = {
|
|
@@ -70300,13 +70419,6 @@ export declare type ToolchainContainersArgs = {
|
|
|
70300
70419
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
70301
70420
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
70302
70421
|
};
|
|
70303
|
-
export declare type ToolchainSyncStatusArgs = {
|
|
70304
|
-
cloudId: Scalars['ID']['input'];
|
|
70305
|
-
containerId: Scalars['ID']['input'];
|
|
70306
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
70307
|
-
providerId: Scalars['String']['input'];
|
|
70308
|
-
providerType?: InputMaybe<ToolchainProviderType>;
|
|
70309
|
-
};
|
|
70310
70422
|
export declare type ToolchainWorkspacesArgs = {
|
|
70311
70423
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70312
70424
|
cloudId: Scalars['ID']['input'];
|
|
@@ -70516,16 +70628,6 @@ export declare enum ToolchainProviderType {
|
|
|
70516
70628
|
RemoteLinks = "REMOTE_LINKS",
|
|
70517
70629
|
Security = "SECURITY"
|
|
70518
70630
|
}
|
|
70519
|
-
export declare enum ToolchainSyncState {
|
|
70520
|
-
Complete = "COMPLETE",
|
|
70521
|
-
Error = "ERROR",
|
|
70522
|
-
InProgress = "IN_PROGRESS"
|
|
70523
|
-
}
|
|
70524
|
-
export declare type ToolchainSyncStatus = {
|
|
70525
|
-
__typename?: 'ToolchainSyncStatus';
|
|
70526
|
-
errorKey?: Maybe<Scalars['String']['output']>;
|
|
70527
|
-
state: ToolchainSyncState;
|
|
70528
|
-
};
|
|
70529
70631
|
export declare type ToolchainWorkspace = Node & {
|
|
70530
70632
|
__typename?: 'ToolchainWorkspace';
|
|
70531
70633
|
canCreateContainer: Scalars['Boolean']['output'];
|
|
@@ -72804,13 +72906,13 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
72804
72906
|
};
|
|
72805
72907
|
export declare type UnifiedAccount2 = UnifiedINode & {
|
|
72806
72908
|
__typename?: 'UnifiedAccount2';
|
|
72807
|
-
aaid
|
|
72808
|
-
emailId
|
|
72909
|
+
aaid: Scalars['String']['output'];
|
|
72910
|
+
emailId: Scalars['String']['output'];
|
|
72809
72911
|
id: Scalars['ID']['output'];
|
|
72810
|
-
internalId
|
|
72811
|
-
isLinked
|
|
72812
|
-
isManaged
|
|
72813
|
-
isPrimary
|
|
72912
|
+
internalId: Scalars['String']['output'];
|
|
72913
|
+
isLinked: Scalars['Boolean']['output'];
|
|
72914
|
+
isManaged: Scalars['Boolean']['output'];
|
|
72915
|
+
isPrimary: Scalars['Boolean']['output'];
|
|
72814
72916
|
linkedAccounts?: Maybe<UnifiedULinkedAccount2Result>;
|
|
72815
72917
|
};
|
|
72816
72918
|
export declare type UnifiedAccountDetails = UnifiedINode & {
|