@forge/cli-shared 8.15.3-next.1 → 8.15.3-next.2
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 +7 -0
- package/out/graphql/graphql-types.d.ts +536 -53
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +52 -28
- package/package.json +2 -2
|
@@ -2271,6 +2271,7 @@ export declare type AdminAuditLogContainer = {
|
|
|
2271
2271
|
type: AdminAuditLogContainerType;
|
|
2272
2272
|
};
|
|
2273
2273
|
export declare enum AdminAuditLogContainerType {
|
|
2274
|
+
App = "APP",
|
|
2274
2275
|
Org = "ORG",
|
|
2275
2276
|
Site = "SITE"
|
|
2276
2277
|
}
|
|
@@ -2579,17 +2580,8 @@ export declare type AdminExternalCollaboratorFeature = {
|
|
|
2579
2580
|
};
|
|
2580
2581
|
export declare type AdminFeature = AdminAiFeature | AdminAuditLogFeature | AdminCustomDomains | AdminDataResidencyFeature | AdminExternalCollaboratorFeature | AdminFreezeWindowsFeature | AdminInsightsFeature | AdminIpAllowlistingFeature | AdminReleaseTrackFeature | AdminSandboxFeature | AdminStorageFeature | AdminUserManagement;
|
|
2581
2582
|
export declare type AdminFetchAdminAuditLogEventsInput = {
|
|
2582
|
-
action?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2583
|
-
actor?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2584
|
-
appType?: InputMaybe<Scalars['String']['input']>;
|
|
2585
|
-
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
2586
2583
|
format?: InputMaybe<AdminAuditLogEventMessageFormat>;
|
|
2587
|
-
|
|
2588
|
-
ip?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2589
|
-
location?: InputMaybe<Scalars['String']['input']>;
|
|
2590
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
2591
|
-
sortOrder?: InputMaybe<SortDirection>;
|
|
2592
|
-
to?: InputMaybe<Scalars['String']['input']>;
|
|
2584
|
+
query: Scalars['String']['input'];
|
|
2593
2585
|
};
|
|
2594
2586
|
export declare type AdminFetchGroupInput = {
|
|
2595
2587
|
directoryId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2897,6 +2889,24 @@ export declare type AdminOrgDirectoryDetail = {
|
|
|
2897
2889
|
samlConfigurationId?: Maybe<Scalars['ID']['output']>;
|
|
2898
2890
|
scimDirectoryId?: Maybe<Scalars['ID']['output']>;
|
|
2899
2891
|
};
|
|
2892
|
+
export declare type AdminOrgPolicy = {
|
|
2893
|
+
__typename?: 'AdminOrgPolicy';
|
|
2894
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
2895
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2896
|
+
metadata?: Maybe<Scalars['String']['output']>;
|
|
2897
|
+
name: Scalars['String']['output'];
|
|
2898
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
2899
|
+
queryData?: Maybe<Scalars['String']['output']>;
|
|
2900
|
+
rule?: Maybe<Scalars['String']['output']>;
|
|
2901
|
+
status: Scalars['String']['output'];
|
|
2902
|
+
type: Scalars['String']['output'];
|
|
2903
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
2904
|
+
};
|
|
2905
|
+
export declare type AdminOrgPolicyConnection = {
|
|
2906
|
+
__typename?: 'AdminOrgPolicyConnection';
|
|
2907
|
+
edges?: Maybe<Array<AdminOrgPolicyEdge>>;
|
|
2908
|
+
pageInfo: PageInfo;
|
|
2909
|
+
};
|
|
2900
2910
|
export declare type AdminOrgPolicyDetail = {
|
|
2901
2911
|
__typename?: 'AdminOrgPolicyDetail';
|
|
2902
2912
|
authPolicy: AdminAuthPolicyConfig;
|
|
@@ -2907,6 +2917,11 @@ export declare type AdminOrgPolicyDetail = {
|
|
|
2907
2917
|
numberOfUsers?: Maybe<Scalars['Int']['output']>;
|
|
2908
2918
|
policyType: AdminAuthenticationPolicyType;
|
|
2909
2919
|
};
|
|
2920
|
+
export declare type AdminOrgPolicyEdge = {
|
|
2921
|
+
__typename?: 'AdminOrgPolicyEdge';
|
|
2922
|
+
cursor: Scalars['String']['output'];
|
|
2923
|
+
node: AdminOrgPolicy;
|
|
2924
|
+
};
|
|
2910
2925
|
export declare type AdminOrganization = {
|
|
2911
2926
|
__typename?: 'AdminOrganization';
|
|
2912
2927
|
id: Scalars['ID']['output'];
|
|
@@ -4574,6 +4589,7 @@ export declare type AgentStudioTeamsChannelDetails = {
|
|
|
4574
4589
|
};
|
|
4575
4590
|
export declare type AgentStudioTool = {
|
|
4576
4591
|
__typename?: 'AgentStudioTool';
|
|
4592
|
+
configured?: Maybe<Scalars['Boolean']['output']>;
|
|
4577
4593
|
definitionId?: Maybe<Scalars['String']['output']>;
|
|
4578
4594
|
definitionSource?: Maybe<AgentStudioToolDefinitionSource>;
|
|
4579
4595
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -4600,6 +4616,7 @@ export declare type AgentStudioToolIdAndSource = {
|
|
|
4600
4616
|
toolId: Scalars['String']['input'];
|
|
4601
4617
|
};
|
|
4602
4618
|
export declare type AgentStudioToolInput = {
|
|
4619
|
+
configured?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4603
4620
|
definitionId: Scalars['String']['input'];
|
|
4604
4621
|
definitionSource: AgentStudioToolDefinitionSource;
|
|
4605
4622
|
toolId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4806,7 +4823,7 @@ export declare type AgentWorkspaceAgentAvailability = {
|
|
|
4806
4823
|
teamIds: Array<Scalars['ID']['output']>;
|
|
4807
4824
|
teamNames: Array<Scalars['String']['output']>;
|
|
4808
4825
|
teams?: Maybe<Array<TeamV2>>;
|
|
4809
|
-
updatedAt
|
|
4826
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4810
4827
|
};
|
|
4811
4828
|
export declare type AgentWorkspaceAgentShifts = {
|
|
4812
4829
|
__typename?: 'AgentWorkspaceAgentShifts';
|
|
@@ -13106,6 +13123,12 @@ export declare type ChannelPlatformMediaPlacement = {
|
|
|
13106
13123
|
signalingUrl?: Maybe<Scalars['String']['output']>;
|
|
13107
13124
|
turnControlUrl?: Maybe<Scalars['String']['output']>;
|
|
13108
13125
|
};
|
|
13126
|
+
export declare type ChannelPlatformMediaTokenResponse = {
|
|
13127
|
+
__typename?: 'ChannelPlatformMediaTokenResponse';
|
|
13128
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
13129
|
+
collectionName?: Maybe<Scalars['String']['output']>;
|
|
13130
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
13131
|
+
};
|
|
13109
13132
|
export declare type ChannelPlatformMeeting = {
|
|
13110
13133
|
__typename?: 'ChannelPlatformMeeting';
|
|
13111
13134
|
mediaPlacement?: Maybe<ChannelPlatformMediaPlacement>;
|
|
@@ -23778,7 +23801,7 @@ export declare type ConfluenceCreateCommentOnQuestionPayload = {
|
|
|
23778
23801
|
};
|
|
23779
23802
|
export declare type ConfluenceCreateContentApprovalRequestInput = {
|
|
23780
23803
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
23781
|
-
contentId: Scalars['
|
|
23804
|
+
contentId: Scalars['ID']['input'];
|
|
23782
23805
|
contentStatus: GraphQlContentStatus;
|
|
23783
23806
|
reviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalReviewerInput>>>;
|
|
23784
23807
|
version: Scalars['Int']['input'];
|
|
@@ -23916,7 +23939,7 @@ export declare type ConfluenceCreateTopicPayload = Payload & {
|
|
|
23916
23939
|
topic?: Maybe<ConfluenceTopic>;
|
|
23917
23940
|
};
|
|
23918
23941
|
export declare type ConfluenceCreateWorkflowApplicationRequestInput = {
|
|
23919
|
-
contentId: Scalars['
|
|
23942
|
+
contentId: Scalars['ID']['input'];
|
|
23920
23943
|
contentStatus: GraphQlContentStatus;
|
|
23921
23944
|
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23922
23945
|
version?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -26223,7 +26246,8 @@ export declare enum ConfluencePermission {
|
|
|
26223
26246
|
View = "VIEW"
|
|
26224
26247
|
}
|
|
26225
26248
|
export declare type ConfluencePermissionCombinationPrincipalTypeAssignmentInput = {
|
|
26226
|
-
|
|
26249
|
+
mutationPrincipalType?: InputMaybe<ConfluencePermissionTransitionMutationPrincipalType>;
|
|
26250
|
+
principalType?: InputMaybe<ConfluencePermissionTransitionPrincipalType>;
|
|
26227
26251
|
removeAccess: Scalars['Boolean']['input'];
|
|
26228
26252
|
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
26229
26253
|
};
|
|
@@ -26251,6 +26275,14 @@ export declare type ConfluencePermissionTransitionBulkRemoveAccessPayload = Payl
|
|
|
26251
26275
|
success: Scalars['Boolean']['output'];
|
|
26252
26276
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
26253
26277
|
};
|
|
26278
|
+
export declare enum ConfluencePermissionTransitionMutationPrincipalType {
|
|
26279
|
+
AllLicensedUsersUserClass = "ALL_LICENSED_USERS_USER_CLASS",
|
|
26280
|
+
AllProductAdminsUserClass = "ALL_PRODUCT_ADMINS_USER_CLASS",
|
|
26281
|
+
Anonymous = "ANONYMOUS",
|
|
26282
|
+
Group = "GROUP",
|
|
26283
|
+
Guest = "GUEST",
|
|
26284
|
+
User = "USER"
|
|
26285
|
+
}
|
|
26254
26286
|
export declare type ConfluencePermissionTransitionPrincipal = {
|
|
26255
26287
|
__typename?: 'ConfluencePermissionTransitionPrincipal';
|
|
26256
26288
|
email?: Maybe<Scalars['String']['output']>;
|
|
@@ -26991,6 +27023,7 @@ export declare type ConfluenceReviewerDecisionInfo = {
|
|
|
26991
27023
|
principalType: ConfluencePrincipalType;
|
|
26992
27024
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
26993
27025
|
reviewerDecisionStatus?: Maybe<ConfluenceReviewerDecisionState>;
|
|
27026
|
+
reviewerId?: Maybe<Scalars['ID']['output']>;
|
|
26994
27027
|
user?: Maybe<AtlassianUser>;
|
|
26995
27028
|
};
|
|
26996
27029
|
export declare enum ConfluenceReviewerDecisionState {
|
|
@@ -28614,8 +28647,14 @@ export declare type ConfluenceWorkflowApplicationDetails = {
|
|
|
28614
28647
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
28615
28648
|
contentStatus?: Maybe<Scalars['String']['output']>;
|
|
28616
28649
|
contentVersion?: Maybe<Scalars['Int']['output']>;
|
|
28650
|
+
creationDate?: Maybe<ConfluenceApprovalsDate>;
|
|
28651
|
+
creator?: Maybe<AtlassianUser>;
|
|
28652
|
+
creatorAaid?: Maybe<Scalars['ID']['output']>;
|
|
28617
28653
|
id?: Maybe<Scalars['ID']['output']>;
|
|
28618
28654
|
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
28655
|
+
lastModificationDate?: Maybe<ConfluenceApprovalsDate>;
|
|
28656
|
+
modifier?: Maybe<AtlassianUser>;
|
|
28657
|
+
modifierAaid?: Maybe<Scalars['ID']['output']>;
|
|
28619
28658
|
workflowId?: Maybe<Scalars['ID']['output']>;
|
|
28620
28659
|
workflowStatusId?: Maybe<Scalars['ID']['output']>;
|
|
28621
28660
|
};
|
|
@@ -31614,12 +31653,16 @@ export declare type CplsViewSettingsInput = {
|
|
|
31614
31653
|
};
|
|
31615
31654
|
export declare type CplsWork = {
|
|
31616
31655
|
__typename?: 'CplsWork';
|
|
31656
|
+
contributorsByIds?: Maybe<Array<Maybe<CplsWorkContributorEdge>>>;
|
|
31617
31657
|
id: Scalars['ID']['output'];
|
|
31618
31658
|
resourcing?: Maybe<CplsWorkResourcing>;
|
|
31619
31659
|
workContributors?: Maybe<CplsWorkContributorConnection>;
|
|
31620
31660
|
workData?: Maybe<CplsWorkData>;
|
|
31621
31661
|
workDataId?: Maybe<Scalars['ID']['output']>;
|
|
31622
31662
|
};
|
|
31663
|
+
export declare type CplsWorkContributorsByIdsArgs = {
|
|
31664
|
+
contributorIds: Array<Scalars['ID']['input']>;
|
|
31665
|
+
};
|
|
31623
31666
|
export declare type CplsWorkWorkContributorsArgs = {
|
|
31624
31667
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31625
31668
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35815,6 +35858,9 @@ export declare type DevAiSandbox = {
|
|
|
35815
35858
|
readiness?: Maybe<DevAiSandboxReadiness>;
|
|
35816
35859
|
};
|
|
35817
35860
|
export declare enum DevAiSandboxError {
|
|
35861
|
+
ApplicationsStartFailed = "APPLICATIONS_START_FAILED",
|
|
35862
|
+
HibernationRestoreFailed = "HIBERNATION_RESTORE_FAILED",
|
|
35863
|
+
RepoCloneFailed = "REPO_CLONE_FAILED",
|
|
35818
35864
|
Unknown = "UNKNOWN"
|
|
35819
35865
|
}
|
|
35820
35866
|
export declare type DevAiSandboxProgress = {
|
|
@@ -39595,6 +39641,8 @@ export declare type ExternalIcon = {
|
|
|
39595
39641
|
export declare type ExternalLargeContent = {
|
|
39596
39642
|
__typename?: 'ExternalLargeContent';
|
|
39597
39643
|
asText?: Maybe<Scalars['String']['output']>;
|
|
39644
|
+
mediaTextUrl?: Maybe<Scalars['String']['output']>;
|
|
39645
|
+
mediaThumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
39598
39646
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
39599
39647
|
};
|
|
39600
39648
|
export declare type ExternalLocation = {
|
|
@@ -42970,6 +43018,7 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerMetaData = {
|
|
|
42970
43018
|
export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
42971
43019
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerNode';
|
|
42972
43020
|
authConsentUrl?: Maybe<Scalars['URL']['output']>;
|
|
43021
|
+
autoEnableNewTools: Scalars['Boolean']['output'];
|
|
42973
43022
|
baseUrl: Scalars['URL']['output'];
|
|
42974
43023
|
displayName: Scalars['String']['output'];
|
|
42975
43024
|
endpointPath?: Maybe<Scalars['String']['output']>;
|
|
@@ -43028,6 +43077,7 @@ export declare enum GraphIntegrationMcpAdminManagementMcpToolStatus {
|
|
|
43028
43077
|
NewToolDeny = "NEW_TOOL_DENY"
|
|
43029
43078
|
}
|
|
43030
43079
|
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
43080
|
+
autoEnableNewTools?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43031
43081
|
cloudId: Scalars['ID']['input'];
|
|
43032
43082
|
displayName: Scalars['String']['input'];
|
|
43033
43083
|
endpointPath?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46029,6 +46079,10 @@ export declare type GraphStore = {
|
|
|
46029
46079
|
changeProposalHasAtlasGoalBatch?: Maybe<GraphStoreBatchChangeProposalHasAtlasGoalConnection>;
|
|
46030
46080
|
changeProposalHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedChangeProposalHasAtlasGoalInverseConnection>;
|
|
46031
46081
|
changeProposalHasAtlasGoalInverseBatch?: Maybe<GraphStoreBatchChangeProposalHasAtlasGoalConnection>;
|
|
46082
|
+
changeProposalHasWork?: Maybe<GraphStoreSimplifiedChangeProposalHasWorkConnection>;
|
|
46083
|
+
changeProposalHasWorkBatch?: Maybe<GraphStoreBatchChangeProposalHasWorkConnection>;
|
|
46084
|
+
changeProposalHasWorkInverse?: Maybe<GraphStoreSimplifiedChangeProposalHasWorkInverseConnection>;
|
|
46085
|
+
changeProposalHasWorkInverseBatch?: Maybe<GraphStoreBatchChangeProposalHasWorkConnection>;
|
|
46032
46086
|
commitBelongsToPullRequest?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestConnection>;
|
|
46033
46087
|
commitBelongsToPullRequestInverse?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestInverseConnection>;
|
|
46034
46088
|
commitInRepo?: Maybe<GraphStoreSimplifiedCommitInRepoConnection>;
|
|
@@ -47865,6 +47919,36 @@ export declare type GraphStoreChangeProposalHasAtlasGoalInverseBatchArgs = {
|
|
|
47865
47919
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
47866
47920
|
sort?: InputMaybe<GraphStoreChangeProposalHasAtlasGoalSortInput>;
|
|
47867
47921
|
};
|
|
47922
|
+
export declare type GraphStoreChangeProposalHasWorkArgs = {
|
|
47923
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
47924
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47925
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47926
|
+
id: Scalars['ID']['input'];
|
|
47927
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
47928
|
+
sort?: InputMaybe<GraphStoreChangeProposalHasWorkSortInput>;
|
|
47929
|
+
};
|
|
47930
|
+
export declare type GraphStoreChangeProposalHasWorkBatchArgs = {
|
|
47931
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
47932
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47933
|
+
ids: Array<Scalars['ID']['input']>;
|
|
47934
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
47935
|
+
sort?: InputMaybe<GraphStoreChangeProposalHasWorkSortInput>;
|
|
47936
|
+
};
|
|
47937
|
+
export declare type GraphStoreChangeProposalHasWorkInverseArgs = {
|
|
47938
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
47939
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47940
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47941
|
+
id: Scalars['ID']['input'];
|
|
47942
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
47943
|
+
sort?: InputMaybe<GraphStoreChangeProposalHasWorkSortInput>;
|
|
47944
|
+
};
|
|
47945
|
+
export declare type GraphStoreChangeProposalHasWorkInverseBatchArgs = {
|
|
47946
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
47947
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47948
|
+
ids: Array<Scalars['ID']['input']>;
|
|
47949
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
47950
|
+
sort?: InputMaybe<GraphStoreChangeProposalHasWorkSortInput>;
|
|
47951
|
+
};
|
|
47868
47952
|
export declare type GraphStoreCommitBelongsToPullRequestArgs = {
|
|
47869
47953
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47870
47954
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55076,6 +55160,47 @@ export declare type GraphStoreBatchChangeProposalHasAtlasGoalStartNode = {
|
|
|
55076
55160
|
id: Scalars['ID']['output'];
|
|
55077
55161
|
};
|
|
55078
55162
|
export declare type GraphStoreBatchChangeProposalHasAtlasGoalStartUnion = MercuryChangeProposal;
|
|
55163
|
+
export declare type GraphStoreBatchChangeProposalHasWorkConnection = HasPageInfo & {
|
|
55164
|
+
__typename?: 'GraphStoreBatchChangeProposalHasWorkConnection';
|
|
55165
|
+
edges: Array<Maybe<GraphStoreBatchChangeProposalHasWorkEdge>>;
|
|
55166
|
+
nodes: Array<Maybe<GraphStoreBatchChangeProposalHasWorkNode>>;
|
|
55167
|
+
pageInfo: PageInfo;
|
|
55168
|
+
};
|
|
55169
|
+
export declare type GraphStoreBatchChangeProposalHasWorkEdge = {
|
|
55170
|
+
__typename?: 'GraphStoreBatchChangeProposalHasWorkEdge';
|
|
55171
|
+
node: GraphStoreBatchChangeProposalHasWorkInnerConnection;
|
|
55172
|
+
};
|
|
55173
|
+
export declare type GraphStoreBatchChangeProposalHasWorkEndNode = {
|
|
55174
|
+
__typename?: 'GraphStoreBatchChangeProposalHasWorkEndNode';
|
|
55175
|
+
data?: Maybe<GraphStoreBatchChangeProposalHasWorkEndUnion>;
|
|
55176
|
+
id: Scalars['ID']['output'];
|
|
55177
|
+
};
|
|
55178
|
+
export declare type GraphStoreBatchChangeProposalHasWorkEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
55179
|
+
export declare type GraphStoreBatchChangeProposalHasWorkInnerConnection = {
|
|
55180
|
+
__typename?: 'GraphStoreBatchChangeProposalHasWorkInnerConnection';
|
|
55181
|
+
edges: Array<Maybe<GraphStoreBatchChangeProposalHasWorkInnerEdge>>;
|
|
55182
|
+
nodes: Array<Maybe<GraphStoreBatchChangeProposalHasWorkNode>>;
|
|
55183
|
+
requestedId: Scalars['ID']['output'];
|
|
55184
|
+
};
|
|
55185
|
+
export declare type GraphStoreBatchChangeProposalHasWorkInnerEdge = {
|
|
55186
|
+
__typename?: 'GraphStoreBatchChangeProposalHasWorkInnerEdge';
|
|
55187
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55188
|
+
node: GraphStoreBatchChangeProposalHasWorkNode;
|
|
55189
|
+
};
|
|
55190
|
+
export declare type GraphStoreBatchChangeProposalHasWorkNode = Node & {
|
|
55191
|
+
__typename?: 'GraphStoreBatchChangeProposalHasWorkNode';
|
|
55192
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55193
|
+
from: GraphStoreBatchChangeProposalHasWorkStartNode;
|
|
55194
|
+
id: Scalars['ID']['output'];
|
|
55195
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55196
|
+
to: GraphStoreBatchChangeProposalHasWorkEndNode;
|
|
55197
|
+
};
|
|
55198
|
+
export declare type GraphStoreBatchChangeProposalHasWorkStartNode = {
|
|
55199
|
+
__typename?: 'GraphStoreBatchChangeProposalHasWorkStartNode';
|
|
55200
|
+
data?: Maybe<GraphStoreBatchChangeProposalHasWorkStartUnion>;
|
|
55201
|
+
id: Scalars['ID']['output'];
|
|
55202
|
+
};
|
|
55203
|
+
export declare type GraphStoreBatchChangeProposalHasWorkStartUnion = MercuryChangeProposal;
|
|
55079
55204
|
export declare type GraphStoreBatchContentReferencedEntityConnection = HasPageInfo & {
|
|
55080
55205
|
__typename?: 'GraphStoreBatchContentReferencedEntityConnection';
|
|
55081
55206
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityEdge>>;
|
|
@@ -56278,6 +56403,9 @@ export declare type GraphStoreCalendarHasLinkedDocumentSortInput = {
|
|
|
56278
56403
|
export declare type GraphStoreChangeProposalHasAtlasGoalSortInput = {
|
|
56279
56404
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56280
56405
|
};
|
|
56406
|
+
export declare type GraphStoreChangeProposalHasWorkSortInput = {
|
|
56407
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56408
|
+
};
|
|
56281
56409
|
export declare type GraphStoreCommitBelongsToPullRequestSortInput = {
|
|
56282
56410
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56283
56411
|
};
|
|
@@ -64002,6 +64130,34 @@ export declare type GraphStoreSimplifiedChangeProposalHasAtlasGoalInverseEdge =
|
|
|
64002
64130
|
};
|
|
64003
64131
|
export declare type GraphStoreSimplifiedChangeProposalHasAtlasGoalInverseUnion = MercuryChangeProposal;
|
|
64004
64132
|
export declare type GraphStoreSimplifiedChangeProposalHasAtlasGoalUnion = TownsquareGoal;
|
|
64133
|
+
export declare type GraphStoreSimplifiedChangeProposalHasWorkConnection = HasPageInfo & {
|
|
64134
|
+
__typename?: 'GraphStoreSimplifiedChangeProposalHasWorkConnection';
|
|
64135
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedChangeProposalHasWorkEdge>>>;
|
|
64136
|
+
pageInfo: PageInfo;
|
|
64137
|
+
};
|
|
64138
|
+
export declare type GraphStoreSimplifiedChangeProposalHasWorkEdge = {
|
|
64139
|
+
__typename?: 'GraphStoreSimplifiedChangeProposalHasWorkEdge';
|
|
64140
|
+
createdAt: Scalars['DateTime']['output'];
|
|
64141
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
64142
|
+
id: Scalars['ID']['output'];
|
|
64143
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
64144
|
+
node?: Maybe<GraphStoreSimplifiedChangeProposalHasWorkUnion>;
|
|
64145
|
+
};
|
|
64146
|
+
export declare type GraphStoreSimplifiedChangeProposalHasWorkInverseConnection = HasPageInfo & {
|
|
64147
|
+
__typename?: 'GraphStoreSimplifiedChangeProposalHasWorkInverseConnection';
|
|
64148
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedChangeProposalHasWorkInverseEdge>>>;
|
|
64149
|
+
pageInfo: PageInfo;
|
|
64150
|
+
};
|
|
64151
|
+
export declare type GraphStoreSimplifiedChangeProposalHasWorkInverseEdge = {
|
|
64152
|
+
__typename?: 'GraphStoreSimplifiedChangeProposalHasWorkInverseEdge';
|
|
64153
|
+
createdAt: Scalars['DateTime']['output'];
|
|
64154
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
64155
|
+
id: Scalars['ID']['output'];
|
|
64156
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
64157
|
+
node?: Maybe<GraphStoreSimplifiedChangeProposalHasWorkInverseUnion>;
|
|
64158
|
+
};
|
|
64159
|
+
export declare type GraphStoreSimplifiedChangeProposalHasWorkInverseUnion = MercuryChangeProposal;
|
|
64160
|
+
export declare type GraphStoreSimplifiedChangeProposalHasWorkUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
64005
64161
|
export declare type GraphStoreSimplifiedCommitBelongsToPullRequestConnection = HasPageInfo & {
|
|
64006
64162
|
__typename?: 'GraphStoreSimplifiedCommitBelongsToPullRequestConnection';
|
|
64007
64163
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestEdge>>>;
|
|
@@ -74818,6 +74974,8 @@ export declare type GraphStoreV2 = {
|
|
|
74818
74974
|
externalWorkerLinksThirdPartyUserInverse?: Maybe<GraphStoreV2SimplifiedExternalWorkerLinksThirdPartyUserInverseConnection>;
|
|
74819
74975
|
focusAskImpactsWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusAskImpactsWorkEntityConnection>;
|
|
74820
74976
|
focusAskImpactsWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseConnection>;
|
|
74977
|
+
focusChangeProposalHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection>;
|
|
74978
|
+
focusChangeProposalHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseConnection>;
|
|
74821
74979
|
focusFocusAreaHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection>;
|
|
74822
74980
|
focusFocusAreaHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalInverseConnection>;
|
|
74823
74981
|
focusFocusAreaHasChildFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasChildFocusFocusAreaConnection>;
|
|
@@ -78460,6 +78618,20 @@ export declare type GraphStoreV2FocusAskImpactsWorkEntityInverseArgs = {
|
|
|
78460
78618
|
id: Scalars['ID']['input'];
|
|
78461
78619
|
sort?: InputMaybe<GraphStoreV2FocusAskImpactsWorkEntitySortInput>;
|
|
78462
78620
|
};
|
|
78621
|
+
export declare type GraphStoreV2FocusChangeProposalHasWorkEntityArgs = {
|
|
78622
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
78623
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78624
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78625
|
+
id: Scalars['ID']['input'];
|
|
78626
|
+
sort?: InputMaybe<GraphStoreV2FocusChangeProposalHasWorkEntitySortInput>;
|
|
78627
|
+
};
|
|
78628
|
+
export declare type GraphStoreV2FocusChangeProposalHasWorkEntityInverseArgs = {
|
|
78629
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
78630
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78631
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78632
|
+
id: Scalars['ID']['input'];
|
|
78633
|
+
sort?: InputMaybe<GraphStoreV2FocusChangeProposalHasWorkEntitySortInput>;
|
|
78634
|
+
};
|
|
78463
78635
|
export declare type GraphStoreV2FocusFocusAreaHasAtlassianGoalArgs = {
|
|
78464
78636
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78465
78637
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -81755,6 +81927,9 @@ export declare type GraphStoreV2ExternalWorkerLinksThirdPartyUserSortInput = {
|
|
|
81755
81927
|
export declare type GraphStoreV2FocusAskImpactsWorkEntitySortInput = {
|
|
81756
81928
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81757
81929
|
};
|
|
81930
|
+
export declare type GraphStoreV2FocusChangeProposalHasWorkEntitySortInput = {
|
|
81931
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81932
|
+
};
|
|
81758
81933
|
export declare type GraphStoreV2FocusFocusAreaHasAtlassianGoalSortInput = {
|
|
81759
81934
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81760
81935
|
};
|
|
@@ -90206,6 +90381,34 @@ export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseEdge =
|
|
|
90206
90381
|
};
|
|
90207
90382
|
export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseUnion = SpfAsk;
|
|
90208
90383
|
export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
90384
|
+
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection = HasPageInfo & {
|
|
90385
|
+
__typename?: 'GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection';
|
|
90386
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityEdge>>>;
|
|
90387
|
+
pageInfo: PageInfo;
|
|
90388
|
+
};
|
|
90389
|
+
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityEdge = {
|
|
90390
|
+
__typename?: 'GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityEdge';
|
|
90391
|
+
createdAt: Scalars['DateTime']['output'];
|
|
90392
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90393
|
+
id: Scalars['ID']['output'];
|
|
90394
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
90395
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityUnion>;
|
|
90396
|
+
};
|
|
90397
|
+
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseConnection = HasPageInfo & {
|
|
90398
|
+
__typename?: 'GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseConnection';
|
|
90399
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseEdge>>>;
|
|
90400
|
+
pageInfo: PageInfo;
|
|
90401
|
+
};
|
|
90402
|
+
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseEdge = {
|
|
90403
|
+
__typename?: 'GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseEdge';
|
|
90404
|
+
createdAt: Scalars['DateTime']['output'];
|
|
90405
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90406
|
+
id: Scalars['ID']['output'];
|
|
90407
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
90408
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseUnion>;
|
|
90409
|
+
};
|
|
90410
|
+
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseUnion = MercuryChangeProposal;
|
|
90411
|
+
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
90209
90412
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection = HasPageInfo & {
|
|
90210
90413
|
__typename?: 'GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection';
|
|
90211
90414
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalEdge>>>;
|
|
@@ -99809,6 +100012,7 @@ export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
|
99809
100012
|
export declare type JiraBoardViewFieldSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
|
|
99810
100013
|
__typename?: 'JiraBoardViewFieldSwimlane';
|
|
99811
100014
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
100015
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
99812
100016
|
field?: Maybe<JiraField>;
|
|
99813
100017
|
id: Scalars['ID']['output'];
|
|
99814
100018
|
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -99923,6 +100127,7 @@ export declare type JiraBoardViewStatusEdge = {
|
|
|
99923
100127
|
};
|
|
99924
100128
|
export declare type JiraBoardViewSwimlane = {
|
|
99925
100129
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
100130
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
99926
100131
|
id: Scalars['ID']['output'];
|
|
99927
100132
|
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
99928
100133
|
};
|
|
@@ -103761,6 +103966,7 @@ export declare type JiraFieldSchemeAssociatedFieldsInput = {
|
|
|
103761
103966
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
103762
103967
|
requiredOnIssueTypesFilter?: InputMaybe<Array<JiraFieldsRequiredOnIssueTypesFilterInput>>;
|
|
103763
103968
|
schemeId: Scalars['ID']['input'];
|
|
103969
|
+
sortBy?: InputMaybe<Array<JiraFieldSchemesSort>>;
|
|
103764
103970
|
};
|
|
103765
103971
|
export declare type JiraFieldSchemeAssociatedIssueTypesInput = {
|
|
103766
103972
|
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -103799,6 +104005,11 @@ export declare type JiraFieldSchemesEdge = {
|
|
|
103799
104005
|
};
|
|
103800
104006
|
export declare type JiraFieldSchemesInput = {
|
|
103801
104007
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
104008
|
+
sortBy?: InputMaybe<Array<JiraFieldSchemesSort>>;
|
|
104009
|
+
};
|
|
104010
|
+
export declare type JiraFieldSchemesSort = {
|
|
104011
|
+
direction: SortDirection;
|
|
104012
|
+
key: Scalars['String']['input'];
|
|
103802
104013
|
};
|
|
103803
104014
|
export declare enum JiraFieldScopeType {
|
|
103804
104015
|
All = "ALL",
|
|
@@ -113184,6 +113395,7 @@ export declare type JiraQuery = {
|
|
|
113184
113395
|
jiraProjectsByJql?: Maybe<JiraProjectConnection>;
|
|
113185
113396
|
jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
|
|
113186
113397
|
jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
|
|
113398
|
+
jiraServiceManagementSlaIssue?: Maybe<JiraServiceManagementSlaIssueResult>;
|
|
113187
113399
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
113188
113400
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
113189
113401
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
@@ -113945,6 +114157,10 @@ export declare type JiraQueryJiraServiceManagementRequestTypeCategoriesByProject
|
|
|
113945
114157
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
113946
114158
|
projectId: Scalars['ID']['input'];
|
|
113947
114159
|
};
|
|
114160
|
+
export declare type JiraQueryJiraServiceManagementSlaIssueArgs = {
|
|
114161
|
+
cloudId: Scalars['ID']['input'];
|
|
114162
|
+
issueKey: Scalars['String']['input'];
|
|
114163
|
+
};
|
|
113948
114164
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
113949
114165
|
cloudId: Scalars['ID']['input'];
|
|
113950
114166
|
};
|
|
@@ -116697,6 +116913,47 @@ export declare type JiraServiceManagementSentimentFieldPayload = Payload & {
|
|
|
116697
116913
|
field?: Maybe<JiraServiceManagementSentimentField>;
|
|
116698
116914
|
success: Scalars['Boolean']['output'];
|
|
116699
116915
|
};
|
|
116916
|
+
export declare type JiraServiceManagementSlaCompleteGoal = {
|
|
116917
|
+
__typename?: 'JiraServiceManagementSlaCompleteGoal';
|
|
116918
|
+
breachTime?: Maybe<Scalars['String']['output']>;
|
|
116919
|
+
failed?: Maybe<Scalars['Boolean']['output']>;
|
|
116920
|
+
goalTime?: Maybe<Scalars['String']['output']>;
|
|
116921
|
+
remainingTime?: Maybe<Scalars['String']['output']>;
|
|
116922
|
+
startTime?: Maybe<Scalars['String']['output']>;
|
|
116923
|
+
stopTime?: Maybe<Scalars['String']['output']>;
|
|
116924
|
+
};
|
|
116925
|
+
export declare type JiraServiceManagementSlaGoalDetailedView = {
|
|
116926
|
+
__typename?: 'JiraServiceManagementSlaGoalDetailedView';
|
|
116927
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
116928
|
+
breachTime?: Maybe<Scalars['String']['output']>;
|
|
116929
|
+
calendarName?: Maybe<Scalars['String']['output']>;
|
|
116930
|
+
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
116931
|
+
completeGoals?: Maybe<Array<JiraServiceManagementSlaCompleteGoal>>;
|
|
116932
|
+
currentJqlMatch?: Maybe<Scalars['String']['output']>;
|
|
116933
|
+
emergencyLevel?: Maybe<Scalars['String']['output']>;
|
|
116934
|
+
failed?: Maybe<Scalars['Boolean']['output']>;
|
|
116935
|
+
goalTime?: Maybe<Scalars['String']['output']>;
|
|
116936
|
+
goalTimeLong?: Maybe<Scalars['String']['output']>;
|
|
116937
|
+
incalculableSlaError?: Maybe<Scalars['String']['output']>;
|
|
116938
|
+
metricName?: Maybe<Scalars['String']['output']>;
|
|
116939
|
+
nextConditionMatch?: Maybe<Scalars['String']['output']>;
|
|
116940
|
+
paused?: Maybe<Scalars['Boolean']['output']>;
|
|
116941
|
+
remainingTime?: Maybe<Scalars['String']['output']>;
|
|
116942
|
+
remainingTimeLong?: Maybe<Scalars['String']['output']>;
|
|
116943
|
+
slaDisplayFormat?: Maybe<Scalars['String']['output']>;
|
|
116944
|
+
startTime?: Maybe<Scalars['String']['output']>;
|
|
116945
|
+
stopTime?: Maybe<Scalars['String']['output']>;
|
|
116946
|
+
};
|
|
116947
|
+
export declare type JiraServiceManagementSlaIssue = {
|
|
116948
|
+
__typename?: 'JiraServiceManagementSlaIssue';
|
|
116949
|
+
goalViews?: Maybe<Array<JiraServiceManagementSlaGoalDetailedView>>;
|
|
116950
|
+
hasPreviousCycles?: Maybe<Scalars['Boolean']['output']>;
|
|
116951
|
+
};
|
|
116952
|
+
export declare type JiraServiceManagementSlaIssueResult = {
|
|
116953
|
+
__typename?: 'JiraServiceManagementSlaIssueResult';
|
|
116954
|
+
errors?: Maybe<Array<QueryError>>;
|
|
116955
|
+
slaIssue?: Maybe<JiraServiceManagementSlaIssue>;
|
|
116956
|
+
};
|
|
116700
116957
|
export declare type JiraServiceManagementTeamResponder = {
|
|
116701
116958
|
__typename?: 'JiraServiceManagementTeamResponder';
|
|
116702
116959
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
@@ -116954,6 +117211,19 @@ export declare type JiraSetBoardViewStatusColumnMappingRenameStatusInput = {
|
|
|
116954
117211
|
name: Scalars['String']['input'];
|
|
116955
117212
|
statusId: Scalars['ID']['input'];
|
|
116956
117213
|
};
|
|
117214
|
+
export declare type JiraSetBoardViewSwimlaneStateInput = {
|
|
117215
|
+
collapsed: Scalars['Boolean']['input'];
|
|
117216
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
117217
|
+
swimlaneId: Scalars['ID']['input'];
|
|
117218
|
+
viewId: Scalars['ID']['input'];
|
|
117219
|
+
};
|
|
117220
|
+
export declare type JiraSetBoardViewSwimlaneStatePayload = Payload & {
|
|
117221
|
+
__typename?: 'JiraSetBoardViewSwimlaneStatePayload';
|
|
117222
|
+
boardView?: Maybe<JiraBoardView>;
|
|
117223
|
+
errors?: Maybe<Array<MutationError>>;
|
|
117224
|
+
success: Scalars['Boolean']['output'];
|
|
117225
|
+
swimlane?: Maybe<JiraBoardViewSwimlane>;
|
|
117226
|
+
};
|
|
116957
117227
|
export declare type JiraSetBoardViewWorkflowSelectedInput = {
|
|
116958
117228
|
selectedWorkflowId: Scalars['ID']['input'];
|
|
116959
117229
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -121316,6 +121586,16 @@ export declare type JpdViewUpdatedEvent = {
|
|
|
121316
121586
|
viewId: Scalars['Int']['output'];
|
|
121317
121587
|
viewUuid: Scalars['ID']['output'];
|
|
121318
121588
|
};
|
|
121589
|
+
export declare type JpdViewsServiceAssociateGlobalViewInput = {
|
|
121590
|
+
containerId: Scalars['String']['input'];
|
|
121591
|
+
containerType: JpdViewsServiceGlobalViewAssociationContainerType;
|
|
121592
|
+
id: Scalars['ID']['input'];
|
|
121593
|
+
};
|
|
121594
|
+
export declare type JpdViewsServiceAssociateGlobalViewPayload = Payload & {
|
|
121595
|
+
__typename?: 'JpdViewsServiceAssociateGlobalViewPayload';
|
|
121596
|
+
errors?: Maybe<Array<MutationError>>;
|
|
121597
|
+
success: Scalars['Boolean']['output'];
|
|
121598
|
+
};
|
|
121319
121599
|
export declare type JpdViewsServiceAxisConfig = {
|
|
121320
121600
|
__typename?: 'JpdViewsServiceAxisConfig';
|
|
121321
121601
|
dimension: Scalars['String']['output'];
|
|
@@ -121424,6 +121704,9 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
|
|
|
121424
121704
|
viewId: Scalars['String']['output'];
|
|
121425
121705
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
121426
121706
|
};
|
|
121707
|
+
export declare enum JpdViewsServiceGlobalViewAssociationContainerType {
|
|
121708
|
+
Project = "PROJECT"
|
|
121709
|
+
}
|
|
121427
121710
|
export declare type JpdViewsServiceGlobalViewConnection = {
|
|
121428
121711
|
__typename?: 'JpdViewsServiceGlobalViewConnection';
|
|
121429
121712
|
edges?: Maybe<Array<JpdViewsServiceGlobalViewEdge>>;
|
|
@@ -129157,6 +129440,10 @@ export declare type MercuryCostItem = Node & {
|
|
|
129157
129440
|
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
129158
129441
|
name: Scalars['String']['output'];
|
|
129159
129442
|
};
|
|
129443
|
+
export declare type MercuryCostItemClassificationInput = {
|
|
129444
|
+
costSubtypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
129445
|
+
costTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
129446
|
+
};
|
|
129160
129447
|
export declare type MercuryCostItemConnection = {
|
|
129161
129448
|
__typename?: 'MercuryCostItemConnection';
|
|
129162
129449
|
edges?: Maybe<Array<MercuryCostItemEdge>>;
|
|
@@ -129292,6 +129579,28 @@ export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
|
129292
129579
|
singleSelectField?: InputMaybe<MercuryCreateSingleSelectCustomFieldDefinitionInput>;
|
|
129293
129580
|
textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
|
|
129294
129581
|
};
|
|
129582
|
+
export declare type MercuryCreateCostItemInput = {
|
|
129583
|
+
focusAreaId: Scalars['ID']['input'];
|
|
129584
|
+
name: Scalars['String']['input'];
|
|
129585
|
+
};
|
|
129586
|
+
export declare type MercuryCreateCostItemPayload = Payload & {
|
|
129587
|
+
__typename?: 'MercuryCreateCostItemPayload';
|
|
129588
|
+
createdCostItem?: Maybe<MercuryCostItem>;
|
|
129589
|
+
errors?: Maybe<Array<MutationError>>;
|
|
129590
|
+
success: Scalars['Boolean']['output'];
|
|
129591
|
+
};
|
|
129592
|
+
export declare type MercuryCreateCostPeriodValueInput = {
|
|
129593
|
+
amount: Scalars['String']['input'];
|
|
129594
|
+
costItemId: Scalars['ID']['input'];
|
|
129595
|
+
financialVersionId: Scalars['ID']['input'];
|
|
129596
|
+
yearMonth: Scalars['String']['input'];
|
|
129597
|
+
};
|
|
129598
|
+
export declare type MercuryCreateCostPeriodValuePayload = Payload & {
|
|
129599
|
+
__typename?: 'MercuryCreateCostPeriodValuePayload';
|
|
129600
|
+
createdCostPeriodValue?: Maybe<MercuryCostPeriodValue>;
|
|
129601
|
+
errors?: Maybe<Array<MutationError>>;
|
|
129602
|
+
success: Scalars['Boolean']['output'];
|
|
129603
|
+
};
|
|
129295
129604
|
export declare type MercuryCreateCostSubtypeInput = {
|
|
129296
129605
|
costTypeId: Scalars['ID']['input'];
|
|
129297
129606
|
name: Scalars['String']['input'];
|
|
@@ -129609,6 +129918,22 @@ export declare type MercuryDeleteCommentPayload = Payload & {
|
|
|
129609
129918
|
errors?: Maybe<Array<MutationError>>;
|
|
129610
129919
|
success: Scalars['Boolean']['output'];
|
|
129611
129920
|
};
|
|
129921
|
+
export declare type MercuryDeleteCostItemInput = {
|
|
129922
|
+
id: Scalars['ID']['input'];
|
|
129923
|
+
};
|
|
129924
|
+
export declare type MercuryDeleteCostItemPayload = Payload & {
|
|
129925
|
+
__typename?: 'MercuryDeleteCostItemPayload';
|
|
129926
|
+
errors?: Maybe<Array<MutationError>>;
|
|
129927
|
+
success: Scalars['Boolean']['output'];
|
|
129928
|
+
};
|
|
129929
|
+
export declare type MercuryDeleteCostPeriodValueInput = {
|
|
129930
|
+
id: Scalars['ID']['input'];
|
|
129931
|
+
};
|
|
129932
|
+
export declare type MercuryDeleteCostPeriodValuePayload = Payload & {
|
|
129933
|
+
__typename?: 'MercuryDeleteCostPeriodValuePayload';
|
|
129934
|
+
errors?: Maybe<Array<MutationError>>;
|
|
129935
|
+
success: Scalars['Boolean']['output'];
|
|
129936
|
+
};
|
|
129612
129937
|
export declare type MercuryDeleteCostSubtypeInput = {
|
|
129613
129938
|
id: Scalars['ID']['input'];
|
|
129614
129939
|
};
|
|
@@ -129815,6 +130140,7 @@ export declare type MercuryFinancialVersion = Node & {
|
|
|
129815
130140
|
export declare enum MercuryFinancialVersionType {
|
|
129816
130141
|
Actual = "ACTUAL",
|
|
129817
130142
|
Baseline = "BASELINE",
|
|
130143
|
+
Budget = "BUDGET",
|
|
129818
130144
|
Forecast = "FORECAST"
|
|
129819
130145
|
}
|
|
129820
130146
|
export declare type MercuryFiscalCalendarConfiguration = Node & {
|
|
@@ -130345,15 +130671,29 @@ export declare type MercuryFundsMonthlySummary = {
|
|
|
130345
130671
|
};
|
|
130346
130672
|
export declare type MercuryFundsMutationApi = {
|
|
130347
130673
|
__typename?: 'MercuryFundsMutationApi';
|
|
130674
|
+
createCostItem?: Maybe<MercuryCreateCostItemPayload>;
|
|
130675
|
+
createCostPeriodValue?: Maybe<MercuryCreateCostPeriodValuePayload>;
|
|
130348
130676
|
createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
|
|
130349
130677
|
createFiscalCalendarConfiguration?: Maybe<MercuryCreateFiscalCalendarConfigurationPayload>;
|
|
130350
130678
|
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
130679
|
+
deleteCostItem?: Maybe<MercuryDeleteCostItemPayload>;
|
|
130680
|
+
deleteCostPeriodValue?: Maybe<MercuryDeleteCostPeriodValuePayload>;
|
|
130351
130681
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
130352
130682
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
130353
130683
|
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
130684
|
+
updateCostItemClassification?: Maybe<MercuryUpdateCostItemClassificationPayload>;
|
|
130685
|
+
updateCostItemExpenditureType?: Maybe<MercuryUpdateCostItemExpenditureTypePayload>;
|
|
130686
|
+
updateCostItemInvestmentCategory?: Maybe<MercuryUpdateCostItemInvestmentCategoryPayload>;
|
|
130687
|
+
updateCostPeriodValueAmount?: Maybe<MercuryUpdateCostPeriodValueAmountPayload>;
|
|
130354
130688
|
updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
130355
130689
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
130356
130690
|
};
|
|
130691
|
+
export declare type MercuryFundsMutationApiCreateCostItemArgs = {
|
|
130692
|
+
input: MercuryCreateCostItemInput;
|
|
130693
|
+
};
|
|
130694
|
+
export declare type MercuryFundsMutationApiCreateCostPeriodValueArgs = {
|
|
130695
|
+
input: MercuryCreateCostPeriodValueInput;
|
|
130696
|
+
};
|
|
130357
130697
|
export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
130358
130698
|
input: MercuryCreateCostSubtypeInput;
|
|
130359
130699
|
};
|
|
@@ -130363,6 +130703,12 @@ export declare type MercuryFundsMutationApiCreateFiscalCalendarConfigurationArgs
|
|
|
130363
130703
|
export declare type MercuryFundsMutationApiCreateInvestmentCategoryArgs = {
|
|
130364
130704
|
input: MercuryCreateInvestmentCategoryInput;
|
|
130365
130705
|
};
|
|
130706
|
+
export declare type MercuryFundsMutationApiDeleteCostItemArgs = {
|
|
130707
|
+
input: MercuryDeleteCostItemInput;
|
|
130708
|
+
};
|
|
130709
|
+
export declare type MercuryFundsMutationApiDeleteCostPeriodValueArgs = {
|
|
130710
|
+
input: MercuryDeleteCostPeriodValueInput;
|
|
130711
|
+
};
|
|
130366
130712
|
export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
130367
130713
|
input: MercuryDeleteCostSubtypeInput;
|
|
130368
130714
|
};
|
|
@@ -130372,6 +130718,18 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
|
130372
130718
|
export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
|
|
130373
130719
|
input: MercuryUpdateActiveCurrencyInput;
|
|
130374
130720
|
};
|
|
130721
|
+
export declare type MercuryFundsMutationApiUpdateCostItemClassificationArgs = {
|
|
130722
|
+
input: MercuryUpdateCostItemClassificationInput;
|
|
130723
|
+
};
|
|
130724
|
+
export declare type MercuryFundsMutationApiUpdateCostItemExpenditureTypeArgs = {
|
|
130725
|
+
input: MercuryUpdateCostItemExpenditureTypeInput;
|
|
130726
|
+
};
|
|
130727
|
+
export declare type MercuryFundsMutationApiUpdateCostItemInvestmentCategoryArgs = {
|
|
130728
|
+
input: MercuryUpdateCostItemInvestmentCategoryInput;
|
|
130729
|
+
};
|
|
130730
|
+
export declare type MercuryFundsMutationApiUpdateCostPeriodValueAmountArgs = {
|
|
130731
|
+
input: MercuryUpdateCostPeriodValueAmountInput;
|
|
130732
|
+
};
|
|
130375
130733
|
export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
|
|
130376
130734
|
input: MercuryUpdateCostSubtypeNameInput;
|
|
130377
130735
|
};
|
|
@@ -130678,6 +131036,7 @@ export declare type MercuryJiraProviderQueryApi = {
|
|
|
130678
131036
|
__typename?: 'MercuryJiraProviderQueryApi';
|
|
130679
131037
|
mercuryStatusMappingsByAri?: Maybe<Array<Maybe<MercuryJiraWorkStatusMapping>>>;
|
|
130680
131038
|
mercuryStatusMappingsByStatusAri?: Maybe<Array<Maybe<MercuryJiraWorkStatusMapping>>>;
|
|
131039
|
+
userAccessibleConnectedJiraSites?: Maybe<MercuryJiraSiteConnection>;
|
|
130681
131040
|
};
|
|
130682
131041
|
export declare type MercuryJiraProviderQueryApiMercuryStatusMappingsByAriArgs = {
|
|
130683
131042
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -130685,6 +131044,26 @@ export declare type MercuryJiraProviderQueryApiMercuryStatusMappingsByAriArgs =
|
|
|
130685
131044
|
export declare type MercuryJiraProviderQueryApiMercuryStatusMappingsByStatusAriArgs = {
|
|
130686
131045
|
ids: Array<Scalars['ID']['input']>;
|
|
130687
131046
|
};
|
|
131047
|
+
export declare type MercuryJiraProviderQueryApiUserAccessibleConnectedJiraSitesArgs = {
|
|
131048
|
+
cloudId: Scalars['ID']['input'];
|
|
131049
|
+
};
|
|
131050
|
+
export declare type MercuryJiraSite = {
|
|
131051
|
+
__typename?: 'MercuryJiraSite';
|
|
131052
|
+
id: Scalars['ID']['output'];
|
|
131053
|
+
name: Scalars['String']['output'];
|
|
131054
|
+
url: Scalars['String']['output'];
|
|
131055
|
+
};
|
|
131056
|
+
export declare type MercuryJiraSiteConnection = {
|
|
131057
|
+
__typename?: 'MercuryJiraSiteConnection';
|
|
131058
|
+
edges?: Maybe<Array<Maybe<MercuryJiraSiteEdge>>>;
|
|
131059
|
+
pageInfo: PageInfo;
|
|
131060
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
131061
|
+
};
|
|
131062
|
+
export declare type MercuryJiraSiteEdge = {
|
|
131063
|
+
__typename?: 'MercuryJiraSiteEdge';
|
|
131064
|
+
cursor: Scalars['String']['output'];
|
|
131065
|
+
node?: Maybe<MercuryJiraSite>;
|
|
131066
|
+
};
|
|
130688
131067
|
export declare type MercuryJiraStatus = {
|
|
130689
131068
|
__typename?: 'MercuryJiraStatus';
|
|
130690
131069
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -132731,6 +133110,46 @@ export declare type MercuryUpdateCommentPayload = Payload & {
|
|
|
132731
133110
|
success: Scalars['Boolean']['output'];
|
|
132732
133111
|
updatedComment?: Maybe<MercuryComment>;
|
|
132733
133112
|
};
|
|
133113
|
+
export declare type MercuryUpdateCostItemClassificationInput = {
|
|
133114
|
+
classification?: InputMaybe<MercuryCostItemClassificationInput>;
|
|
133115
|
+
id: Scalars['ID']['input'];
|
|
133116
|
+
};
|
|
133117
|
+
export declare type MercuryUpdateCostItemClassificationPayload = Payload & {
|
|
133118
|
+
__typename?: 'MercuryUpdateCostItemClassificationPayload';
|
|
133119
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133120
|
+
success: Scalars['Boolean']['output'];
|
|
133121
|
+
updatedCostItem?: Maybe<MercuryCostItem>;
|
|
133122
|
+
};
|
|
133123
|
+
export declare type MercuryUpdateCostItemExpenditureTypeInput = {
|
|
133124
|
+
expenditureTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
133125
|
+
id: Scalars['ID']['input'];
|
|
133126
|
+
};
|
|
133127
|
+
export declare type MercuryUpdateCostItemExpenditureTypePayload = Payload & {
|
|
133128
|
+
__typename?: 'MercuryUpdateCostItemExpenditureTypePayload';
|
|
133129
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133130
|
+
success: Scalars['Boolean']['output'];
|
|
133131
|
+
updatedCostItem?: Maybe<MercuryCostItem>;
|
|
133132
|
+
};
|
|
133133
|
+
export declare type MercuryUpdateCostItemInvestmentCategoryInput = {
|
|
133134
|
+
id: Scalars['ID']['input'];
|
|
133135
|
+
investmentCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
133136
|
+
};
|
|
133137
|
+
export declare type MercuryUpdateCostItemInvestmentCategoryPayload = Payload & {
|
|
133138
|
+
__typename?: 'MercuryUpdateCostItemInvestmentCategoryPayload';
|
|
133139
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133140
|
+
success: Scalars['Boolean']['output'];
|
|
133141
|
+
updatedCostItem?: Maybe<MercuryCostItem>;
|
|
133142
|
+
};
|
|
133143
|
+
export declare type MercuryUpdateCostPeriodValueAmountInput = {
|
|
133144
|
+
amount: Scalars['String']['input'];
|
|
133145
|
+
id: Scalars['ID']['input'];
|
|
133146
|
+
};
|
|
133147
|
+
export declare type MercuryUpdateCostPeriodValueAmountPayload = Payload & {
|
|
133148
|
+
__typename?: 'MercuryUpdateCostPeriodValueAmountPayload';
|
|
133149
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133150
|
+
success: Scalars['Boolean']['output'];
|
|
133151
|
+
updatedCostPeriodValue?: Maybe<MercuryCostPeriodValue>;
|
|
133152
|
+
};
|
|
132734
133153
|
export declare type MercuryUpdateCostSubtypeNameInput = {
|
|
132735
133154
|
id: Scalars['ID']['input'];
|
|
132736
133155
|
name: Scalars['String']['input'];
|
|
@@ -133939,6 +134358,7 @@ export declare type Mutation = {
|
|
|
133939
134358
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
133940
134359
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
133941
134360
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
134361
|
+
jira_setBoardViewSwimlaneState?: Maybe<JiraSetBoardViewSwimlaneStatePayload>;
|
|
133942
134362
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
133943
134363
|
jira_setCapacityMostRecentSubRoute?: Maybe<JiraSetCapacityMostRecentSubRoutePayload>;
|
|
133944
134364
|
jira_setCustomFieldTranslation?: Maybe<JiraSetCustomFieldTranslationPayload>;
|
|
@@ -133981,6 +134401,7 @@ export declare type Mutation = {
|
|
|
133981
134401
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
133982
134402
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
133983
134403
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
134404
|
+
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
133984
134405
|
jpdViewsService_createGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload>;
|
|
133985
134406
|
jpdViewsService_deleteGlobalView?: Maybe<JpdViewsServiceDeleteGlobalViewPayload>;
|
|
133986
134407
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
@@ -133998,6 +134419,7 @@ export declare type Mutation = {
|
|
|
133998
134419
|
jsw?: Maybe<JswMutation>;
|
|
133999
134420
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
134000
134421
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
134422
|
+
kitsune_createOrganization?: Maybe<KitsuneOrganization>;
|
|
134001
134423
|
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
134002
134424
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
134003
134425
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
@@ -136687,6 +137109,9 @@ export declare type MutationJira_SetBoardViewGroupByArgs = {
|
|
|
136687
137109
|
export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
136688
137110
|
input: JiraSetBoardViewStatusColumnMappingInput;
|
|
136689
137111
|
};
|
|
137112
|
+
export declare type MutationJira_SetBoardViewSwimlaneStateArgs = {
|
|
137113
|
+
input: JiraSetBoardViewSwimlaneStateInput;
|
|
137114
|
+
};
|
|
136690
137115
|
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
136691
137116
|
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
136692
137117
|
};
|
|
@@ -136825,8 +137250,11 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
|
|
|
136825
137250
|
cloudId: Scalars['ID']['input'];
|
|
136826
137251
|
input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
|
|
136827
137252
|
};
|
|
137253
|
+
export declare type MutationJpdViewsService_AssociateGlobalViewArgs = {
|
|
137254
|
+
input: JpdViewsServiceAssociateGlobalViewInput;
|
|
137255
|
+
};
|
|
136828
137256
|
export declare type MutationJpdViewsService_CreateGlobalViewArgs = {
|
|
136829
|
-
cloudId: Scalars['
|
|
137257
|
+
cloudId: Scalars['ID']['input'];
|
|
136830
137258
|
input: JpdViewsServiceCreateGlobalViewInput;
|
|
136831
137259
|
};
|
|
136832
137260
|
export declare type MutationJpdViewsService_DeleteGlobalViewArgs = {
|
|
@@ -136884,6 +137312,11 @@ export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
|
136884
137312
|
spaceAri: Scalars['ID']['input'];
|
|
136885
137313
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
136886
137314
|
};
|
|
137315
|
+
export declare type MutationKitsune_CreateOrganizationArgs = {
|
|
137316
|
+
domainName?: InputMaybe<Scalars['String']['input']>;
|
|
137317
|
+
name: Scalars['String']['input'];
|
|
137318
|
+
workspaceAri: Scalars['ID']['input'];
|
|
137319
|
+
};
|
|
136887
137320
|
export declare type MutationKitsune_CreateSectionArgs = {
|
|
136888
137321
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
136889
137322
|
name: Scalars['String']['input'];
|
|
@@ -140332,7 +140765,6 @@ export declare type PolarisView = {
|
|
|
140332
140765
|
fieldRollups?: Maybe<Array<PolarisViewFieldRollup>>;
|
|
140333
140766
|
fields: Array<PolarisIdeaField>;
|
|
140334
140767
|
filter?: Maybe<Array<PolarisViewFilter>>;
|
|
140335
|
-
filterGroups?: Maybe<Array<PolarisViewFilterGroup>>;
|
|
140336
140768
|
groupBy?: Maybe<PolarisIdeaField>;
|
|
140337
140769
|
groupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
140338
140770
|
groupsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
@@ -140397,17 +140829,6 @@ export declare type PolarisViewFilter = {
|
|
|
140397
140829
|
kind: PolarisViewFilterKind;
|
|
140398
140830
|
values: Array<PolarisViewFilterValue>;
|
|
140399
140831
|
};
|
|
140400
|
-
export declare type PolarisViewFilterGroup = {
|
|
140401
|
-
__typename?: 'PolarisViewFilterGroup';
|
|
140402
|
-
filterEnums?: Maybe<Array<PolarisFilterEnumType>>;
|
|
140403
|
-
filters: Array<PolarisViewFilter>;
|
|
140404
|
-
groupFilter: PolarisViewFilter;
|
|
140405
|
-
};
|
|
140406
|
-
export declare type PolarisViewFilterGroupInput = {
|
|
140407
|
-
filterEnums?: InputMaybe<Array<PolarisFilterEnumType>>;
|
|
140408
|
-
filters: Array<PolarisViewFilterInput>;
|
|
140409
|
-
groupFilter: PolarisViewFilterInput;
|
|
140410
|
-
};
|
|
140411
140832
|
export declare type PolarisViewFilterInput = {
|
|
140412
140833
|
field?: InputMaybe<Scalars['ID']['input']>;
|
|
140413
140834
|
kind: PolarisViewFilterKind;
|
|
@@ -140960,6 +141381,7 @@ export declare type Query = {
|
|
|
140960
141381
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
140961
141382
|
admin_org?: Maybe<AdminOrganization>;
|
|
140962
141383
|
admin_orgDetails?: Maybe<AdminOrgDetails>;
|
|
141384
|
+
admin_orgPolicies?: Maybe<AdminOrgPolicyConnection>;
|
|
140963
141385
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
140964
141386
|
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
140965
141387
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
@@ -141043,6 +141465,7 @@ export declare type Query = {
|
|
|
141043
141465
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
141044
141466
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
141045
141467
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
141468
|
+
aiops_echo?: Maybe<Scalars['String']['output']>;
|
|
141046
141469
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
141047
141470
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
141048
141471
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -141199,6 +141622,7 @@ export declare type Query = {
|
|
|
141199
141622
|
channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
141200
141623
|
channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
|
|
141201
141624
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
141625
|
+
channelPlatform_generateMediaToken?: Maybe<ChannelPlatformMediaTokenResponse>;
|
|
141202
141626
|
channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
|
|
141203
141627
|
channelPlatform_getAgentStatus?: Maybe<ChannelPlatformAgentStatusResponse>;
|
|
141204
141628
|
channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
@@ -141669,7 +142093,6 @@ export declare type Query = {
|
|
|
141669
142093
|
jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
141670
142094
|
jpdViewsService_hydrateGlobalViews?: Maybe<JpdViewsServiceGlobalViewsHydrationExample>;
|
|
141671
142095
|
jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
|
|
141672
|
-
jpdViewsService_test?: Maybe<Scalars['String']['output']>;
|
|
141673
142096
|
jsmAgentWorkspace_locations?: Maybe<JsmAgentWorkspaceLocations>;
|
|
141674
142097
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
141675
142098
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
@@ -142119,7 +142542,7 @@ export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
|
142119
142542
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
142120
142543
|
container: AdminAuditLogContainer;
|
|
142121
142544
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142122
|
-
input
|
|
142545
|
+
input: AdminFetchAdminAuditLogEventsInput;
|
|
142123
142546
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
142124
142547
|
};
|
|
142125
142548
|
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
@@ -142194,6 +142617,18 @@ export declare type QueryAdmin_OrgArgs = {
|
|
|
142194
142617
|
export declare type QueryAdmin_OrgDetailsArgs = {
|
|
142195
142618
|
orgId: Scalars['ID']['input'];
|
|
142196
142619
|
};
|
|
142620
|
+
export declare type QueryAdmin_OrgPoliciesArgs = {
|
|
142621
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142622
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
142623
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
142624
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142625
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
142626
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
142627
|
+
orgId: Scalars['ID']['input'];
|
|
142628
|
+
resourceId?: InputMaybe<Scalars['String']['input']>;
|
|
142629
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
142630
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
142631
|
+
};
|
|
142197
142632
|
export declare type QueryAdmin_PermissionsArgs = {
|
|
142198
142633
|
principalId: Scalars['ID']['input'];
|
|
142199
142634
|
resourceId: Scalars['ID']['input'];
|
|
@@ -142643,6 +143078,9 @@ export declare type QueryAiCoreApi_VsaQuestionsByProjectAndTypeArgs = {
|
|
|
142643
143078
|
export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
|
|
142644
143079
|
projectAri: Scalars['ID']['input'];
|
|
142645
143080
|
};
|
|
143081
|
+
export declare type QueryAiops_EchoArgs = {
|
|
143082
|
+
input?: InputMaybe<Scalars['String']['input']>;
|
|
143083
|
+
};
|
|
142646
143084
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
142647
143085
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
142648
143086
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -143376,6 +143814,9 @@ export declare type QueryChannelPlatform_CreateContactArgs = {
|
|
|
143376
143814
|
export declare type QueryChannelPlatform_EvaluateChannelAvailabilityArgs = {
|
|
143377
143815
|
request?: InputMaybe<ChannelPlatformChannelAvailabilityRequestInput>;
|
|
143378
143816
|
};
|
|
143817
|
+
export declare type QueryChannelPlatform_GenerateMediaTokenArgs = {
|
|
143818
|
+
issueId: Scalars['String']['input'];
|
|
143819
|
+
};
|
|
143379
143820
|
export declare type QueryChannelPlatform_GetAgentIdForAaidArgs = {
|
|
143380
143821
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
143381
143822
|
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -145395,9 +145836,6 @@ export declare type QueryJpdViewsService_HydrateGlobalViewsArgs = {
|
|
|
145395
145836
|
export declare type QueryJpdViewsService_HydrateUserArgs = {
|
|
145396
145837
|
cloudId: Scalars['ID']['input'];
|
|
145397
145838
|
};
|
|
145398
|
-
export declare type QueryJpdViewsService_TestArgs = {
|
|
145399
|
-
cloudId: Scalars['ID']['input'];
|
|
145400
|
-
};
|
|
145401
145839
|
export declare type QueryJsmAgentWorkspace_LocationsArgs = {
|
|
145402
145840
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
145403
145841
|
cloudId: Scalars['ID']['input'];
|
|
@@ -173222,6 +173660,7 @@ export declare type SubscriptionJpdViewsService_EchoArgs = {
|
|
|
173222
173660
|
};
|
|
173223
173661
|
export declare type SubscriptionJsmChannels_GetResolutionPlanGraphUpdateArgs = {
|
|
173224
173662
|
jiraProjectAri: Scalars['ID']['input'];
|
|
173663
|
+
planEditTransactionId?: InputMaybe<Scalars['ID']['input']>;
|
|
173225
173664
|
planID: Scalars['ID']['input'];
|
|
173226
173665
|
};
|
|
173227
173666
|
export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicketIdUpdateArgs = {
|
|
@@ -174988,7 +175427,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
174988
175427
|
Create = "CREATE"
|
|
174989
175428
|
}
|
|
174990
175429
|
export declare type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
174991
|
-
export declare type TownsquareActivityChange = TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalRenamedChange;
|
|
175430
|
+
export declare type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareUpdateDeletedChange;
|
|
174992
175431
|
export declare type TownsquareActivityItem = {
|
|
174993
175432
|
__typename?: 'TownsquareActivityItem';
|
|
174994
175433
|
actor?: Maybe<User>;
|
|
@@ -175044,6 +175483,11 @@ export declare type TownsquareArchiveGoalPayload = {
|
|
|
175044
175483
|
__typename?: 'TownsquareArchiveGoalPayload';
|
|
175045
175484
|
goal?: Maybe<TownsquareGoal>;
|
|
175046
175485
|
};
|
|
175486
|
+
export declare enum TownsquareBundledUpdateNodeMissingReason {
|
|
175487
|
+
Deleted = "DELETED",
|
|
175488
|
+
NotFound = "NOT_FOUND",
|
|
175489
|
+
NotPermitted = "NOT_PERMITTED"
|
|
175490
|
+
}
|
|
175047
175491
|
export declare enum TownsquareCanCreateFusionResult {
|
|
175048
175492
|
CanCreate = "CAN_CREATE",
|
|
175049
175493
|
IntegrationNotInstalled = "INTEGRATION_NOT_INSTALLED",
|
|
@@ -175392,10 +175836,26 @@ export declare type TownsquareEditGoalTypePayload = {
|
|
|
175392
175836
|
__typename?: 'TownsquareEditGoalTypePayload';
|
|
175393
175837
|
goalType?: Maybe<TownsquareGoalType>;
|
|
175394
175838
|
};
|
|
175839
|
+
export declare type TownsquareEditorsAddedChange = {
|
|
175840
|
+
__typename?: 'TownsquareEditorsAddedChange';
|
|
175841
|
+
addedEditors?: Maybe<Array<User>>;
|
|
175842
|
+
};
|
|
175843
|
+
export declare type TownsquareEditorsRemovedChange = {
|
|
175844
|
+
__typename?: 'TownsquareEditorsRemovedChange';
|
|
175845
|
+
removedEditors?: Maybe<Array<User>>;
|
|
175846
|
+
};
|
|
175395
175847
|
export declare type TownsquareFocusAppCapabilities = {
|
|
175396
175848
|
__typename?: 'TownsquareFocusAppCapabilities';
|
|
175397
175849
|
canViewFocusAreas?: Maybe<Scalars['Boolean']['output']>;
|
|
175398
175850
|
};
|
|
175851
|
+
export declare type TownsquareFollowersAddedChange = {
|
|
175852
|
+
__typename?: 'TownsquareFollowersAddedChange';
|
|
175853
|
+
addedFollowers?: Maybe<Array<User>>;
|
|
175854
|
+
};
|
|
175855
|
+
export declare type TownsquareFollowersRemovedChange = {
|
|
175856
|
+
__typename?: 'TownsquareFollowersRemovedChange';
|
|
175857
|
+
removedFollowers?: Maybe<Array<User>>;
|
|
175858
|
+
};
|
|
175399
175859
|
export declare type TownsquareFromGoalUpdate = {
|
|
175400
175860
|
__typename?: 'TownsquareFromGoalUpdate';
|
|
175401
175861
|
goalUpdate?: Maybe<TownsquareGoalUpdate>;
|
|
@@ -175604,6 +176064,18 @@ export declare type TownsquareGoalArchivedChange = {
|
|
|
175604
176064
|
__typename?: 'TownsquareGoalArchivedChange';
|
|
175605
176065
|
goalType?: Maybe<TownsquareGoalType>;
|
|
175606
176066
|
};
|
|
176067
|
+
export declare type TownsquareGoalBundledUpdateConnection = {
|
|
176068
|
+
__typename?: 'TownsquareGoalBundledUpdateConnection';
|
|
176069
|
+
edges?: Maybe<Array<Maybe<TownsquareGoalBundledUpdateEdge>>>;
|
|
176070
|
+
pageInfo: PageInfo;
|
|
176071
|
+
};
|
|
176072
|
+
export declare type TownsquareGoalBundledUpdateEdge = {
|
|
176073
|
+
__typename?: 'TownsquareGoalBundledUpdateEdge';
|
|
176074
|
+
cursor: Scalars['String']['output'];
|
|
176075
|
+
node?: Maybe<TownsquareGoalUpdate>;
|
|
176076
|
+
nodeMissingReason?: Maybe<TownsquareBundledUpdateNodeMissingReason>;
|
|
176077
|
+
successMeasure?: Maybe<TownsquareGoal>;
|
|
176078
|
+
};
|
|
175607
176079
|
export declare type TownsquareGoalCapabilities = {
|
|
175608
176080
|
__typename?: 'TownsquareGoalCapabilities';
|
|
175609
176081
|
apps?: Maybe<TownsquareGoalAppCapabilities>;
|
|
@@ -175869,6 +176341,7 @@ export declare enum TownsquareGoalTypeState {
|
|
|
175869
176341
|
export declare type TownsquareGoalUpdate = Node & {
|
|
175870
176342
|
__typename?: 'TownsquareGoalUpdate';
|
|
175871
176343
|
ari: Scalars['String']['output'];
|
|
176344
|
+
bundledUpdates?: Maybe<TownsquareGoalBundledUpdateConnection>;
|
|
175872
176345
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
175873
176346
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
175874
176347
|
creator?: Maybe<User>;
|
|
@@ -175896,6 +176369,10 @@ export declare type TownsquareGoalUpdate = Node & {
|
|
|
175896
176369
|
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
175897
176370
|
viewers?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
175898
176371
|
};
|
|
176372
|
+
export declare type TownsquareGoalUpdateBundledUpdatesArgs = {
|
|
176373
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
176374
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
176375
|
+
};
|
|
175899
176376
|
export declare type TownsquareGoalUpdateCommentsArgs = {
|
|
175900
176377
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
175901
176378
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -177906,6 +178383,15 @@ export declare type TownsquareSlackConnectionMetadata = {
|
|
|
177906
178383
|
__typename?: 'TownsquareSlackConnectionMetadata';
|
|
177907
178384
|
fieldTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
177908
178385
|
};
|
|
178386
|
+
export declare type TownsquareStartDateAddedChange = {
|
|
178387
|
+
__typename?: 'TownsquareStartDateAddedChange';
|
|
178388
|
+
newStartDate?: Maybe<Scalars['Date']['output']>;
|
|
178389
|
+
};
|
|
178390
|
+
export declare type TownsquareStartDateEditedChange = {
|
|
178391
|
+
__typename?: 'TownsquareStartDateEditedChange';
|
|
178392
|
+
newStartDate?: Maybe<Scalars['Date']['output']>;
|
|
178393
|
+
oldStartDate?: Maybe<Scalars['Date']['output']>;
|
|
178394
|
+
};
|
|
177909
178395
|
export declare type TownsquareStatus = {
|
|
177910
178396
|
__typename?: 'TownsquareStatus';
|
|
177911
178397
|
atCompletionState?: Maybe<TownsquareCompletionGoalState>;
|
|
@@ -177964,6 +178450,10 @@ export declare type TownsquareTargetDate = {
|
|
|
177964
178450
|
dateRange?: Maybe<TownsquareTargetDateRange>;
|
|
177965
178451
|
label?: Maybe<Scalars['String']['output']>;
|
|
177966
178452
|
};
|
|
178453
|
+
export declare type TownsquareTargetDateAddedChange = {
|
|
178454
|
+
__typename?: 'TownsquareTargetDateAddedChange';
|
|
178455
|
+
newTargetDate?: Maybe<TownsquareTargetDate>;
|
|
178456
|
+
};
|
|
177967
178457
|
export declare type TownsquareTargetDateInput = {
|
|
177968
178458
|
confidence?: InputMaybe<TownsquareTargetDateType>;
|
|
177969
178459
|
date?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -178102,6 +178592,10 @@ export declare type TownsquareUnshardedWorkspaceSummaryEdge = {
|
|
|
178102
178592
|
cursor: Scalars['String']['output'];
|
|
178103
178593
|
node?: Maybe<TownsquareUnshardedWorkspaceSummary>;
|
|
178104
178594
|
};
|
|
178595
|
+
export declare type TownsquareUpdateDeletedChange = {
|
|
178596
|
+
__typename?: 'TownsquareUpdateDeletedChange';
|
|
178597
|
+
placeholder?: Maybe<Scalars['Boolean']['output']>;
|
|
178598
|
+
};
|
|
178105
178599
|
export declare type TownsquareUpdateHighlightInput = {
|
|
178106
178600
|
description: Scalars['String']['input'];
|
|
178107
178601
|
summary: Scalars['String']['input'];
|
|
@@ -178765,6 +179259,9 @@ export declare type TrelloBaseCardPlannerEventsArgs = {
|
|
|
178765
179259
|
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
178766
179260
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
178767
179261
|
};
|
|
179262
|
+
export declare type TrelloBaseCardDeleted = {
|
|
179263
|
+
id: Scalars['ID']['output'];
|
|
179264
|
+
};
|
|
178768
179265
|
export declare type TrelloBaseCardUpdated = {
|
|
178769
179266
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
178770
179267
|
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
@@ -179463,7 +179960,7 @@ export declare type TrelloCardCustomFieldItemEdgeUpdated = {
|
|
|
179463
179960
|
__typename?: 'TrelloCardCustomFieldItemEdgeUpdated';
|
|
179464
179961
|
node: TrelloCustomFieldItemUpdated;
|
|
179465
179962
|
};
|
|
179466
|
-
export declare type TrelloCardDeleted = {
|
|
179963
|
+
export declare type TrelloCardDeleted = TrelloBaseCardDeleted & {
|
|
179467
179964
|
__typename?: 'TrelloCardDeleted';
|
|
179468
179965
|
id: Scalars['ID']['output'];
|
|
179469
179966
|
};
|
|
@@ -180315,6 +180812,10 @@ export declare type TrelloInboxCardPlannerEventsArgs = {
|
|
|
180315
180812
|
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
180316
180813
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180317
180814
|
};
|
|
180815
|
+
export declare type TrelloInboxCardDeleted = TrelloBaseCardDeleted & {
|
|
180816
|
+
__typename?: 'TrelloInboxCardDeleted';
|
|
180817
|
+
id: Scalars['ID']['output'];
|
|
180818
|
+
};
|
|
180318
180819
|
export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
180319
180820
|
__typename?: 'TrelloInboxCardUpdated';
|
|
180320
180821
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
@@ -180531,7 +181032,7 @@ export declare type TrelloListUpdated = {
|
|
|
180531
181032
|
id: Scalars['ID']['output'];
|
|
180532
181033
|
name?: Maybe<Scalars['String']['output']>;
|
|
180533
181034
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
180534
|
-
onCardDeleted?: Maybe<Array<
|
|
181035
|
+
onCardDeleted?: Maybe<Array<TrelloBaseCardDeleted>>;
|
|
180535
181036
|
position?: Maybe<Scalars['Float']['output']>;
|
|
180536
181037
|
softLimit?: Maybe<Scalars['Int']['output']>;
|
|
180537
181038
|
};
|
|
@@ -184998,7 +185499,6 @@ export declare type UpdatePolarisViewInput = {
|
|
|
184998
185499
|
fieldRollups?: InputMaybe<Array<PolarisViewFieldRollupInput>>;
|
|
184999
185500
|
fields?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
185000
185501
|
filter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
185001
|
-
filterGroups?: InputMaybe<Array<PolarisViewFilterGroupInput>>;
|
|
185002
185502
|
groupBy?: InputMaybe<Scalars['ID']['input']>;
|
|
185003
185503
|
groupValues?: InputMaybe<Array<PolarisGroupValueInput>>;
|
|
185004
185504
|
groupsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
@@ -186492,27 +186992,10 @@ export declare type WorkSuggestionsCompassAnnouncementTask = WorkSuggestionsComp
|
|
|
186492
186992
|
export declare type WorkSuggestionsCompassResponse = {
|
|
186493
186993
|
__typename?: 'WorkSuggestionsCompassResponse';
|
|
186494
186994
|
announcements?: Maybe<Array<WorkSuggestionsCompassAnnouncementTask>>;
|
|
186495
|
-
scorecardCriteria?: Maybe<Array<WorkSuggestionsCompassScorecardCriterionTask>>;
|
|
186496
186995
|
};
|
|
186497
186996
|
export declare type WorkSuggestionsCompassResponseAnnouncementsArgs = {
|
|
186498
186997
|
input?: InputMaybe<WorkSuggestionsInput>;
|
|
186499
186998
|
};
|
|
186500
|
-
export declare type WorkSuggestionsCompassResponseScorecardCriteriaArgs = {
|
|
186501
|
-
input?: InputMaybe<WorkSuggestionsInput>;
|
|
186502
|
-
};
|
|
186503
|
-
export declare type WorkSuggestionsCompassScorecardCriterionTask = WorkSuggestionsCompassTask & {
|
|
186504
|
-
__typename?: 'WorkSuggestionsCompassScorecardCriterionTask';
|
|
186505
|
-
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
186506
|
-
componentName?: Maybe<Scalars['String']['output']>;
|
|
186507
|
-
componentType?: Maybe<Scalars['String']['output']>;
|
|
186508
|
-
criterionId?: Maybe<Scalars['ID']['output']>;
|
|
186509
|
-
id: Scalars['String']['output'];
|
|
186510
|
-
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
186511
|
-
scorecard?: Maybe<CompassScorecard>;
|
|
186512
|
-
scorecardAri?: Maybe<Scalars['ID']['output']>;
|
|
186513
|
-
title: Scalars['String']['output'];
|
|
186514
|
-
url: Scalars['String']['output'];
|
|
186515
|
-
};
|
|
186516
186999
|
export declare type WorkSuggestionsCompassTask = {
|
|
186517
187000
|
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
186518
187001
|
componentName?: Maybe<Scalars['String']['output']>;
|