@forge/cli-shared 8.15.3-next.0 → 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 +13 -0
- package/out/auth/instruction.js +5 -5
- package/out/auth/personal/me-graphql-client.d.ts +0 -3
- package/out/auth/personal/me-graphql-client.d.ts.map +1 -1
- package/out/auth/personal/me-graphql-client.js +1 -10
- package/out/graphql/graphql-types.d.ts +549 -53
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +52 -28
- package/out/graphql/minimal-graphql-runner.d.ts +3 -0
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +11 -1
- package/out/ui/text.d.ts +1 -3
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -6
- 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']>;
|
|
@@ -35685,6 +35728,7 @@ export declare type DevAiRovoDevIssueViewResponseSessionsArgs = {
|
|
|
35685
35728
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
35686
35729
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35687
35730
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
35731
|
+
sort?: InputMaybe<DevAiRovoDevSessionSort>;
|
|
35688
35732
|
statusCategoryFilter?: InputMaybe<DevAiSessionStatusCategoryFilter>;
|
|
35689
35733
|
};
|
|
35690
35734
|
export declare enum DevAiRovoDevPrStatus {
|
|
@@ -35814,6 +35858,9 @@ export declare type DevAiSandbox = {
|
|
|
35814
35858
|
readiness?: Maybe<DevAiSandboxReadiness>;
|
|
35815
35859
|
};
|
|
35816
35860
|
export declare enum DevAiSandboxError {
|
|
35861
|
+
ApplicationsStartFailed = "APPLICATIONS_START_FAILED",
|
|
35862
|
+
HibernationRestoreFailed = "HIBERNATION_RESTORE_FAILED",
|
|
35863
|
+
RepoCloneFailed = "REPO_CLONE_FAILED",
|
|
35817
35864
|
Unknown = "UNKNOWN"
|
|
35818
35865
|
}
|
|
35819
35866
|
export declare type DevAiSandboxProgress = {
|
|
@@ -39594,6 +39641,8 @@ export declare type ExternalIcon = {
|
|
|
39594
39641
|
export declare type ExternalLargeContent = {
|
|
39595
39642
|
__typename?: 'ExternalLargeContent';
|
|
39596
39643
|
asText?: Maybe<Scalars['String']['output']>;
|
|
39644
|
+
mediaTextUrl?: Maybe<Scalars['String']['output']>;
|
|
39645
|
+
mediaThumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
39597
39646
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
39598
39647
|
};
|
|
39599
39648
|
export declare type ExternalLocation = {
|
|
@@ -42969,6 +43018,7 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerMetaData = {
|
|
|
42969
43018
|
export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
42970
43019
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerNode';
|
|
42971
43020
|
authConsentUrl?: Maybe<Scalars['URL']['output']>;
|
|
43021
|
+
autoEnableNewTools: Scalars['Boolean']['output'];
|
|
42972
43022
|
baseUrl: Scalars['URL']['output'];
|
|
42973
43023
|
displayName: Scalars['String']['output'];
|
|
42974
43024
|
endpointPath?: Maybe<Scalars['String']['output']>;
|
|
@@ -43027,6 +43077,7 @@ export declare enum GraphIntegrationMcpAdminManagementMcpToolStatus {
|
|
|
43027
43077
|
NewToolDeny = "NEW_TOOL_DENY"
|
|
43028
43078
|
}
|
|
43029
43079
|
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
43080
|
+
autoEnableNewTools?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43030
43081
|
cloudId: Scalars['ID']['input'];
|
|
43031
43082
|
displayName: Scalars['String']['input'];
|
|
43032
43083
|
endpointPath?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46028,6 +46079,10 @@ export declare type GraphStore = {
|
|
|
46028
46079
|
changeProposalHasAtlasGoalBatch?: Maybe<GraphStoreBatchChangeProposalHasAtlasGoalConnection>;
|
|
46029
46080
|
changeProposalHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedChangeProposalHasAtlasGoalInverseConnection>;
|
|
46030
46081
|
changeProposalHasAtlasGoalInverseBatch?: Maybe<GraphStoreBatchChangeProposalHasAtlasGoalConnection>;
|
|
46082
|
+
changeProposalHasWork?: Maybe<GraphStoreSimplifiedChangeProposalHasWorkConnection>;
|
|
46083
|
+
changeProposalHasWorkBatch?: Maybe<GraphStoreBatchChangeProposalHasWorkConnection>;
|
|
46084
|
+
changeProposalHasWorkInverse?: Maybe<GraphStoreSimplifiedChangeProposalHasWorkInverseConnection>;
|
|
46085
|
+
changeProposalHasWorkInverseBatch?: Maybe<GraphStoreBatchChangeProposalHasWorkConnection>;
|
|
46031
46086
|
commitBelongsToPullRequest?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestConnection>;
|
|
46032
46087
|
commitBelongsToPullRequestInverse?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestInverseConnection>;
|
|
46033
46088
|
commitInRepo?: Maybe<GraphStoreSimplifiedCommitInRepoConnection>;
|
|
@@ -47864,6 +47919,36 @@ export declare type GraphStoreChangeProposalHasAtlasGoalInverseBatchArgs = {
|
|
|
47864
47919
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
47865
47920
|
sort?: InputMaybe<GraphStoreChangeProposalHasAtlasGoalSortInput>;
|
|
47866
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
|
+
};
|
|
47867
47952
|
export declare type GraphStoreCommitBelongsToPullRequestArgs = {
|
|
47868
47953
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47869
47954
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55075,6 +55160,47 @@ export declare type GraphStoreBatchChangeProposalHasAtlasGoalStartNode = {
|
|
|
55075
55160
|
id: Scalars['ID']['output'];
|
|
55076
55161
|
};
|
|
55077
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;
|
|
55078
55204
|
export declare type GraphStoreBatchContentReferencedEntityConnection = HasPageInfo & {
|
|
55079
55205
|
__typename?: 'GraphStoreBatchContentReferencedEntityConnection';
|
|
55080
55206
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityEdge>>;
|
|
@@ -56277,6 +56403,9 @@ export declare type GraphStoreCalendarHasLinkedDocumentSortInput = {
|
|
|
56277
56403
|
export declare type GraphStoreChangeProposalHasAtlasGoalSortInput = {
|
|
56278
56404
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56279
56405
|
};
|
|
56406
|
+
export declare type GraphStoreChangeProposalHasWorkSortInput = {
|
|
56407
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56408
|
+
};
|
|
56280
56409
|
export declare type GraphStoreCommitBelongsToPullRequestSortInput = {
|
|
56281
56410
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56282
56411
|
};
|
|
@@ -64001,6 +64130,34 @@ export declare type GraphStoreSimplifiedChangeProposalHasAtlasGoalInverseEdge =
|
|
|
64001
64130
|
};
|
|
64002
64131
|
export declare type GraphStoreSimplifiedChangeProposalHasAtlasGoalInverseUnion = MercuryChangeProposal;
|
|
64003
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;
|
|
64004
64161
|
export declare type GraphStoreSimplifiedCommitBelongsToPullRequestConnection = HasPageInfo & {
|
|
64005
64162
|
__typename?: 'GraphStoreSimplifiedCommitBelongsToPullRequestConnection';
|
|
64006
64163
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestEdge>>>;
|
|
@@ -74817,6 +74974,8 @@ export declare type GraphStoreV2 = {
|
|
|
74817
74974
|
externalWorkerLinksThirdPartyUserInverse?: Maybe<GraphStoreV2SimplifiedExternalWorkerLinksThirdPartyUserInverseConnection>;
|
|
74818
74975
|
focusAskImpactsWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusAskImpactsWorkEntityConnection>;
|
|
74819
74976
|
focusAskImpactsWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseConnection>;
|
|
74977
|
+
focusChangeProposalHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection>;
|
|
74978
|
+
focusChangeProposalHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseConnection>;
|
|
74820
74979
|
focusFocusAreaHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection>;
|
|
74821
74980
|
focusFocusAreaHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalInverseConnection>;
|
|
74822
74981
|
focusFocusAreaHasChildFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasChildFocusFocusAreaConnection>;
|
|
@@ -78459,6 +78618,20 @@ export declare type GraphStoreV2FocusAskImpactsWorkEntityInverseArgs = {
|
|
|
78459
78618
|
id: Scalars['ID']['input'];
|
|
78460
78619
|
sort?: InputMaybe<GraphStoreV2FocusAskImpactsWorkEntitySortInput>;
|
|
78461
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
|
+
};
|
|
78462
78635
|
export declare type GraphStoreV2FocusFocusAreaHasAtlassianGoalArgs = {
|
|
78463
78636
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78464
78637
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -81754,6 +81927,9 @@ export declare type GraphStoreV2ExternalWorkerLinksThirdPartyUserSortInput = {
|
|
|
81754
81927
|
export declare type GraphStoreV2FocusAskImpactsWorkEntitySortInput = {
|
|
81755
81928
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81756
81929
|
};
|
|
81930
|
+
export declare type GraphStoreV2FocusChangeProposalHasWorkEntitySortInput = {
|
|
81931
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81932
|
+
};
|
|
81757
81933
|
export declare type GraphStoreV2FocusFocusAreaHasAtlassianGoalSortInput = {
|
|
81758
81934
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81759
81935
|
};
|
|
@@ -90205,6 +90381,34 @@ export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseEdge =
|
|
|
90205
90381
|
};
|
|
90206
90382
|
export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseUnion = SpfAsk;
|
|
90207
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;
|
|
90208
90412
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection = HasPageInfo & {
|
|
90209
90413
|
__typename?: 'GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection';
|
|
90210
90414
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalEdge>>>;
|
|
@@ -99808,6 +100012,7 @@ export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
|
99808
100012
|
export declare type JiraBoardViewFieldSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
|
|
99809
100013
|
__typename?: 'JiraBoardViewFieldSwimlane';
|
|
99810
100014
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
100015
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
99811
100016
|
field?: Maybe<JiraField>;
|
|
99812
100017
|
id: Scalars['ID']['output'];
|
|
99813
100018
|
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -99922,6 +100127,7 @@ export declare type JiraBoardViewStatusEdge = {
|
|
|
99922
100127
|
};
|
|
99923
100128
|
export declare type JiraBoardViewSwimlane = {
|
|
99924
100129
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
100130
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
99925
100131
|
id: Scalars['ID']['output'];
|
|
99926
100132
|
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
99927
100133
|
};
|
|
@@ -103755,9 +103961,12 @@ export declare type JiraFieldSchemeAssociatedFieldsEdge = {
|
|
|
103755
103961
|
node?: Maybe<JiraFieldSchemeAssociatedField>;
|
|
103756
103962
|
};
|
|
103757
103963
|
export declare type JiraFieldSchemeAssociatedFieldsInput = {
|
|
103964
|
+
associatedIssueTypesFilter?: InputMaybe<Array<JiraFieldsAssociatedIssueTypesFilterInput>>;
|
|
103758
103965
|
fieldTypeGroupsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
103759
103966
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
103967
|
+
requiredOnIssueTypesFilter?: InputMaybe<Array<JiraFieldsRequiredOnIssueTypesFilterInput>>;
|
|
103760
103968
|
schemeId: Scalars['ID']['input'];
|
|
103969
|
+
sortBy?: InputMaybe<Array<JiraFieldSchemesSort>>;
|
|
103761
103970
|
};
|
|
103762
103971
|
export declare type JiraFieldSchemeAssociatedIssueTypesInput = {
|
|
103763
103972
|
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -103796,6 +104005,11 @@ export declare type JiraFieldSchemesEdge = {
|
|
|
103796
104005
|
};
|
|
103797
104006
|
export declare type JiraFieldSchemesInput = {
|
|
103798
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'];
|
|
103799
104013
|
};
|
|
103800
104014
|
export declare enum JiraFieldScopeType {
|
|
103801
104015
|
All = "ALL",
|
|
@@ -103992,6 +104206,14 @@ export declare type JiraFieldWorkTypeRequiredOnCustomizationInput = {
|
|
|
103992
104206
|
isRequired: Scalars['Boolean']['input'];
|
|
103993
104207
|
workTypeIds: Array<Scalars['ID']['input']>;
|
|
103994
104208
|
};
|
|
104209
|
+
export declare type JiraFieldsAssociatedIssueTypesFilterInput = {
|
|
104210
|
+
allIssueTypes?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104211
|
+
issueTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
104212
|
+
};
|
|
104213
|
+
export declare type JiraFieldsRequiredOnIssueTypesFilterInput = {
|
|
104214
|
+
allIssueTypes?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104215
|
+
issueTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
104216
|
+
};
|
|
103995
104217
|
export declare type JiraFilter = {
|
|
103996
104218
|
filterId: Scalars['String']['output'];
|
|
103997
104219
|
filterUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -113173,6 +113395,7 @@ export declare type JiraQuery = {
|
|
|
113173
113395
|
jiraProjectsByJql?: Maybe<JiraProjectConnection>;
|
|
113174
113396
|
jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
|
|
113175
113397
|
jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
|
|
113398
|
+
jiraServiceManagementSlaIssue?: Maybe<JiraServiceManagementSlaIssueResult>;
|
|
113176
113399
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
113177
113400
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
113178
113401
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
@@ -113934,6 +114157,10 @@ export declare type JiraQueryJiraServiceManagementRequestTypeCategoriesByProject
|
|
|
113934
114157
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
113935
114158
|
projectId: Scalars['ID']['input'];
|
|
113936
114159
|
};
|
|
114160
|
+
export declare type JiraQueryJiraServiceManagementSlaIssueArgs = {
|
|
114161
|
+
cloudId: Scalars['ID']['input'];
|
|
114162
|
+
issueKey: Scalars['String']['input'];
|
|
114163
|
+
};
|
|
113937
114164
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
113938
114165
|
cloudId: Scalars['ID']['input'];
|
|
113939
114166
|
};
|
|
@@ -116686,6 +116913,47 @@ export declare type JiraServiceManagementSentimentFieldPayload = Payload & {
|
|
|
116686
116913
|
field?: Maybe<JiraServiceManagementSentimentField>;
|
|
116687
116914
|
success: Scalars['Boolean']['output'];
|
|
116688
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
|
+
};
|
|
116689
116957
|
export declare type JiraServiceManagementTeamResponder = {
|
|
116690
116958
|
__typename?: 'JiraServiceManagementTeamResponder';
|
|
116691
116959
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
@@ -116943,6 +117211,19 @@ export declare type JiraSetBoardViewStatusColumnMappingRenameStatusInput = {
|
|
|
116943
117211
|
name: Scalars['String']['input'];
|
|
116944
117212
|
statusId: Scalars['ID']['input'];
|
|
116945
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
|
+
};
|
|
116946
117227
|
export declare type JiraSetBoardViewWorkflowSelectedInput = {
|
|
116947
117228
|
selectedWorkflowId: Scalars['ID']['input'];
|
|
116948
117229
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -121305,6 +121586,16 @@ export declare type JpdViewUpdatedEvent = {
|
|
|
121305
121586
|
viewId: Scalars['Int']['output'];
|
|
121306
121587
|
viewUuid: Scalars['ID']['output'];
|
|
121307
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
|
+
};
|
|
121308
121599
|
export declare type JpdViewsServiceAxisConfig = {
|
|
121309
121600
|
__typename?: 'JpdViewsServiceAxisConfig';
|
|
121310
121601
|
dimension: Scalars['String']['output'];
|
|
@@ -121413,6 +121704,9 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
|
|
|
121413
121704
|
viewId: Scalars['String']['output'];
|
|
121414
121705
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
121415
121706
|
};
|
|
121707
|
+
export declare enum JpdViewsServiceGlobalViewAssociationContainerType {
|
|
121708
|
+
Project = "PROJECT"
|
|
121709
|
+
}
|
|
121416
121710
|
export declare type JpdViewsServiceGlobalViewConnection = {
|
|
121417
121711
|
__typename?: 'JpdViewsServiceGlobalViewConnection';
|
|
121418
121712
|
edges?: Maybe<Array<JpdViewsServiceGlobalViewEdge>>;
|
|
@@ -129146,6 +129440,10 @@ export declare type MercuryCostItem = Node & {
|
|
|
129146
129440
|
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
129147
129441
|
name: Scalars['String']['output'];
|
|
129148
129442
|
};
|
|
129443
|
+
export declare type MercuryCostItemClassificationInput = {
|
|
129444
|
+
costSubtypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
129445
|
+
costTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
129446
|
+
};
|
|
129149
129447
|
export declare type MercuryCostItemConnection = {
|
|
129150
129448
|
__typename?: 'MercuryCostItemConnection';
|
|
129151
129449
|
edges?: Maybe<Array<MercuryCostItemEdge>>;
|
|
@@ -129281,6 +129579,28 @@ export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
|
129281
129579
|
singleSelectField?: InputMaybe<MercuryCreateSingleSelectCustomFieldDefinitionInput>;
|
|
129282
129580
|
textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
|
|
129283
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
|
+
};
|
|
129284
129604
|
export declare type MercuryCreateCostSubtypeInput = {
|
|
129285
129605
|
costTypeId: Scalars['ID']['input'];
|
|
129286
129606
|
name: Scalars['String']['input'];
|
|
@@ -129598,6 +129918,22 @@ export declare type MercuryDeleteCommentPayload = Payload & {
|
|
|
129598
129918
|
errors?: Maybe<Array<MutationError>>;
|
|
129599
129919
|
success: Scalars['Boolean']['output'];
|
|
129600
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
|
+
};
|
|
129601
129937
|
export declare type MercuryDeleteCostSubtypeInput = {
|
|
129602
129938
|
id: Scalars['ID']['input'];
|
|
129603
129939
|
};
|
|
@@ -129804,6 +130140,7 @@ export declare type MercuryFinancialVersion = Node & {
|
|
|
129804
130140
|
export declare enum MercuryFinancialVersionType {
|
|
129805
130141
|
Actual = "ACTUAL",
|
|
129806
130142
|
Baseline = "BASELINE",
|
|
130143
|
+
Budget = "BUDGET",
|
|
129807
130144
|
Forecast = "FORECAST"
|
|
129808
130145
|
}
|
|
129809
130146
|
export declare type MercuryFiscalCalendarConfiguration = Node & {
|
|
@@ -130334,15 +130671,29 @@ export declare type MercuryFundsMonthlySummary = {
|
|
|
130334
130671
|
};
|
|
130335
130672
|
export declare type MercuryFundsMutationApi = {
|
|
130336
130673
|
__typename?: 'MercuryFundsMutationApi';
|
|
130674
|
+
createCostItem?: Maybe<MercuryCreateCostItemPayload>;
|
|
130675
|
+
createCostPeriodValue?: Maybe<MercuryCreateCostPeriodValuePayload>;
|
|
130337
130676
|
createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
|
|
130338
130677
|
createFiscalCalendarConfiguration?: Maybe<MercuryCreateFiscalCalendarConfigurationPayload>;
|
|
130339
130678
|
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
130679
|
+
deleteCostItem?: Maybe<MercuryDeleteCostItemPayload>;
|
|
130680
|
+
deleteCostPeriodValue?: Maybe<MercuryDeleteCostPeriodValuePayload>;
|
|
130340
130681
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
130341
130682
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
130342
130683
|
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
130684
|
+
updateCostItemClassification?: Maybe<MercuryUpdateCostItemClassificationPayload>;
|
|
130685
|
+
updateCostItemExpenditureType?: Maybe<MercuryUpdateCostItemExpenditureTypePayload>;
|
|
130686
|
+
updateCostItemInvestmentCategory?: Maybe<MercuryUpdateCostItemInvestmentCategoryPayload>;
|
|
130687
|
+
updateCostPeriodValueAmount?: Maybe<MercuryUpdateCostPeriodValueAmountPayload>;
|
|
130343
130688
|
updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
130344
130689
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
130345
130690
|
};
|
|
130691
|
+
export declare type MercuryFundsMutationApiCreateCostItemArgs = {
|
|
130692
|
+
input: MercuryCreateCostItemInput;
|
|
130693
|
+
};
|
|
130694
|
+
export declare type MercuryFundsMutationApiCreateCostPeriodValueArgs = {
|
|
130695
|
+
input: MercuryCreateCostPeriodValueInput;
|
|
130696
|
+
};
|
|
130346
130697
|
export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
130347
130698
|
input: MercuryCreateCostSubtypeInput;
|
|
130348
130699
|
};
|
|
@@ -130352,6 +130703,12 @@ export declare type MercuryFundsMutationApiCreateFiscalCalendarConfigurationArgs
|
|
|
130352
130703
|
export declare type MercuryFundsMutationApiCreateInvestmentCategoryArgs = {
|
|
130353
130704
|
input: MercuryCreateInvestmentCategoryInput;
|
|
130354
130705
|
};
|
|
130706
|
+
export declare type MercuryFundsMutationApiDeleteCostItemArgs = {
|
|
130707
|
+
input: MercuryDeleteCostItemInput;
|
|
130708
|
+
};
|
|
130709
|
+
export declare type MercuryFundsMutationApiDeleteCostPeriodValueArgs = {
|
|
130710
|
+
input: MercuryDeleteCostPeriodValueInput;
|
|
130711
|
+
};
|
|
130355
130712
|
export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
130356
130713
|
input: MercuryDeleteCostSubtypeInput;
|
|
130357
130714
|
};
|
|
@@ -130361,6 +130718,18 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
|
130361
130718
|
export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
|
|
130362
130719
|
input: MercuryUpdateActiveCurrencyInput;
|
|
130363
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
|
+
};
|
|
130364
130733
|
export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
|
|
130365
130734
|
input: MercuryUpdateCostSubtypeNameInput;
|
|
130366
130735
|
};
|
|
@@ -130667,6 +131036,7 @@ export declare type MercuryJiraProviderQueryApi = {
|
|
|
130667
131036
|
__typename?: 'MercuryJiraProviderQueryApi';
|
|
130668
131037
|
mercuryStatusMappingsByAri?: Maybe<Array<Maybe<MercuryJiraWorkStatusMapping>>>;
|
|
130669
131038
|
mercuryStatusMappingsByStatusAri?: Maybe<Array<Maybe<MercuryJiraWorkStatusMapping>>>;
|
|
131039
|
+
userAccessibleConnectedJiraSites?: Maybe<MercuryJiraSiteConnection>;
|
|
130670
131040
|
};
|
|
130671
131041
|
export declare type MercuryJiraProviderQueryApiMercuryStatusMappingsByAriArgs = {
|
|
130672
131042
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -130674,6 +131044,26 @@ export declare type MercuryJiraProviderQueryApiMercuryStatusMappingsByAriArgs =
|
|
|
130674
131044
|
export declare type MercuryJiraProviderQueryApiMercuryStatusMappingsByStatusAriArgs = {
|
|
130675
131045
|
ids: Array<Scalars['ID']['input']>;
|
|
130676
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
|
+
};
|
|
130677
131067
|
export declare type MercuryJiraStatus = {
|
|
130678
131068
|
__typename?: 'MercuryJiraStatus';
|
|
130679
131069
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -132720,6 +133110,46 @@ export declare type MercuryUpdateCommentPayload = Payload & {
|
|
|
132720
133110
|
success: Scalars['Boolean']['output'];
|
|
132721
133111
|
updatedComment?: Maybe<MercuryComment>;
|
|
132722
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
|
+
};
|
|
132723
133153
|
export declare type MercuryUpdateCostSubtypeNameInput = {
|
|
132724
133154
|
id: Scalars['ID']['input'];
|
|
132725
133155
|
name: Scalars['String']['input'];
|
|
@@ -133928,6 +134358,7 @@ export declare type Mutation = {
|
|
|
133928
134358
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
133929
134359
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
133930
134360
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
134361
|
+
jira_setBoardViewSwimlaneState?: Maybe<JiraSetBoardViewSwimlaneStatePayload>;
|
|
133931
134362
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
133932
134363
|
jira_setCapacityMostRecentSubRoute?: Maybe<JiraSetCapacityMostRecentSubRoutePayload>;
|
|
133933
134364
|
jira_setCustomFieldTranslation?: Maybe<JiraSetCustomFieldTranslationPayload>;
|
|
@@ -133970,6 +134401,7 @@ export declare type Mutation = {
|
|
|
133970
134401
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
133971
134402
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
133972
134403
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
134404
|
+
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
133973
134405
|
jpdViewsService_createGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload>;
|
|
133974
134406
|
jpdViewsService_deleteGlobalView?: Maybe<JpdViewsServiceDeleteGlobalViewPayload>;
|
|
133975
134407
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
@@ -133987,6 +134419,7 @@ export declare type Mutation = {
|
|
|
133987
134419
|
jsw?: Maybe<JswMutation>;
|
|
133988
134420
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
133989
134421
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
134422
|
+
kitsune_createOrganization?: Maybe<KitsuneOrganization>;
|
|
133990
134423
|
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
133991
134424
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
133992
134425
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
@@ -136676,6 +137109,9 @@ export declare type MutationJira_SetBoardViewGroupByArgs = {
|
|
|
136676
137109
|
export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
136677
137110
|
input: JiraSetBoardViewStatusColumnMappingInput;
|
|
136678
137111
|
};
|
|
137112
|
+
export declare type MutationJira_SetBoardViewSwimlaneStateArgs = {
|
|
137113
|
+
input: JiraSetBoardViewSwimlaneStateInput;
|
|
137114
|
+
};
|
|
136679
137115
|
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
136680
137116
|
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
136681
137117
|
};
|
|
@@ -136814,8 +137250,11 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
|
|
|
136814
137250
|
cloudId: Scalars['ID']['input'];
|
|
136815
137251
|
input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
|
|
136816
137252
|
};
|
|
137253
|
+
export declare type MutationJpdViewsService_AssociateGlobalViewArgs = {
|
|
137254
|
+
input: JpdViewsServiceAssociateGlobalViewInput;
|
|
137255
|
+
};
|
|
136817
137256
|
export declare type MutationJpdViewsService_CreateGlobalViewArgs = {
|
|
136818
|
-
cloudId: Scalars['
|
|
137257
|
+
cloudId: Scalars['ID']['input'];
|
|
136819
137258
|
input: JpdViewsServiceCreateGlobalViewInput;
|
|
136820
137259
|
};
|
|
136821
137260
|
export declare type MutationJpdViewsService_DeleteGlobalViewArgs = {
|
|
@@ -136873,6 +137312,11 @@ export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
|
136873
137312
|
spaceAri: Scalars['ID']['input'];
|
|
136874
137313
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
136875
137314
|
};
|
|
137315
|
+
export declare type MutationKitsune_CreateOrganizationArgs = {
|
|
137316
|
+
domainName?: InputMaybe<Scalars['String']['input']>;
|
|
137317
|
+
name: Scalars['String']['input'];
|
|
137318
|
+
workspaceAri: Scalars['ID']['input'];
|
|
137319
|
+
};
|
|
136876
137320
|
export declare type MutationKitsune_CreateSectionArgs = {
|
|
136877
137321
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
136878
137322
|
name: Scalars['String']['input'];
|
|
@@ -140321,7 +140765,6 @@ export declare type PolarisView = {
|
|
|
140321
140765
|
fieldRollups?: Maybe<Array<PolarisViewFieldRollup>>;
|
|
140322
140766
|
fields: Array<PolarisIdeaField>;
|
|
140323
140767
|
filter?: Maybe<Array<PolarisViewFilter>>;
|
|
140324
|
-
filterGroups?: Maybe<Array<PolarisViewFilterGroup>>;
|
|
140325
140768
|
groupBy?: Maybe<PolarisIdeaField>;
|
|
140326
140769
|
groupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
140327
140770
|
groupsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
@@ -140386,17 +140829,6 @@ export declare type PolarisViewFilter = {
|
|
|
140386
140829
|
kind: PolarisViewFilterKind;
|
|
140387
140830
|
values: Array<PolarisViewFilterValue>;
|
|
140388
140831
|
};
|
|
140389
|
-
export declare type PolarisViewFilterGroup = {
|
|
140390
|
-
__typename?: 'PolarisViewFilterGroup';
|
|
140391
|
-
filterEnums?: Maybe<Array<PolarisFilterEnumType>>;
|
|
140392
|
-
filters: Array<PolarisViewFilter>;
|
|
140393
|
-
groupFilter: PolarisViewFilter;
|
|
140394
|
-
};
|
|
140395
|
-
export declare type PolarisViewFilterGroupInput = {
|
|
140396
|
-
filterEnums?: InputMaybe<Array<PolarisFilterEnumType>>;
|
|
140397
|
-
filters: Array<PolarisViewFilterInput>;
|
|
140398
|
-
groupFilter: PolarisViewFilterInput;
|
|
140399
|
-
};
|
|
140400
140832
|
export declare type PolarisViewFilterInput = {
|
|
140401
140833
|
field?: InputMaybe<Scalars['ID']['input']>;
|
|
140402
140834
|
kind: PolarisViewFilterKind;
|
|
@@ -140949,6 +141381,7 @@ export declare type Query = {
|
|
|
140949
141381
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
140950
141382
|
admin_org?: Maybe<AdminOrganization>;
|
|
140951
141383
|
admin_orgDetails?: Maybe<AdminOrgDetails>;
|
|
141384
|
+
admin_orgPolicies?: Maybe<AdminOrgPolicyConnection>;
|
|
140952
141385
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
140953
141386
|
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
140954
141387
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
@@ -141032,6 +141465,7 @@ export declare type Query = {
|
|
|
141032
141465
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
141033
141466
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
141034
141467
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
141468
|
+
aiops_echo?: Maybe<Scalars['String']['output']>;
|
|
141035
141469
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
141036
141470
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
141037
141471
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -141188,6 +141622,7 @@ export declare type Query = {
|
|
|
141188
141622
|
channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
141189
141623
|
channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
|
|
141190
141624
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
141625
|
+
channelPlatform_generateMediaToken?: Maybe<ChannelPlatformMediaTokenResponse>;
|
|
141191
141626
|
channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
|
|
141192
141627
|
channelPlatform_getAgentStatus?: Maybe<ChannelPlatformAgentStatusResponse>;
|
|
141193
141628
|
channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
@@ -141658,7 +142093,6 @@ export declare type Query = {
|
|
|
141658
142093
|
jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
141659
142094
|
jpdViewsService_hydrateGlobalViews?: Maybe<JpdViewsServiceGlobalViewsHydrationExample>;
|
|
141660
142095
|
jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
|
|
141661
|
-
jpdViewsService_test?: Maybe<Scalars['String']['output']>;
|
|
141662
142096
|
jsmAgentWorkspace_locations?: Maybe<JsmAgentWorkspaceLocations>;
|
|
141663
142097
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
141664
142098
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
@@ -142108,7 +142542,7 @@ export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
|
142108
142542
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
142109
142543
|
container: AdminAuditLogContainer;
|
|
142110
142544
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142111
|
-
input
|
|
142545
|
+
input: AdminFetchAdminAuditLogEventsInput;
|
|
142112
142546
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
142113
142547
|
};
|
|
142114
142548
|
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
@@ -142183,6 +142617,18 @@ export declare type QueryAdmin_OrgArgs = {
|
|
|
142183
142617
|
export declare type QueryAdmin_OrgDetailsArgs = {
|
|
142184
142618
|
orgId: Scalars['ID']['input'];
|
|
142185
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
|
+
};
|
|
142186
142632
|
export declare type QueryAdmin_PermissionsArgs = {
|
|
142187
142633
|
principalId: Scalars['ID']['input'];
|
|
142188
142634
|
resourceId: Scalars['ID']['input'];
|
|
@@ -142632,6 +143078,9 @@ export declare type QueryAiCoreApi_VsaQuestionsByProjectAndTypeArgs = {
|
|
|
142632
143078
|
export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
|
|
142633
143079
|
projectAri: Scalars['ID']['input'];
|
|
142634
143080
|
};
|
|
143081
|
+
export declare type QueryAiops_EchoArgs = {
|
|
143082
|
+
input?: InputMaybe<Scalars['String']['input']>;
|
|
143083
|
+
};
|
|
142635
143084
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
142636
143085
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
142637
143086
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -143365,6 +143814,9 @@ export declare type QueryChannelPlatform_CreateContactArgs = {
|
|
|
143365
143814
|
export declare type QueryChannelPlatform_EvaluateChannelAvailabilityArgs = {
|
|
143366
143815
|
request?: InputMaybe<ChannelPlatformChannelAvailabilityRequestInput>;
|
|
143367
143816
|
};
|
|
143817
|
+
export declare type QueryChannelPlatform_GenerateMediaTokenArgs = {
|
|
143818
|
+
issueId: Scalars['String']['input'];
|
|
143819
|
+
};
|
|
143368
143820
|
export declare type QueryChannelPlatform_GetAgentIdForAaidArgs = {
|
|
143369
143821
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
143370
143822
|
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -144702,6 +145154,7 @@ export declare type QueryDevai_RovodevSessionsByIssueKeyArgs = {
|
|
|
144702
145154
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144703
145155
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
144704
145156
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
145157
|
+
sort?: InputMaybe<DevAiRovoDevSessionSort>;
|
|
144705
145158
|
statusCategoryFilter?: InputMaybe<DevAiSessionStatusCategoryFilter>;
|
|
144706
145159
|
};
|
|
144707
145160
|
export declare type QueryDevai_SavedPromptsArgs = {
|
|
@@ -145383,9 +145836,6 @@ export declare type QueryJpdViewsService_HydrateGlobalViewsArgs = {
|
|
|
145383
145836
|
export declare type QueryJpdViewsService_HydrateUserArgs = {
|
|
145384
145837
|
cloudId: Scalars['ID']['input'];
|
|
145385
145838
|
};
|
|
145386
|
-
export declare type QueryJpdViewsService_TestArgs = {
|
|
145387
|
-
cloudId: Scalars['ID']['input'];
|
|
145388
|
-
};
|
|
145389
145839
|
export declare type QueryJsmAgentWorkspace_LocationsArgs = {
|
|
145390
145840
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
145391
145841
|
cloudId: Scalars['ID']['input'];
|
|
@@ -173210,6 +173660,7 @@ export declare type SubscriptionJpdViewsService_EchoArgs = {
|
|
|
173210
173660
|
};
|
|
173211
173661
|
export declare type SubscriptionJsmChannels_GetResolutionPlanGraphUpdateArgs = {
|
|
173212
173662
|
jiraProjectAri: Scalars['ID']['input'];
|
|
173663
|
+
planEditTransactionId?: InputMaybe<Scalars['ID']['input']>;
|
|
173213
173664
|
planID: Scalars['ID']['input'];
|
|
173214
173665
|
};
|
|
173215
173666
|
export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicketIdUpdateArgs = {
|
|
@@ -174976,7 +175427,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
174976
175427
|
Create = "CREATE"
|
|
174977
175428
|
}
|
|
174978
175429
|
export declare type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
174979
|
-
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;
|
|
174980
175431
|
export declare type TownsquareActivityItem = {
|
|
174981
175432
|
__typename?: 'TownsquareActivityItem';
|
|
174982
175433
|
actor?: Maybe<User>;
|
|
@@ -175032,6 +175483,11 @@ export declare type TownsquareArchiveGoalPayload = {
|
|
|
175032
175483
|
__typename?: 'TownsquareArchiveGoalPayload';
|
|
175033
175484
|
goal?: Maybe<TownsquareGoal>;
|
|
175034
175485
|
};
|
|
175486
|
+
export declare enum TownsquareBundledUpdateNodeMissingReason {
|
|
175487
|
+
Deleted = "DELETED",
|
|
175488
|
+
NotFound = "NOT_FOUND",
|
|
175489
|
+
NotPermitted = "NOT_PERMITTED"
|
|
175490
|
+
}
|
|
175035
175491
|
export declare enum TownsquareCanCreateFusionResult {
|
|
175036
175492
|
CanCreate = "CAN_CREATE",
|
|
175037
175493
|
IntegrationNotInstalled = "INTEGRATION_NOT_INSTALLED",
|
|
@@ -175380,10 +175836,26 @@ export declare type TownsquareEditGoalTypePayload = {
|
|
|
175380
175836
|
__typename?: 'TownsquareEditGoalTypePayload';
|
|
175381
175837
|
goalType?: Maybe<TownsquareGoalType>;
|
|
175382
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
|
+
};
|
|
175383
175847
|
export declare type TownsquareFocusAppCapabilities = {
|
|
175384
175848
|
__typename?: 'TownsquareFocusAppCapabilities';
|
|
175385
175849
|
canViewFocusAreas?: Maybe<Scalars['Boolean']['output']>;
|
|
175386
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
|
+
};
|
|
175387
175859
|
export declare type TownsquareFromGoalUpdate = {
|
|
175388
175860
|
__typename?: 'TownsquareFromGoalUpdate';
|
|
175389
175861
|
goalUpdate?: Maybe<TownsquareGoalUpdate>;
|
|
@@ -175592,6 +176064,18 @@ export declare type TownsquareGoalArchivedChange = {
|
|
|
175592
176064
|
__typename?: 'TownsquareGoalArchivedChange';
|
|
175593
176065
|
goalType?: Maybe<TownsquareGoalType>;
|
|
175594
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
|
+
};
|
|
175595
176079
|
export declare type TownsquareGoalCapabilities = {
|
|
175596
176080
|
__typename?: 'TownsquareGoalCapabilities';
|
|
175597
176081
|
apps?: Maybe<TownsquareGoalAppCapabilities>;
|
|
@@ -175857,6 +176341,7 @@ export declare enum TownsquareGoalTypeState {
|
|
|
175857
176341
|
export declare type TownsquareGoalUpdate = Node & {
|
|
175858
176342
|
__typename?: 'TownsquareGoalUpdate';
|
|
175859
176343
|
ari: Scalars['String']['output'];
|
|
176344
|
+
bundledUpdates?: Maybe<TownsquareGoalBundledUpdateConnection>;
|
|
175860
176345
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
175861
176346
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
175862
176347
|
creator?: Maybe<User>;
|
|
@@ -175884,6 +176369,10 @@ export declare type TownsquareGoalUpdate = Node & {
|
|
|
175884
176369
|
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
175885
176370
|
viewers?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
175886
176371
|
};
|
|
176372
|
+
export declare type TownsquareGoalUpdateBundledUpdatesArgs = {
|
|
176373
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
176374
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
176375
|
+
};
|
|
175887
176376
|
export declare type TownsquareGoalUpdateCommentsArgs = {
|
|
175888
176377
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
175889
176378
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -175991,6 +176480,7 @@ export declare type TownsquareGoalsCreateGoalTypePairInput = {
|
|
|
175991
176480
|
};
|
|
175992
176481
|
export declare type TownsquareGoalsCreateInput = {
|
|
175993
176482
|
containerId: Scalars['ID']['input'];
|
|
176483
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
175994
176484
|
goalTypeId: Scalars['ID']['input'];
|
|
175995
176485
|
name: Scalars['String']['input'];
|
|
175996
176486
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -177893,6 +178383,15 @@ export declare type TownsquareSlackConnectionMetadata = {
|
|
|
177893
178383
|
__typename?: 'TownsquareSlackConnectionMetadata';
|
|
177894
178384
|
fieldTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
177895
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
|
+
};
|
|
177896
178395
|
export declare type TownsquareStatus = {
|
|
177897
178396
|
__typename?: 'TownsquareStatus';
|
|
177898
178397
|
atCompletionState?: Maybe<TownsquareCompletionGoalState>;
|
|
@@ -177951,6 +178450,10 @@ export declare type TownsquareTargetDate = {
|
|
|
177951
178450
|
dateRange?: Maybe<TownsquareTargetDateRange>;
|
|
177952
178451
|
label?: Maybe<Scalars['String']['output']>;
|
|
177953
178452
|
};
|
|
178453
|
+
export declare type TownsquareTargetDateAddedChange = {
|
|
178454
|
+
__typename?: 'TownsquareTargetDateAddedChange';
|
|
178455
|
+
newTargetDate?: Maybe<TownsquareTargetDate>;
|
|
178456
|
+
};
|
|
177954
178457
|
export declare type TownsquareTargetDateInput = {
|
|
177955
178458
|
confidence?: InputMaybe<TownsquareTargetDateType>;
|
|
177956
178459
|
date?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -178089,6 +178592,10 @@ export declare type TownsquareUnshardedWorkspaceSummaryEdge = {
|
|
|
178089
178592
|
cursor: Scalars['String']['output'];
|
|
178090
178593
|
node?: Maybe<TownsquareUnshardedWorkspaceSummary>;
|
|
178091
178594
|
};
|
|
178595
|
+
export declare type TownsquareUpdateDeletedChange = {
|
|
178596
|
+
__typename?: 'TownsquareUpdateDeletedChange';
|
|
178597
|
+
placeholder?: Maybe<Scalars['Boolean']['output']>;
|
|
178598
|
+
};
|
|
178092
178599
|
export declare type TownsquareUpdateHighlightInput = {
|
|
178093
178600
|
description: Scalars['String']['input'];
|
|
178094
178601
|
summary: Scalars['String']['input'];
|
|
@@ -178752,6 +179259,9 @@ export declare type TrelloBaseCardPlannerEventsArgs = {
|
|
|
178752
179259
|
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
178753
179260
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
178754
179261
|
};
|
|
179262
|
+
export declare type TrelloBaseCardDeleted = {
|
|
179263
|
+
id: Scalars['ID']['output'];
|
|
179264
|
+
};
|
|
178755
179265
|
export declare type TrelloBaseCardUpdated = {
|
|
178756
179266
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
178757
179267
|
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
@@ -179450,7 +179960,7 @@ export declare type TrelloCardCustomFieldItemEdgeUpdated = {
|
|
|
179450
179960
|
__typename?: 'TrelloCardCustomFieldItemEdgeUpdated';
|
|
179451
179961
|
node: TrelloCustomFieldItemUpdated;
|
|
179452
179962
|
};
|
|
179453
|
-
export declare type TrelloCardDeleted = {
|
|
179963
|
+
export declare type TrelloCardDeleted = TrelloBaseCardDeleted & {
|
|
179454
179964
|
__typename?: 'TrelloCardDeleted';
|
|
179455
179965
|
id: Scalars['ID']['output'];
|
|
179456
179966
|
};
|
|
@@ -180302,6 +180812,10 @@ export declare type TrelloInboxCardPlannerEventsArgs = {
|
|
|
180302
180812
|
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
180303
180813
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180304
180814
|
};
|
|
180815
|
+
export declare type TrelloInboxCardDeleted = TrelloBaseCardDeleted & {
|
|
180816
|
+
__typename?: 'TrelloInboxCardDeleted';
|
|
180817
|
+
id: Scalars['ID']['output'];
|
|
180818
|
+
};
|
|
180305
180819
|
export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
180306
180820
|
__typename?: 'TrelloInboxCardUpdated';
|
|
180307
180821
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
@@ -180518,7 +181032,7 @@ export declare type TrelloListUpdated = {
|
|
|
180518
181032
|
id: Scalars['ID']['output'];
|
|
180519
181033
|
name?: Maybe<Scalars['String']['output']>;
|
|
180520
181034
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
180521
|
-
onCardDeleted?: Maybe<Array<
|
|
181035
|
+
onCardDeleted?: Maybe<Array<TrelloBaseCardDeleted>>;
|
|
180522
181036
|
position?: Maybe<Scalars['Float']['output']>;
|
|
180523
181037
|
softLimit?: Maybe<Scalars['Int']['output']>;
|
|
180524
181038
|
};
|
|
@@ -184985,7 +185499,6 @@ export declare type UpdatePolarisViewInput = {
|
|
|
184985
185499
|
fieldRollups?: InputMaybe<Array<PolarisViewFieldRollupInput>>;
|
|
184986
185500
|
fields?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
184987
185501
|
filter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
184988
|
-
filterGroups?: InputMaybe<Array<PolarisViewFilterGroupInput>>;
|
|
184989
185502
|
groupBy?: InputMaybe<Scalars['ID']['input']>;
|
|
184990
185503
|
groupValues?: InputMaybe<Array<PolarisGroupValueInput>>;
|
|
184991
185504
|
groupsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
@@ -186479,27 +186992,10 @@ export declare type WorkSuggestionsCompassAnnouncementTask = WorkSuggestionsComp
|
|
|
186479
186992
|
export declare type WorkSuggestionsCompassResponse = {
|
|
186480
186993
|
__typename?: 'WorkSuggestionsCompassResponse';
|
|
186481
186994
|
announcements?: Maybe<Array<WorkSuggestionsCompassAnnouncementTask>>;
|
|
186482
|
-
scorecardCriteria?: Maybe<Array<WorkSuggestionsCompassScorecardCriterionTask>>;
|
|
186483
186995
|
};
|
|
186484
186996
|
export declare type WorkSuggestionsCompassResponseAnnouncementsArgs = {
|
|
186485
186997
|
input?: InputMaybe<WorkSuggestionsInput>;
|
|
186486
186998
|
};
|
|
186487
|
-
export declare type WorkSuggestionsCompassResponseScorecardCriteriaArgs = {
|
|
186488
|
-
input?: InputMaybe<WorkSuggestionsInput>;
|
|
186489
|
-
};
|
|
186490
|
-
export declare type WorkSuggestionsCompassScorecardCriterionTask = WorkSuggestionsCompassTask & {
|
|
186491
|
-
__typename?: 'WorkSuggestionsCompassScorecardCriterionTask';
|
|
186492
|
-
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
186493
|
-
componentName?: Maybe<Scalars['String']['output']>;
|
|
186494
|
-
componentType?: Maybe<Scalars['String']['output']>;
|
|
186495
|
-
criterionId?: Maybe<Scalars['ID']['output']>;
|
|
186496
|
-
id: Scalars['String']['output'];
|
|
186497
|
-
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
186498
|
-
scorecard?: Maybe<CompassScorecard>;
|
|
186499
|
-
scorecardAri?: Maybe<Scalars['ID']['output']>;
|
|
186500
|
-
title: Scalars['String']['output'];
|
|
186501
|
-
url: Scalars['String']['output'];
|
|
186502
|
-
};
|
|
186503
186999
|
export declare type WorkSuggestionsCompassTask = {
|
|
186504
187000
|
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
186505
187001
|
componentName?: Maybe<Scalars['String']['output']>;
|