@forge/cli-shared 8.8.1-next.3 → 8.8.1-next.4-experimental-44e92a2
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 +25 -0
- package/out/graphql/graphql-types.d.ts +468 -104
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +62 -22
- package/out/ui/text.d.ts +7 -5
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +17 -9
- package/package.json +3 -3
|
@@ -583,6 +583,15 @@ export declare type AvpDeleteDashboardFilterPayload = Payload & {
|
|
|
583
583
|
errors?: Maybe<Array<MutationError>>;
|
|
584
584
|
success: Scalars['Boolean']['output'];
|
|
585
585
|
};
|
|
586
|
+
export declare type AvpDeleteVariableInput = {
|
|
587
|
+
dashboardAri: Scalars['ID']['input'];
|
|
588
|
+
name: Scalars['String']['input'];
|
|
589
|
+
};
|
|
590
|
+
export declare type AvpDeleteVariablePayload = Payload & {
|
|
591
|
+
__typename?: 'AVPDeleteVariablePayload';
|
|
592
|
+
errors?: Maybe<Array<MutationError>>;
|
|
593
|
+
success: Scalars['Boolean']['output'];
|
|
594
|
+
};
|
|
586
595
|
export declare type AvpEnvVar = {
|
|
587
596
|
__typename?: 'AVPEnvVar';
|
|
588
597
|
chartId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -832,8 +841,23 @@ export declare type AvpUpdateDashboardStatusPayload = Payload & {
|
|
|
832
841
|
errors?: Maybe<Array<MutationError>>;
|
|
833
842
|
success: Scalars['Boolean']['output'];
|
|
834
843
|
};
|
|
844
|
+
export declare type AvpUpdateVariableInput = {
|
|
845
|
+
dashboardAri: Scalars['ID']['input'];
|
|
846
|
+
envVar: AvpVariableEnvVarInput;
|
|
847
|
+
};
|
|
848
|
+
export declare type AvpUpdateVariablePayload = Payload & {
|
|
849
|
+
__typename?: 'AVPUpdateVariablePayload';
|
|
850
|
+
envVar?: Maybe<AvpEnvVarWithChart>;
|
|
851
|
+
errors?: Maybe<Array<MutationError>>;
|
|
852
|
+
success: Scalars['Boolean']['output'];
|
|
853
|
+
};
|
|
854
|
+
export declare type AvpVariableEnvVarInput = {
|
|
855
|
+
defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
856
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
857
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
858
|
+
};
|
|
835
859
|
export declare type AvpVariableInput = {
|
|
836
|
-
chartType?: InputMaybe<
|
|
860
|
+
chartType?: InputMaybe<Scalars['String']['input']>;
|
|
837
861
|
dataType?: InputMaybe<AvpEnvVarDataType>;
|
|
838
862
|
defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
839
863
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1673,6 +1697,10 @@ export declare type AdminErrorExtension = {
|
|
|
1673
1697
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
1674
1698
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
1675
1699
|
};
|
|
1700
|
+
export declare type AdminEventAction = {
|
|
1701
|
+
__typename?: 'AdminEventAction';
|
|
1702
|
+
name: Scalars['String']['output'];
|
|
1703
|
+
};
|
|
1676
1704
|
export declare type AdminExternalCollaboratorFeature = {
|
|
1677
1705
|
__typename?: 'AdminExternalCollaboratorFeature';
|
|
1678
1706
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -1731,6 +1759,21 @@ export declare type AdminGroupEdge = {
|
|
|
1731
1759
|
cursor: Scalars['String']['output'];
|
|
1732
1760
|
node?: Maybe<AdminGroup>;
|
|
1733
1761
|
};
|
|
1762
|
+
export declare type AdminGroupEventAction = {
|
|
1763
|
+
__typename?: 'AdminGroupEventAction';
|
|
1764
|
+
eventActions: Array<AdminEventAction>;
|
|
1765
|
+
name: Scalars['String']['output'];
|
|
1766
|
+
};
|
|
1767
|
+
export declare type AdminGroupEventActionConnection = {
|
|
1768
|
+
__typename?: 'AdminGroupEventActionConnection';
|
|
1769
|
+
edges?: Maybe<Array<AdminGroupEventActionEdge>>;
|
|
1770
|
+
pageInfo: PageInfo;
|
|
1771
|
+
};
|
|
1772
|
+
export declare type AdminGroupEventActionEdge = {
|
|
1773
|
+
__typename?: 'AdminGroupEventActionEdge';
|
|
1774
|
+
cursor: Scalars['String']['output'];
|
|
1775
|
+
node?: Maybe<AdminGroupEventAction>;
|
|
1776
|
+
};
|
|
1734
1777
|
export declare type AdminGroupStatsQueryInput = {
|
|
1735
1778
|
includeResources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1736
1779
|
includeUsers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -10880,23 +10923,6 @@ export declare type CompassComponentPackageVersionsBySource = {
|
|
|
10880
10923
|
};
|
|
10881
10924
|
export declare type CompassComponentQueryResult = CompassSearchComponentConnection | QueryError;
|
|
10882
10925
|
export declare type CompassComponentResult = CompassComponent | QueryError;
|
|
10883
|
-
export declare type CompassComponentScorecardJiraIssueConnection = {
|
|
10884
|
-
__typename?: 'CompassComponentScorecardJiraIssueConnection';
|
|
10885
|
-
edges?: Maybe<Array<Maybe<CompassComponentScorecardJiraIssueEdge>>>;
|
|
10886
|
-
nodes?: Maybe<Array<Maybe<CompassJiraIssue>>>;
|
|
10887
|
-
pageInfo: PageInfo;
|
|
10888
|
-
};
|
|
10889
|
-
export declare type CompassComponentScorecardJiraIssueEdge = CompassJiraIssueEdge & {
|
|
10890
|
-
__typename?: 'CompassComponentScorecardJiraIssueEdge';
|
|
10891
|
-
cursor: Scalars['String']['output'];
|
|
10892
|
-
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
10893
|
-
node?: Maybe<CompassJiraIssue>;
|
|
10894
|
-
};
|
|
10895
|
-
export declare type CompassComponentScorecardJiraIssuesQuery = {
|
|
10896
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
10897
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10898
|
-
};
|
|
10899
|
-
export declare type CompassComponentScorecardJiraIssuesQueryResult = CompassComponentScorecardJiraIssueConnection | QueryError;
|
|
10900
10926
|
export declare type CompassComponentScorecardRelationship = {
|
|
10901
10927
|
__typename?: 'CompassComponentScorecardRelationship';
|
|
10902
10928
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
@@ -11103,17 +11129,6 @@ export declare type CompassCreateCampaignPayload = Payload & {
|
|
|
11103
11129
|
errors?: Maybe<Array<MutationError>>;
|
|
11104
11130
|
success: Scalars['Boolean']['output'];
|
|
11105
11131
|
};
|
|
11106
|
-
export declare type CompassCreateComponentScorecardJiraIssueInput = {
|
|
11107
|
-
componentId: Scalars['ID']['input'];
|
|
11108
|
-
issueId: Scalars['ID']['input'];
|
|
11109
|
-
scorecardId: Scalars['ID']['input'];
|
|
11110
|
-
url: Scalars['URL']['input'];
|
|
11111
|
-
};
|
|
11112
|
-
export declare type CompassCreateComponentScorecardJiraIssuePayload = Payload & {
|
|
11113
|
-
__typename?: 'CompassCreateComponentScorecardJiraIssuePayload';
|
|
11114
|
-
errors?: Maybe<Array<MutationError>>;
|
|
11115
|
-
success: Scalars['Boolean']['output'];
|
|
11116
|
-
};
|
|
11117
11132
|
export declare type CompassCreateComponentScorecardWorkItemInput = {
|
|
11118
11133
|
componentId: Scalars['ID']['input'];
|
|
11119
11134
|
scorecardId: Scalars['ID']['input'];
|
|
@@ -12759,18 +12774,6 @@ export declare type CompassJqlMetricSourceInstancePermissions = {
|
|
|
12759
12774
|
revokePollingUser?: Maybe<CompassPermissionResult>;
|
|
12760
12775
|
updatePollingUser?: Maybe<CompassPermissionResult>;
|
|
12761
12776
|
};
|
|
12762
|
-
export declare type CompassJiraIssue = Node & {
|
|
12763
|
-
__typename?: 'CompassJiraIssue';
|
|
12764
|
-
changeMetadata: CompassChangeMetadata;
|
|
12765
|
-
id: Scalars['ID']['output'];
|
|
12766
|
-
issueId?: Maybe<Scalars['ID']['output']>;
|
|
12767
|
-
url: Scalars['URL']['output'];
|
|
12768
|
-
};
|
|
12769
|
-
export declare type CompassJiraIssueEdge = {
|
|
12770
|
-
cursor: Scalars['String']['output'];
|
|
12771
|
-
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
12772
|
-
node?: Maybe<CompassJiraIssue>;
|
|
12773
|
-
};
|
|
12774
12777
|
export declare type CompassLibraryScorecard = Node & {
|
|
12775
12778
|
__typename?: 'CompassLibraryScorecard';
|
|
12776
12779
|
applicationModel?: Maybe<CompassScorecardApplicationModel>;
|
|
@@ -14390,17 +14393,6 @@ export declare type CompassUpdateCampaignPayload = Payload & {
|
|
|
14390
14393
|
errors?: Maybe<Array<MutationError>>;
|
|
14391
14394
|
success: Scalars['Boolean']['output'];
|
|
14392
14395
|
};
|
|
14393
|
-
export declare type CompassUpdateComponentScorecardJiraIssueInput = {
|
|
14394
|
-
componentId: Scalars['ID']['input'];
|
|
14395
|
-
isActive: Scalars['Boolean']['input'];
|
|
14396
|
-
issueId: Scalars['ID']['input'];
|
|
14397
|
-
scorecardId: Scalars['ID']['input'];
|
|
14398
|
-
};
|
|
14399
|
-
export declare type CompassUpdateComponentScorecardJiraIssuePayload = Payload & {
|
|
14400
|
-
__typename?: 'CompassUpdateComponentScorecardJiraIssuePayload';
|
|
14401
|
-
errors?: Maybe<Array<MutationError>>;
|
|
14402
|
-
success: Scalars['Boolean']['output'];
|
|
14403
|
-
};
|
|
14404
14396
|
export declare type CompassUpdateComponentScorecardWorkItemInput = {
|
|
14405
14397
|
componentId: Scalars['ID']['input'];
|
|
14406
14398
|
isActive: Scalars['Boolean']['input'];
|
|
@@ -22270,6 +22262,7 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
|
22270
22262
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
22271
22263
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
22272
22264
|
contributor?: Maybe<CplsContributor>;
|
|
22265
|
+
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
22273
22266
|
contributors: CplsContributorConnection;
|
|
22274
22267
|
id: Scalars['ID']['output'];
|
|
22275
22268
|
timeCells: Array<CplsTimeCell>;
|
|
@@ -26258,6 +26251,11 @@ export declare type DevAiRovoDevRepositoryInput = {
|
|
|
26258
26251
|
targetBranch?: InputMaybe<Scalars['String']['input']>;
|
|
26259
26252
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
26260
26253
|
};
|
|
26254
|
+
export declare enum DevAiRovoDevSandboxStatus {
|
|
26255
|
+
Created = "CREATED",
|
|
26256
|
+
Started = "STARTED",
|
|
26257
|
+
Stopped = "STOPPED"
|
|
26258
|
+
}
|
|
26261
26259
|
export declare type DevAiRovoDevSession = Node & {
|
|
26262
26260
|
__typename?: 'DevAiRovoDevSession';
|
|
26263
26261
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -26275,6 +26273,7 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
26275
26273
|
prUrl?: Maybe<Scalars['String']['output']>;
|
|
26276
26274
|
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
26277
26275
|
repository?: Maybe<DevAiRovoDevRepository>;
|
|
26276
|
+
sandboxStatus?: Maybe<DevAiRovoDevSandboxStatus>;
|
|
26278
26277
|
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
26279
26278
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
26280
26279
|
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
@@ -33049,6 +33048,12 @@ export declare enum GraphIntegrationStatus {
|
|
|
33049
33048
|
Disabled = "DISABLED",
|
|
33050
33049
|
Enabled = "ENABLED"
|
|
33051
33050
|
}
|
|
33051
|
+
export declare enum GraphIntegrationSurface {
|
|
33052
|
+
Automation = "AUTOMATION",
|
|
33053
|
+
Pollinator = "POLLINATOR",
|
|
33054
|
+
Rovo = "ROVO",
|
|
33055
|
+
Studio = "STUDIO"
|
|
33056
|
+
}
|
|
33052
33057
|
export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
33053
33058
|
__typename?: 'GraphIntegrationTwgCapabilityContainer';
|
|
33054
33059
|
connections: Array<GraphIntegrationDataConnectorConnection>;
|
|
@@ -36386,6 +36391,8 @@ export declare type GraphStore = {
|
|
|
36386
36391
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
36387
36392
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
36388
36393
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
36394
|
+
userCreatedExternalTest?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestConnection>;
|
|
36395
|
+
userCreatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestInverseConnection>;
|
|
36389
36396
|
userCreatedIssue?: Maybe<GraphStoreSimplifiedUserCreatedIssueConnection>;
|
|
36390
36397
|
userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
|
|
36391
36398
|
userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
|
|
@@ -36424,8 +36431,6 @@ export declare type GraphStore = {
|
|
|
36424
36431
|
userHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseConnection>;
|
|
36425
36432
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
36426
36433
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
36427
|
-
userHasTopCollaborator?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorConnection>;
|
|
36428
|
-
userHasTopCollaboratorInverse?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorInverseConnection>;
|
|
36429
36434
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
36430
36435
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
36431
36436
|
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
@@ -36452,6 +36457,8 @@ export declare type GraphStore = {
|
|
|
36452
36457
|
userOwnedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventInverseConnection>;
|
|
36453
36458
|
userOwnedDocument?: Maybe<GraphStoreSimplifiedUserOwnedDocumentConnection>;
|
|
36454
36459
|
userOwnedDocumentInverse?: Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseConnection>;
|
|
36460
|
+
userOwnedExternalTest?: Maybe<GraphStoreSimplifiedUserOwnedExternalTestConnection>;
|
|
36461
|
+
userOwnedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserOwnedExternalTestInverseConnection>;
|
|
36455
36462
|
userOwnedRemoteLink?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkConnection>;
|
|
36456
36463
|
userOwnedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkInverseConnection>;
|
|
36457
36464
|
userOwnedRepository?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryConnection>;
|
|
@@ -36498,6 +36505,8 @@ export declare type GraphStore = {
|
|
|
36498
36505
|
userUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection>;
|
|
36499
36506
|
userUpdatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection>;
|
|
36500
36507
|
userUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
36508
|
+
userUpdatedExternalTest?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestConnection>;
|
|
36509
|
+
userUpdatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestInverseConnection>;
|
|
36501
36510
|
userUpdatedGraphDocument?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentConnection>;
|
|
36502
36511
|
userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
|
|
36503
36512
|
userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
|
|
@@ -40704,6 +40713,20 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
40704
40713
|
id: Scalars['ID']['input'];
|
|
40705
40714
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
40706
40715
|
};
|
|
40716
|
+
export declare type GraphStoreUserCreatedExternalTestArgs = {
|
|
40717
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40718
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40719
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40720
|
+
id: Scalars['ID']['input'];
|
|
40721
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalTestSortInput>;
|
|
40722
|
+
};
|
|
40723
|
+
export declare type GraphStoreUserCreatedExternalTestInverseArgs = {
|
|
40724
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40725
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40726
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40727
|
+
id: Scalars['ID']['input'];
|
|
40728
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalTestSortInput>;
|
|
40729
|
+
};
|
|
40707
40730
|
export declare type GraphStoreUserCreatedIssueArgs = {
|
|
40708
40731
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40709
40732
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40968,20 +40991,6 @@ export declare type GraphStoreUserHasRelevantProjectInverseArgs = {
|
|
|
40968
40991
|
id: Scalars['ID']['input'];
|
|
40969
40992
|
sort?: InputMaybe<GraphStoreUserHasRelevantProjectSortInput>;
|
|
40970
40993
|
};
|
|
40971
|
-
export declare type GraphStoreUserHasTopCollaboratorArgs = {
|
|
40972
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40973
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40974
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40975
|
-
id: Scalars['ID']['input'];
|
|
40976
|
-
sort?: InputMaybe<GraphStoreUserHasTopCollaboratorSortInput>;
|
|
40977
|
-
};
|
|
40978
|
-
export declare type GraphStoreUserHasTopCollaboratorInverseArgs = {
|
|
40979
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40980
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40981
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40982
|
-
id: Scalars['ID']['input'];
|
|
40983
|
-
sort?: InputMaybe<GraphStoreUserHasTopCollaboratorSortInput>;
|
|
40984
|
-
};
|
|
40985
40994
|
export declare type GraphStoreUserHasTopProjectArgs = {
|
|
40986
40995
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40987
40996
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41166,6 +41175,20 @@ export declare type GraphStoreUserOwnedDocumentInverseArgs = {
|
|
|
41166
41175
|
id: Scalars['ID']['input'];
|
|
41167
41176
|
sort?: InputMaybe<GraphStoreUserOwnedDocumentSortInput>;
|
|
41168
41177
|
};
|
|
41178
|
+
export declare type GraphStoreUserOwnedExternalTestArgs = {
|
|
41179
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41180
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41181
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41182
|
+
id: Scalars['ID']['input'];
|
|
41183
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalTestSortInput>;
|
|
41184
|
+
};
|
|
41185
|
+
export declare type GraphStoreUserOwnedExternalTestInverseArgs = {
|
|
41186
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41187
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41188
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41189
|
+
id: Scalars['ID']['input'];
|
|
41190
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalTestSortInput>;
|
|
41191
|
+
};
|
|
41169
41192
|
export declare type GraphStoreUserOwnedRemoteLinkArgs = {
|
|
41170
41193
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41171
41194
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41490,6 +41513,20 @@ export declare type GraphStoreUserUpdatedConfluenceWhiteboardInverseArgs = {
|
|
|
41490
41513
|
id: Scalars['ID']['input'];
|
|
41491
41514
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceWhiteboardSortInput>;
|
|
41492
41515
|
};
|
|
41516
|
+
export declare type GraphStoreUserUpdatedExternalTestArgs = {
|
|
41517
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41518
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41519
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41520
|
+
id: Scalars['ID']['input'];
|
|
41521
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalTestSortInput>;
|
|
41522
|
+
};
|
|
41523
|
+
export declare type GraphStoreUserUpdatedExternalTestInverseArgs = {
|
|
41524
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41525
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41526
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41527
|
+
id: Scalars['ID']['input'];
|
|
41528
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalTestSortInput>;
|
|
41529
|
+
};
|
|
41493
41530
|
export declare type GraphStoreUserUpdatedGraphDocumentArgs = {
|
|
41494
41531
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41495
41532
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -43956,7 +43993,7 @@ export declare type GraphStoreCypherQueryResultRowItem = {
|
|
|
43956
43993
|
value: Array<GraphStoreCypherQueryValueNode>;
|
|
43957
43994
|
valueUnion?: Maybe<GraphStoreCypherQueryResultRowItemValueUnion>;
|
|
43958
43995
|
};
|
|
43959
|
-
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject;
|
|
43996
|
+
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject | GraphStoreCypherQueryTimestampObject;
|
|
43960
43997
|
export declare type GraphStoreCypherQueryRowItemNode = {
|
|
43961
43998
|
__typename?: 'GraphStoreCypherQueryRowItemNode';
|
|
43962
43999
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
@@ -43967,6 +44004,10 @@ export declare type GraphStoreCypherQueryStringObject = {
|
|
|
43967
44004
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
43968
44005
|
value: Scalars['String']['output'];
|
|
43969
44006
|
};
|
|
44007
|
+
export declare type GraphStoreCypherQueryTimestampObject = {
|
|
44008
|
+
__typename?: 'GraphStoreCypherQueryTimestampObject';
|
|
44009
|
+
value: Scalars['Long']['output'];
|
|
44010
|
+
};
|
|
43970
44011
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
43971
44012
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
43972
44013
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
@@ -44025,11 +44066,15 @@ export declare type GraphStoreCypherQueryV2BatchQueryResult = {
|
|
|
44025
44066
|
pageInfo: PageInfo;
|
|
44026
44067
|
version: Scalars['String']['output'];
|
|
44027
44068
|
};
|
|
44028
|
-
export declare type GraphStoreCypherQueryV2BatchResultRowItemValueUnion = GraphStoreCypherQueryV2BatchAriNode | GraphStoreCypherQueryV2BatchBooleanObject | GraphStoreCypherQueryV2BatchFloatObject | GraphStoreCypherQueryV2BatchIntObject | GraphStoreCypherQueryV2BatchNodeList | GraphStoreCypherQueryV2BatchStringObject;
|
|
44069
|
+
export declare type GraphStoreCypherQueryV2BatchResultRowItemValueUnion = GraphStoreCypherQueryV2BatchAriNode | GraphStoreCypherQueryV2BatchBooleanObject | GraphStoreCypherQueryV2BatchFloatObject | GraphStoreCypherQueryV2BatchIntObject | GraphStoreCypherQueryV2BatchNodeList | GraphStoreCypherQueryV2BatchStringObject | GraphStoreCypherQueryV2BatchTimestampObject;
|
|
44029
44070
|
export declare type GraphStoreCypherQueryV2BatchStringObject = {
|
|
44030
44071
|
__typename?: 'GraphStoreCypherQueryV2BatchStringObject';
|
|
44031
44072
|
value: Scalars['String']['output'];
|
|
44032
44073
|
};
|
|
44074
|
+
export declare type GraphStoreCypherQueryV2BatchTimestampObject = {
|
|
44075
|
+
__typename?: 'GraphStoreCypherQueryV2BatchTimestampObject';
|
|
44076
|
+
value: Scalars['Long']['output'];
|
|
44077
|
+
};
|
|
44033
44078
|
export declare enum GraphStoreCypherQueryV2BatchVersionEnum {
|
|
44034
44079
|
V2 = "V2",
|
|
44035
44080
|
V3 = "V3"
|
|
@@ -44070,11 +44115,15 @@ export declare type GraphStoreCypherQueryV2NodeList = {
|
|
|
44070
44115
|
__typename?: 'GraphStoreCypherQueryV2NodeList';
|
|
44071
44116
|
nodes: Array<GraphStoreCypherQueryV2AriNode>;
|
|
44072
44117
|
};
|
|
44073
|
-
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2StringObject;
|
|
44118
|
+
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2StringObject | GraphStoreCypherQueryV2TimestampObject;
|
|
44074
44119
|
export declare type GraphStoreCypherQueryV2StringObject = {
|
|
44075
44120
|
__typename?: 'GraphStoreCypherQueryV2StringObject';
|
|
44076
44121
|
value: Scalars['String']['output'];
|
|
44077
44122
|
};
|
|
44123
|
+
export declare type GraphStoreCypherQueryV2TimestampObject = {
|
|
44124
|
+
__typename?: 'GraphStoreCypherQueryV2TimestampObject';
|
|
44125
|
+
value: Scalars['Long']['output'];
|
|
44126
|
+
};
|
|
44078
44127
|
export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
44079
44128
|
V2 = "V2",
|
|
44080
44129
|
V3 = "V3"
|
|
@@ -55446,6 +55495,34 @@ export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
|
|
|
55446
55495
|
};
|
|
55447
55496
|
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55448
55497
|
export declare type GraphStoreSimplifiedUserCreatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
55498
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalTestConnection = HasPageInfo & {
|
|
55499
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalTestConnection';
|
|
55500
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalTestEdge>>>;
|
|
55501
|
+
pageInfo: PageInfo;
|
|
55502
|
+
};
|
|
55503
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalTestEdge = {
|
|
55504
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalTestEdge';
|
|
55505
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55506
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55507
|
+
id: Scalars['ID']['output'];
|
|
55508
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55509
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestUnion>;
|
|
55510
|
+
};
|
|
55511
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseConnection = HasPageInfo & {
|
|
55512
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalTestInverseConnection';
|
|
55513
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalTestInverseEdge>>>;
|
|
55514
|
+
pageInfo: PageInfo;
|
|
55515
|
+
};
|
|
55516
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseEdge = {
|
|
55517
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalTestInverseEdge';
|
|
55518
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55519
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55520
|
+
id: Scalars['ID']['output'];
|
|
55521
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55522
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestInverseUnion>;
|
|
55523
|
+
};
|
|
55524
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55525
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalTestUnion = ExternalTest;
|
|
55449
55526
|
export declare type GraphStoreSimplifiedUserCreatedIssueCommentConnection = HasPageInfo & {
|
|
55450
55527
|
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentConnection';
|
|
55451
55528
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentEdge>>>;
|
|
@@ -55958,34 +56035,6 @@ export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseEdge = {
|
|
|
55958
56035
|
};
|
|
55959
56036
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55960
56037
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectUnion = JiraProject;
|
|
55961
|
-
export declare type GraphStoreSimplifiedUserHasTopCollaboratorConnection = HasPageInfo & {
|
|
55962
|
-
__typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorConnection';
|
|
55963
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopCollaboratorEdge>>>;
|
|
55964
|
-
pageInfo: PageInfo;
|
|
55965
|
-
};
|
|
55966
|
-
export declare type GraphStoreSimplifiedUserHasTopCollaboratorEdge = {
|
|
55967
|
-
__typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorEdge';
|
|
55968
|
-
createdAt: Scalars['DateTime']['output'];
|
|
55969
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
55970
|
-
id: Scalars['ID']['output'];
|
|
55971
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
55972
|
-
node?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorUnion>;
|
|
55973
|
-
};
|
|
55974
|
-
export declare type GraphStoreSimplifiedUserHasTopCollaboratorInverseConnection = HasPageInfo & {
|
|
55975
|
-
__typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorInverseConnection';
|
|
55976
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopCollaboratorInverseEdge>>>;
|
|
55977
|
-
pageInfo: PageInfo;
|
|
55978
|
-
};
|
|
55979
|
-
export declare type GraphStoreSimplifiedUserHasTopCollaboratorInverseEdge = {
|
|
55980
|
-
__typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorInverseEdge';
|
|
55981
|
-
createdAt: Scalars['DateTime']['output'];
|
|
55982
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
55983
|
-
id: Scalars['ID']['output'];
|
|
55984
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
55985
|
-
node?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorInverseUnion>;
|
|
55986
|
-
};
|
|
55987
|
-
export declare type GraphStoreSimplifiedUserHasTopCollaboratorInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55988
|
-
export declare type GraphStoreSimplifiedUserHasTopCollaboratorUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55989
56038
|
export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
|
|
55990
56039
|
__typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
|
|
55991
56040
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopProjectEdge>>>;
|
|
@@ -56354,6 +56403,34 @@ export declare type GraphStoreSimplifiedUserOwnedDocumentInverseEdge = {
|
|
|
56354
56403
|
};
|
|
56355
56404
|
export declare type GraphStoreSimplifiedUserOwnedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
56356
56405
|
export declare type GraphStoreSimplifiedUserOwnedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
56406
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalTestConnection = HasPageInfo & {
|
|
56407
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalTestConnection';
|
|
56408
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalTestEdge>>>;
|
|
56409
|
+
pageInfo: PageInfo;
|
|
56410
|
+
};
|
|
56411
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalTestEdge = {
|
|
56412
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalTestEdge';
|
|
56413
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56414
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56415
|
+
id: Scalars['ID']['output'];
|
|
56416
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56417
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalTestUnion>;
|
|
56418
|
+
};
|
|
56419
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalTestInverseConnection = HasPageInfo & {
|
|
56420
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalTestInverseConnection';
|
|
56421
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalTestInverseEdge>>>;
|
|
56422
|
+
pageInfo: PageInfo;
|
|
56423
|
+
};
|
|
56424
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalTestInverseEdge = {
|
|
56425
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalTestInverseEdge';
|
|
56426
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56427
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56428
|
+
id: Scalars['ID']['output'];
|
|
56429
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56430
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalTestInverseUnion>;
|
|
56431
|
+
};
|
|
56432
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
56433
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalTestUnion = ExternalTest;
|
|
56357
56434
|
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkConnection = HasPageInfo & {
|
|
56358
56435
|
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkConnection';
|
|
56359
56436
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkEdge>>>;
|
|
@@ -57002,6 +57079,34 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEd
|
|
|
57002
57079
|
};
|
|
57003
57080
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
57004
57081
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
57082
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalTestConnection = HasPageInfo & {
|
|
57083
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalTestConnection';
|
|
57084
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalTestEdge>>>;
|
|
57085
|
+
pageInfo: PageInfo;
|
|
57086
|
+
};
|
|
57087
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalTestEdge = {
|
|
57088
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalTestEdge';
|
|
57089
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57090
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57091
|
+
id: Scalars['ID']['output'];
|
|
57092
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57093
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestUnion>;
|
|
57094
|
+
};
|
|
57095
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalTestInverseConnection = HasPageInfo & {
|
|
57096
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalTestInverseConnection';
|
|
57097
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalTestInverseEdge>>>;
|
|
57098
|
+
pageInfo: PageInfo;
|
|
57099
|
+
};
|
|
57100
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalTestInverseEdge = {
|
|
57101
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalTestInverseEdge';
|
|
57102
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57103
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57104
|
+
id: Scalars['ID']['output'];
|
|
57105
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57106
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestInverseUnion>;
|
|
57107
|
+
};
|
|
57108
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
57109
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalTestUnion = ExternalTest;
|
|
57005
57110
|
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentConnection = HasPageInfo & {
|
|
57006
57111
|
__typename?: 'GraphStoreSimplifiedUserUpdatedGraphDocumentConnection';
|
|
57007
57112
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentEdge>>>;
|
|
@@ -58267,6 +58372,9 @@ export declare type GraphStoreUserCreatedDesignSortInput = {
|
|
|
58267
58372
|
export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
58268
58373
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58269
58374
|
};
|
|
58375
|
+
export declare type GraphStoreUserCreatedExternalTestSortInput = {
|
|
58376
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58377
|
+
};
|
|
58270
58378
|
export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
58271
58379
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58272
58380
|
};
|
|
@@ -58327,9 +58435,6 @@ export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
|
58327
58435
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58328
58436
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
58329
58437
|
};
|
|
58330
|
-
export declare type GraphStoreUserHasTopCollaboratorSortInput = {
|
|
58331
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58332
|
-
};
|
|
58333
58438
|
export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
58334
58439
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58335
58440
|
};
|
|
@@ -58390,6 +58495,9 @@ export declare type GraphStoreUserOwnedCalendarEventSortInput = {
|
|
|
58390
58495
|
export declare type GraphStoreUserOwnedDocumentSortInput = {
|
|
58391
58496
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58392
58497
|
};
|
|
58498
|
+
export declare type GraphStoreUserOwnedExternalTestSortInput = {
|
|
58499
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58500
|
+
};
|
|
58393
58501
|
export declare type GraphStoreUserOwnedRemoteLinkSortInput = {
|
|
58394
58502
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58395
58503
|
};
|
|
@@ -58472,6 +58580,9 @@ export declare type GraphStoreUserUpdatedConfluenceSpaceSortInput = {
|
|
|
58472
58580
|
export declare type GraphStoreUserUpdatedConfluenceWhiteboardSortInput = {
|
|
58473
58581
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58474
58582
|
};
|
|
58583
|
+
export declare type GraphStoreUserUpdatedExternalTestSortInput = {
|
|
58584
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58585
|
+
};
|
|
58475
58586
|
export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
58476
58587
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58477
58588
|
};
|
|
@@ -62759,6 +62870,29 @@ export declare type JiraAffectedServicesFieldPayload = Payload & {
|
|
|
62759
62870
|
export declare type JiraAffectedServicesInput = {
|
|
62760
62871
|
serviceId: Scalars['ID']['input'];
|
|
62761
62872
|
};
|
|
62873
|
+
export declare type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
|
|
62874
|
+
export declare type JiraAggregatedTimelineField = JiraIssueField & JiraTimelineVirtualField & Node & {
|
|
62875
|
+
__typename?: 'JiraAggregatedTimelineField';
|
|
62876
|
+
aggregatedEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
62877
|
+
aggregatedStartDateViewField?: Maybe<JiraAggregatedDate>;
|
|
62878
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
62879
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
62880
|
+
fieldId: Scalars['String']['output'];
|
|
62881
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
62882
|
+
id: Scalars['ID']['output'];
|
|
62883
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
62884
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
62885
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
62886
|
+
issue?: Maybe<JiraIssue>;
|
|
62887
|
+
name: Scalars['String']['output'];
|
|
62888
|
+
type: Scalars['String']['output'];
|
|
62889
|
+
};
|
|
62890
|
+
export declare type JiraAggregatedTimelineFieldAggregatedEndDateViewFieldArgs = {
|
|
62891
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
62892
|
+
};
|
|
62893
|
+
export declare type JiraAggregatedTimelineFieldAggregatedStartDateViewFieldArgs = {
|
|
62894
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
62895
|
+
};
|
|
62762
62896
|
export declare type JiraAiAgentSession = {
|
|
62763
62897
|
__typename?: 'JiraAiAgentSession';
|
|
62764
62898
|
agent?: Maybe<User>;
|
|
@@ -63758,6 +63892,8 @@ export declare type JiraBacklogColorConfig = {
|
|
|
63758
63892
|
export declare type JiraBacklogColumn = {
|
|
63759
63893
|
__typename?: 'JiraBacklogColumn';
|
|
63760
63894
|
id?: Maybe<Scalars['Long']['output']>;
|
|
63895
|
+
max?: Maybe<Scalars['Int']['output']>;
|
|
63896
|
+
min?: Maybe<Scalars['Int']['output']>;
|
|
63761
63897
|
name?: Maybe<Scalars['String']['output']>;
|
|
63762
63898
|
statusIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
63763
63899
|
};
|
|
@@ -63780,6 +63916,11 @@ export declare type JiraBacklogData = {
|
|
|
63780
63916
|
supportsPages?: Maybe<Scalars['Boolean']['output']>;
|
|
63781
63917
|
versionData?: Maybe<JiraBacklogVersionData>;
|
|
63782
63918
|
};
|
|
63919
|
+
export declare enum JiraBacklogDestination {
|
|
63920
|
+
Backlog = "BACKLOG",
|
|
63921
|
+
Board = "BOARD",
|
|
63922
|
+
Sprint = "SPRINT"
|
|
63923
|
+
}
|
|
63783
63924
|
export declare type JiraBacklogEpicConfig = {
|
|
63784
63925
|
__typename?: 'JiraBacklogEpicConfig';
|
|
63785
63926
|
colorFieldId?: Maybe<Scalars['String']['output']>;
|
|
@@ -64392,6 +64533,7 @@ export declare type JiraBoardViewColumnLayout = Node & {
|
|
|
64392
64533
|
export declare type JiraBoardViewColumnLayoutCellsArgs = {
|
|
64393
64534
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64394
64535
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64536
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
64395
64537
|
};
|
|
64396
64538
|
export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
64397
64539
|
__typename?: 'JiraBoardViewFieldCardOption';
|
|
@@ -65328,6 +65470,18 @@ export declare enum JiraClassificationLevelType {
|
|
|
65328
65470
|
System = "SYSTEM",
|
|
65329
65471
|
User = "USER"
|
|
65330
65472
|
}
|
|
65473
|
+
export declare type JiraClearBoardIssueCardCoverInput = {
|
|
65474
|
+
issueId: Scalars['ID']['input'];
|
|
65475
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
65476
|
+
viewId: Scalars['ID']['input'];
|
|
65477
|
+
};
|
|
65478
|
+
export declare type JiraClearBoardIssueCardCoverPayload = Payload & {
|
|
65479
|
+
__typename?: 'JiraClearBoardIssueCardCoverPayload';
|
|
65480
|
+
boardView?: Maybe<JiraBoardView>;
|
|
65481
|
+
errors?: Maybe<Array<MutationError>>;
|
|
65482
|
+
issue?: Maybe<JiraIssue>;
|
|
65483
|
+
success: Scalars['Boolean']['output'];
|
|
65484
|
+
};
|
|
65331
65485
|
export declare type JiraClearableDateFieldInput = {
|
|
65332
65486
|
date?: InputMaybe<JiraDateInput>;
|
|
65333
65487
|
fieldId: Scalars['ID']['input'];
|
|
@@ -69262,6 +69416,38 @@ export declare type JiraInitializeProjectNotificationPreferencesPayload = Payloa
|
|
|
69262
69416
|
projectPreferences?: Maybe<JiraNotificationProjectPreferences>;
|
|
69263
69417
|
success: Scalars['Boolean']['output'];
|
|
69264
69418
|
};
|
|
69419
|
+
export declare type JiraInlineIssueCreateField = {
|
|
69420
|
+
__typename?: 'JiraInlineIssueCreateField';
|
|
69421
|
+
error?: Maybe<JiraInlineIssueCreateFieldError>;
|
|
69422
|
+
fieldId: Scalars['String']['output'];
|
|
69423
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
69424
|
+
};
|
|
69425
|
+
export declare type JiraInlineIssueCreateFieldError = {
|
|
69426
|
+
__typename?: 'JiraInlineIssueCreateFieldError';
|
|
69427
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
69428
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
69429
|
+
};
|
|
69430
|
+
export declare type JiraInlineIssueCreateInput = {
|
|
69431
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
69432
|
+
destination?: InputMaybe<JiraBacklogDestination>;
|
|
69433
|
+
fields: JiraIssueFieldsInput;
|
|
69434
|
+
issueTypeId: Scalars['ID']['input'];
|
|
69435
|
+
projectId: Scalars['ID']['input'];
|
|
69436
|
+
rank?: InputMaybe<JiraIssueCreateRankInput>;
|
|
69437
|
+
};
|
|
69438
|
+
export declare type JiraInlineIssueCreatePayload = Payload & {
|
|
69439
|
+
__typename?: 'JiraInlineIssueCreatePayload';
|
|
69440
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69441
|
+
issue?: Maybe<JiraIssue>;
|
|
69442
|
+
skippedFields?: Maybe<Array<JiraInlineIssueCreateField>>;
|
|
69443
|
+
success: Scalars['Boolean']['output'];
|
|
69444
|
+
};
|
|
69445
|
+
export declare type JiraInlineIssuesCreatePayload = Payload & {
|
|
69446
|
+
__typename?: 'JiraInlineIssuesCreatePayload';
|
|
69447
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69448
|
+
issues?: Maybe<Array<JiraInlineIssueCreatePayload>>;
|
|
69449
|
+
success: Scalars['Boolean']['output'];
|
|
69450
|
+
};
|
|
69265
69451
|
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
69266
69452
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
69267
69453
|
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
@@ -69303,6 +69489,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
69303
69489
|
configurationUrl?: Maybe<Scalars['URL']['output']>;
|
|
69304
69490
|
confluenceLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
69305
69491
|
confluenceMentionedLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
69492
|
+
connectActivityPanels?: Maybe<JiraIssueConnectActivityPanelConnection>;
|
|
69493
|
+
connectBackgroundScripts?: Maybe<JiraIssueConnectBackgroundScriptConnection>;
|
|
69306
69494
|
connectOperations?: Maybe<JiraIssueConnectOperationConnection>;
|
|
69307
69495
|
contentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
69308
69496
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
@@ -69474,6 +69662,18 @@ export declare type JiraIssueConfluenceMentionedLinksArgs = {
|
|
|
69474
69662
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69475
69663
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69476
69664
|
};
|
|
69665
|
+
export declare type JiraIssueConnectActivityPanelsArgs = {
|
|
69666
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69667
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
69668
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69669
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69670
|
+
};
|
|
69671
|
+
export declare type JiraIssueConnectBackgroundScriptsArgs = {
|
|
69672
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69673
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
69674
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69675
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69676
|
+
};
|
|
69477
69677
|
export declare type JiraIssueConnectOperationsArgs = {
|
|
69478
69678
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69479
69679
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69843,6 +70043,40 @@ export declare type JiraIssueCommits = {
|
|
|
69843
70043
|
export declare type JiraIssueCommitsInput = {
|
|
69844
70044
|
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69845
70045
|
};
|
|
70046
|
+
export declare type JiraIssueConnectActivityPanel = {
|
|
70047
|
+
__typename?: 'JiraIssueConnectActivityPanel';
|
|
70048
|
+
addonKey?: Maybe<Scalars['String']['output']>;
|
|
70049
|
+
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
70050
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
70051
|
+
options?: Maybe<Scalars['String']['output']>;
|
|
70052
|
+
};
|
|
70053
|
+
export declare type JiraIssueConnectActivityPanelConnection = {
|
|
70054
|
+
__typename?: 'JiraIssueConnectActivityPanelConnection';
|
|
70055
|
+
edges?: Maybe<Array<Maybe<JiraIssueConnectActivityPanelEdge>>>;
|
|
70056
|
+
pageInfo: PageInfo;
|
|
70057
|
+
};
|
|
70058
|
+
export declare type JiraIssueConnectActivityPanelEdge = {
|
|
70059
|
+
__typename?: 'JiraIssueConnectActivityPanelEdge';
|
|
70060
|
+
cursor: Scalars['String']['output'];
|
|
70061
|
+
node?: Maybe<JiraIssueConnectActivityPanel>;
|
|
70062
|
+
};
|
|
70063
|
+
export declare type JiraIssueConnectBackgroundScript = {
|
|
70064
|
+
__typename?: 'JiraIssueConnectBackgroundScript';
|
|
70065
|
+
addonKey?: Maybe<Scalars['String']['output']>;
|
|
70066
|
+
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
70067
|
+
options?: Maybe<Scalars['String']['output']>;
|
|
70068
|
+
shouldReloadOnRefresh?: Maybe<Scalars['Boolean']['output']>;
|
|
70069
|
+
};
|
|
70070
|
+
export declare type JiraIssueConnectBackgroundScriptConnection = {
|
|
70071
|
+
__typename?: 'JiraIssueConnectBackgroundScriptConnection';
|
|
70072
|
+
edges?: Maybe<Array<Maybe<JiraIssueConnectBackgroundScriptEdge>>>;
|
|
70073
|
+
pageInfo: PageInfo;
|
|
70074
|
+
};
|
|
70075
|
+
export declare type JiraIssueConnectBackgroundScriptEdge = {
|
|
70076
|
+
__typename?: 'JiraIssueConnectBackgroundScriptEdge';
|
|
70077
|
+
cursor: Scalars['String']['output'];
|
|
70078
|
+
node?: Maybe<JiraIssueConnectBackgroundScript>;
|
|
70079
|
+
};
|
|
69846
70080
|
export declare type JiraIssueConnectOperation = {
|
|
69847
70081
|
__typename?: 'JiraIssueConnectOperation';
|
|
69848
70082
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -71257,6 +71491,10 @@ export declare type JiraIssueSection = {
|
|
|
71257
71491
|
msg?: Maybe<Scalars['String']['output']>;
|
|
71258
71492
|
sub?: Maybe<Scalars['String']['output']>;
|
|
71259
71493
|
};
|
|
71494
|
+
export declare type JiraIssueStreamHubEventPayloadComment = {
|
|
71495
|
+
__typename?: 'JiraIssueStreamHubEventPayloadComment';
|
|
71496
|
+
id: Scalars['Int']['output'];
|
|
71497
|
+
};
|
|
71260
71498
|
export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
71261
71499
|
__typename?: 'JiraIssueStreamHubEventPayloadProject';
|
|
71262
71500
|
id: Scalars['Int']['output'];
|
|
@@ -71488,6 +71726,7 @@ export declare enum JiraIssueViewActivityLayout {
|
|
|
71488
71726
|
Vertical = "VERTICAL"
|
|
71489
71727
|
}
|
|
71490
71728
|
export declare enum JiraIssueViewAttachmentPanelViewMode {
|
|
71729
|
+
GridView = "GRID_VIEW",
|
|
71491
71730
|
ListView = "LIST_VIEW",
|
|
71492
71731
|
StripView = "STRIP_VIEW"
|
|
71493
71732
|
}
|
|
@@ -75546,6 +75785,7 @@ export declare type JiraPriorityInput = {
|
|
|
75546
75785
|
export declare type JiraProductDiscoveryIssueEventPayload = {
|
|
75547
75786
|
__typename?: 'JiraProductDiscoveryIssueEventPayload';
|
|
75548
75787
|
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
75788
|
+
comment?: Maybe<JiraIssueStreamHubEventPayloadComment>;
|
|
75549
75789
|
project: JiraIssueStreamHubEventPayloadProject;
|
|
75550
75790
|
resource: Scalars['String']['output'];
|
|
75551
75791
|
type: Scalars['String']['output'];
|
|
@@ -78395,7 +78635,8 @@ export declare type JiraResource = {
|
|
|
78395
78635
|
export declare enum JiraResourceIntegration {
|
|
78396
78636
|
Attachment = "ATTACHMENT",
|
|
78397
78637
|
Confluence = "CONFLUENCE",
|
|
78398
|
-
Loom = "LOOM"
|
|
78638
|
+
Loom = "LOOM",
|
|
78639
|
+
Whiteboard = "WHITEBOARD"
|
|
78399
78640
|
}
|
|
78400
78641
|
export declare type JiraResourceNode = {
|
|
78401
78642
|
__typename?: 'JiraResourceNode';
|
|
@@ -81665,7 +81906,7 @@ export declare enum JiraTimeUnit {
|
|
|
81665
81906
|
Minute = "MINUTE",
|
|
81666
81907
|
Week = "WEEK"
|
|
81667
81908
|
}
|
|
81668
|
-
export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
81909
|
+
export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfiguration & JiraTimelineVirtualField & Node & {
|
|
81669
81910
|
__typename?: 'JiraTimelineField';
|
|
81670
81911
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
81671
81912
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -81748,6 +81989,9 @@ export declare type JiraTimelineViewViewSettingsArgs = {
|
|
|
81748
81989
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
81749
81990
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
81750
81991
|
};
|
|
81992
|
+
export declare type JiraTimelineVirtualField = {
|
|
81993
|
+
issue?: Maybe<JiraIssue>;
|
|
81994
|
+
};
|
|
81751
81995
|
export declare type JiraToolchain = {
|
|
81752
81996
|
__typename?: 'JiraToolchain';
|
|
81753
81997
|
hasViewDevToolsPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -81762,6 +82006,7 @@ export declare type JiraTownsquareProject = {
|
|
|
81762
82006
|
hasPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
81763
82007
|
iconName?: Maybe<Scalars['String']['output']>;
|
|
81764
82008
|
id: Scalars['ID']['output'];
|
|
82009
|
+
isWorkspaceActive?: Maybe<Scalars['Boolean']['output']>;
|
|
81765
82010
|
key?: Maybe<Scalars['String']['output']>;
|
|
81766
82011
|
name?: Maybe<Scalars['String']['output']>;
|
|
81767
82012
|
ownerAaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -82666,6 +82911,7 @@ export declare type JiraUserPreferences = {
|
|
|
82666
82911
|
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
82667
82912
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
82668
82913
|
issueViewCollapsibleSectionsState?: Maybe<JiraIssueViewCollapsibleSections>;
|
|
82914
|
+
issueViewContextPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
|
|
82669
82915
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
82670
82916
|
issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
|
|
82671
82917
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
@@ -82690,6 +82936,9 @@ export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplat
|
|
|
82690
82936
|
export declare type JiraUserPreferencesIssueViewCollapsibleSectionsStateArgs = {
|
|
82691
82937
|
projectKey: Scalars['String']['input'];
|
|
82692
82938
|
};
|
|
82939
|
+
export declare type JiraUserPreferencesIssueViewContextPanelFieldsOrderArgs = {
|
|
82940
|
+
projectKey: Scalars['String']['input'];
|
|
82941
|
+
};
|
|
82693
82942
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
82694
82943
|
projectKey: Scalars['String']['input'];
|
|
82695
82944
|
};
|
|
@@ -90114,6 +90363,7 @@ export declare type MercuryCustomFieldDefinition = {
|
|
|
90114
90363
|
id: Scalars['ID']['output'];
|
|
90115
90364
|
name: Scalars['String']['output'];
|
|
90116
90365
|
scope: MercuryCustomFieldDefinitionScope;
|
|
90366
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
90117
90367
|
updatedBy?: Maybe<User>;
|
|
90118
90368
|
updatedDate: Scalars['DateTime']['output'];
|
|
90119
90369
|
};
|
|
@@ -90402,6 +90652,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
90402
90652
|
targetDate?: Maybe<MercuryTargetDate>;
|
|
90403
90653
|
updatedDate: Scalars['String']['output'];
|
|
90404
90654
|
url?: Maybe<Scalars['String']['output']>;
|
|
90655
|
+
userPermissions?: Maybe<Array<MercuryFocusAreaPermission>>;
|
|
90405
90656
|
uuid: Scalars['UUID']['output'];
|
|
90406
90657
|
watchers?: Maybe<MercuryUserConnection>;
|
|
90407
90658
|
watching: Scalars['Boolean']['output'];
|
|
@@ -90580,6 +90831,24 @@ export declare type MercuryFocusAreaLinks = {
|
|
|
90580
90831
|
__typename?: 'MercuryFocusAreaLinks';
|
|
90581
90832
|
links: Array<MercuryFocusAreaLink>;
|
|
90582
90833
|
};
|
|
90834
|
+
export declare enum MercuryFocusAreaPermission {
|
|
90835
|
+
Archive = "ARCHIVE",
|
|
90836
|
+
CreateGoalLink = "CREATE_GOAL_LINK",
|
|
90837
|
+
CreateLink = "CREATE_LINK",
|
|
90838
|
+
CreateUpdate = "CREATE_UPDATE",
|
|
90839
|
+
CreateWorkLink = "CREATE_WORK_LINK",
|
|
90840
|
+
Delete = "DELETE",
|
|
90841
|
+
DeleteGoalLink = "DELETE_GOAL_LINK",
|
|
90842
|
+
DeleteLink = "DELETE_LINK",
|
|
90843
|
+
DeleteUpdate = "DELETE_UPDATE",
|
|
90844
|
+
DeleteWorkLink = "DELETE_WORK_LINK",
|
|
90845
|
+
EditAbout = "EDIT_ABOUT",
|
|
90846
|
+
EditName = "EDIT_NAME",
|
|
90847
|
+
EditOwner = "EDIT_OWNER",
|
|
90848
|
+
EditType = "EDIT_TYPE",
|
|
90849
|
+
Export = "EXPORT",
|
|
90850
|
+
ViewFund = "VIEW_FUND"
|
|
90851
|
+
}
|
|
90583
90852
|
export declare type MercuryFocusAreaPositionChangeSummary = {
|
|
90584
90853
|
__typename?: 'MercuryFocusAreaPositionChangeSummary';
|
|
90585
90854
|
movedInCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -91217,6 +91486,7 @@ export declare type MercuryNumberCustomFieldDefinition = MercuryCustomFieldDefin
|
|
|
91217
91486
|
id: Scalars['ID']['output'];
|
|
91218
91487
|
name: Scalars['String']['output'];
|
|
91219
91488
|
scope: MercuryCustomFieldDefinitionScope;
|
|
91489
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
91220
91490
|
updatedBy?: Maybe<User>;
|
|
91221
91491
|
updatedDate: Scalars['DateTime']['output'];
|
|
91222
91492
|
};
|
|
@@ -91860,6 +92130,7 @@ export declare type MercurySingleSelectCustomFieldDefinition = MercuryCustomFiel
|
|
|
91860
92130
|
name: Scalars['String']['output'];
|
|
91861
92131
|
options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
91862
92132
|
scope: MercuryCustomFieldDefinitionScope;
|
|
92133
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
91863
92134
|
updatedBy?: Maybe<User>;
|
|
91864
92135
|
updatedDate: Scalars['DateTime']['output'];
|
|
91865
92136
|
};
|
|
@@ -92281,6 +92552,7 @@ export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinit
|
|
|
92281
92552
|
id: Scalars['ID']['output'];
|
|
92282
92553
|
name: Scalars['String']['output'];
|
|
92283
92554
|
scope: MercuryCustomFieldDefinitionScope;
|
|
92555
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
92284
92556
|
updatedBy?: Maybe<User>;
|
|
92285
92557
|
updatedDate: Scalars['DateTime']['output'];
|
|
92286
92558
|
};
|
|
@@ -92941,6 +93213,7 @@ export declare type Mutation = {
|
|
|
92941
93213
|
avp_createVariable?: Maybe<AvpCreateVariablePayload>;
|
|
92942
93214
|
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
92943
93215
|
avp_deleteDashboardFilter?: Maybe<AvpDeleteDashboardFilterPayload>;
|
|
93216
|
+
avp_deleteVariable?: Maybe<AvpDeleteVariablePayload>;
|
|
92944
93217
|
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
92945
93218
|
avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
|
|
92946
93219
|
avp_moveDashboardRow?: Maybe<AvpMoveDashboardRowPayload>;
|
|
@@ -92953,6 +93226,7 @@ export declare type Mutation = {
|
|
|
92953
93226
|
avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
|
|
92954
93227
|
avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
|
|
92955
93228
|
avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
|
|
93229
|
+
avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
|
|
92956
93230
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
92957
93231
|
bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
|
|
92958
93232
|
bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
|
|
@@ -93262,7 +93536,9 @@ export declare type Mutation = {
|
|
|
93262
93536
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
93263
93537
|
jira_archiveIssueAsync?: Maybe<JiraIssueArchiveAsyncPayload>;
|
|
93264
93538
|
jira_associateProjectToFieldScheme?: Maybe<JiraAssociateProjectToFieldSchemePayload>;
|
|
93539
|
+
jira_bulkCreateInlineIssuesOptimistic?: Maybe<JiraInlineIssuesCreatePayload>;
|
|
93265
93540
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
93541
|
+
jira_clearBoardIssueCardCover?: Maybe<JiraClearBoardIssueCardCoverPayload>;
|
|
93266
93542
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
93267
93543
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
93268
93544
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
@@ -93967,6 +94243,9 @@ export declare type MutationAvp_DeleteChartArgs = {
|
|
|
93967
94243
|
export declare type MutationAvp_DeleteDashboardFilterArgs = {
|
|
93968
94244
|
input: AvpDeleteDashboardFilterInput;
|
|
93969
94245
|
};
|
|
94246
|
+
export declare type MutationAvp_DeleteVariableArgs = {
|
|
94247
|
+
input: AvpDeleteVariableInput;
|
|
94248
|
+
};
|
|
93970
94249
|
export declare type MutationAvp_MoveCanvasElementArgs = {
|
|
93971
94250
|
input: AvpMoveCanvasElementInput;
|
|
93972
94251
|
};
|
|
@@ -94003,6 +94282,9 @@ export declare type MutationAvp_UpdateDashboardRowNumElementsArgs = {
|
|
|
94003
94282
|
export declare type MutationAvp_UpdateDashboardStatusArgs = {
|
|
94004
94283
|
input: AvpUpdateDashboardStatusInput;
|
|
94005
94284
|
};
|
|
94285
|
+
export declare type MutationAvp_UpdateVariableArgs = {
|
|
94286
|
+
input: AvpUpdateVariableInput;
|
|
94287
|
+
};
|
|
94006
94288
|
export declare type MutationBoardCardMoveArgs = {
|
|
94007
94289
|
input?: InputMaybe<BoardCardMoveInput>;
|
|
94008
94290
|
};
|
|
@@ -95075,9 +95357,15 @@ export declare type MutationJira_AssociateProjectToFieldSchemeArgs = {
|
|
|
95075
95357
|
cloudId: Scalars['ID']['input'];
|
|
95076
95358
|
input: JiraAssociateProjectToFieldSchemeInput;
|
|
95077
95359
|
};
|
|
95360
|
+
export declare type MutationJira_BulkCreateInlineIssuesOptimisticArgs = {
|
|
95361
|
+
input: Array<JiraInlineIssueCreateInput>;
|
|
95362
|
+
};
|
|
95078
95363
|
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
95079
95364
|
input: JiraBulkSetBoardViewColumnStateInput;
|
|
95080
95365
|
};
|
|
95366
|
+
export declare type MutationJira_ClearBoardIssueCardCoverArgs = {
|
|
95367
|
+
input: JiraClearBoardIssueCardCoverInput;
|
|
95368
|
+
};
|
|
95081
95369
|
export declare type MutationJira_CreateBoardViewStatusColumnArgs = {
|
|
95082
95370
|
input: JiraCreateBoardViewStatusColumnInput;
|
|
95083
95371
|
};
|
|
@@ -99060,6 +99348,7 @@ export declare type Query = {
|
|
|
99060
99348
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
99061
99349
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
99062
99350
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
99351
|
+
admin_eventActions?: Maybe<AdminGroupEventActionConnection>;
|
|
99063
99352
|
admin_group?: Maybe<AdminGroup>;
|
|
99064
99353
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
99065
99354
|
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
@@ -99802,6 +100091,7 @@ export declare type Query = {
|
|
|
99802
100091
|
stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
|
|
99803
100092
|
stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
99804
100093
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
100094
|
+
stakeholderComms_getFileReadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
99805
100095
|
stakeholderComms_getFlattenedStakeholdersList?: Maybe<StakeholderCommsGetStakeholderListResponse>;
|
|
99806
100096
|
stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
99807
100097
|
stakeholderComms_getLicenseUsageLimit?: Maybe<StakeholderCommsLicenseUsage>;
|
|
@@ -99820,6 +100110,7 @@ export declare type Query = {
|
|
|
99820
100110
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
99821
100111
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
99822
100112
|
stakeholderComms_getStakeholdersbyAri?: Maybe<Array<Maybe<StakeholderCommsSimplifiedStakeholder>>>;
|
|
100113
|
+
stakeholderComms_getUploadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
99823
100114
|
stakeholderComms_getWorkspaceAriMappingByCustomDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
99824
100115
|
stakeholderComms_getWorkspaceAriMappingByPageId?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
99825
100116
|
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
@@ -99840,6 +100131,7 @@ export declare type Query = {
|
|
|
99840
100131
|
teamworkGraph_userCommented?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99841
100132
|
teamworkGraph_userCreated?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99842
100133
|
teamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100134
|
+
teamworkGraph_userTeams?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99843
100135
|
teamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99844
100136
|
teamworkGraph_userTopRecentReferencers?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
99845
100137
|
teamworkGraph_userViewed?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -99923,6 +100215,13 @@ export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
|
|
|
99923
100215
|
orgId: Scalars['ID']['input'];
|
|
99924
100216
|
principal: Scalars['ID']['input'];
|
|
99925
100217
|
};
|
|
100218
|
+
export declare type QueryAdmin_EventActionsArgs = {
|
|
100219
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
100220
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
100221
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100222
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
100223
|
+
orgId: Scalars['ID']['input'];
|
|
100224
|
+
};
|
|
99926
100225
|
export declare type QueryAdmin_GroupArgs = {
|
|
99927
100226
|
input?: InputMaybe<AdminFetchGroupInput>;
|
|
99928
100227
|
};
|
|
@@ -101895,6 +102194,7 @@ export declare type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
|
101895
102194
|
cloudId: Scalars['ID']['input'];
|
|
101896
102195
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101897
102196
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
102197
|
+
surface?: InputMaybe<GraphIntegrationSurface>;
|
|
101898
102198
|
};
|
|
101899
102199
|
export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
101900
102200
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -101903,6 +102203,7 @@ export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
|
101903
102203
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101904
102204
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
101905
102205
|
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
102206
|
+
surface?: InputMaybe<GraphIntegrationSurface>;
|
|
101906
102207
|
};
|
|
101907
102208
|
export declare type QueryGraphIntegration_McpAdminManagementMcpServerArgs = {
|
|
101908
102209
|
cloudId: Scalars['ID']['input'];
|
|
@@ -103171,6 +103472,11 @@ export declare type QueryTeamworkGraph_UserTaggedInArgs = {
|
|
|
103171
103472
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103172
103473
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103173
103474
|
};
|
|
103475
|
+
export declare type QueryTeamworkGraph_UserTeamsArgs = {
|
|
103476
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103477
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103478
|
+
userId: Scalars['ID']['input'];
|
|
103479
|
+
};
|
|
103174
103480
|
export declare type QueryTeamworkGraph_UserTopRecentMentionersArgs = {
|
|
103175
103481
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103176
103482
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -103860,6 +104166,7 @@ export declare type RadarPositionsByEntity = {
|
|
|
103860
104166
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
103861
104167
|
id: Scalars['ID']['output'];
|
|
103862
104168
|
type: RadarEntityType;
|
|
104169
|
+
workTypeAllocation?: Maybe<Array<RadarWorkAllocationUnit>>;
|
|
103863
104170
|
};
|
|
103864
104171
|
export declare type RadarPositionsByEntityFieldValuesArgs = {
|
|
103865
104172
|
aggregateRql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -103964,6 +104271,11 @@ export declare enum RadarUserFieldPermission {
|
|
|
103964
104271
|
PartialOnSelfOrBelowReportingLine = "PartialOnSelfOrBelowReportingLine",
|
|
103965
104272
|
PartialOnlySelf = "PartialOnlySelf"
|
|
103966
104273
|
}
|
|
104274
|
+
export declare type RadarWorkAllocationUnit = {
|
|
104275
|
+
__typename?: 'RadarWorkAllocationUnit';
|
|
104276
|
+
name: Scalars['String']['output'];
|
|
104277
|
+
percentage: Scalars['Float']['output'];
|
|
104278
|
+
};
|
|
103967
104279
|
export declare type RadarWorkTypeAllocationInput = {
|
|
103968
104280
|
ctb: Scalars['Int']['input'];
|
|
103969
104281
|
organisationId: Scalars['ID']['input'];
|
|
@@ -104015,6 +104327,7 @@ export declare type RadarWorkspaceSettingsInput = {
|
|
|
104015
104327
|
};
|
|
104016
104328
|
export declare type RadarWorktypeAllocation = {
|
|
104017
104329
|
__typename?: 'RadarWorktypeAllocation';
|
|
104330
|
+
allocations?: Maybe<Array<RadarWorkAllocationUnit>>;
|
|
104018
104331
|
ctb?: Maybe<Scalars['Int']['output']>;
|
|
104019
104332
|
id: Scalars['ID']['output'];
|
|
104020
104333
|
organisationARI: Scalars['ID']['output'];
|
|
@@ -105180,6 +105493,7 @@ export declare type RoadmapsQueryRoadmapFilterConfigurationArgs = {
|
|
|
105180
105493
|
};
|
|
105181
105494
|
export declare type RoadmapsQueryRoadmapFilterItemsArgs = {
|
|
105182
105495
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
105496
|
+
itemIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
105183
105497
|
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
105184
105498
|
sourceARI: Scalars['ID']['input'];
|
|
105185
105499
|
};
|
|
@@ -106296,6 +106610,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
106296
106610
|
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
106297
106611
|
export declare type SearchResultFederated = SearchResult & {
|
|
106298
106612
|
__typename?: 'SearchResultFederated';
|
|
106613
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106299
106614
|
description: Scalars['String']['output'];
|
|
106300
106615
|
entity?: Maybe<SearchFederatedEntity>;
|
|
106301
106616
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -106311,6 +106626,7 @@ export declare type SearchResultFederated = SearchResult & {
|
|
|
106311
106626
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
106312
106627
|
__typename?: 'SearchResultGoogleDocument';
|
|
106313
106628
|
bodyText: Scalars['String']['output'];
|
|
106629
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106314
106630
|
description: Scalars['String']['output'];
|
|
106315
106631
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
106316
106632
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -106327,6 +106643,7 @@ export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & Searc
|
|
|
106327
106643
|
export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & SearchResult & {
|
|
106328
106644
|
__typename?: 'SearchResultGooglePresentation';
|
|
106329
106645
|
bodyText: Scalars['String']['output'];
|
|
106646
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106330
106647
|
description: Scalars['String']['output'];
|
|
106331
106648
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
106332
106649
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -106343,6 +106660,7 @@ export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & S
|
|
|
106343
106660
|
export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & SearchResult & {
|
|
106344
106661
|
__typename?: 'SearchResultGoogleSpreadsheet';
|
|
106345
106662
|
bodyText: Scalars['String']['output'];
|
|
106663
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106346
106664
|
description: Scalars['String']['output'];
|
|
106347
106665
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
106348
106666
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -106360,6 +106678,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
106360
106678
|
__typename?: 'SearchResultGraphDocument';
|
|
106361
106679
|
allContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
106362
106680
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
106681
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106363
106682
|
containerName?: Maybe<Scalars['String']['output']>;
|
|
106364
106683
|
description: Scalars['String']['output'];
|
|
106365
106684
|
entity?: Maybe<SearchResultEntity>;
|
|
@@ -106553,6 +106872,7 @@ export declare type SearchResultMercuryFocusAreaStatusUpdate = SearchResult & {
|
|
|
106553
106872
|
export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & SearchResult & {
|
|
106554
106873
|
__typename?: 'SearchResultMicrosoftDocument';
|
|
106555
106874
|
bodyText: Scalars['String']['output'];
|
|
106875
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106556
106876
|
description: Scalars['String']['output'];
|
|
106557
106877
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
106558
106878
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -106569,6 +106889,7 @@ export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & Se
|
|
|
106569
106889
|
export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchResult & {
|
|
106570
106890
|
__typename?: 'SearchResultSlackMessage';
|
|
106571
106891
|
channelName?: Maybe<Scalars['String']['output']>;
|
|
106892
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106572
106893
|
description: Scalars['String']['output'];
|
|
106573
106894
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
106574
106895
|
id: Scalars['ID']['output'];
|
|
@@ -106597,6 +106918,19 @@ export declare type SearchResultSpfAsk = SearchResult & {
|
|
|
106597
106918
|
type: SearchResultType;
|
|
106598
106919
|
url: Scalars['String']['output'];
|
|
106599
106920
|
};
|
|
106921
|
+
export declare type SearchResultTalentPosition = SearchResult & {
|
|
106922
|
+
__typename?: 'SearchResultTalentPosition';
|
|
106923
|
+
description: Scalars['String']['output'];
|
|
106924
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
106925
|
+
id: Scalars['ID']['output'];
|
|
106926
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
106927
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
106928
|
+
position?: Maybe<RadarPosition>;
|
|
106929
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
106930
|
+
title: Scalars['String']['output'];
|
|
106931
|
+
type: SearchResultType;
|
|
106932
|
+
url: Scalars['String']['output'];
|
|
106933
|
+
};
|
|
106600
106934
|
export declare type SearchResultTrelloBoard = SearchResult & {
|
|
106601
106935
|
__typename?: 'SearchResultTrelloBoard';
|
|
106602
106936
|
description: Scalars['String']['output'];
|
|
@@ -106668,6 +107002,14 @@ export declare enum SearchSortOrder {
|
|
|
106668
107002
|
Asc = "ASC",
|
|
106669
107003
|
Desc = "DESC"
|
|
106670
107004
|
}
|
|
107005
|
+
export declare type SearchTalentFilter = {
|
|
107006
|
+
employmentTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
107007
|
+
focusAreas?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
107008
|
+
jobFamilies?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
107009
|
+
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
107010
|
+
statuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
107011
|
+
teams?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
107012
|
+
};
|
|
106671
107013
|
export declare type SearchThirdPartyFilter = {
|
|
106672
107014
|
additionalTexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
106673
107015
|
ancestorAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -127742,6 +128084,12 @@ export declare type StakeholderCommsListIncidentResponse = {
|
|
|
127742
128084
|
error?: Maybe<Scalars['String']['output']>;
|
|
127743
128085
|
incidentNodes?: Maybe<Array<Maybe<StakeholderCommsIncidentWithUpdates>>>;
|
|
127744
128086
|
};
|
|
128087
|
+
export declare type StakeholderCommsMediaToken = {
|
|
128088
|
+
__typename?: 'StakeholderCommsMediaToken';
|
|
128089
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
128090
|
+
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
128091
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
128092
|
+
};
|
|
127745
128093
|
export declare type StakeholderCommsModePreference = {
|
|
127746
128094
|
__typename?: 'StakeholderCommsModePreference';
|
|
127747
128095
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -129092,6 +129440,7 @@ export declare type TeamMutation = {
|
|
|
129092
129440
|
__typename?: 'TeamMutation';
|
|
129093
129441
|
addChild?: Maybe<TeamV2>;
|
|
129094
129442
|
addParent?: Maybe<TeamV2>;
|
|
129443
|
+
assignTeamToType?: Maybe<TeamV2>;
|
|
129095
129444
|
createTeamType?: Maybe<TeamType>;
|
|
129096
129445
|
removeChild?: Maybe<TeamV2>;
|
|
129097
129446
|
removeParent?: Maybe<TeamV2>;
|
|
@@ -129108,6 +129457,10 @@ export declare type TeamMutationAddParentArgs = {
|
|
|
129108
129457
|
siteId: Scalars['ID']['input'];
|
|
129109
129458
|
teamId: Scalars['ID']['input'];
|
|
129110
129459
|
};
|
|
129460
|
+
export declare type TeamMutationAssignTeamToTypeArgs = {
|
|
129461
|
+
teamId: Scalars['ID']['input'];
|
|
129462
|
+
typeId: Scalars['ID']['input'];
|
|
129463
|
+
};
|
|
129111
129464
|
export declare type TeamMutationCreateTeamTypeArgs = {
|
|
129112
129465
|
scopeId: Scalars['ID']['input'];
|
|
129113
129466
|
typeData: TeamTypeCreationPayload;
|
|
@@ -129327,6 +129680,7 @@ export declare type TeamV2 = Node & {
|
|
|
129327
129680
|
smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
129328
129681
|
smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
129329
129682
|
state?: Maybe<TeamStateV2>;
|
|
129683
|
+
type?: Maybe<TeamType>;
|
|
129330
129684
|
};
|
|
129331
129685
|
export declare type TeamV2MembersArgs = {
|
|
129332
129686
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -130395,6 +130749,7 @@ export declare type TownsquareGoalUpdate = Node & {
|
|
|
130395
130749
|
creator?: Maybe<User>;
|
|
130396
130750
|
editDate?: Maybe<Scalars['DateTime']['output']>;
|
|
130397
130751
|
goal?: Maybe<TownsquareGoal>;
|
|
130752
|
+
highlights?: Maybe<TownsquareHighlightConnection>;
|
|
130398
130753
|
id: Scalars['ID']['output'];
|
|
130399
130754
|
lastEditedBy?: Maybe<User>;
|
|
130400
130755
|
missedUpdate: Scalars['Boolean']['output'];
|
|
@@ -130418,6 +130773,10 @@ export declare type TownsquareGoalUpdateCommentsArgs = {
|
|
|
130418
130773
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130419
130774
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130420
130775
|
};
|
|
130776
|
+
export declare type TownsquareGoalUpdateHighlightsArgs = {
|
|
130777
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
130778
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130779
|
+
};
|
|
130421
130780
|
export declare type TownsquareGoalUpdateUpdateNotesArgs = {
|
|
130422
130781
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130423
130782
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -131056,6 +131415,7 @@ export declare type TownsquareProjectUpdate = Node & {
|
|
|
131056
131415
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
131057
131416
|
creator?: Maybe<User>;
|
|
131058
131417
|
editDate?: Maybe<Scalars['DateTime']['output']>;
|
|
131418
|
+
highlights?: Maybe<TownsquareHighlightConnection>;
|
|
131059
131419
|
id: Scalars['ID']['output'];
|
|
131060
131420
|
lastEditedBy?: Maybe<User>;
|
|
131061
131421
|
missedUpdate: Scalars['Boolean']['output'];
|
|
@@ -131082,6 +131442,10 @@ export declare type TownsquareProjectUpdateCommentsArgs = {
|
|
|
131082
131442
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131083
131443
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131084
131444
|
};
|
|
131445
|
+
export declare type TownsquareProjectUpdateHighlightsArgs = {
|
|
131446
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131447
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131448
|
+
};
|
|
131085
131449
|
export declare type TownsquareProjectUpdateUpdateNotesArgs = {
|
|
131086
131450
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131087
131451
|
first?: InputMaybe<Scalars['Int']['input']>;
|