@forge/cli-shared 8.8.1-next.4 → 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 +17 -0
- package/out/graphql/graphql-types.d.ts +364 -52
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +62 -22
- package/out/ui/text.d.ts +6 -5
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +15 -8
- 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']>;
|
|
@@ -22219,6 +22262,7 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
|
22219
22262
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
22220
22263
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
22221
22264
|
contributor?: Maybe<CplsContributor>;
|
|
22265
|
+
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
22222
22266
|
contributors: CplsContributorConnection;
|
|
22223
22267
|
id: Scalars['ID']['output'];
|
|
22224
22268
|
timeCells: Array<CplsTimeCell>;
|
|
@@ -26207,6 +26251,11 @@ export declare type DevAiRovoDevRepositoryInput = {
|
|
|
26207
26251
|
targetBranch?: InputMaybe<Scalars['String']['input']>;
|
|
26208
26252
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
26209
26253
|
};
|
|
26254
|
+
export declare enum DevAiRovoDevSandboxStatus {
|
|
26255
|
+
Created = "CREATED",
|
|
26256
|
+
Started = "STARTED",
|
|
26257
|
+
Stopped = "STOPPED"
|
|
26258
|
+
}
|
|
26210
26259
|
export declare type DevAiRovoDevSession = Node & {
|
|
26211
26260
|
__typename?: 'DevAiRovoDevSession';
|
|
26212
26261
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -26224,6 +26273,7 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
26224
26273
|
prUrl?: Maybe<Scalars['String']['output']>;
|
|
26225
26274
|
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
26226
26275
|
repository?: Maybe<DevAiRovoDevRepository>;
|
|
26276
|
+
sandboxStatus?: Maybe<DevAiRovoDevSandboxStatus>;
|
|
26227
26277
|
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
26228
26278
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
26229
26279
|
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
@@ -32998,6 +33048,12 @@ export declare enum GraphIntegrationStatus {
|
|
|
32998
33048
|
Disabled = "DISABLED",
|
|
32999
33049
|
Enabled = "ENABLED"
|
|
33000
33050
|
}
|
|
33051
|
+
export declare enum GraphIntegrationSurface {
|
|
33052
|
+
Automation = "AUTOMATION",
|
|
33053
|
+
Pollinator = "POLLINATOR",
|
|
33054
|
+
Rovo = "ROVO",
|
|
33055
|
+
Studio = "STUDIO"
|
|
33056
|
+
}
|
|
33001
33057
|
export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
33002
33058
|
__typename?: 'GraphIntegrationTwgCapabilityContainer';
|
|
33003
33059
|
connections: Array<GraphIntegrationDataConnectorConnection>;
|
|
@@ -36335,6 +36391,8 @@ export declare type GraphStore = {
|
|
|
36335
36391
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
36336
36392
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
36337
36393
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
36394
|
+
userCreatedExternalTest?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestConnection>;
|
|
36395
|
+
userCreatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestInverseConnection>;
|
|
36338
36396
|
userCreatedIssue?: Maybe<GraphStoreSimplifiedUserCreatedIssueConnection>;
|
|
36339
36397
|
userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
|
|
36340
36398
|
userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
|
|
@@ -36373,8 +36431,6 @@ export declare type GraphStore = {
|
|
|
36373
36431
|
userHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseConnection>;
|
|
36374
36432
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
36375
36433
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
36376
|
-
userHasTopCollaborator?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorConnection>;
|
|
36377
|
-
userHasTopCollaboratorInverse?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorInverseConnection>;
|
|
36378
36434
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
36379
36435
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
36380
36436
|
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
@@ -36401,6 +36457,8 @@ export declare type GraphStore = {
|
|
|
36401
36457
|
userOwnedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventInverseConnection>;
|
|
36402
36458
|
userOwnedDocument?: Maybe<GraphStoreSimplifiedUserOwnedDocumentConnection>;
|
|
36403
36459
|
userOwnedDocumentInverse?: Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseConnection>;
|
|
36460
|
+
userOwnedExternalTest?: Maybe<GraphStoreSimplifiedUserOwnedExternalTestConnection>;
|
|
36461
|
+
userOwnedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserOwnedExternalTestInverseConnection>;
|
|
36404
36462
|
userOwnedRemoteLink?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkConnection>;
|
|
36405
36463
|
userOwnedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkInverseConnection>;
|
|
36406
36464
|
userOwnedRepository?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryConnection>;
|
|
@@ -36447,6 +36505,8 @@ export declare type GraphStore = {
|
|
|
36447
36505
|
userUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection>;
|
|
36448
36506
|
userUpdatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection>;
|
|
36449
36507
|
userUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
36508
|
+
userUpdatedExternalTest?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestConnection>;
|
|
36509
|
+
userUpdatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestInverseConnection>;
|
|
36450
36510
|
userUpdatedGraphDocument?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentConnection>;
|
|
36451
36511
|
userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
|
|
36452
36512
|
userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
|
|
@@ -40653,6 +40713,20 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
40653
40713
|
id: Scalars['ID']['input'];
|
|
40654
40714
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
40655
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
|
+
};
|
|
40656
40730
|
export declare type GraphStoreUserCreatedIssueArgs = {
|
|
40657
40731
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40658
40732
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40917,20 +40991,6 @@ export declare type GraphStoreUserHasRelevantProjectInverseArgs = {
|
|
|
40917
40991
|
id: Scalars['ID']['input'];
|
|
40918
40992
|
sort?: InputMaybe<GraphStoreUserHasRelevantProjectSortInput>;
|
|
40919
40993
|
};
|
|
40920
|
-
export declare type GraphStoreUserHasTopCollaboratorArgs = {
|
|
40921
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40922
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40923
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40924
|
-
id: Scalars['ID']['input'];
|
|
40925
|
-
sort?: InputMaybe<GraphStoreUserHasTopCollaboratorSortInput>;
|
|
40926
|
-
};
|
|
40927
|
-
export declare type GraphStoreUserHasTopCollaboratorInverseArgs = {
|
|
40928
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40929
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40930
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40931
|
-
id: Scalars['ID']['input'];
|
|
40932
|
-
sort?: InputMaybe<GraphStoreUserHasTopCollaboratorSortInput>;
|
|
40933
|
-
};
|
|
40934
40994
|
export declare type GraphStoreUserHasTopProjectArgs = {
|
|
40935
40995
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40936
40996
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41115,6 +41175,20 @@ export declare type GraphStoreUserOwnedDocumentInverseArgs = {
|
|
|
41115
41175
|
id: Scalars['ID']['input'];
|
|
41116
41176
|
sort?: InputMaybe<GraphStoreUserOwnedDocumentSortInput>;
|
|
41117
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
|
+
};
|
|
41118
41192
|
export declare type GraphStoreUserOwnedRemoteLinkArgs = {
|
|
41119
41193
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41120
41194
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41439,6 +41513,20 @@ export declare type GraphStoreUserUpdatedConfluenceWhiteboardInverseArgs = {
|
|
|
41439
41513
|
id: Scalars['ID']['input'];
|
|
41440
41514
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceWhiteboardSortInput>;
|
|
41441
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
|
+
};
|
|
41442
41530
|
export declare type GraphStoreUserUpdatedGraphDocumentArgs = {
|
|
41443
41531
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41444
41532
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -43905,7 +43993,7 @@ export declare type GraphStoreCypherQueryResultRowItem = {
|
|
|
43905
43993
|
value: Array<GraphStoreCypherQueryValueNode>;
|
|
43906
43994
|
valueUnion?: Maybe<GraphStoreCypherQueryResultRowItemValueUnion>;
|
|
43907
43995
|
};
|
|
43908
|
-
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject;
|
|
43996
|
+
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject | GraphStoreCypherQueryTimestampObject;
|
|
43909
43997
|
export declare type GraphStoreCypherQueryRowItemNode = {
|
|
43910
43998
|
__typename?: 'GraphStoreCypherQueryRowItemNode';
|
|
43911
43999
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
@@ -43916,6 +44004,10 @@ export declare type GraphStoreCypherQueryStringObject = {
|
|
|
43916
44004
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
43917
44005
|
value: Scalars['String']['output'];
|
|
43918
44006
|
};
|
|
44007
|
+
export declare type GraphStoreCypherQueryTimestampObject = {
|
|
44008
|
+
__typename?: 'GraphStoreCypherQueryTimestampObject';
|
|
44009
|
+
value: Scalars['Long']['output'];
|
|
44010
|
+
};
|
|
43919
44011
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
43920
44012
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
43921
44013
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
@@ -43974,11 +44066,15 @@ export declare type GraphStoreCypherQueryV2BatchQueryResult = {
|
|
|
43974
44066
|
pageInfo: PageInfo;
|
|
43975
44067
|
version: Scalars['String']['output'];
|
|
43976
44068
|
};
|
|
43977
|
-
export declare type GraphStoreCypherQueryV2BatchResultRowItemValueUnion = GraphStoreCypherQueryV2BatchAriNode | GraphStoreCypherQueryV2BatchBooleanObject | GraphStoreCypherQueryV2BatchFloatObject | GraphStoreCypherQueryV2BatchIntObject | GraphStoreCypherQueryV2BatchNodeList | GraphStoreCypherQueryV2BatchStringObject;
|
|
44069
|
+
export declare type GraphStoreCypherQueryV2BatchResultRowItemValueUnion = GraphStoreCypherQueryV2BatchAriNode | GraphStoreCypherQueryV2BatchBooleanObject | GraphStoreCypherQueryV2BatchFloatObject | GraphStoreCypherQueryV2BatchIntObject | GraphStoreCypherQueryV2BatchNodeList | GraphStoreCypherQueryV2BatchStringObject | GraphStoreCypherQueryV2BatchTimestampObject;
|
|
43978
44070
|
export declare type GraphStoreCypherQueryV2BatchStringObject = {
|
|
43979
44071
|
__typename?: 'GraphStoreCypherQueryV2BatchStringObject';
|
|
43980
44072
|
value: Scalars['String']['output'];
|
|
43981
44073
|
};
|
|
44074
|
+
export declare type GraphStoreCypherQueryV2BatchTimestampObject = {
|
|
44075
|
+
__typename?: 'GraphStoreCypherQueryV2BatchTimestampObject';
|
|
44076
|
+
value: Scalars['Long']['output'];
|
|
44077
|
+
};
|
|
43982
44078
|
export declare enum GraphStoreCypherQueryV2BatchVersionEnum {
|
|
43983
44079
|
V2 = "V2",
|
|
43984
44080
|
V3 = "V3"
|
|
@@ -44019,11 +44115,15 @@ export declare type GraphStoreCypherQueryV2NodeList = {
|
|
|
44019
44115
|
__typename?: 'GraphStoreCypherQueryV2NodeList';
|
|
44020
44116
|
nodes: Array<GraphStoreCypherQueryV2AriNode>;
|
|
44021
44117
|
};
|
|
44022
|
-
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2StringObject;
|
|
44118
|
+
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2StringObject | GraphStoreCypherQueryV2TimestampObject;
|
|
44023
44119
|
export declare type GraphStoreCypherQueryV2StringObject = {
|
|
44024
44120
|
__typename?: 'GraphStoreCypherQueryV2StringObject';
|
|
44025
44121
|
value: Scalars['String']['output'];
|
|
44026
44122
|
};
|
|
44123
|
+
export declare type GraphStoreCypherQueryV2TimestampObject = {
|
|
44124
|
+
__typename?: 'GraphStoreCypherQueryV2TimestampObject';
|
|
44125
|
+
value: Scalars['Long']['output'];
|
|
44126
|
+
};
|
|
44027
44127
|
export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
44028
44128
|
V2 = "V2",
|
|
44029
44129
|
V3 = "V3"
|
|
@@ -55395,6 +55495,34 @@ export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
|
|
|
55395
55495
|
};
|
|
55396
55496
|
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55397
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;
|
|
55398
55526
|
export declare type GraphStoreSimplifiedUserCreatedIssueCommentConnection = HasPageInfo & {
|
|
55399
55527
|
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentConnection';
|
|
55400
55528
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentEdge>>>;
|
|
@@ -55907,34 +56035,6 @@ export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseEdge = {
|
|
|
55907
56035
|
};
|
|
55908
56036
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55909
56037
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectUnion = JiraProject;
|
|
55910
|
-
export declare type GraphStoreSimplifiedUserHasTopCollaboratorConnection = HasPageInfo & {
|
|
55911
|
-
__typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorConnection';
|
|
55912
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopCollaboratorEdge>>>;
|
|
55913
|
-
pageInfo: PageInfo;
|
|
55914
|
-
};
|
|
55915
|
-
export declare type GraphStoreSimplifiedUserHasTopCollaboratorEdge = {
|
|
55916
|
-
__typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorEdge';
|
|
55917
|
-
createdAt: Scalars['DateTime']['output'];
|
|
55918
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
55919
|
-
id: Scalars['ID']['output'];
|
|
55920
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
55921
|
-
node?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorUnion>;
|
|
55922
|
-
};
|
|
55923
|
-
export declare type GraphStoreSimplifiedUserHasTopCollaboratorInverseConnection = HasPageInfo & {
|
|
55924
|
-
__typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorInverseConnection';
|
|
55925
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopCollaboratorInverseEdge>>>;
|
|
55926
|
-
pageInfo: PageInfo;
|
|
55927
|
-
};
|
|
55928
|
-
export declare type GraphStoreSimplifiedUserHasTopCollaboratorInverseEdge = {
|
|
55929
|
-
__typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorInverseEdge';
|
|
55930
|
-
createdAt: Scalars['DateTime']['output'];
|
|
55931
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
55932
|
-
id: Scalars['ID']['output'];
|
|
55933
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
55934
|
-
node?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorInverseUnion>;
|
|
55935
|
-
};
|
|
55936
|
-
export declare type GraphStoreSimplifiedUserHasTopCollaboratorInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55937
|
-
export declare type GraphStoreSimplifiedUserHasTopCollaboratorUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55938
56038
|
export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
|
|
55939
56039
|
__typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
|
|
55940
56040
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopProjectEdge>>>;
|
|
@@ -56303,6 +56403,34 @@ export declare type GraphStoreSimplifiedUserOwnedDocumentInverseEdge = {
|
|
|
56303
56403
|
};
|
|
56304
56404
|
export declare type GraphStoreSimplifiedUserOwnedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
56305
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;
|
|
56306
56434
|
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkConnection = HasPageInfo & {
|
|
56307
56435
|
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkConnection';
|
|
56308
56436
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkEdge>>>;
|
|
@@ -56951,6 +57079,34 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEd
|
|
|
56951
57079
|
};
|
|
56952
57080
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56953
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;
|
|
56954
57110
|
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentConnection = HasPageInfo & {
|
|
56955
57111
|
__typename?: 'GraphStoreSimplifiedUserUpdatedGraphDocumentConnection';
|
|
56956
57112
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentEdge>>>;
|
|
@@ -58216,6 +58372,9 @@ export declare type GraphStoreUserCreatedDesignSortInput = {
|
|
|
58216
58372
|
export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
58217
58373
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58218
58374
|
};
|
|
58375
|
+
export declare type GraphStoreUserCreatedExternalTestSortInput = {
|
|
58376
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58377
|
+
};
|
|
58219
58378
|
export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
58220
58379
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58221
58380
|
};
|
|
@@ -58276,9 +58435,6 @@ export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
|
58276
58435
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58277
58436
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
58278
58437
|
};
|
|
58279
|
-
export declare type GraphStoreUserHasTopCollaboratorSortInput = {
|
|
58280
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58281
|
-
};
|
|
58282
58438
|
export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
58283
58439
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58284
58440
|
};
|
|
@@ -58339,6 +58495,9 @@ export declare type GraphStoreUserOwnedCalendarEventSortInput = {
|
|
|
58339
58495
|
export declare type GraphStoreUserOwnedDocumentSortInput = {
|
|
58340
58496
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58341
58497
|
};
|
|
58498
|
+
export declare type GraphStoreUserOwnedExternalTestSortInput = {
|
|
58499
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58500
|
+
};
|
|
58342
58501
|
export declare type GraphStoreUserOwnedRemoteLinkSortInput = {
|
|
58343
58502
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58344
58503
|
};
|
|
@@ -58421,6 +58580,9 @@ export declare type GraphStoreUserUpdatedConfluenceSpaceSortInput = {
|
|
|
58421
58580
|
export declare type GraphStoreUserUpdatedConfluenceWhiteboardSortInput = {
|
|
58422
58581
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58423
58582
|
};
|
|
58583
|
+
export declare type GraphStoreUserUpdatedExternalTestSortInput = {
|
|
58584
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58585
|
+
};
|
|
58424
58586
|
export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
58425
58587
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58426
58588
|
};
|
|
@@ -63730,6 +63892,8 @@ export declare type JiraBacklogColorConfig = {
|
|
|
63730
63892
|
export declare type JiraBacklogColumn = {
|
|
63731
63893
|
__typename?: 'JiraBacklogColumn';
|
|
63732
63894
|
id?: Maybe<Scalars['Long']['output']>;
|
|
63895
|
+
max?: Maybe<Scalars['Int']['output']>;
|
|
63896
|
+
min?: Maybe<Scalars['Int']['output']>;
|
|
63733
63897
|
name?: Maybe<Scalars['String']['output']>;
|
|
63734
63898
|
statusIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
63735
63899
|
};
|
|
@@ -63752,6 +63916,11 @@ export declare type JiraBacklogData = {
|
|
|
63752
63916
|
supportsPages?: Maybe<Scalars['Boolean']['output']>;
|
|
63753
63917
|
versionData?: Maybe<JiraBacklogVersionData>;
|
|
63754
63918
|
};
|
|
63919
|
+
export declare enum JiraBacklogDestination {
|
|
63920
|
+
Backlog = "BACKLOG",
|
|
63921
|
+
Board = "BOARD",
|
|
63922
|
+
Sprint = "SPRINT"
|
|
63923
|
+
}
|
|
63755
63924
|
export declare type JiraBacklogEpicConfig = {
|
|
63756
63925
|
__typename?: 'JiraBacklogEpicConfig';
|
|
63757
63926
|
colorFieldId?: Maybe<Scalars['String']['output']>;
|
|
@@ -69247,6 +69416,38 @@ export declare type JiraInitializeProjectNotificationPreferencesPayload = Payloa
|
|
|
69247
69416
|
projectPreferences?: Maybe<JiraNotificationProjectPreferences>;
|
|
69248
69417
|
success: Scalars['Boolean']['output'];
|
|
69249
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
|
+
};
|
|
69250
69451
|
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
69251
69452
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
69252
69453
|
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
@@ -71525,6 +71726,7 @@ export declare enum JiraIssueViewActivityLayout {
|
|
|
71525
71726
|
Vertical = "VERTICAL"
|
|
71526
71727
|
}
|
|
71527
71728
|
export declare enum JiraIssueViewAttachmentPanelViewMode {
|
|
71729
|
+
GridView = "GRID_VIEW",
|
|
71528
71730
|
ListView = "LIST_VIEW",
|
|
71529
71731
|
StripView = "STRIP_VIEW"
|
|
71530
71732
|
}
|
|
@@ -78433,7 +78635,8 @@ export declare type JiraResource = {
|
|
|
78433
78635
|
export declare enum JiraResourceIntegration {
|
|
78434
78636
|
Attachment = "ATTACHMENT",
|
|
78435
78637
|
Confluence = "CONFLUENCE",
|
|
78436
|
-
Loom = "LOOM"
|
|
78638
|
+
Loom = "LOOM",
|
|
78639
|
+
Whiteboard = "WHITEBOARD"
|
|
78437
78640
|
}
|
|
78438
78641
|
export declare type JiraResourceNode = {
|
|
78439
78642
|
__typename?: 'JiraResourceNode';
|
|
@@ -81803,6 +82006,7 @@ export declare type JiraTownsquareProject = {
|
|
|
81803
82006
|
hasPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
81804
82007
|
iconName?: Maybe<Scalars['String']['output']>;
|
|
81805
82008
|
id: Scalars['ID']['output'];
|
|
82009
|
+
isWorkspaceActive?: Maybe<Scalars['Boolean']['output']>;
|
|
81806
82010
|
key?: Maybe<Scalars['String']['output']>;
|
|
81807
82011
|
name?: Maybe<Scalars['String']['output']>;
|
|
81808
82012
|
ownerAaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -82707,6 +82911,7 @@ export declare type JiraUserPreferences = {
|
|
|
82707
82911
|
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
82708
82912
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
82709
82913
|
issueViewCollapsibleSectionsState?: Maybe<JiraIssueViewCollapsibleSections>;
|
|
82914
|
+
issueViewContextPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
|
|
82710
82915
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
82711
82916
|
issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
|
|
82712
82917
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
@@ -82731,6 +82936,9 @@ export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplat
|
|
|
82731
82936
|
export declare type JiraUserPreferencesIssueViewCollapsibleSectionsStateArgs = {
|
|
82732
82937
|
projectKey: Scalars['String']['input'];
|
|
82733
82938
|
};
|
|
82939
|
+
export declare type JiraUserPreferencesIssueViewContextPanelFieldsOrderArgs = {
|
|
82940
|
+
projectKey: Scalars['String']['input'];
|
|
82941
|
+
};
|
|
82734
82942
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
82735
82943
|
projectKey: Scalars['String']['input'];
|
|
82736
82944
|
};
|
|
@@ -90155,6 +90363,7 @@ export declare type MercuryCustomFieldDefinition = {
|
|
|
90155
90363
|
id: Scalars['ID']['output'];
|
|
90156
90364
|
name: Scalars['String']['output'];
|
|
90157
90365
|
scope: MercuryCustomFieldDefinitionScope;
|
|
90366
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
90158
90367
|
updatedBy?: Maybe<User>;
|
|
90159
90368
|
updatedDate: Scalars['DateTime']['output'];
|
|
90160
90369
|
};
|
|
@@ -90443,6 +90652,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
90443
90652
|
targetDate?: Maybe<MercuryTargetDate>;
|
|
90444
90653
|
updatedDate: Scalars['String']['output'];
|
|
90445
90654
|
url?: Maybe<Scalars['String']['output']>;
|
|
90655
|
+
userPermissions?: Maybe<Array<MercuryFocusAreaPermission>>;
|
|
90446
90656
|
uuid: Scalars['UUID']['output'];
|
|
90447
90657
|
watchers?: Maybe<MercuryUserConnection>;
|
|
90448
90658
|
watching: Scalars['Boolean']['output'];
|
|
@@ -90621,6 +90831,24 @@ export declare type MercuryFocusAreaLinks = {
|
|
|
90621
90831
|
__typename?: 'MercuryFocusAreaLinks';
|
|
90622
90832
|
links: Array<MercuryFocusAreaLink>;
|
|
90623
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
|
+
}
|
|
90624
90852
|
export declare type MercuryFocusAreaPositionChangeSummary = {
|
|
90625
90853
|
__typename?: 'MercuryFocusAreaPositionChangeSummary';
|
|
90626
90854
|
movedInCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -91258,6 +91486,7 @@ export declare type MercuryNumberCustomFieldDefinition = MercuryCustomFieldDefin
|
|
|
91258
91486
|
id: Scalars['ID']['output'];
|
|
91259
91487
|
name: Scalars['String']['output'];
|
|
91260
91488
|
scope: MercuryCustomFieldDefinitionScope;
|
|
91489
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
91261
91490
|
updatedBy?: Maybe<User>;
|
|
91262
91491
|
updatedDate: Scalars['DateTime']['output'];
|
|
91263
91492
|
};
|
|
@@ -91901,6 +92130,7 @@ export declare type MercurySingleSelectCustomFieldDefinition = MercuryCustomFiel
|
|
|
91901
92130
|
name: Scalars['String']['output'];
|
|
91902
92131
|
options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
91903
92132
|
scope: MercuryCustomFieldDefinitionScope;
|
|
92133
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
91904
92134
|
updatedBy?: Maybe<User>;
|
|
91905
92135
|
updatedDate: Scalars['DateTime']['output'];
|
|
91906
92136
|
};
|
|
@@ -92322,6 +92552,7 @@ export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinit
|
|
|
92322
92552
|
id: Scalars['ID']['output'];
|
|
92323
92553
|
name: Scalars['String']['output'];
|
|
92324
92554
|
scope: MercuryCustomFieldDefinitionScope;
|
|
92555
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
92325
92556
|
updatedBy?: Maybe<User>;
|
|
92326
92557
|
updatedDate: Scalars['DateTime']['output'];
|
|
92327
92558
|
};
|
|
@@ -92982,6 +93213,7 @@ export declare type Mutation = {
|
|
|
92982
93213
|
avp_createVariable?: Maybe<AvpCreateVariablePayload>;
|
|
92983
93214
|
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
92984
93215
|
avp_deleteDashboardFilter?: Maybe<AvpDeleteDashboardFilterPayload>;
|
|
93216
|
+
avp_deleteVariable?: Maybe<AvpDeleteVariablePayload>;
|
|
92985
93217
|
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
92986
93218
|
avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
|
|
92987
93219
|
avp_moveDashboardRow?: Maybe<AvpMoveDashboardRowPayload>;
|
|
@@ -92994,6 +93226,7 @@ export declare type Mutation = {
|
|
|
92994
93226
|
avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
|
|
92995
93227
|
avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
|
|
92996
93228
|
avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
|
|
93229
|
+
avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
|
|
92997
93230
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
92998
93231
|
bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
|
|
92999
93232
|
bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
|
|
@@ -93303,6 +93536,7 @@ export declare type Mutation = {
|
|
|
93303
93536
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
93304
93537
|
jira_archiveIssueAsync?: Maybe<JiraIssueArchiveAsyncPayload>;
|
|
93305
93538
|
jira_associateProjectToFieldScheme?: Maybe<JiraAssociateProjectToFieldSchemePayload>;
|
|
93539
|
+
jira_bulkCreateInlineIssuesOptimistic?: Maybe<JiraInlineIssuesCreatePayload>;
|
|
93306
93540
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
93307
93541
|
jira_clearBoardIssueCardCover?: Maybe<JiraClearBoardIssueCardCoverPayload>;
|
|
93308
93542
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
@@ -94009,6 +94243,9 @@ export declare type MutationAvp_DeleteChartArgs = {
|
|
|
94009
94243
|
export declare type MutationAvp_DeleteDashboardFilterArgs = {
|
|
94010
94244
|
input: AvpDeleteDashboardFilterInput;
|
|
94011
94245
|
};
|
|
94246
|
+
export declare type MutationAvp_DeleteVariableArgs = {
|
|
94247
|
+
input: AvpDeleteVariableInput;
|
|
94248
|
+
};
|
|
94012
94249
|
export declare type MutationAvp_MoveCanvasElementArgs = {
|
|
94013
94250
|
input: AvpMoveCanvasElementInput;
|
|
94014
94251
|
};
|
|
@@ -94045,6 +94282,9 @@ export declare type MutationAvp_UpdateDashboardRowNumElementsArgs = {
|
|
|
94045
94282
|
export declare type MutationAvp_UpdateDashboardStatusArgs = {
|
|
94046
94283
|
input: AvpUpdateDashboardStatusInput;
|
|
94047
94284
|
};
|
|
94285
|
+
export declare type MutationAvp_UpdateVariableArgs = {
|
|
94286
|
+
input: AvpUpdateVariableInput;
|
|
94287
|
+
};
|
|
94048
94288
|
export declare type MutationBoardCardMoveArgs = {
|
|
94049
94289
|
input?: InputMaybe<BoardCardMoveInput>;
|
|
94050
94290
|
};
|
|
@@ -95117,6 +95357,9 @@ export declare type MutationJira_AssociateProjectToFieldSchemeArgs = {
|
|
|
95117
95357
|
cloudId: Scalars['ID']['input'];
|
|
95118
95358
|
input: JiraAssociateProjectToFieldSchemeInput;
|
|
95119
95359
|
};
|
|
95360
|
+
export declare type MutationJira_BulkCreateInlineIssuesOptimisticArgs = {
|
|
95361
|
+
input: Array<JiraInlineIssueCreateInput>;
|
|
95362
|
+
};
|
|
95120
95363
|
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
95121
95364
|
input: JiraBulkSetBoardViewColumnStateInput;
|
|
95122
95365
|
};
|
|
@@ -99105,6 +99348,7 @@ export declare type Query = {
|
|
|
99105
99348
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
99106
99349
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
99107
99350
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
99351
|
+
admin_eventActions?: Maybe<AdminGroupEventActionConnection>;
|
|
99108
99352
|
admin_group?: Maybe<AdminGroup>;
|
|
99109
99353
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
99110
99354
|
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
@@ -99847,6 +100091,7 @@ export declare type Query = {
|
|
|
99847
100091
|
stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
|
|
99848
100092
|
stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
99849
100093
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
100094
|
+
stakeholderComms_getFileReadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
99850
100095
|
stakeholderComms_getFlattenedStakeholdersList?: Maybe<StakeholderCommsGetStakeholderListResponse>;
|
|
99851
100096
|
stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
99852
100097
|
stakeholderComms_getLicenseUsageLimit?: Maybe<StakeholderCommsLicenseUsage>;
|
|
@@ -99865,6 +100110,7 @@ export declare type Query = {
|
|
|
99865
100110
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
99866
100111
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
99867
100112
|
stakeholderComms_getStakeholdersbyAri?: Maybe<Array<Maybe<StakeholderCommsSimplifiedStakeholder>>>;
|
|
100113
|
+
stakeholderComms_getUploadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
99868
100114
|
stakeholderComms_getWorkspaceAriMappingByCustomDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
99869
100115
|
stakeholderComms_getWorkspaceAriMappingByPageId?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
99870
100116
|
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
@@ -99969,6 +100215,13 @@ export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
|
|
|
99969
100215
|
orgId: Scalars['ID']['input'];
|
|
99970
100216
|
principal: Scalars['ID']['input'];
|
|
99971
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
|
+
};
|
|
99972
100225
|
export declare type QueryAdmin_GroupArgs = {
|
|
99973
100226
|
input?: InputMaybe<AdminFetchGroupInput>;
|
|
99974
100227
|
};
|
|
@@ -101941,6 +102194,7 @@ export declare type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
|
101941
102194
|
cloudId: Scalars['ID']['input'];
|
|
101942
102195
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101943
102196
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
102197
|
+
surface?: InputMaybe<GraphIntegrationSurface>;
|
|
101944
102198
|
};
|
|
101945
102199
|
export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
101946
102200
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -101949,6 +102203,7 @@ export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
|
101949
102203
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101950
102204
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
101951
102205
|
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
102206
|
+
surface?: InputMaybe<GraphIntegrationSurface>;
|
|
101952
102207
|
};
|
|
101953
102208
|
export declare type QueryGraphIntegration_McpAdminManagementMcpServerArgs = {
|
|
101954
102209
|
cloudId: Scalars['ID']['input'];
|
|
@@ -103911,6 +104166,7 @@ export declare type RadarPositionsByEntity = {
|
|
|
103911
104166
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
103912
104167
|
id: Scalars['ID']['output'];
|
|
103913
104168
|
type: RadarEntityType;
|
|
104169
|
+
workTypeAllocation?: Maybe<Array<RadarWorkAllocationUnit>>;
|
|
103914
104170
|
};
|
|
103915
104171
|
export declare type RadarPositionsByEntityFieldValuesArgs = {
|
|
103916
104172
|
aggregateRql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -104015,6 +104271,11 @@ export declare enum RadarUserFieldPermission {
|
|
|
104015
104271
|
PartialOnSelfOrBelowReportingLine = "PartialOnSelfOrBelowReportingLine",
|
|
104016
104272
|
PartialOnlySelf = "PartialOnlySelf"
|
|
104017
104273
|
}
|
|
104274
|
+
export declare type RadarWorkAllocationUnit = {
|
|
104275
|
+
__typename?: 'RadarWorkAllocationUnit';
|
|
104276
|
+
name: Scalars['String']['output'];
|
|
104277
|
+
percentage: Scalars['Float']['output'];
|
|
104278
|
+
};
|
|
104018
104279
|
export declare type RadarWorkTypeAllocationInput = {
|
|
104019
104280
|
ctb: Scalars['Int']['input'];
|
|
104020
104281
|
organisationId: Scalars['ID']['input'];
|
|
@@ -104066,6 +104327,7 @@ export declare type RadarWorkspaceSettingsInput = {
|
|
|
104066
104327
|
};
|
|
104067
104328
|
export declare type RadarWorktypeAllocation = {
|
|
104068
104329
|
__typename?: 'RadarWorktypeAllocation';
|
|
104330
|
+
allocations?: Maybe<Array<RadarWorkAllocationUnit>>;
|
|
104069
104331
|
ctb?: Maybe<Scalars['Int']['output']>;
|
|
104070
104332
|
id: Scalars['ID']['output'];
|
|
104071
104333
|
organisationARI: Scalars['ID']['output'];
|
|
@@ -105231,6 +105493,7 @@ export declare type RoadmapsQueryRoadmapFilterConfigurationArgs = {
|
|
|
105231
105493
|
};
|
|
105232
105494
|
export declare type RoadmapsQueryRoadmapFilterItemsArgs = {
|
|
105233
105495
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
105496
|
+
itemIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
105234
105497
|
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
105235
105498
|
sourceARI: Scalars['ID']['input'];
|
|
105236
105499
|
};
|
|
@@ -106347,6 +106610,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
106347
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;
|
|
106348
106611
|
export declare type SearchResultFederated = SearchResult & {
|
|
106349
106612
|
__typename?: 'SearchResultFederated';
|
|
106613
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106350
106614
|
description: Scalars['String']['output'];
|
|
106351
106615
|
entity?: Maybe<SearchFederatedEntity>;
|
|
106352
106616
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -106362,6 +106626,7 @@ export declare type SearchResultFederated = SearchResult & {
|
|
|
106362
106626
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
106363
106627
|
__typename?: 'SearchResultGoogleDocument';
|
|
106364
106628
|
bodyText: Scalars['String']['output'];
|
|
106629
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106365
106630
|
description: Scalars['String']['output'];
|
|
106366
106631
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
106367
106632
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -106378,6 +106643,7 @@ export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & Searc
|
|
|
106378
106643
|
export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & SearchResult & {
|
|
106379
106644
|
__typename?: 'SearchResultGooglePresentation';
|
|
106380
106645
|
bodyText: Scalars['String']['output'];
|
|
106646
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106381
106647
|
description: Scalars['String']['output'];
|
|
106382
106648
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
106383
106649
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -106394,6 +106660,7 @@ export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & S
|
|
|
106394
106660
|
export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & SearchResult & {
|
|
106395
106661
|
__typename?: 'SearchResultGoogleSpreadsheet';
|
|
106396
106662
|
bodyText: Scalars['String']['output'];
|
|
106663
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106397
106664
|
description: Scalars['String']['output'];
|
|
106398
106665
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
106399
106666
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -106605,6 +106872,7 @@ export declare type SearchResultMercuryFocusAreaStatusUpdate = SearchResult & {
|
|
|
106605
106872
|
export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & SearchResult & {
|
|
106606
106873
|
__typename?: 'SearchResultMicrosoftDocument';
|
|
106607
106874
|
bodyText: Scalars['String']['output'];
|
|
106875
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106608
106876
|
description: Scalars['String']['output'];
|
|
106609
106877
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
106610
106878
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -106621,6 +106889,7 @@ export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & Se
|
|
|
106621
106889
|
export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchResult & {
|
|
106622
106890
|
__typename?: 'SearchResultSlackMessage';
|
|
106623
106891
|
channelName?: Maybe<Scalars['String']['output']>;
|
|
106892
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
106624
106893
|
description: Scalars['String']['output'];
|
|
106625
106894
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
106626
106895
|
id: Scalars['ID']['output'];
|
|
@@ -106649,6 +106918,19 @@ export declare type SearchResultSpfAsk = SearchResult & {
|
|
|
106649
106918
|
type: SearchResultType;
|
|
106650
106919
|
url: Scalars['String']['output'];
|
|
106651
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
|
+
};
|
|
106652
106934
|
export declare type SearchResultTrelloBoard = SearchResult & {
|
|
106653
106935
|
__typename?: 'SearchResultTrelloBoard';
|
|
106654
106936
|
description: Scalars['String']['output'];
|
|
@@ -106720,6 +107002,14 @@ export declare enum SearchSortOrder {
|
|
|
106720
107002
|
Asc = "ASC",
|
|
106721
107003
|
Desc = "DESC"
|
|
106722
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
|
+
};
|
|
106723
107013
|
export declare type SearchThirdPartyFilter = {
|
|
106724
107014
|
additionalTexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
106725
107015
|
ancestorAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -127794,6 +128084,12 @@ export declare type StakeholderCommsListIncidentResponse = {
|
|
|
127794
128084
|
error?: Maybe<Scalars['String']['output']>;
|
|
127795
128085
|
incidentNodes?: Maybe<Array<Maybe<StakeholderCommsIncidentWithUpdates>>>;
|
|
127796
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
|
+
};
|
|
127797
128093
|
export declare type StakeholderCommsModePreference = {
|
|
127798
128094
|
__typename?: 'StakeholderCommsModePreference';
|
|
127799
128095
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -129144,6 +129440,7 @@ export declare type TeamMutation = {
|
|
|
129144
129440
|
__typename?: 'TeamMutation';
|
|
129145
129441
|
addChild?: Maybe<TeamV2>;
|
|
129146
129442
|
addParent?: Maybe<TeamV2>;
|
|
129443
|
+
assignTeamToType?: Maybe<TeamV2>;
|
|
129147
129444
|
createTeamType?: Maybe<TeamType>;
|
|
129148
129445
|
removeChild?: Maybe<TeamV2>;
|
|
129149
129446
|
removeParent?: Maybe<TeamV2>;
|
|
@@ -129160,6 +129457,10 @@ export declare type TeamMutationAddParentArgs = {
|
|
|
129160
129457
|
siteId: Scalars['ID']['input'];
|
|
129161
129458
|
teamId: Scalars['ID']['input'];
|
|
129162
129459
|
};
|
|
129460
|
+
export declare type TeamMutationAssignTeamToTypeArgs = {
|
|
129461
|
+
teamId: Scalars['ID']['input'];
|
|
129462
|
+
typeId: Scalars['ID']['input'];
|
|
129463
|
+
};
|
|
129163
129464
|
export declare type TeamMutationCreateTeamTypeArgs = {
|
|
129164
129465
|
scopeId: Scalars['ID']['input'];
|
|
129165
129466
|
typeData: TeamTypeCreationPayload;
|
|
@@ -129379,6 +129680,7 @@ export declare type TeamV2 = Node & {
|
|
|
129379
129680
|
smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
129380
129681
|
smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
129381
129682
|
state?: Maybe<TeamStateV2>;
|
|
129683
|
+
type?: Maybe<TeamType>;
|
|
129382
129684
|
};
|
|
129383
129685
|
export declare type TeamV2MembersArgs = {
|
|
129384
129686
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -130447,6 +130749,7 @@ export declare type TownsquareGoalUpdate = Node & {
|
|
|
130447
130749
|
creator?: Maybe<User>;
|
|
130448
130750
|
editDate?: Maybe<Scalars['DateTime']['output']>;
|
|
130449
130751
|
goal?: Maybe<TownsquareGoal>;
|
|
130752
|
+
highlights?: Maybe<TownsquareHighlightConnection>;
|
|
130450
130753
|
id: Scalars['ID']['output'];
|
|
130451
130754
|
lastEditedBy?: Maybe<User>;
|
|
130452
130755
|
missedUpdate: Scalars['Boolean']['output'];
|
|
@@ -130470,6 +130773,10 @@ export declare type TownsquareGoalUpdateCommentsArgs = {
|
|
|
130470
130773
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130471
130774
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130472
130775
|
};
|
|
130776
|
+
export declare type TownsquareGoalUpdateHighlightsArgs = {
|
|
130777
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
130778
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130779
|
+
};
|
|
130473
130780
|
export declare type TownsquareGoalUpdateUpdateNotesArgs = {
|
|
130474
130781
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130475
130782
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -131108,6 +131415,7 @@ export declare type TownsquareProjectUpdate = Node & {
|
|
|
131108
131415
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
131109
131416
|
creator?: Maybe<User>;
|
|
131110
131417
|
editDate?: Maybe<Scalars['DateTime']['output']>;
|
|
131418
|
+
highlights?: Maybe<TownsquareHighlightConnection>;
|
|
131111
131419
|
id: Scalars['ID']['output'];
|
|
131112
131420
|
lastEditedBy?: Maybe<User>;
|
|
131113
131421
|
missedUpdate: Scalars['Boolean']['output'];
|
|
@@ -131134,6 +131442,10 @@ export declare type TownsquareProjectUpdateCommentsArgs = {
|
|
|
131134
131442
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131135
131443
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131136
131444
|
};
|
|
131445
|
+
export declare type TownsquareProjectUpdateHighlightsArgs = {
|
|
131446
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131447
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131448
|
+
};
|
|
131137
131449
|
export declare type TownsquareProjectUpdateUpdateNotesArgs = {
|
|
131138
131450
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131139
131451
|
first?: InputMaybe<Scalars['Int']['input']>;
|