@forge/cli-shared 9.3.0-next.10 → 9.3.0-next.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/out/graphql/graphql-types.d.ts +1145 -22
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +163 -48
- package/out/service/statsig-service.d.ts +1 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +1 -1
- package/package.json +1 -1
|
@@ -2196,6 +2196,7 @@ export type AvpDashboard = Node & {
|
|
|
2196
2196
|
charts?: Maybe<Array<AvpChart>>;
|
|
2197
2197
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
2198
2198
|
creator?: Maybe<Scalars['String']['output']>;
|
|
2199
|
+
creatorHydrated?: Maybe<User>;
|
|
2199
2200
|
description?: Maybe<Scalars['String']['output']>;
|
|
2200
2201
|
envVars?: Maybe<Array<AvpEnvVar>>;
|
|
2201
2202
|
filterExpression?: Maybe<AvpFilterExpression>;
|
|
@@ -2560,6 +2561,7 @@ export type AvpHotTierFilterConfigInput = {
|
|
|
2560
2561
|
};
|
|
2561
2562
|
export declare enum AvpIntegrationId {
|
|
2562
2563
|
AssetsVertical = "ASSETS_VERTICAL",
|
|
2564
|
+
AtlassianAnalytics = "ATLASSIAN_ANALYTICS",
|
|
2563
2565
|
JiraSpaceDashboardsKanban = "JIRA_SPACE_DASHBOARDS_KANBAN",
|
|
2564
2566
|
JiraSpaceDashboardsScrum = "JIRA_SPACE_DASHBOARDS_SCRUM",
|
|
2565
2567
|
JiraSummaryPage = "JIRA_SUMMARY_PAGE",
|
|
@@ -4032,6 +4034,7 @@ export type AdminAuditLogCancelBackgroundQueryInput = {
|
|
|
4032
4034
|
export type AdminAuditLogContainer = {
|
|
4033
4035
|
id: Scalars['ID']['input'];
|
|
4034
4036
|
type: AdminAuditLogContainerType;
|
|
4037
|
+
unitIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4035
4038
|
};
|
|
4036
4039
|
export declare enum AdminAuditLogContainerType {
|
|
4037
4040
|
App = "APP",
|
|
@@ -9133,6 +9136,7 @@ export type AgentWorkspaceSkillUpdatePayload = {
|
|
|
9133
9136
|
};
|
|
9134
9137
|
export type AgentWorkspaceSmartRoutingConfig = {
|
|
9135
9138
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
9139
|
+
autoTeamAssignmentEnabled: Scalars['Boolean']['output'];
|
|
9136
9140
|
enabled: Scalars['Boolean']['output'];
|
|
9137
9141
|
inputs: Array<AgentWorkspaceConfigurableRoutingInputSetting>;
|
|
9138
9142
|
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
@@ -9462,6 +9466,7 @@ export type AgentWorkspaceUpdateConfigurableRoutingTriggersInput = {
|
|
|
9462
9466
|
triggers: Array<AgentWorkspaceConfigurableRoutingTriggerUpdate>;
|
|
9463
9467
|
};
|
|
9464
9468
|
export type AgentWorkspaceUpdateRoutingConfigInput = {
|
|
9469
|
+
autoTeamAssignmentEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9465
9470
|
cloudId: Scalars['ID']['input'];
|
|
9466
9471
|
enabled: Scalars['Boolean']['input'];
|
|
9467
9472
|
projectKey: Scalars['String']['input'];
|
|
@@ -11758,6 +11763,7 @@ export type AquaOutgoingEmailLogItem = {
|
|
|
11758
11763
|
__typename?: 'AquaOutgoingEmailLogItem';
|
|
11759
11764
|
actionTimestamp: Scalars['DateTime']['output'];
|
|
11760
11765
|
author?: Maybe<User>;
|
|
11766
|
+
authorAccountId?: Maybe<Scalars['String']['output']>;
|
|
11761
11767
|
deliveryType?: Maybe<Scalars['String']['output']>;
|
|
11762
11768
|
issueContext?: Maybe<AquaIssueContext>;
|
|
11763
11769
|
notificationActionSubType?: Maybe<Scalars['String']['output']>;
|
|
@@ -11766,6 +11772,7 @@ export type AquaOutgoingEmailLogItem = {
|
|
|
11766
11772
|
notificationType?: Maybe<Scalars['String']['output']>;
|
|
11767
11773
|
projectContext?: Maybe<AquaProjectContext>;
|
|
11768
11774
|
recipient?: Maybe<User>;
|
|
11775
|
+
recipientAccountId?: Maybe<Scalars['String']['output']>;
|
|
11769
11776
|
};
|
|
11770
11777
|
export type AquaOutgoingEmailLogItemEdge = {
|
|
11771
11778
|
__typename?: 'AquaOutgoingEmailLogItemEdge';
|
|
@@ -12559,6 +12566,16 @@ export type AssetsDmDataSource = {
|
|
|
12559
12566
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
12560
12567
|
statusText?: Maybe<Scalars['String']['output']>;
|
|
12561
12568
|
};
|
|
12569
|
+
export declare enum AssetsDmDataSourceBulkAction {
|
|
12570
|
+
Cleanse = "CLEANSE",
|
|
12571
|
+
CleanseAndMerge = "CLEANSE_AND_MERGE",
|
|
12572
|
+
Merge = "MERGE"
|
|
12573
|
+
}
|
|
12574
|
+
export type AssetsDmDataSourceBulkActionResponse = {
|
|
12575
|
+
__typename?: 'AssetsDMDataSourceBulkActionResponse';
|
|
12576
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
12577
|
+
message: Scalars['String']['output'];
|
|
12578
|
+
};
|
|
12562
12579
|
export type AssetsDmDataSourceCleansingCleansingExecutive = {
|
|
12563
12580
|
__typename?: 'AssetsDMDataSourceCleansingCleansingExecutive';
|
|
12564
12581
|
cleansingExecutiveId: Scalars['ID']['output'];
|
|
@@ -15123,7 +15140,9 @@ export type AssetsVerticalAssetTypesTrackingEdge = {
|
|
|
15123
15140
|
};
|
|
15124
15141
|
export declare enum AssetsVerticalAssetTypesTrackingErrorCode {
|
|
15125
15142
|
Conflict = "CONFLICT",
|
|
15143
|
+
InvalidVerticalInstantiationCategory = "INVALID_VERTICAL_INSTANTIATION_CATEGORY",
|
|
15126
15144
|
NotFound = "NOT_FOUND",
|
|
15145
|
+
ParentVerticalInstantiationNotCompleted = "PARENT_VERTICAL_INSTANTIATION_NOT_COMPLETED",
|
|
15127
15146
|
PermissionDenied = "PERMISSION_DENIED",
|
|
15128
15147
|
ValidationFailed = "VALIDATION_FAILED"
|
|
15129
15148
|
}
|
|
@@ -15760,7 +15779,9 @@ export type AssetsVerticalItemMappingEdge = {
|
|
|
15760
15779
|
};
|
|
15761
15780
|
export declare enum AssetsVerticalItemMappingErrorCode {
|
|
15762
15781
|
Conflict = "CONFLICT",
|
|
15782
|
+
InvalidVerticalInstantiationCategory = "INVALID_VERTICAL_INSTANTIATION_CATEGORY",
|
|
15763
15783
|
NotFound = "NOT_FOUND",
|
|
15784
|
+
ParentVerticalInstantiationNotCompleted = "PARENT_VERTICAL_INSTANTIATION_NOT_COMPLETED",
|
|
15764
15785
|
PermissionDenied = "PERMISSION_DENIED",
|
|
15765
15786
|
ValidationFailed = "VALIDATION_FAILED"
|
|
15766
15787
|
}
|
|
@@ -39563,6 +39584,10 @@ export declare enum CplsContributionCopyMode {
|
|
|
39563
39584
|
CurrentAndFuture = "CURRENT_AND_FUTURE",
|
|
39564
39585
|
None = "NONE"
|
|
39565
39586
|
}
|
|
39587
|
+
export type CplsContributionFilter = {
|
|
39588
|
+
endDate?: InputMaybe<Scalars['Date']['input']>;
|
|
39589
|
+
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
39590
|
+
};
|
|
39566
39591
|
export declare enum CplsContributionValueType {
|
|
39567
39592
|
Days = "DAYS",
|
|
39568
39593
|
Hours = "HOURS",
|
|
@@ -39632,6 +39657,24 @@ export type CplsContributorWorkAssociation = {
|
|
|
39632
39657
|
contributorDataId: Scalars['ID']['input'];
|
|
39633
39658
|
workId: Scalars['ID']['input'];
|
|
39634
39659
|
};
|
|
39660
|
+
export type CplsContributorWorkAssociationConnection = HasPageInfo & {
|
|
39661
|
+
__typename?: 'CplsContributorWorkAssociationConnection';
|
|
39662
|
+
edges?: Maybe<Array<CplsContributorWorkAssociationEdge>>;
|
|
39663
|
+
pageInfo: PageInfo;
|
|
39664
|
+
};
|
|
39665
|
+
export type CplsContributorWorkAssociationEdge = {
|
|
39666
|
+
__typename?: 'CplsContributorWorkAssociationEdge';
|
|
39667
|
+
cursor: Scalars['String']['output'];
|
|
39668
|
+
node: CplsContributorWorkAssociationNode;
|
|
39669
|
+
};
|
|
39670
|
+
export type CplsContributorWorkAssociationNode = {
|
|
39671
|
+
__typename?: 'CplsContributorWorkAssociationNode';
|
|
39672
|
+
contributorData?: Maybe<CplsContributorData>;
|
|
39673
|
+
contributorDataId: Scalars['ID']['output'];
|
|
39674
|
+
id: Scalars['ID']['output'];
|
|
39675
|
+
workData?: Maybe<CplsWorkData>;
|
|
39676
|
+
workDataId: Scalars['ID']['output'];
|
|
39677
|
+
};
|
|
39635
39678
|
export type CplsContributorWorkConnection = HasPageInfo & {
|
|
39636
39679
|
__typename?: 'CplsContributorWorkConnection';
|
|
39637
39680
|
edges?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
@@ -39898,6 +39941,16 @@ export type CplsFiltersInput = {
|
|
|
39898
39941
|
jiraWorkItems?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
39899
39942
|
workTypes?: InputMaybe<Array<CplsWorkType>>;
|
|
39900
39943
|
};
|
|
39944
|
+
export type CplsGetContributorWorkAssociationsInput = {
|
|
39945
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39946
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
39947
|
+
cloudId: Scalars['ID']['input'];
|
|
39948
|
+
contributionFilter?: InputMaybe<CplsContributionFilter>;
|
|
39949
|
+
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
39950
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39951
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39952
|
+
workDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
39953
|
+
};
|
|
39901
39954
|
export type CplsImportCapacityDataInput = {
|
|
39902
39955
|
cloudId: Scalars['ID']['input'];
|
|
39903
39956
|
contributions?: InputMaybe<Array<CplsAddContributionInput>>;
|
|
@@ -54335,6 +54388,130 @@ export type GraphIntegrationCreateSkillInput = {
|
|
|
54335
54388
|
tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
|
|
54336
54389
|
visibility?: InputMaybe<GraphIntegrationSkillVisibilityInput>;
|
|
54337
54390
|
};
|
|
54391
|
+
export type GraphIntegrationCustomAuthApiTokenConfigInput = {
|
|
54392
|
+
apiToken?: InputMaybe<Scalars['String']['input']>;
|
|
54393
|
+
credentials?: InputMaybe<Scalars['JSON']['input']>;
|
|
54394
|
+
holderId?: InputMaybe<Scalars['String']['input']>;
|
|
54395
|
+
};
|
|
54396
|
+
export type GraphIntegrationCustomAuthAuthorizationCodeConfigInput = {
|
|
54397
|
+
authorizationUrl: Scalars['String']['input'];
|
|
54398
|
+
clientId: Scalars['String']['input'];
|
|
54399
|
+
clientSecret: Scalars['String']['input'];
|
|
54400
|
+
exchangeOverrides?: InputMaybe<GraphIntegrationCustomAuthTokenOverridesInput>;
|
|
54401
|
+
exchangeUrl: Scalars['String']['input'];
|
|
54402
|
+
exchangeWithHttpBasicAuth?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54403
|
+
flowTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
54404
|
+
profileDisplayNameResolver: Scalars['String']['input'];
|
|
54405
|
+
profileIdResolver: Scalars['String']['input'];
|
|
54406
|
+
profileRetrieverAuthorization?: InputMaybe<GraphIntegrationCustomAuthProfileRetrieverAuthorizationInput>;
|
|
54407
|
+
profileRetrieverOverrides?: InputMaybe<GraphIntegrationCustomAuthTokenOverridesInput>;
|
|
54408
|
+
profileRetrieverUrl: Scalars['String']['input'];
|
|
54409
|
+
refreshTokenOverrides?: InputMaybe<GraphIntegrationCustomAuthTokenOverridesInput>;
|
|
54410
|
+
refreshTokenUrl: Scalars['String']['input'];
|
|
54411
|
+
revokeTokenOverrides?: InputMaybe<GraphIntegrationCustomAuthTokenOverridesInput>;
|
|
54412
|
+
revokeTokenUrl?: InputMaybe<Scalars['String']['input']>;
|
|
54413
|
+
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
54414
|
+
};
|
|
54415
|
+
export type GraphIntegrationCustomAuthClientCredentialsConfigInput = {
|
|
54416
|
+
audience?: InputMaybe<Scalars['String']['input']>;
|
|
54417
|
+
clientId: Scalars['String']['input'];
|
|
54418
|
+
clientSecret: Scalars['String']['input'];
|
|
54419
|
+
exchangeOverrides?: InputMaybe<GraphIntegrationCustomAuthTokenOverridesInput>;
|
|
54420
|
+
exchangeUrl: Scalars['String']['input'];
|
|
54421
|
+
exchangeWithHttpBasicAuth?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54422
|
+
refreshTokenOverrides?: InputMaybe<GraphIntegrationCustomAuthTokenOverridesInput>;
|
|
54423
|
+
refreshTokenUrl?: InputMaybe<Scalars['String']['input']>;
|
|
54424
|
+
revokeTokenOverrides?: InputMaybe<GraphIntegrationCustomAuthTokenOverridesInput>;
|
|
54425
|
+
revokeTokenUrl?: InputMaybe<Scalars['String']['input']>;
|
|
54426
|
+
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
54427
|
+
};
|
|
54428
|
+
export type GraphIntegrationCustomAuthConfig = {
|
|
54429
|
+
__typename?: 'GraphIntegrationCustomAuthConfig';
|
|
54430
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
54431
|
+
};
|
|
54432
|
+
export type GraphIntegrationCustomAuthConfigInput = {
|
|
54433
|
+
apiToken?: InputMaybe<GraphIntegrationCustomAuthApiTokenConfigInput>;
|
|
54434
|
+
authorizationCode?: InputMaybe<GraphIntegrationCustomAuthAuthorizationCodeConfigInput>;
|
|
54435
|
+
clientCredentials?: InputMaybe<GraphIntegrationCustomAuthClientCredentialsConfigInput>;
|
|
54436
|
+
};
|
|
54437
|
+
export type GraphIntegrationCustomAuthDeleteInput = {
|
|
54438
|
+
authAri: Scalars['ID']['input'];
|
|
54439
|
+
cloudId: Scalars['ID']['input'];
|
|
54440
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
54441
|
+
};
|
|
54442
|
+
export type GraphIntegrationCustomAuthDeletePayload = Payload & {
|
|
54443
|
+
__typename?: 'GraphIntegrationCustomAuthDeletePayload';
|
|
54444
|
+
authAri?: Maybe<Scalars['ID']['output']>;
|
|
54445
|
+
errors?: Maybe<Array<MutationError>>;
|
|
54446
|
+
success: Scalars['Boolean']['output'];
|
|
54447
|
+
};
|
|
54448
|
+
export type GraphIntegrationCustomAuthMutationPayload = Payload & {
|
|
54449
|
+
__typename?: 'GraphIntegrationCustomAuthMutationPayload';
|
|
54450
|
+
customAuth?: Maybe<GraphIntegrationCustomAuthNode>;
|
|
54451
|
+
errors?: Maybe<Array<MutationError>>;
|
|
54452
|
+
success: Scalars['Boolean']['output'];
|
|
54453
|
+
};
|
|
54454
|
+
export type GraphIntegrationCustomAuthNode = {
|
|
54455
|
+
__typename?: 'GraphIntegrationCustomAuthNode';
|
|
54456
|
+
allowedScopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
54457
|
+
authAri: Scalars['ID']['output'];
|
|
54458
|
+
authType: GraphIntegrationCustomAuthType;
|
|
54459
|
+
baseUrl: Scalars['String']['output'];
|
|
54460
|
+
config?: Maybe<GraphIntegrationCustomAuthConfig>;
|
|
54461
|
+
createdAt: Scalars['String']['output'];
|
|
54462
|
+
createdBy: Scalars['String']['output'];
|
|
54463
|
+
displayName: Scalars['String']['output'];
|
|
54464
|
+
integrationAri: Scalars['ID']['output'];
|
|
54465
|
+
outboundAuthUrl?: Maybe<Scalars['URL']['output']>;
|
|
54466
|
+
productAri?: Maybe<Scalars['String']['output']>;
|
|
54467
|
+
sequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
54468
|
+
status: GraphIntegrationCustomAuthStatus;
|
|
54469
|
+
updatedAt: Scalars['String']['output'];
|
|
54470
|
+
};
|
|
54471
|
+
export type GraphIntegrationCustomAuthProfileAuthHeaderInput = {
|
|
54472
|
+
headerName: Scalars['String']['input'];
|
|
54473
|
+
tokenPrefix: Scalars['String']['input'];
|
|
54474
|
+
};
|
|
54475
|
+
export type GraphIntegrationCustomAuthProfileAuthParameterInput = {
|
|
54476
|
+
parameterName: Scalars['String']['input'];
|
|
54477
|
+
};
|
|
54478
|
+
export type GraphIntegrationCustomAuthProfileRetrieverAuthorizationInput = {
|
|
54479
|
+
header?: InputMaybe<GraphIntegrationCustomAuthProfileAuthHeaderInput>;
|
|
54480
|
+
pathParameter?: InputMaybe<GraphIntegrationCustomAuthProfileAuthParameterInput>;
|
|
54481
|
+
queryString?: InputMaybe<GraphIntegrationCustomAuthProfileAuthParameterInput>;
|
|
54482
|
+
};
|
|
54483
|
+
export declare enum GraphIntegrationCustomAuthStatus {
|
|
54484
|
+
Active = "ACTIVE",
|
|
54485
|
+
Deleting = "DELETING",
|
|
54486
|
+
Pending = "PENDING",
|
|
54487
|
+
Suspended = "SUSPENDED"
|
|
54488
|
+
}
|
|
54489
|
+
export type GraphIntegrationCustomAuthTokenOverridesInput = {
|
|
54490
|
+
body?: InputMaybe<Scalars['JSON']['input']>;
|
|
54491
|
+
headers?: InputMaybe<Scalars['JSON']['input']>;
|
|
54492
|
+
};
|
|
54493
|
+
export declare enum GraphIntegrationCustomAuthType {
|
|
54494
|
+
ApiToken = "API_TOKEN",
|
|
54495
|
+
AuthorizationCode = "AUTHORIZATION_CODE",
|
|
54496
|
+
ClientCredentials = "CLIENT_CREDENTIALS"
|
|
54497
|
+
}
|
|
54498
|
+
export type GraphIntegrationCustomAuthUpdateStatusInput = {
|
|
54499
|
+
authAri: Scalars['ID']['input'];
|
|
54500
|
+
cloudId: Scalars['ID']['input'];
|
|
54501
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
54502
|
+
status: GraphIntegrationCustomAuthStatus;
|
|
54503
|
+
};
|
|
54504
|
+
export type GraphIntegrationCustomAuthUpsertInput = {
|
|
54505
|
+
authAri?: InputMaybe<Scalars['ID']['input']>;
|
|
54506
|
+
authType: GraphIntegrationCustomAuthType;
|
|
54507
|
+
baseUrl: Scalars['String']['input'];
|
|
54508
|
+
cloudId: Scalars['ID']['input'];
|
|
54509
|
+
config: GraphIntegrationCustomAuthConfigInput;
|
|
54510
|
+
customAuthConfigKey?: InputMaybe<Scalars['String']['input']>;
|
|
54511
|
+
displayName: Scalars['String']['input'];
|
|
54512
|
+
productAri: Scalars['String']['input'];
|
|
54513
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
54514
|
+
};
|
|
54338
54515
|
export type GraphIntegrationDataConnector = {
|
|
54339
54516
|
__typename?: 'GraphIntegrationDataConnector';
|
|
54340
54517
|
connectorKey: Scalars['String']['output'];
|
|
@@ -54442,8 +54619,9 @@ export type GraphIntegrationIcon = {
|
|
|
54442
54619
|
url?: Maybe<Scalars['String']['output']>;
|
|
54443
54620
|
};
|
|
54444
54621
|
export type GraphIntegrationMcpAdminManagementApiTokenAuthConfigInput = {
|
|
54445
|
-
apiToken
|
|
54622
|
+
apiToken?: InputMaybe<Scalars['String']['input']>;
|
|
54446
54623
|
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
54624
|
+
credentials?: InputMaybe<Array<GraphIntegrationMcpAdminManagementExtraInputEntry>>;
|
|
54447
54625
|
};
|
|
54448
54626
|
export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection = {
|
|
54449
54627
|
__typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection';
|
|
@@ -54487,6 +54665,10 @@ export declare enum GraphIntegrationMcpAdminManagementMcpRegistrationSource {
|
|
|
54487
54665
|
Customer = "CUSTOMER",
|
|
54488
54666
|
Global = "GLOBAL"
|
|
54489
54667
|
}
|
|
54668
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpServerAccessMode {
|
|
54669
|
+
DefaultAllow = "DEFAULT_ALLOW",
|
|
54670
|
+
DefaultDeny = "DEFAULT_DENY"
|
|
54671
|
+
}
|
|
54490
54672
|
export type GraphIntegrationMcpAdminManagementMcpServerAuthConfigInput = {
|
|
54491
54673
|
apiToken?: InputMaybe<GraphIntegrationMcpAdminManagementApiTokenAuthConfigInput>;
|
|
54492
54674
|
noAuth?: InputMaybe<GraphIntegrationMcpAdminManagementNoAuthConfigInput>;
|
|
@@ -54526,6 +54708,7 @@ export type GraphIntegrationMcpAdminManagementMcpServerMetaData = {
|
|
|
54526
54708
|
};
|
|
54527
54709
|
export type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
54528
54710
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerNode';
|
|
54711
|
+
accessMode: GraphIntegrationMcpAdminManagementMcpServerAccessMode;
|
|
54529
54712
|
authConsentUrl?: Maybe<Scalars['URL']['output']>;
|
|
54530
54713
|
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
54531
54714
|
autoEnableNewTools: Scalars['Boolean']['output'];
|
|
@@ -54641,6 +54824,7 @@ export type GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload = Paylo
|
|
|
54641
54824
|
success: Scalars['Boolean']['output'];
|
|
54642
54825
|
};
|
|
54643
54826
|
export type GraphIntegrationMcpAdminManagementUpdateMcpRegistrationInput = {
|
|
54827
|
+
accessMode?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAccessMode>;
|
|
54644
54828
|
authConfig?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAuthConfigInput>;
|
|
54645
54829
|
autoEnableNewTools?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54646
54830
|
cloudId: Scalars['ID']['input'];
|
|
@@ -55033,6 +55217,7 @@ export type GraphIntegrationTwgCapabilityContainerMeta = {
|
|
|
55033
55217
|
__typename?: 'GraphIntegrationTwgCapabilityContainerMeta';
|
|
55034
55218
|
availableCapabilities: Array<GraphIntegrationAppCapability>;
|
|
55035
55219
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
55220
|
+
enabledToolCount?: Maybe<Scalars['Int']['output']>;
|
|
55036
55221
|
icon?: Maybe<GraphIntegrationIcon>;
|
|
55037
55222
|
iconKey: Scalars['String']['output'];
|
|
55038
55223
|
maxInstallations: Scalars['Int']['output'];
|
|
@@ -58202,6 +58387,7 @@ export type GraphStore = {
|
|
|
58202
58387
|
inferredDecisionSourceLineageEntity?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection>;
|
|
58203
58388
|
inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
|
|
58204
58389
|
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
58390
|
+
inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
|
|
58205
58391
|
issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
|
|
58206
58392
|
issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
58207
58393
|
issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
@@ -58296,6 +58482,7 @@ export type GraphStore = {
|
|
|
58296
58482
|
jiraIssueBlockedByJiraIssueInverse?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseConnection>;
|
|
58297
58483
|
jiraIssueToJiraPriority?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityConnection>;
|
|
58298
58484
|
jiraIssueToJiraPriorityInverse?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection>;
|
|
58485
|
+
jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreSimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
|
|
58299
58486
|
jiraProjectAssociatedAtlasGoal?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection>;
|
|
58300
58487
|
jiraProjectAssociatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseConnection>;
|
|
58301
58488
|
jiraProjectAssociatedAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
@@ -62431,6 +62618,14 @@ export type GraphStoreInferredTeamCollaboratesOnInferredProjectInverseArgs = {
|
|
|
62431
62618
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62432
62619
|
sort?: InputMaybe<GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput>;
|
|
62433
62620
|
};
|
|
62621
|
+
export type GraphStoreInferredTeamLinksEntityArgs = {
|
|
62622
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62623
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62624
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62625
|
+
id: Scalars['ID']['input'];
|
|
62626
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62627
|
+
sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
|
|
62628
|
+
};
|
|
62434
62629
|
export type GraphStoreIssueAssociatedBranchArgs = {
|
|
62435
62630
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
62436
62631
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -63131,6 +63326,14 @@ export type GraphStoreJiraIssueToJiraPriorityInverseArgs = {
|
|
|
63131
63326
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
63132
63327
|
sort?: InputMaybe<GraphStoreJiraIssueToJiraPrioritySortInput>;
|
|
63133
63328
|
};
|
|
63329
|
+
export type GraphStoreJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityArgs = {
|
|
63330
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63331
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63332
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63333
|
+
id: Scalars['ID']['input'];
|
|
63334
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
63335
|
+
sort?: InputMaybe<GraphStoreJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntitySortInput>;
|
|
63336
|
+
};
|
|
63134
63337
|
export type GraphStoreJiraProjectAssociatedAtlasGoalArgs = {
|
|
63135
63338
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63136
63339
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -73033,6 +73236,10 @@ export declare enum GraphStoreFullInferredDecisionNodeInferredDecisionStatusOutp
|
|
|
73033
73236
|
NotSet = "NOT_SET",
|
|
73034
73237
|
Rejected = "REJECTED"
|
|
73035
73238
|
}
|
|
73239
|
+
export declare enum GraphStoreFullInferredTeamNodeInferredTeamStatusOutput {
|
|
73240
|
+
Active = "ACTIVE",
|
|
73241
|
+
NotSet = "NOT_SET"
|
|
73242
|
+
}
|
|
73036
73243
|
export type GraphStoreFullIssueAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
73037
73244
|
__typename?: 'GraphStoreFullIssueAssociatedBranchConnection';
|
|
73038
73245
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedBranchEdge>>;
|
|
@@ -76167,6 +76374,15 @@ export type GraphStoreInferredProjectMetadata = {
|
|
|
76167
76374
|
export type GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
76168
76375
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76169
76376
|
};
|
|
76377
|
+
export type GraphStoreInferredTeamLinksEntitySortInput = {
|
|
76378
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76379
|
+
};
|
|
76380
|
+
export type GraphStoreInferredTeamNodeMetadata = {
|
|
76381
|
+
__typename?: 'GraphStoreInferredTeamNodeMetadata';
|
|
76382
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
76383
|
+
lastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
76384
|
+
status?: Maybe<GraphStoreFullInferredTeamNodeInferredTeamStatusOutput>;
|
|
76385
|
+
};
|
|
76170
76386
|
export type GraphStoreIntFilterInput = {
|
|
76171
76387
|
greaterThan?: InputMaybe<Scalars['Int']['input']>;
|
|
76172
76388
|
greaterThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -76438,6 +76654,9 @@ export type GraphStoreJiraIssueBlockedByJiraIssueSortInput = {
|
|
|
76438
76654
|
export type GraphStoreJiraIssueToJiraPrioritySortInput = {
|
|
76439
76655
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76440
76656
|
};
|
|
76657
|
+
export type GraphStoreJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntitySortInput = {
|
|
76658
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76659
|
+
};
|
|
76441
76660
|
export type GraphStoreJiraProjectAssociatedAtlasGoalSortInput = {
|
|
76442
76661
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
76443
76662
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -76940,7 +77159,7 @@ export type GraphStoreMutationDeleteVersionUserAssociatedFeatureFlagArgs = {
|
|
|
76940
77159
|
export type GraphStoreMutationDeleteVulnerabilityAssociatedIssueArgs = {
|
|
76941
77160
|
input?: InputMaybe<GraphStoreDeleteVulnerabilityAssociatedIssueInput>;
|
|
76942
77161
|
};
|
|
76943
|
-
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata;
|
|
77162
|
+
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredTeamNodeMetadata;
|
|
76944
77163
|
export type GraphStoreNodeResponse = {
|
|
76945
77164
|
__typename?: 'GraphStoreNodeResponse';
|
|
76946
77165
|
id: Scalars['ID']['output'];
|
|
@@ -82835,6 +83054,20 @@ export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverse
|
|
|
82835
83054
|
node?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
|
|
82836
83055
|
};
|
|
82837
83056
|
export type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
|
|
83057
|
+
export type GraphStoreSimplifiedInferredTeamLinksEntityConnection = HasPageInfo & {
|
|
83058
|
+
__typename?: 'GraphStoreSimplifiedInferredTeamLinksEntityConnection';
|
|
83059
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamLinksEntityEdge>>>;
|
|
83060
|
+
pageInfo: PageInfo;
|
|
83061
|
+
};
|
|
83062
|
+
export type GraphStoreSimplifiedInferredTeamLinksEntityEdge = {
|
|
83063
|
+
__typename?: 'GraphStoreSimplifiedInferredTeamLinksEntityEdge';
|
|
83064
|
+
createdAt: Scalars['DateTime']['output'];
|
|
83065
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
83066
|
+
id: Scalars['ID']['output'];
|
|
83067
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
83068
|
+
node?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityUnion>;
|
|
83069
|
+
};
|
|
83070
|
+
export type GraphStoreSimplifiedInferredTeamLinksEntityUnion = ConfluenceSpace | JiraProject;
|
|
82838
83071
|
export type GraphStoreSimplifiedIssueAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
82839
83072
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchConnection';
|
|
82840
83073
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchEdge>>>;
|
|
@@ -83679,6 +83912,20 @@ export type GraphStoreSimplifiedJiraIssueToJiraPriorityInverseEdge = {
|
|
|
83679
83912
|
};
|
|
83680
83913
|
export type GraphStoreSimplifiedJiraIssueToJiraPriorityInverseUnion = JiraIssue;
|
|
83681
83914
|
export type GraphStoreSimplifiedJiraIssueToJiraPriorityUnion = JiraPriority;
|
|
83915
|
+
export type GraphStoreSimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection = HasPageInfo & {
|
|
83916
|
+
__typename?: 'GraphStoreSimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection';
|
|
83917
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityEdge>>>;
|
|
83918
|
+
pageInfo: PageInfo;
|
|
83919
|
+
};
|
|
83920
|
+
export type GraphStoreSimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityEdge = {
|
|
83921
|
+
__typename?: 'GraphStoreSimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityEdge';
|
|
83922
|
+
createdAt: Scalars['DateTime']['output'];
|
|
83923
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
83924
|
+
id: Scalars['ID']['output'];
|
|
83925
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
83926
|
+
node?: Maybe<GraphStoreSimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityUnion>;
|
|
83927
|
+
};
|
|
83928
|
+
export type GraphStoreSimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSlide | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalServicenowBusinessApp | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryAsk | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationMembership | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
83682
83929
|
export type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection = HasPageInfo & HasTotal & {
|
|
83683
83930
|
__typename?: 'GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection';
|
|
83684
83931
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalEdge>>>;
|
|
@@ -92985,8 +93232,10 @@ export type GraphStoreV2 = {
|
|
|
92985
93232
|
inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
|
|
92986
93233
|
inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
92987
93234
|
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
93235
|
+
inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
|
|
92988
93236
|
jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
|
|
92989
93237
|
jiraEpicTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseConnection>;
|
|
93238
|
+
jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
|
|
92990
93239
|
jiraSpaceDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraSpaceDismissedKnowledgeBaseEntityConnection>;
|
|
92991
93240
|
jiraSpaceDismissedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceDismissedKnowledgeBaseEntityInverseConnection>;
|
|
92992
93241
|
jiraSpaceExplicitlyLinksExternalRepository?: Maybe<GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalRepositoryConnection>;
|
|
@@ -98105,6 +98354,13 @@ export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectInverseArgs = {
|
|
|
98105
98354
|
id: Scalars['ID']['input'];
|
|
98106
98355
|
sort?: InputMaybe<GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput>;
|
|
98107
98356
|
};
|
|
98357
|
+
export type GraphStoreV2InferredTeamLinksEntityArgs = {
|
|
98358
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98359
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
98360
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98361
|
+
id: Scalars['ID']['input'];
|
|
98362
|
+
sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
|
|
98363
|
+
};
|
|
98108
98364
|
export type GraphStoreV2JiraEpicTracksAtlassianProjectArgs = {
|
|
98109
98365
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
98110
98366
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -98119,6 +98375,13 @@ export type GraphStoreV2JiraEpicTracksAtlassianProjectInverseArgs = {
|
|
|
98119
98375
|
id: Scalars['ID']['input'];
|
|
98120
98376
|
sort?: InputMaybe<GraphStoreV2JiraEpicTracksAtlassianProjectSortInput>;
|
|
98121
98377
|
};
|
|
98378
|
+
export type GraphStoreV2JiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityArgs = {
|
|
98379
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98380
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
98381
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98382
|
+
id: Scalars['ID']['input'];
|
|
98383
|
+
sort?: InputMaybe<GraphStoreV2JiraProjectAgentKnowledgeContextHasKnowledgeBaseEntitySortInput>;
|
|
98384
|
+
};
|
|
98122
98385
|
export type GraphStoreV2JiraSpaceDismissedKnowledgeBaseEntityArgs = {
|
|
98123
98386
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
98124
98387
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -101910,9 +102173,15 @@ export type GraphStoreV2InferredProjectLinksEntitySortInput = {
|
|
|
101910
102173
|
export type GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
101911
102174
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
101912
102175
|
};
|
|
102176
|
+
export type GraphStoreV2InferredTeamLinksEntitySortInput = {
|
|
102177
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
102178
|
+
};
|
|
101913
102179
|
export type GraphStoreV2JiraEpicTracksAtlassianProjectSortInput = {
|
|
101914
102180
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
101915
102181
|
};
|
|
102182
|
+
export type GraphStoreV2JiraProjectAgentKnowledgeContextHasKnowledgeBaseEntitySortInput = {
|
|
102183
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
102184
|
+
};
|
|
101916
102185
|
export type GraphStoreV2JiraSpaceDismissedKnowledgeBaseEntitySortInput = {
|
|
101917
102186
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
101918
102187
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -113397,6 +113666,20 @@ export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInver
|
|
|
113397
113666
|
node?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
|
|
113398
113667
|
};
|
|
113399
113668
|
export type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
|
|
113669
|
+
export type GraphStoreV2SimplifiedInferredTeamLinksEntityConnection = HasPageInfo & {
|
|
113670
|
+
__typename?: 'GraphStoreV2SimplifiedInferredTeamLinksEntityConnection';
|
|
113671
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityEdge>>>;
|
|
113672
|
+
pageInfo: PageInfo;
|
|
113673
|
+
};
|
|
113674
|
+
export type GraphStoreV2SimplifiedInferredTeamLinksEntityEdge = {
|
|
113675
|
+
__typename?: 'GraphStoreV2SimplifiedInferredTeamLinksEntityEdge';
|
|
113676
|
+
createdAt: Scalars['DateTime']['output'];
|
|
113677
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
113678
|
+
id: Scalars['ID']['output'];
|
|
113679
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
113680
|
+
node?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityUnion>;
|
|
113681
|
+
};
|
|
113682
|
+
export type GraphStoreV2SimplifiedInferredTeamLinksEntityUnion = ConfluenceSpace | JiraProject;
|
|
113400
113683
|
export type GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection = HasPageInfo & {
|
|
113401
113684
|
__typename?: 'GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection';
|
|
113402
113685
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectEdge>>>;
|
|
@@ -113425,6 +113708,20 @@ export type GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseEdge = {
|
|
|
113425
113708
|
};
|
|
113426
113709
|
export type GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseUnion = JiraIssue;
|
|
113427
113710
|
export type GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectUnion = TownsquareProject;
|
|
113711
|
+
export type GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection = HasPageInfo & {
|
|
113712
|
+
__typename?: 'GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection';
|
|
113713
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityEdge>>>;
|
|
113714
|
+
pageInfo: PageInfo;
|
|
113715
|
+
};
|
|
113716
|
+
export type GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityEdge = {
|
|
113717
|
+
__typename?: 'GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityEdge';
|
|
113718
|
+
createdAt: Scalars['DateTime']['output'];
|
|
113719
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
113720
|
+
id: Scalars['ID']['output'];
|
|
113721
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
113722
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityUnion>;
|
|
113723
|
+
};
|
|
113724
|
+
export type GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSlide | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalServicenowBusinessApp | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryAsk | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationMembership | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
113428
113725
|
export type GraphStoreV2SimplifiedJiraSpaceDismissedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
113429
113726
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceDismissedKnowledgeBaseEntityConnection';
|
|
113430
113727
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceDismissedKnowledgeBaseEntityEdge>>>;
|
|
@@ -116400,6 +116697,31 @@ export type GravityAddReactionPayload = Payload & {
|
|
|
116400
116697
|
export type GravityApplyDraftInput = {
|
|
116401
116698
|
draftId: Scalars['String']['input'];
|
|
116402
116699
|
};
|
|
116700
|
+
export type GravityArrangementField = {
|
|
116701
|
+
__typename?: 'GravityArrangementField';
|
|
116702
|
+
fieldKey: Scalars['String']['output'];
|
|
116703
|
+
groups: Array<GravityArrangementGroup>;
|
|
116704
|
+
};
|
|
116705
|
+
export type GravityArrangementFieldInput = {
|
|
116706
|
+
fieldKey: Scalars['String']['input'];
|
|
116707
|
+
groups: Array<GravityArrangementGroupInput>;
|
|
116708
|
+
};
|
|
116709
|
+
export type GravityArrangementGroup = {
|
|
116710
|
+
__typename?: 'GravityArrangementGroup';
|
|
116711
|
+
groupValue: Scalars['String']['output'];
|
|
116712
|
+
rows: Array<GravityArrangementRow>;
|
|
116713
|
+
};
|
|
116714
|
+
export type GravityArrangementGroupInput = {
|
|
116715
|
+
groupValue: Scalars['String']['input'];
|
|
116716
|
+
rows: Array<GravityArrangementRowInput>;
|
|
116717
|
+
};
|
|
116718
|
+
export type GravityArrangementRow = {
|
|
116719
|
+
__typename?: 'GravityArrangementRow';
|
|
116720
|
+
issueIds: Array<Scalars['ID']['output']>;
|
|
116721
|
+
};
|
|
116722
|
+
export type GravityArrangementRowInput = {
|
|
116723
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
116724
|
+
};
|
|
116403
116725
|
export type GravityCommentPayload = Payload & {
|
|
116404
116726
|
__typename?: 'GravityCommentPayload';
|
|
116405
116727
|
comment?: Maybe<GravityDraftComment>;
|
|
@@ -116716,6 +117038,10 @@ export type GravitySetActionStatusInput = {
|
|
|
116716
117038
|
actionId: Scalars['String']['input'];
|
|
116717
117039
|
status: GravityActionStatus;
|
|
116718
117040
|
};
|
|
117041
|
+
export type GravitySetViewArrangementInput = {
|
|
117042
|
+
fields: Array<GravityArrangementFieldInput>;
|
|
117043
|
+
viewId: Scalars['ID']['input'];
|
|
117044
|
+
};
|
|
116719
117045
|
export declare enum GravitySortOrder {
|
|
116720
117046
|
Asc = "ASC",
|
|
116721
117047
|
Desc = "DESC"
|
|
@@ -116767,6 +117093,18 @@ export type GravityView = {
|
|
|
116767
117093
|
name: Scalars['String']['output'];
|
|
116768
117094
|
visualizationType: GravityViewVisualizationType;
|
|
116769
117095
|
};
|
|
117096
|
+
export type GravityViewArrangement = {
|
|
117097
|
+
__typename?: 'GravityViewArrangement';
|
|
117098
|
+
fields: Array<GravityArrangementField>;
|
|
117099
|
+
viewId: Scalars['ID']['output'];
|
|
117100
|
+
};
|
|
117101
|
+
export type GravityViewArrangementPayload = Payload & {
|
|
117102
|
+
__typename?: 'GravityViewArrangementPayload';
|
|
117103
|
+
arrangement?: Maybe<GravityViewArrangement>;
|
|
117104
|
+
errors?: Maybe<Array<MutationError>>;
|
|
117105
|
+
success: Scalars['Boolean']['output'];
|
|
117106
|
+
};
|
|
117107
|
+
export type GravityViewArrangementResult = GravityViewArrangement | QueryError;
|
|
116770
117108
|
export declare enum GravityViewColorStyle {
|
|
116771
117109
|
Background = "BACKGROUND",
|
|
116772
117110
|
Highlight = "HIGHLIGHT"
|
|
@@ -118326,9 +118664,9 @@ export type HelpCenterCreateTopicPayload = Payload & {
|
|
|
118326
118664
|
successfullyCreatedTopicIds: Array<Maybe<HelpCenterSuccessfullyCreatedTopicIds>>;
|
|
118327
118665
|
};
|
|
118328
118666
|
export type HelpCenterDeleteHubTranslationsInput = {
|
|
118329
|
-
|
|
118667
|
+
helpCenterAri: Scalars['String']['input'];
|
|
118330
118668
|
locale: Scalars['String']['input'];
|
|
118331
|
-
|
|
118669
|
+
parentAri: Scalars['String']['input'];
|
|
118332
118670
|
};
|
|
118333
118671
|
export type HelpCenterDeleteInput = {
|
|
118334
118672
|
helpCenterAri: Scalars['String']['input'];
|
|
@@ -118415,9 +118753,9 @@ export type HelpCenterHubTranslationFieldInput = {
|
|
|
118415
118753
|
};
|
|
118416
118754
|
export type HelpCenterHubTranslationsInput = {
|
|
118417
118755
|
blocks: Array<HelpCenterHubTranslationBlockInput>;
|
|
118418
|
-
|
|
118756
|
+
helpCenterAri: Scalars['String']['input'];
|
|
118419
118757
|
locale: Scalars['String']['input'];
|
|
118420
|
-
|
|
118758
|
+
parentAri: Scalars['String']['input'];
|
|
118421
118759
|
};
|
|
118422
118760
|
export type HelpCenterLayoutAdf = {
|
|
118423
118761
|
__typename?: 'HelpCenterLayoutAdf';
|
|
@@ -118752,6 +119090,7 @@ export declare enum HelpCenterPortalsType {
|
|
|
118752
119090
|
}
|
|
118753
119091
|
export type HelpCenterProductEntityConnection = HelpObjectStoreKbCategoriesConnection | HelpObjectStorePortalGroupsConnection | HelpObjectStoreProductEntityConnection | HelpObjectStoreSuggestedRequestTypesConnection | JiraServiceManagementRequestTypeConnection | QueryError;
|
|
118754
119092
|
export type HelpCenterProductEntityFilter = {
|
|
119093
|
+
entityIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
118755
119094
|
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
118756
119095
|
subEntityTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
118757
119096
|
};
|
|
@@ -118764,6 +119103,7 @@ export type HelpCenterProductEntityFilterCriteria = {
|
|
|
118764
119103
|
};
|
|
118765
119104
|
export type HelpCenterProductEntityFilterOutput = {
|
|
118766
119105
|
__typename?: 'HelpCenterProductEntityFilterOutput';
|
|
119106
|
+
entityIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
118767
119107
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
118768
119108
|
subEntityTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
118769
119109
|
};
|
|
@@ -118927,8 +119267,8 @@ export type HelpCenterQueryApiHubProductEntitiesArgs = {
|
|
|
118927
119267
|
inputs: Array<HelpCenterProductEntityRequestInput>;
|
|
118928
119268
|
};
|
|
118929
119269
|
export type HelpCenterQueryApiLayoutTranslationsArgs = {
|
|
118930
|
-
|
|
118931
|
-
|
|
119270
|
+
helpCenterAri: Scalars['String']['input'];
|
|
119271
|
+
parentAri: Scalars['String']['input'];
|
|
118932
119272
|
};
|
|
118933
119273
|
export type HelpCenterQueryApiMediaConfigArgs = {
|
|
118934
119274
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -121911,6 +122251,31 @@ export type JiraAgentAssignableInput = {
|
|
|
121911
122251
|
agentAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
121912
122252
|
agentId?: InputMaybe<Scalars['ID']['input']>;
|
|
121913
122253
|
};
|
|
122254
|
+
export declare enum JiraAgentAutonomyLevel {
|
|
122255
|
+
AutoApply = "AUTO_APPLY",
|
|
122256
|
+
RequiresApproval = "REQUIRES_APPROVAL"
|
|
122257
|
+
}
|
|
122258
|
+
export type JiraAgentAutonomyPolicy = {
|
|
122259
|
+
__typename?: 'JiraAgentAutonomyPolicy';
|
|
122260
|
+
agentId: Scalars['ID']['output'];
|
|
122261
|
+
defaultAutonomyLevel: JiraAgentAutonomyLevel;
|
|
122262
|
+
enabled: Scalars['Boolean']['output'];
|
|
122263
|
+
fieldOverrides: Array<JiraAgentFieldAutonomy>;
|
|
122264
|
+
modifiedAt?: Maybe<Scalars['Long']['output']>;
|
|
122265
|
+
modifiedBy?: Maybe<Scalars['String']['output']>;
|
|
122266
|
+
policyVersion?: Maybe<Scalars['Long']['output']>;
|
|
122267
|
+
projectId: Scalars['ID']['output'];
|
|
122268
|
+
};
|
|
122269
|
+
export type JiraAgentAutonomyPolicyInput = {
|
|
122270
|
+
agentId: Scalars['ID']['input'];
|
|
122271
|
+
projectId: Scalars['ID']['input'];
|
|
122272
|
+
};
|
|
122273
|
+
export type JiraAgentAutonomyPolicyPayload = Payload & {
|
|
122274
|
+
__typename?: 'JiraAgentAutonomyPolicyPayload';
|
|
122275
|
+
errors?: Maybe<Array<MutationError>>;
|
|
122276
|
+
policy?: Maybe<JiraAgentAutonomyPolicy>;
|
|
122277
|
+
success: Scalars['Boolean']['output'];
|
|
122278
|
+
};
|
|
121914
122279
|
export type JiraAgentContextAcceptItemInput = {
|
|
121915
122280
|
agentAri?: InputMaybe<Scalars['ID']['input']>;
|
|
121916
122281
|
spaceAri: Scalars['ID']['input'];
|
|
@@ -121995,11 +122360,21 @@ export declare enum JiraAgentCreatorType {
|
|
|
121995
122360
|
System = "SYSTEM",
|
|
121996
122361
|
ThirdParty = "THIRD_PARTY"
|
|
121997
122362
|
}
|
|
122363
|
+
export type JiraAgentFieldAutonomy = {
|
|
122364
|
+
__typename?: 'JiraAgentFieldAutonomy';
|
|
122365
|
+
fieldId: Scalars['ID']['output'];
|
|
122366
|
+
level: JiraAgentAutonomyLevel;
|
|
122367
|
+
};
|
|
122368
|
+
export type JiraAgentFieldAutonomyInput = {
|
|
122369
|
+
fieldId: Scalars['ID']['input'];
|
|
122370
|
+
level: JiraAgentAutonomyLevel;
|
|
122371
|
+
};
|
|
121998
122372
|
export type JiraAgentInSpace = {
|
|
121999
122373
|
__typename?: 'JiraAgentInSpace';
|
|
122000
122374
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
122001
122375
|
agent?: Maybe<AgentStudioAgent>;
|
|
122002
122376
|
agentId: Scalars['ID']['output'];
|
|
122377
|
+
autonomyPolicy?: Maybe<JiraAgentAutonomyPolicy>;
|
|
122003
122378
|
contextCuratedSources?: Maybe<JiraAgentContextItemConnection>;
|
|
122004
122379
|
contextSuggestedSources?: Maybe<JiraAgentContextItemConnection>;
|
|
122005
122380
|
hasAppSettings: Scalars['Boolean']['output'];
|
|
@@ -124869,6 +125244,12 @@ export type JiraBottomChildCustomFieldDefaultContextOptionPositionInput = {
|
|
|
124869
125244
|
export type JiraBottomCustomFieldDefaultContextOptionPositionInput = {
|
|
124870
125245
|
dummy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124871
125246
|
};
|
|
125247
|
+
export type JiraBulkAgentSessionInvocationInput = {
|
|
125248
|
+
agentId: Scalars['ID']['input'];
|
|
125249
|
+
issueId: Scalars['ID']['input'];
|
|
125250
|
+
requestId: Scalars['ID']['input'];
|
|
125251
|
+
userPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
125252
|
+
};
|
|
124872
125253
|
export type JiraBulkCleanupProjectsInput = {
|
|
124873
125254
|
projectCleanupAction?: InputMaybe<JiraProjectCleanupRecommendationAction>;
|
|
124874
125255
|
recommendationIds?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
@@ -125023,6 +125404,37 @@ export type JiraBulkSetBoardViewSwimlaneStatePayload = Payload & {
|
|
|
125023
125404
|
errors?: Maybe<Array<MutationError>>;
|
|
125024
125405
|
success: Scalars['Boolean']['output'];
|
|
125025
125406
|
};
|
|
125407
|
+
export type JiraBulkStartAgentSessionResult = {
|
|
125408
|
+
__typename?: 'JiraBulkStartAgentSessionResult';
|
|
125409
|
+
agentId: Scalars['ID']['output'];
|
|
125410
|
+
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
125411
|
+
error?: Maybe<MutationError>;
|
|
125412
|
+
issueId: Scalars['ID']['output'];
|
|
125413
|
+
requestId: Scalars['ID']['output'];
|
|
125414
|
+
result?: Maybe<JiraStartAgentSessionResult>;
|
|
125415
|
+
session?: Maybe<JiraAgentSession>;
|
|
125416
|
+
};
|
|
125417
|
+
export type JiraBulkStartAgentSessionsInput = {
|
|
125418
|
+
clientMutationId: Scalars['ID']['input'];
|
|
125419
|
+
cloudId: Scalars['ID']['input'];
|
|
125420
|
+
invocations: Array<JiraBulkAgentSessionInvocationInput>;
|
|
125421
|
+
};
|
|
125422
|
+
export type JiraBulkStartAgentSessionsPayload = Payload & {
|
|
125423
|
+
__typename?: 'JiraBulkStartAgentSessionsPayload';
|
|
125424
|
+
errors?: Maybe<Array<MutationError>>;
|
|
125425
|
+
failedCount: Scalars['Int']['output'];
|
|
125426
|
+
rateLimitedCount: Scalars['Int']['output'];
|
|
125427
|
+
results: Array<JiraBulkStartAgentSessionResult>;
|
|
125428
|
+
startedCount: Scalars['Int']['output'];
|
|
125429
|
+
success: Scalars['Boolean']['output'];
|
|
125430
|
+
};
|
|
125431
|
+
export type JiraBulkStartUniformAgentSessionsInput = {
|
|
125432
|
+
agentId: Scalars['ID']['input'];
|
|
125433
|
+
clientMutationId: Scalars['ID']['input'];
|
|
125434
|
+
cloudId: Scalars['ID']['input'];
|
|
125435
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
125436
|
+
userPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
125437
|
+
};
|
|
125026
125438
|
export type JiraBulkTransition = Node & {
|
|
125027
125439
|
__typename?: 'JiraBulkTransition';
|
|
125028
125440
|
id: Scalars['ID']['output'];
|
|
@@ -127786,6 +128198,11 @@ export type JiraDeleteActivityConfigurationInput = {
|
|
|
127786
128198
|
journeyId: Scalars['ID']['input'];
|
|
127787
128199
|
journeyVersion: Scalars['Long']['input'];
|
|
127788
128200
|
};
|
|
128201
|
+
export type JiraDeleteAgentAutonomyPolicyPayload = Payload & {
|
|
128202
|
+
__typename?: 'JiraDeleteAgentAutonomyPolicyPayload';
|
|
128203
|
+
errors?: Maybe<Array<MutationError>>;
|
|
128204
|
+
success: Scalars['Boolean']['output'];
|
|
128205
|
+
};
|
|
127789
128206
|
export type JiraDeleteAllAttachmentsPayload = Payload & {
|
|
127790
128207
|
__typename?: 'JiraDeleteAllAttachmentsPayload';
|
|
127791
128208
|
deletedAttachmentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -129402,6 +129819,60 @@ export type JiraFieldTypeGroupEdge = {
|
|
|
129402
129819
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
129403
129820
|
node?: Maybe<JiraFieldTypeGroup>;
|
|
129404
129821
|
};
|
|
129822
|
+
export type JiraFieldUpdate = {
|
|
129823
|
+
__typename?: 'JiraFieldUpdate';
|
|
129824
|
+
fields?: Maybe<Array<JiraFieldUpdateField>>;
|
|
129825
|
+
issueIdOrKey?: Maybe<Scalars['String']['output']>;
|
|
129826
|
+
};
|
|
129827
|
+
export type JiraFieldUpdateField = {
|
|
129828
|
+
__typename?: 'JiraFieldUpdateField';
|
|
129829
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
129830
|
+
reasoning?: Maybe<Scalars['String']['output']>;
|
|
129831
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
129832
|
+
};
|
|
129833
|
+
export type JiraFieldUpdateSuggestionConnection = {
|
|
129834
|
+
__typename?: 'JiraFieldUpdateSuggestionConnection';
|
|
129835
|
+
edges?: Maybe<Array<Maybe<JiraFieldUpdateSuggestionEdge>>>;
|
|
129836
|
+
pageInfo: PageInfo;
|
|
129837
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
129838
|
+
};
|
|
129839
|
+
export type JiraFieldUpdateSuggestionEdge = {
|
|
129840
|
+
__typename?: 'JiraFieldUpdateSuggestionEdge';
|
|
129841
|
+
cursor: Scalars['String']['output'];
|
|
129842
|
+
node?: Maybe<JiraFieldUpdateSuggestionItem>;
|
|
129843
|
+
};
|
|
129844
|
+
export type JiraFieldUpdateSuggestionItem = {
|
|
129845
|
+
__typename?: 'JiraFieldUpdateSuggestionItem';
|
|
129846
|
+
actionKey?: Maybe<Scalars['String']['output']>;
|
|
129847
|
+
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
129848
|
+
experienceId?: Maybe<Scalars['String']['output']>;
|
|
129849
|
+
invocationId?: Maybe<Scalars['ID']['output']>;
|
|
129850
|
+
messageId?: Maybe<Scalars['ID']['output']>;
|
|
129851
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
129852
|
+
recipientAgentNamedId?: Maybe<Scalars['String']['output']>;
|
|
129853
|
+
source?: Maybe<JiraNextActionGroup>;
|
|
129854
|
+
sourceUrl?: Maybe<Scalars['String']['output']>;
|
|
129855
|
+
updates?: Maybe<Array<JiraFieldUpdate>>;
|
|
129856
|
+
};
|
|
129857
|
+
export type JiraFieldUpdateSuggestions = JiraBaseNextActionsEntity & {
|
|
129858
|
+
__typename?: 'JiraFieldUpdateSuggestions';
|
|
129859
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
129860
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
129861
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
129862
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
129863
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
129864
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
129865
|
+
items?: Maybe<JiraFieldUpdateSuggestionConnection>;
|
|
129866
|
+
queryError?: Maybe<QueryError>;
|
|
129867
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
129868
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
129869
|
+
};
|
|
129870
|
+
export type JiraFieldUpdateSuggestionsItemsArgs = {
|
|
129871
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129872
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
129873
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129874
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129875
|
+
};
|
|
129405
129876
|
export type JiraFieldValidationMutationErrorExtension = MutationErrorExtension & {
|
|
129406
129877
|
__typename?: 'JiraFieldValidationMutationErrorExtension';
|
|
129407
129878
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -131157,6 +131628,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
131157
131628
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
131158
131629
|
nextActionPresence?: Maybe<JiraIssueNextActionPresence>;
|
|
131159
131630
|
nextActionSuggestions?: Maybe<JiraIssueNextActionSuggestions>;
|
|
131631
|
+
nextBestActionSuggestions?: Maybe<JiraIssueNextBestActionSuggestions>;
|
|
131160
131632
|
parentIssue?: Maybe<JiraIssue>;
|
|
131161
131633
|
parentIssueField?: Maybe<JiraParentIssueField>;
|
|
131162
131634
|
pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
|
|
@@ -131530,6 +132002,10 @@ export type JiraIssueNextActionSuggestionsArgs = {
|
|
|
131530
132002
|
childIssueCount?: InputMaybe<Scalars['Int']['input']>;
|
|
131531
132003
|
excludeWorkItemIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
131532
132004
|
};
|
|
132005
|
+
export type JiraIssueNextBestActionSuggestionsArgs = {
|
|
132006
|
+
childIssueCount?: InputMaybe<Scalars['Int']['input']>;
|
|
132007
|
+
excludeWorkItemIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
132008
|
+
};
|
|
131533
132009
|
export type JiraIssuePlanScenarioValuesArgs = {
|
|
131534
132010
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
131535
132011
|
};
|
|
@@ -133027,6 +133503,17 @@ export type JiraIssueNextActionSuggestions = {
|
|
|
133027
133503
|
triageAgentSuggestions?: Maybe<JiraTriageAgentSuggestions>;
|
|
133028
133504
|
workBreakdownSuggestions?: Maybe<JiraWorkBreakdownSuggestions>;
|
|
133029
133505
|
};
|
|
133506
|
+
export type JiraIssueNextBestActionSuggestions = {
|
|
133507
|
+
__typename?: 'JiraIssueNextBestActionSuggestions';
|
|
133508
|
+
fieldUpdateSuggestions?: Maybe<JiraFieldUpdateSuggestions>;
|
|
133509
|
+
improveDescriptionSuggestions?: Maybe<JiraImproveDescriptionSuggestion>;
|
|
133510
|
+
loomWorkItemUpdateSuggestions?: Maybe<JiraLoomWorkItemUpdateSuggestions>;
|
|
133511
|
+
relatedLinkSuggestions?: Maybe<JiraRelatedLinkSuggestions>;
|
|
133512
|
+
sdlcSuggestions?: Maybe<JiraSdlcSuggestions>;
|
|
133513
|
+
similarWorkItemSuggestions?: Maybe<JiraSimilarWorkItemSuggestions>;
|
|
133514
|
+
triageAgentSuggestions?: Maybe<JiraTriageAgentSuggestions>;
|
|
133515
|
+
workBreakdownSuggestions?: Maybe<JiraWorkBreakdownSuggestions>;
|
|
133516
|
+
};
|
|
133030
133517
|
export type JiraIssueNoEnrichmentStreamHubPayload = {
|
|
133031
133518
|
__typename?: 'JiraIssueNoEnrichmentStreamHubPayload';
|
|
133032
133519
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
@@ -137327,6 +137814,7 @@ export declare enum JiraNextActionContentType {
|
|
|
137327
137814
|
}
|
|
137328
137815
|
export declare enum JiraNextActionGroup {
|
|
137329
137816
|
AiFeatures = "AI_FEATURES",
|
|
137817
|
+
FieldUpdates = "FIELD_UPDATES",
|
|
137330
137818
|
LoomUpdates = "LOOM_UPDATES",
|
|
137331
137819
|
Sdlc = "SDLC",
|
|
137332
137820
|
TriageAgent = "TRIAGE_AGENT"
|
|
@@ -140569,6 +141057,7 @@ export type JiraQuery = {
|
|
|
140569
141057
|
suggestedFormulaFieldExpression?: Maybe<JiraFormulaFieldSuggestedExpressionResult>;
|
|
140570
141058
|
suggestedRequestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
140571
141059
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
141060
|
+
timelineToggleableFieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
140572
141061
|
uiModifications?: Maybe<Array<JiraAppUiModifications>>;
|
|
140573
141062
|
userHomePage?: Maybe<JiraHomePage>;
|
|
140574
141063
|
userNavigationConfiguration?: Maybe<JiraUserNavigationConfiguration>;
|
|
@@ -141918,6 +142407,9 @@ export type JiraQuerySystemFiltersArgs = {
|
|
|
141918
142407
|
isFavourite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
141919
142408
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
141920
142409
|
};
|
|
142410
|
+
export type JiraQueryTimelineToggleableFieldSetsArgs = {
|
|
142411
|
+
cloudId: Scalars['ID']['input'];
|
|
142412
|
+
};
|
|
141921
142413
|
export type JiraQueryUiModificationsArgs = {
|
|
141922
142414
|
context: JiraUiModificationsContextInput;
|
|
141923
142415
|
};
|
|
@@ -142697,6 +143189,11 @@ export type JiraRemoveActiveBackgroundPayload = Payload & {
|
|
|
142697
143189
|
errors?: Maybe<Array<MutationError>>;
|
|
142698
143190
|
success: Scalars['Boolean']['output'];
|
|
142699
143191
|
};
|
|
143192
|
+
export type JiraRemoveAgentFieldAutonomyInput = {
|
|
143193
|
+
agentId: Scalars['ID']['input'];
|
|
143194
|
+
fieldId: Scalars['ID']['input'];
|
|
143195
|
+
projectId: Scalars['ID']['input'];
|
|
143196
|
+
};
|
|
142700
143197
|
export type JiraRemoveAgentFromBoardViewStatusColumnInput = {
|
|
142701
143198
|
agentAccountId: Scalars['ID']['input'];
|
|
142702
143199
|
columnId: Scalars['ID']['input'];
|
|
@@ -145343,6 +145840,19 @@ export type JiraServiceManagementWorkflowTemplatesMetadataEdge = {
|
|
|
145343
145840
|
cursor: Scalars['String']['output'];
|
|
145344
145841
|
node?: Maybe<JiraServiceManagementWorkflowTemplateMetadata>;
|
|
145345
145842
|
};
|
|
145843
|
+
export type JiraSetAgentAutonomyPolicyInput = {
|
|
145844
|
+
agentId: Scalars['ID']['input'];
|
|
145845
|
+
defaultAutonomyLevel: JiraAgentAutonomyLevel;
|
|
145846
|
+
enabled: Scalars['Boolean']['input'];
|
|
145847
|
+
fieldOverrides: Array<JiraAgentFieldAutonomyInput>;
|
|
145848
|
+
projectId: Scalars['ID']['input'];
|
|
145849
|
+
};
|
|
145850
|
+
export type JiraSetAgentFieldAutonomyInput = {
|
|
145851
|
+
agentId: Scalars['ID']['input'];
|
|
145852
|
+
fieldId: Scalars['ID']['input'];
|
|
145853
|
+
level: JiraAgentAutonomyLevel;
|
|
145854
|
+
projectId: Scalars['ID']['input'];
|
|
145855
|
+
};
|
|
145346
145856
|
export type JiraSetAgentSessionIsPlanModeEnabledResponsePayload = Payload & {
|
|
145347
145857
|
__typename?: 'JiraSetAgentSessionIsPlanModeEnabledResponsePayload';
|
|
145348
145858
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -146750,6 +147260,11 @@ export type JiraStakeholderUpdatedValue = {
|
|
|
146750
147260
|
description?: Maybe<Scalars['String']['output']>;
|
|
146751
147261
|
message?: Maybe<Scalars['String']['output']>;
|
|
146752
147262
|
};
|
|
147263
|
+
export declare enum JiraStartAgentSessionResult {
|
|
147264
|
+
Failed = "FAILED",
|
|
147265
|
+
RateLimited = "RATE_LIMITED",
|
|
147266
|
+
Started = "STARTED"
|
|
147267
|
+
}
|
|
146753
147268
|
export type JiraStartAiAgentSessionByExternalReferenceInput = {
|
|
146754
147269
|
clientMutationId: Scalars['String']['input'];
|
|
146755
147270
|
cloudId: Scalars['ID']['input'];
|
|
@@ -151576,6 +152091,7 @@ export type JsmChannelsServiceAgentResolutionPlanStep = {
|
|
|
151576
152091
|
__typename?: 'JsmChannelsServiceAgentResolutionPlanStep';
|
|
151577
152092
|
assigneeType?: Maybe<JsmChannelsResolutionPlanAssigneeType>;
|
|
151578
152093
|
description?: Maybe<Scalars['String']['output']>;
|
|
152094
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
151579
152095
|
status?: Maybe<JsmChannelsResolutionPlanStepStatus>;
|
|
151580
152096
|
title: Scalars['String']['output'];
|
|
151581
152097
|
};
|
|
@@ -151603,6 +152119,7 @@ export type JsmChannelsStepNode = JsmChannelsPlanNode & {
|
|
|
151603
152119
|
assigneeType?: Maybe<JsmChannelsResolutionPlanAssigneeType>;
|
|
151604
152120
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
151605
152121
|
estimatedDurationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
152122
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
151606
152123
|
id: Scalars['ID']['output'];
|
|
151607
152124
|
isCollapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
151608
152125
|
nodeDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -152499,10 +153016,20 @@ export type JsmSolutionComposerFollowupTask = {
|
|
|
152499
153016
|
__typename?: 'JsmSolutionComposerFollowupTask';
|
|
152500
153017
|
taskType: Scalars['String']['output'];
|
|
152501
153018
|
};
|
|
153019
|
+
export type JsmSolutionComposerPlanContextResponse = {
|
|
153020
|
+
__typename?: 'JsmSolutionComposerPlanContextResponse';
|
|
153021
|
+
contextSummary?: Maybe<Scalars['String']['output']>;
|
|
153022
|
+
projectAri: Scalars['ID']['output'];
|
|
153023
|
+
};
|
|
153024
|
+
export type JsmSolutionComposerPlanContextResult = JsmSolutionComposerPlanContextResponse | QueryError;
|
|
152502
153025
|
export type JsmSolutionComposerPlanQueryApi = {
|
|
152503
153026
|
__typename?: 'JsmSolutionComposerPlanQueryApi';
|
|
153027
|
+
jsmSolutionComposerPlanContext?: Maybe<JsmSolutionComposerPlanContextResult>;
|
|
152504
153028
|
jsmSolutionComposerPlanStatus?: Maybe<JsmSolutionComposerPlanStatusResult>;
|
|
152505
153029
|
};
|
|
153030
|
+
export type JsmSolutionComposerPlanQueryApiJsmSolutionComposerPlanContextArgs = {
|
|
153031
|
+
projectAri: Scalars['ID']['input'];
|
|
153032
|
+
};
|
|
152506
153033
|
export type JsmSolutionComposerPlanQueryApiJsmSolutionComposerPlanStatusArgs = {
|
|
152507
153034
|
projectAri: Scalars['ID']['input'];
|
|
152508
153035
|
};
|
|
@@ -152545,6 +153072,59 @@ export declare enum JsmSolutionComposerStepStatusType {
|
|
|
152545
153072
|
Failed = "FAILED",
|
|
152546
153073
|
InProgress = "IN_PROGRESS"
|
|
152547
153074
|
}
|
|
153075
|
+
export type JsmTelemetryAddChartFilterInput = {
|
|
153076
|
+
attribute: Scalars['String']['input'];
|
|
153077
|
+
value: Scalars['String']['input'];
|
|
153078
|
+
};
|
|
153079
|
+
export type JsmTelemetryAddChartInput = {
|
|
153080
|
+
aggregation: JsmTelemetryAggregationInput;
|
|
153081
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
153082
|
+
filters?: InputMaybe<Array<JsmTelemetryAddChartFilterInput>>;
|
|
153083
|
+
metricName: Scalars['String']['input'];
|
|
153084
|
+
provider: JsmTelemetryProviderType;
|
|
153085
|
+
serviceId?: InputMaybe<Scalars['ID']['input']>;
|
|
153086
|
+
serviceName?: InputMaybe<Scalars['String']['input']>;
|
|
153087
|
+
};
|
|
153088
|
+
export type JsmTelemetryAddChartResult = {
|
|
153089
|
+
__typename?: 'JsmTelemetryAddChartResult';
|
|
153090
|
+
data?: Maybe<JsmTelemetryChart>;
|
|
153091
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
153092
|
+
};
|
|
153093
|
+
export type JsmTelemetryAggregation = {
|
|
153094
|
+
__typename?: 'JsmTelemetryAggregation';
|
|
153095
|
+
function: JsmTelemetryAggregationFunction;
|
|
153096
|
+
};
|
|
153097
|
+
export declare enum JsmTelemetryAggregationFunction {
|
|
153098
|
+
Avg = "AVG",
|
|
153099
|
+
Max = "MAX",
|
|
153100
|
+
Min = "MIN",
|
|
153101
|
+
Sum = "SUM"
|
|
153102
|
+
}
|
|
153103
|
+
export type JsmTelemetryAggregationInput = {
|
|
153104
|
+
function: JsmTelemetryAggregationFunction;
|
|
153105
|
+
};
|
|
153106
|
+
export type JsmTelemetryChart = {
|
|
153107
|
+
__typename?: 'JsmTelemetryChart';
|
|
153108
|
+
chartId: Scalars['ID']['output'];
|
|
153109
|
+
chartQuery?: Maybe<JsmTelemetryMetricDataSource>;
|
|
153110
|
+
displayName: Scalars['String']['output'];
|
|
153111
|
+
hypothesisId?: Maybe<Scalars['ID']['output']>;
|
|
153112
|
+
provider: JsmTelemetryProviderType;
|
|
153113
|
+
providerUrl?: Maybe<Scalars['String']['output']>;
|
|
153114
|
+
service: JsmTelemetryChartService;
|
|
153115
|
+
source: JsmTelemetrySource;
|
|
153116
|
+
yLabel?: Maybe<Scalars['String']['output']>;
|
|
153117
|
+
};
|
|
153118
|
+
export type JsmTelemetryChartMetricFilter = {
|
|
153119
|
+
__typename?: 'JsmTelemetryChartMetricFilter';
|
|
153120
|
+
attribute: Scalars['String']['output'];
|
|
153121
|
+
value: Scalars['String']['output'];
|
|
153122
|
+
};
|
|
153123
|
+
export type JsmTelemetryChartService = {
|
|
153124
|
+
__typename?: 'JsmTelemetryChartService';
|
|
153125
|
+
id: Scalars['String']['output'];
|
|
153126
|
+
name: Scalars['String']['output'];
|
|
153127
|
+
};
|
|
152548
153128
|
export declare enum JsmTelemetryChartSource {
|
|
152549
153129
|
AiRecommended = "AI_RECOMMENDED",
|
|
152550
153130
|
Hypothesis = "HYPOTHESIS",
|
|
@@ -152614,6 +153194,17 @@ export type JsmTelemetryCreateTelemetryConnectionPayload = {
|
|
|
152614
153194
|
__typename?: 'JsmTelemetryCreateTelemetryConnectionPayload';
|
|
152615
153195
|
connection: JsmTelemetryConnection;
|
|
152616
153196
|
};
|
|
153197
|
+
export type JsmTelemetryDashboard = {
|
|
153198
|
+
__typename?: 'JsmTelemetryDashboard';
|
|
153199
|
+
availableMetrics: Array<JsmTelemetryMetricOption>;
|
|
153200
|
+
availableServices: Array<JsmTelemetryChartService>;
|
|
153201
|
+
charts: Array<JsmTelemetryChart>;
|
|
153202
|
+
recommendedMetricCount: Scalars['Int']['output'];
|
|
153203
|
+
refreshIntervalMs?: Maybe<Scalars['Int']['output']>;
|
|
153204
|
+
status: JsmTelemetryDashboardStatus;
|
|
153205
|
+
summary?: Maybe<JsmTelemetryDashboardSummary>;
|
|
153206
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
153207
|
+
};
|
|
152617
153208
|
export type JsmTelemetryDashboardChartInput = {
|
|
152618
153209
|
chartId?: InputMaybe<Scalars['ID']['input']>;
|
|
152619
153210
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -152655,6 +153246,11 @@ export type JsmTelemetryDashboardConfigResponseDto = {
|
|
|
152655
153246
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
152656
153247
|
version: Scalars['Int']['output'];
|
|
152657
153248
|
};
|
|
153249
|
+
export type JsmTelemetryDashboardData = {
|
|
153250
|
+
__typename?: 'JsmTelemetryDashboardData';
|
|
153251
|
+
data?: Maybe<JsmTelemetryDashboard>;
|
|
153252
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
153253
|
+
};
|
|
152658
153254
|
export type JsmTelemetryDashboardQueryInput = {
|
|
152659
153255
|
placeholder?: InputMaybe<Scalars['String']['input']>;
|
|
152660
153256
|
};
|
|
@@ -152667,6 +153263,10 @@ export declare enum JsmTelemetryDashboardStatus {
|
|
|
152667
153263
|
Active = "ACTIVE",
|
|
152668
153264
|
Frozen = "FROZEN"
|
|
152669
153265
|
}
|
|
153266
|
+
export type JsmTelemetryDashboardSummary = {
|
|
153267
|
+
__typename?: 'JsmTelemetryDashboardSummary';
|
|
153268
|
+
segments: Array<JsmTelemetrySummarySegment>;
|
|
153269
|
+
};
|
|
152670
153270
|
export type JsmTelemetryDeleteTelemetryConnectionInput = {
|
|
152671
153271
|
id: Scalars['ID']['input'];
|
|
152672
153272
|
};
|
|
@@ -152679,10 +153279,16 @@ export declare enum JsmTelemetryDomainErrorCode {
|
|
|
152679
153279
|
ChartLimitExceeded = "CHART_LIMIT_EXCEEDED",
|
|
152680
153280
|
ConnectionInactive = "CONNECTION_INACTIVE",
|
|
152681
153281
|
ConnectionNotFound = "CONNECTION_NOT_FOUND",
|
|
153282
|
+
DashboardFrozen = "DASHBOARD_FROZEN",
|
|
153283
|
+
DashboardNotFound = "DASHBOARD_NOT_FOUND",
|
|
153284
|
+
DashboardVersionConflict = "DASHBOARD_VERSION_CONFLICT",
|
|
153285
|
+
FilterEmpty = "FILTER_EMPTY",
|
|
152682
153286
|
IntegrationServiceError = "INTEGRATION_SERVICE_ERROR",
|
|
152683
153287
|
MetricNotFound = "METRIC_NOT_FOUND",
|
|
152684
153288
|
NotImplemented = "NOT_IMPLEMENTED",
|
|
153289
|
+
NotTracked = "NOT_TRACKED",
|
|
152685
153290
|
NoData = "NO_DATA",
|
|
153291
|
+
NoPermission = "NO_PERMISSION",
|
|
152686
153292
|
ProviderAuthFailed = "PROVIDER_AUTH_FAILED",
|
|
152687
153293
|
ProviderNotConfigured = "PROVIDER_NOT_CONFIGURED",
|
|
152688
153294
|
ProviderParameterRequired = "PROVIDER_PARAMETER_REQUIRED",
|
|
@@ -152865,6 +153471,12 @@ export type JsmTelemetryMetricDataResult = {
|
|
|
152865
153471
|
data?: Maybe<JsmTelemetryMetricDataResponse>;
|
|
152866
153472
|
error?: Maybe<JsmTelemetryDomainError>;
|
|
152867
153473
|
};
|
|
153474
|
+
export type JsmTelemetryMetricDataSource = {
|
|
153475
|
+
__typename?: 'JsmTelemetryMetricDataSource';
|
|
153476
|
+
aggregation: JsmTelemetryAggregation;
|
|
153477
|
+
filters: Array<JsmTelemetryChartMetricFilter>;
|
|
153478
|
+
metricName: Scalars['String']['output'];
|
|
153479
|
+
};
|
|
152868
153480
|
export type JsmTelemetryMetricFilter = {
|
|
152869
153481
|
__typename?: 'JsmTelemetryMetricFilter';
|
|
152870
153482
|
key: Scalars['String']['output'];
|
|
@@ -152895,6 +153507,11 @@ export type JsmTelemetryMetricMetadata = {
|
|
|
152895
153507
|
type?: Maybe<JsmTelemetryMetricType>;
|
|
152896
153508
|
unit?: Maybe<Scalars['String']['output']>;
|
|
152897
153509
|
};
|
|
153510
|
+
export type JsmTelemetryMetricOption = {
|
|
153511
|
+
__typename?: 'JsmTelemetryMetricOption';
|
|
153512
|
+
displayName: Scalars['String']['output'];
|
|
153513
|
+
metricName: Scalars['String']['output'];
|
|
153514
|
+
};
|
|
152898
153515
|
export type JsmTelemetryMetricResolution = {
|
|
152899
153516
|
__typename?: 'JsmTelemetryMetricResolution';
|
|
152900
153517
|
stepSeconds: Scalars['Int']['output'];
|
|
@@ -152927,10 +153544,22 @@ export type JsmTelemetryMetricSeries = {
|
|
|
152927
153544
|
export type JsmTelemetryMetricSuggestion = {
|
|
152928
153545
|
__typename?: 'JsmTelemetryMetricSuggestion';
|
|
152929
153546
|
displayName: Scalars['String']['output'];
|
|
153547
|
+
generatedQuery?: Maybe<JsmTelemetryMetricSuggestionGeneratedQuery>;
|
|
153548
|
+
metricData?: Maybe<JsmTelemetryMetricDataResponse>;
|
|
152930
153549
|
metricName: Scalars['String']['output'];
|
|
152931
153550
|
provider: JsmTelemetryProviderType;
|
|
152932
153551
|
rationale: Scalars['String']['output'];
|
|
152933
153552
|
};
|
|
153553
|
+
export type JsmTelemetryMetricSuggestionGeneratedQuery = {
|
|
153554
|
+
__typename?: 'JsmTelemetryMetricSuggestionGeneratedQuery';
|
|
153555
|
+
aggregation?: Maybe<JsmTelemetryMetricAggregation>;
|
|
153556
|
+
filters: Array<JsmTelemetryMetricFilter>;
|
|
153557
|
+
metricName: Scalars['String']['output'];
|
|
153558
|
+
provider: JsmTelemetryProviderType;
|
|
153559
|
+
providerContext: Array<JsmTelemetryProviderParameterValue>;
|
|
153560
|
+
resolution?: Maybe<JsmTelemetryMetricResolution>;
|
|
153561
|
+
timeRange: JsmTelemetryTimeRange;
|
|
153562
|
+
};
|
|
152934
153563
|
export type JsmTelemetryMetricSuggestionResponse = {
|
|
152935
153564
|
__typename?: 'JsmTelemetryMetricSuggestionResponse';
|
|
152936
153565
|
contextDegraded: Scalars['Boolean']['output'];
|
|
@@ -152985,6 +153614,11 @@ export type JsmTelemetryProviderContextSchemaResult = {
|
|
|
152985
153614
|
data?: Maybe<JsmTelemetryProviderContextSchemaResponse>;
|
|
152986
153615
|
error?: Maybe<JsmTelemetryDomainError>;
|
|
152987
153616
|
};
|
|
153617
|
+
export type JsmTelemetryProviderParameterValue = {
|
|
153618
|
+
__typename?: 'JsmTelemetryProviderParameterValue';
|
|
153619
|
+
key: Scalars['String']['output'];
|
|
153620
|
+
values: Array<Scalars['String']['output']>;
|
|
153621
|
+
};
|
|
152988
153622
|
export type JsmTelemetryProviderParameterValueInput = {
|
|
152989
153623
|
key: Scalars['String']['input'];
|
|
152990
153624
|
values: Array<Scalars['String']['input']>;
|
|
@@ -153010,6 +153644,11 @@ export declare enum JsmTelemetryProviderType {
|
|
|
153010
153644
|
NewRelic = "NEW_RELIC",
|
|
153011
153645
|
SignalFx = "SIGNAL_FX"
|
|
153012
153646
|
}
|
|
153647
|
+
export type JsmTelemetryRemoveChartResult = {
|
|
153648
|
+
__typename?: 'JsmTelemetryRemoveChartResult';
|
|
153649
|
+
data?: Maybe<JsmTelemetryDashboard>;
|
|
153650
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
153651
|
+
};
|
|
153013
153652
|
export type JsmTelemetryRemoveDashboardChartInput = {
|
|
153014
153653
|
chartId: Scalars['ID']['input'];
|
|
153015
153654
|
dashboardId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -153053,6 +153692,20 @@ export type JsmTelemetryServiceInfo = {
|
|
|
153053
153692
|
apiStatus: Scalars['String']['output'];
|
|
153054
153693
|
serviceName: Scalars['String']['output'];
|
|
153055
153694
|
};
|
|
153695
|
+
export declare enum JsmTelemetrySource {
|
|
153696
|
+
AiRecommended = "AI_RECOMMENDED",
|
|
153697
|
+
Hypothesis = "HYPOTHESIS",
|
|
153698
|
+
Manual = "MANUAL"
|
|
153699
|
+
}
|
|
153700
|
+
export type JsmTelemetrySummarySegment = JsmTelemetrySummaryServiceRef | JsmTelemetrySummaryText;
|
|
153701
|
+
export type JsmTelemetrySummaryServiceRef = {
|
|
153702
|
+
__typename?: 'JsmTelemetrySummaryServiceRef';
|
|
153703
|
+
service: JsmTelemetryChartService;
|
|
153704
|
+
};
|
|
153705
|
+
export type JsmTelemetrySummaryText = {
|
|
153706
|
+
__typename?: 'JsmTelemetrySummaryText';
|
|
153707
|
+
text: Scalars['String']['output'];
|
|
153708
|
+
};
|
|
153056
153709
|
export type JsmTelemetryTimeRange = {
|
|
153057
153710
|
__typename?: 'JsmTelemetryTimeRange';
|
|
153058
153711
|
from: Scalars['DateTime']['output'];
|
|
@@ -153690,7 +154343,8 @@ export declare enum KitsuneFieldType {
|
|
|
153690
154343
|
Organization = "ORGANIZATION",
|
|
153691
154344
|
Parent = "PARENT",
|
|
153692
154345
|
Reporter = "REPORTER",
|
|
153693
|
-
SourceCategory = "SOURCE_CATEGORY"
|
|
154346
|
+
SourceCategory = "SOURCE_CATEGORY",
|
|
154347
|
+
SourceUrl = "SOURCE_URL"
|
|
153694
154348
|
}
|
|
153695
154349
|
export type KitsuneFieldValue = {
|
|
153696
154350
|
__typename?: 'KitsuneFieldValue';
|
|
@@ -153798,6 +154452,7 @@ export declare enum KitsuneJobStatus {
|
|
|
153798
154452
|
Pending = "PENDING"
|
|
153799
154453
|
}
|
|
153800
154454
|
export declare enum KitsuneJobType {
|
|
154455
|
+
DeleteSpace = "DELETE_SPACE",
|
|
153801
154456
|
ExportFeedback = "EXPORT_FEEDBACK",
|
|
153802
154457
|
ImportCustomer = "IMPORT_CUSTOMER",
|
|
153803
154458
|
ImportFeedback = "IMPORT_FEEDBACK",
|
|
@@ -160470,6 +161125,7 @@ export type MarketplaceStoreLayoutRegularSection = MarketplaceStoreLayoutSection
|
|
|
160470
161125
|
rightImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
160471
161126
|
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
160472
161127
|
sectionMetadata?: Maybe<MarketplaceStoreRecommendationsMetadata>;
|
|
161128
|
+
showSearch?: Maybe<Scalars['Boolean']['output']>;
|
|
160473
161129
|
title: Scalars['String']['output'];
|
|
160474
161130
|
type: MarketplaceStoreLayoutSectionType;
|
|
160475
161131
|
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
@@ -160781,6 +161437,7 @@ export type MarketplaceStorePersonalisationContextInput = {
|
|
|
160781
161437
|
userLocation?: InputMaybe<Scalars['String']['input']>;
|
|
160782
161438
|
};
|
|
160783
161439
|
export declare enum MarketplaceStorePersonalisationTargetSurface {
|
|
161440
|
+
EmbeddedStoreHome = "EMBEDDED_STORE_HOME",
|
|
160784
161441
|
Marketplace = "MARKETPLACE",
|
|
160785
161442
|
StoreCategory = "STORE_CATEGORY",
|
|
160786
161443
|
StoreCollection = "STORE_COLLECTION",
|
|
@@ -161831,6 +162488,7 @@ export type MercuryAsk = Node & {
|
|
|
161831
162488
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
161832
162489
|
createdBy?: Maybe<User>;
|
|
161833
162490
|
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
162491
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
161834
162492
|
description?: Maybe<Scalars['String']['output']>;
|
|
161835
162493
|
focusAreas?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
161836
162494
|
goals?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -162092,6 +162750,10 @@ export type MercuryAskConnection = {
|
|
|
162092
162750
|
pageInfo: PageInfo;
|
|
162093
162751
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
162094
162752
|
};
|
|
162753
|
+
export type MercuryAskCustomFieldDefinitionScope = MercuryCustomFieldDefinitionScope & {
|
|
162754
|
+
__typename?: 'MercuryAskCustomFieldDefinitionScope';
|
|
162755
|
+
entityType: Scalars['String']['output'];
|
|
162756
|
+
};
|
|
162095
162757
|
export type MercuryAskEdge = {
|
|
162096
162758
|
__typename?: 'MercuryAskEdge';
|
|
162097
162759
|
cursor: Scalars['String']['output'];
|
|
@@ -162099,14 +162761,17 @@ export type MercuryAskEdge = {
|
|
|
162099
162761
|
};
|
|
162100
162762
|
export declare enum MercuryAskEventType {
|
|
162101
162763
|
Create = "CREATE",
|
|
162764
|
+
CreateLink = "CREATE_LINK",
|
|
162765
|
+
DeleteLink = "DELETE_LINK",
|
|
162102
162766
|
Update = "UPDATE"
|
|
162103
162767
|
}
|
|
162104
162768
|
export declare enum MercuryAskField {
|
|
162105
|
-
AskLink = "ASK_LINK",
|
|
162106
162769
|
ConnectedWork = "CONNECTED_WORK",
|
|
162107
162770
|
Description = "DESCRIPTION",
|
|
162108
162771
|
ImpactedWork = "IMPACTED_WORK",
|
|
162109
162772
|
Justification = "JUSTIFICATION",
|
|
162773
|
+
LinkText = "LINK_TEXT",
|
|
162774
|
+
LinkUrl = "LINK_URL",
|
|
162110
162775
|
Name = "NAME",
|
|
162111
162776
|
Owner = "OWNER",
|
|
162112
162777
|
Priority = "PRIORITY",
|
|
@@ -163037,6 +163702,10 @@ export type MercuryCostType = Node & {
|
|
|
163037
163702
|
key: Scalars['String']['output'];
|
|
163038
163703
|
order: Scalars['Int']['output'];
|
|
163039
163704
|
};
|
|
163705
|
+
export type MercuryCreateAskCustomFieldDefinitionInput = {
|
|
163706
|
+
cloudId: Scalars['ID']['input'];
|
|
163707
|
+
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
163708
|
+
};
|
|
163040
163709
|
export type MercuryCreateAskInput = {
|
|
163041
163710
|
cloudId: Scalars['ID']['input'];
|
|
163042
163711
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -168702,6 +169371,26 @@ export type MercuryRisksQueryApiSearchRiskActivityHistoryArgs = {
|
|
|
168702
169371
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
168703
169372
|
sort?: InputMaybe<Array<InputMaybe<MercuryRiskActivitySort>>>;
|
|
168704
169373
|
};
|
|
169374
|
+
export type MercurySetAskCustomFieldInput = {
|
|
169375
|
+
askId: Scalars['ID']['input'];
|
|
169376
|
+
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
169377
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
169378
|
+
};
|
|
169379
|
+
export type MercurySetAskCustomFieldPayload = Payload & {
|
|
169380
|
+
__typename?: 'MercurySetAskCustomFieldPayload';
|
|
169381
|
+
customField?: Maybe<MercuryCustomField>;
|
|
169382
|
+
errors?: Maybe<Array<MutationError>>;
|
|
169383
|
+
success: Scalars['Boolean']['output'];
|
|
169384
|
+
};
|
|
169385
|
+
export type MercurySetAskCustomFieldsInput = {
|
|
169386
|
+
customFields: Array<MercurySetAskCustomFieldInput>;
|
|
169387
|
+
};
|
|
169388
|
+
export type MercurySetAskCustomFieldsPayload = Payload & {
|
|
169389
|
+
__typename?: 'MercurySetAskCustomFieldsPayload';
|
|
169390
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
169391
|
+
errors?: Maybe<Array<MutationError>>;
|
|
169392
|
+
success: Scalars['Boolean']['output'];
|
|
169393
|
+
};
|
|
168705
169394
|
export type MercurySetBaselineAndDescendantsPayload = Payload & {
|
|
168706
169395
|
__typename?: 'MercurySetBaselineAndDescendantsPayload';
|
|
168707
169396
|
baselineJobId: Scalars['ID']['output'];
|
|
@@ -170914,6 +171603,7 @@ export type MoveSprintUpResponse = MutationResponse & {
|
|
|
170914
171603
|
};
|
|
170915
171604
|
export type Mutation = {
|
|
170916
171605
|
__typename?: 'Mutation';
|
|
171606
|
+
_placeholder?: Maybe<Scalars['String']['output']>;
|
|
170917
171607
|
actions?: Maybe<ActionsMutation>;
|
|
170918
171608
|
activatePaywallContent?: Maybe<ActivatePaywallContentPayload>;
|
|
170919
171609
|
addDefaultExCoSpacePermissions?: Maybe<AddDefaultExCoSpacePermissionsPayload>;
|
|
@@ -171082,6 +171772,7 @@ export type Mutation = {
|
|
|
171082
171772
|
assetsDM_createObjectsListExportRequest?: Maybe<AssetsDmObjectsListExportRequestCreateResponse>;
|
|
171083
171773
|
assetsDM_createSavedSearch?: Maybe<AssetsDmSavedSearchesCreateResponse>;
|
|
171084
171774
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
171775
|
+
assetsDM_dataSourceBulkAction?: Maybe<AssetsDmDataSourceBulkActionResponse>;
|
|
171085
171776
|
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
171086
171777
|
assetsDM_dataSourceCleansingRulesRunCleanse?: Maybe<AssetsDmDataSourceCleansingRulesRunCleanseResponse>;
|
|
171087
171778
|
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
@@ -171733,6 +172424,10 @@ export type Mutation = {
|
|
|
171733
172424
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
171734
172425
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
171735
172426
|
graphIntegration_createSkill?: Maybe<GraphIntegrationSkill>;
|
|
172427
|
+
graphIntegration_customAuthDelete?: Maybe<GraphIntegrationCustomAuthDeletePayload>;
|
|
172428
|
+
graphIntegration_customAuthUpdate?: Maybe<GraphIntegrationCustomAuthMutationPayload>;
|
|
172429
|
+
graphIntegration_customAuthUpdateStatus?: Maybe<GraphIntegrationCustomAuthMutationPayload>;
|
|
172430
|
+
graphIntegration_customAuthUpsert?: Maybe<GraphIntegrationCustomAuthMutationPayload>;
|
|
171736
172431
|
graphIntegration_deleteDataConnectorConnection?: Maybe<GraphIntegrationDeleteConnectionPayload>;
|
|
171737
172432
|
graphIntegration_deleteSkill?: Maybe<GraphIntegrationSkillMutationPayload>;
|
|
171738
172433
|
graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
|
|
@@ -171912,6 +172607,7 @@ export type Mutation = {
|
|
|
171912
172607
|
gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
|
|
171913
172608
|
gravity_postFeedback?: Maybe<GravityPostFeedbackPayload>;
|
|
171914
172609
|
gravity_setActionStatus?: Maybe<GravityActionPayload>;
|
|
172610
|
+
gravity_setViewArrangement?: Maybe<GravityViewArrangementPayload>;
|
|
171915
172611
|
gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
|
|
171916
172612
|
gravity_updateDraftContent?: Maybe<GravityDraftPayload>;
|
|
171917
172613
|
gravity_upsertAction?: Maybe<GravityActionPayload>;
|
|
@@ -171953,6 +172649,8 @@ export type Mutation = {
|
|
|
171953
172649
|
jira_bulkCreateInlineIssuesOptimistic?: Maybe<JiraInlineIssuesCreatePayload>;
|
|
171954
172650
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
171955
172651
|
jira_bulkSetBoardViewSwimlaneState?: Maybe<JiraBulkSetBoardViewSwimlaneStatePayload>;
|
|
172652
|
+
jira_bulkStartAgentSessions?: Maybe<JiraBulkStartAgentSessionsPayload>;
|
|
172653
|
+
jira_bulkStartUniformAgentSessions?: Maybe<JiraBulkStartAgentSessionsPayload>;
|
|
171956
172654
|
jira_bulkUpdateCategoryOptions?: Maybe<JiraBulkUpdateCategoryOptionsPayload>;
|
|
171957
172655
|
jira_clearBoardIssueCardCover?: Maybe<JiraClearBoardIssueCardCoverPayload>;
|
|
171958
172656
|
jira_createBoardViewIssue?: Maybe<JiraBoardViewIssueCreatePayload>;
|
|
@@ -171967,6 +172665,7 @@ export type Mutation = {
|
|
|
171967
172665
|
jira_createIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
171968
172666
|
jira_customizeProjectLevelSidebarMenuItem?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
171969
172667
|
jira_declineBoardViewsForWorkflows?: Maybe<JiraDeclineBoardViewsForWorkflowsPayload>;
|
|
172668
|
+
jira_deleteAgentAutonomyPolicy?: Maybe<JiraDeleteAgentAutonomyPolicyPayload>;
|
|
171970
172669
|
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
171971
172670
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
171972
172671
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
@@ -171990,6 +172689,7 @@ export type Mutation = {
|
|
|
171990
172689
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
171991
172690
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
171992
172691
|
jira_publishTimelineViewConfig?: Maybe<JiraPublishTimelineViewConfigPayload>;
|
|
172692
|
+
jira_removeAgentFieldAutonomy?: Maybe<JiraAgentAutonomyPolicyPayload>;
|
|
171993
172693
|
jira_removeAgentFromBoardViewStatusColumn?: Maybe<JiraRemoveAgentFromBoardViewStatusColumnPayload>;
|
|
171994
172694
|
jira_removeCustomFieldTranslation?: Maybe<JiraRemoveCustomFieldTranslationPayload>;
|
|
171995
172695
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
@@ -172005,6 +172705,8 @@ export type Mutation = {
|
|
|
172005
172705
|
jira_restoreCustomFields?: Maybe<JiraRestoreCustomFieldsPayload>;
|
|
172006
172706
|
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
172007
172707
|
jira_scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
|
|
172708
|
+
jira_setAgentAutonomyPolicy?: Maybe<JiraAgentAutonomyPolicyPayload>;
|
|
172709
|
+
jira_setAgentFieldAutonomy?: Maybe<JiraAgentAutonomyPolicyPayload>;
|
|
172008
172710
|
jira_setAgentSessionsIsPlanModeEnabled?: Maybe<JiraSetAgentSessionIsPlanModeEnabledResponsePayload>;
|
|
172009
172711
|
jira_setBacklogViewAssigneeFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
172010
172712
|
jira_setBacklogViewBoardNameToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
@@ -172122,8 +172824,10 @@ export type Mutation = {
|
|
|
172122
172824
|
jsmConversation_createInvite?: Maybe<JsmConversationCreateInvitePayload>;
|
|
172123
172825
|
jsmConversation_rejectInvite?: Maybe<JsmConversationRejectInvitePayload>;
|
|
172124
172826
|
jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
|
|
172827
|
+
jsmTelemetry_addChart?: Maybe<JsmTelemetryAddChartResult>;
|
|
172125
172828
|
jsmTelemetry_createTelemetryConnection?: Maybe<JsmTelemetryCreateTelemetryConnectionPayload>;
|
|
172126
172829
|
jsmTelemetry_deleteTelemetryConnection?: Maybe<Scalars['Boolean']['output']>;
|
|
172830
|
+
jsmTelemetry_removeChart?: Maybe<JsmTelemetryRemoveChartResult>;
|
|
172127
172831
|
jsmTelemetry_removeDashboard?: Maybe<JsmTelemetryRemoveDashboardResult>;
|
|
172128
172832
|
jsmTelemetry_removeDashboardChart?: Maybe<JsmTelemetryRemoveDashboardChartResult>;
|
|
172129
172833
|
jsmTelemetry_updateDashboardConfig?: Maybe<JsmTelemetryUpdateDashboardConfigResult>;
|
|
@@ -172158,6 +172862,7 @@ export type Mutation = {
|
|
|
172158
172862
|
kitsune_removeOrganizationField?: Maybe<KitsuneDeletedRecord>;
|
|
172159
172863
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
172160
172864
|
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
172865
|
+
kitsune_removeSpace?: Maybe<KitsuneJob>;
|
|
172161
172866
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
172162
172867
|
kitsune_resyncFeedback?: Maybe<KitsuneJob>;
|
|
172163
172868
|
kitsune_resyncInsights?: Maybe<KitsuneJob>;
|
|
@@ -172206,14 +172911,18 @@ export type Mutation = {
|
|
|
172206
172911
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
172207
172912
|
mercury?: Maybe<MercuryMutationApi>;
|
|
172208
172913
|
mercury_acceptProposedDate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
172914
|
+
mercury_addAskCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
|
|
172209
172915
|
mercury_addConnectedWork?: Maybe<MercuryAskConnectedWorkPayload>;
|
|
172210
172916
|
mercury_attachAskLink?: Maybe<MercuryAttachAskLinkPayload>;
|
|
172211
172917
|
mercury_businessDomains?: Maybe<MercuryBusinessDomainsMutationApi>;
|
|
172212
172918
|
mercury_comments?: Maybe<MercuryCommentMutationApi>;
|
|
172213
172919
|
mercury_createAsk?: Maybe<MercuryUpsertAskPayload>;
|
|
172920
|
+
mercury_createAskCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
172214
172921
|
mercury_createAskStatusUpdate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
172215
172922
|
mercury_createAsks?: Maybe<MercuryCreateAsksPayload>;
|
|
172216
172923
|
mercury_deleteAsk?: Maybe<MercuryDeleteAskPayload>;
|
|
172924
|
+
mercury_deleteAskCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
172925
|
+
mercury_deleteAskCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
|
|
172217
172926
|
mercury_deleteAskLink?: Maybe<MercuryDeleteAskLinkPayload>;
|
|
172218
172927
|
mercury_deleteAskStatusUpdate?: Maybe<MercuryDeleteAskStatusUpdatePayload>;
|
|
172219
172928
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
@@ -172224,9 +172933,15 @@ export type Mutation = {
|
|
|
172224
172933
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
172225
172934
|
mercury_rejectProposedDate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
172226
172935
|
mercury_removeConnectedWork?: Maybe<MercuryAskConnectedWorkPayload>;
|
|
172936
|
+
mercury_reorderAskCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
172227
172937
|
mercury_risks?: Maybe<MercuryRisksMutationApi>;
|
|
172938
|
+
mercury_setAskCustomFieldValue?: Maybe<MercurySetAskCustomFieldPayload>;
|
|
172939
|
+
mercury_setAskCustomFieldValues?: Maybe<MercurySetAskCustomFieldsPayload>;
|
|
172228
172940
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
172229
172941
|
mercury_tags?: Maybe<MercuryTagsMutationApi>;
|
|
172942
|
+
mercury_updateAskCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
172943
|
+
mercury_updateAskCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
172944
|
+
mercury_updateAskCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
172230
172945
|
mercury_updateAskDescription?: Maybe<MercuryUpsertAskPayload>;
|
|
172231
172946
|
mercury_updateAskImpactedWork?: Maybe<MercuryUpsertAskPayload>;
|
|
172232
172947
|
mercury_updateAskJustification?: Maybe<MercuryUpsertAskPayload>;
|
|
@@ -173311,6 +174026,12 @@ export type MutationAssetsDm_DataSourceArgs = {
|
|
|
173311
174026
|
operation?: InputMaybe<AssetsDmDataSourceOperationEnum>;
|
|
173312
174027
|
workspaceId: Scalars['ID']['input'];
|
|
173313
174028
|
};
|
|
174029
|
+
export type MutationAssetsDm_DataSourceBulkActionArgs = {
|
|
174030
|
+
action: AssetsDmDataSourceBulkAction;
|
|
174031
|
+
cloudId: Scalars['ID']['input'];
|
|
174032
|
+
dataSourceIds: Array<Scalars['ID']['input']>;
|
|
174033
|
+
workspaceId: Scalars['ID']['input'];
|
|
174034
|
+
};
|
|
173314
174035
|
export type MutationAssetsDm_DataSourceCleansingRulesConfigureArgs = {
|
|
173315
174036
|
cleansingRules: Array<AssetsDmDataSourceCleansingRuleInput>;
|
|
173316
174037
|
cloudId: Scalars['ID']['input'];
|
|
@@ -175647,6 +176368,19 @@ export type MutationGraphIntegration_CreateDataConnectorConnectionArgs = {
|
|
|
175647
176368
|
export type MutationGraphIntegration_CreateSkillArgs = {
|
|
175648
176369
|
input: GraphIntegrationCreateSkillInput;
|
|
175649
176370
|
};
|
|
176371
|
+
export type MutationGraphIntegration_CustomAuthDeleteArgs = {
|
|
176372
|
+
input: GraphIntegrationCustomAuthDeleteInput;
|
|
176373
|
+
};
|
|
176374
|
+
export type MutationGraphIntegration_CustomAuthUpdateArgs = {
|
|
176375
|
+
authAri: Scalars['ID']['input'];
|
|
176376
|
+
input: GraphIntegrationCustomAuthUpsertInput;
|
|
176377
|
+
};
|
|
176378
|
+
export type MutationGraphIntegration_CustomAuthUpdateStatusArgs = {
|
|
176379
|
+
input: GraphIntegrationCustomAuthUpdateStatusInput;
|
|
176380
|
+
};
|
|
176381
|
+
export type MutationGraphIntegration_CustomAuthUpsertArgs = {
|
|
176382
|
+
input: GraphIntegrationCustomAuthUpsertInput;
|
|
176383
|
+
};
|
|
175650
176384
|
export type MutationGraphIntegration_DeleteDataConnectorConnectionArgs = {
|
|
175651
176385
|
input: GraphIntegrationDeleteDataConnectorConnectionInput;
|
|
175652
176386
|
};
|
|
@@ -176190,6 +176924,10 @@ export type MutationGravity_SetActionStatusArgs = {
|
|
|
176190
176924
|
cloudId: Scalars['ID']['input'];
|
|
176191
176925
|
input: GravitySetActionStatusInput;
|
|
176192
176926
|
};
|
|
176927
|
+
export type MutationGravity_SetViewArrangementArgs = {
|
|
176928
|
+
cloudId: Scalars['ID']['input'];
|
|
176929
|
+
input: GravitySetViewArrangementInput;
|
|
176930
|
+
};
|
|
176193
176931
|
export type MutationGravity_UpdateDeliverySettingsArgs = {
|
|
176194
176932
|
cloudId: Scalars['ID']['input'];
|
|
176195
176933
|
input: GravityUpdateDeliverySettingsInput;
|
|
@@ -176316,6 +177054,12 @@ export type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
|
176316
177054
|
export type MutationJira_BulkSetBoardViewSwimlaneStateArgs = {
|
|
176317
177055
|
input: JiraBulkSetBoardViewSwimlaneStateInput;
|
|
176318
177056
|
};
|
|
177057
|
+
export type MutationJira_BulkStartAgentSessionsArgs = {
|
|
177058
|
+
input: JiraBulkStartAgentSessionsInput;
|
|
177059
|
+
};
|
|
177060
|
+
export type MutationJira_BulkStartUniformAgentSessionsArgs = {
|
|
177061
|
+
input: JiraBulkStartUniformAgentSessionsInput;
|
|
177062
|
+
};
|
|
176319
177063
|
export type MutationJira_BulkUpdateCategoryOptionsArgs = {
|
|
176320
177064
|
input: JiraBulkUpdateCategoryOptionsInput;
|
|
176321
177065
|
};
|
|
@@ -176361,6 +177105,10 @@ export type MutationJira_CustomizeProjectLevelSidebarMenuItemArgs = {
|
|
|
176361
177105
|
export type MutationJira_DeclineBoardViewsForWorkflowsArgs = {
|
|
176362
177106
|
input: JiraDeclineBoardViewsForWorkflowsInput;
|
|
176363
177107
|
};
|
|
177108
|
+
export type MutationJira_DeleteAgentAutonomyPolicyArgs = {
|
|
177109
|
+
cloudId: Scalars['ID']['input'];
|
|
177110
|
+
input: JiraAgentAutonomyPolicyInput;
|
|
177111
|
+
};
|
|
176364
177112
|
export type MutationJira_DeleteBoardViewStatusColumnArgs = {
|
|
176365
177113
|
input: JiraDeleteBoardViewStatusColumnInput;
|
|
176366
177114
|
};
|
|
@@ -176435,6 +177183,10 @@ export type MutationJira_PublishIssueSearchConfigArgs = {
|
|
|
176435
177183
|
export type MutationJira_PublishTimelineViewConfigArgs = {
|
|
176436
177184
|
input: JiraPublishTimelineViewConfigInput;
|
|
176437
177185
|
};
|
|
177186
|
+
export type MutationJira_RemoveAgentFieldAutonomyArgs = {
|
|
177187
|
+
cloudId: Scalars['ID']['input'];
|
|
177188
|
+
input: JiraRemoveAgentFieldAutonomyInput;
|
|
177189
|
+
};
|
|
176438
177190
|
export type MutationJira_RemoveAgentFromBoardViewStatusColumnArgs = {
|
|
176439
177191
|
input: JiraRemoveAgentFromBoardViewStatusColumnInput;
|
|
176440
177192
|
};
|
|
@@ -176487,6 +177239,14 @@ export type MutationJira_ScheduleTimelineItemArgs = {
|
|
|
176487
177239
|
cloudId: Scalars['ID']['input'];
|
|
176488
177240
|
input: JiraScheduleTimelineItemInput;
|
|
176489
177241
|
};
|
|
177242
|
+
export type MutationJira_SetAgentAutonomyPolicyArgs = {
|
|
177243
|
+
cloudId: Scalars['ID']['input'];
|
|
177244
|
+
input: JiraSetAgentAutonomyPolicyInput;
|
|
177245
|
+
};
|
|
177246
|
+
export type MutationJira_SetAgentFieldAutonomyArgs = {
|
|
177247
|
+
cloudId: Scalars['ID']['input'];
|
|
177248
|
+
input: JiraSetAgentFieldAutonomyInput;
|
|
177249
|
+
};
|
|
176490
177250
|
export type MutationJira_SetAgentSessionsIsPlanModeEnabledArgs = {
|
|
176491
177251
|
cloudId: Scalars['ID']['input'];
|
|
176492
177252
|
isPlanModeEnabled: Scalars['Boolean']['input'];
|
|
@@ -176871,6 +177631,12 @@ export type MutationJsmConversation_RejectInviteArgs = {
|
|
|
176871
177631
|
export type MutationJsmConversation_UpdateSettingsArgs = {
|
|
176872
177632
|
input: JsmConversationSettingsInput;
|
|
176873
177633
|
};
|
|
177634
|
+
export type MutationJsmTelemetry_AddChartArgs = {
|
|
177635
|
+
cloudId: Scalars['ID']['input'];
|
|
177636
|
+
input: JsmTelemetryAddChartInput;
|
|
177637
|
+
scopeId: Scalars['String']['input'];
|
|
177638
|
+
scopeType: JsmTelemetryScopeType;
|
|
177639
|
+
};
|
|
176874
177640
|
export type MutationJsmTelemetry_CreateTelemetryConnectionArgs = {
|
|
176875
177641
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
176876
177642
|
input: JsmTelemetryCreateTelemetryConnectionInput;
|
|
@@ -176879,6 +177645,12 @@ export type MutationJsmTelemetry_DeleteTelemetryConnectionArgs = {
|
|
|
176879
177645
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
176880
177646
|
input: JsmTelemetryDeleteTelemetryConnectionInput;
|
|
176881
177647
|
};
|
|
177648
|
+
export type MutationJsmTelemetry_RemoveChartArgs = {
|
|
177649
|
+
chartId: Scalars['ID']['input'];
|
|
177650
|
+
cloudId: Scalars['ID']['input'];
|
|
177651
|
+
scopeId: Scalars['String']['input'];
|
|
177652
|
+
scopeType: JsmTelemetryScopeType;
|
|
177653
|
+
};
|
|
176882
177654
|
export type MutationJsmTelemetry_RemoveDashboardArgs = {
|
|
176883
177655
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
176884
177656
|
incidentId: Scalars['ID']['input'];
|
|
@@ -177039,6 +177811,9 @@ export type MutationKitsune_RemoveSectionArgs = {
|
|
|
177039
177811
|
export type MutationKitsune_RemoveSnippetArgs = {
|
|
177040
177812
|
id: Scalars['ID']['input'];
|
|
177041
177813
|
};
|
|
177814
|
+
export type MutationKitsune_RemoveSpaceArgs = {
|
|
177815
|
+
id: Scalars['ID']['input'];
|
|
177816
|
+
};
|
|
177042
177817
|
export type MutationKitsune_RemoveViewArgs = {
|
|
177043
177818
|
viewAri: Scalars['ID']['input'];
|
|
177044
177819
|
};
|
|
@@ -177231,6 +178006,9 @@ export type MutationMarkFeatureDiscoveredArgs = {
|
|
|
177231
178006
|
export type MutationMercury_AcceptProposedDateArgs = {
|
|
177232
178007
|
input: MercuryResolveProposedDateInput;
|
|
177233
178008
|
};
|
|
178009
|
+
export type MutationMercury_AddAskCustomFieldDefinitionOptionsArgs = {
|
|
178010
|
+
input: MercuryAddCustomFieldDefinitionOptionsInput;
|
|
178011
|
+
};
|
|
177234
178012
|
export type MutationMercury_AddConnectedWorkArgs = {
|
|
177235
178013
|
input: MercuryAskConnectedWorkInput;
|
|
177236
178014
|
};
|
|
@@ -177240,6 +178018,9 @@ export type MutationMercury_AttachAskLinkArgs = {
|
|
|
177240
178018
|
export type MutationMercury_CreateAskArgs = {
|
|
177241
178019
|
input: MercuryCreateAskInput;
|
|
177242
178020
|
};
|
|
178021
|
+
export type MutationMercury_CreateAskCustomFieldDefinitionArgs = {
|
|
178022
|
+
input: MercuryCreateAskCustomFieldDefinitionInput;
|
|
178023
|
+
};
|
|
177243
178024
|
export type MutationMercury_CreateAskStatusUpdateArgs = {
|
|
177244
178025
|
input: MercuryCreateAskStatusUpdateInput;
|
|
177245
178026
|
};
|
|
@@ -177249,6 +178030,12 @@ export type MutationMercury_CreateAsksArgs = {
|
|
|
177249
178030
|
export type MutationMercury_DeleteAskArgs = {
|
|
177250
178031
|
input: MercuryDeleteAskInput;
|
|
177251
178032
|
};
|
|
178033
|
+
export type MutationMercury_DeleteAskCustomFieldDefinitionArgs = {
|
|
178034
|
+
input: MercuryDeleteCustomFieldDefinitionInput;
|
|
178035
|
+
};
|
|
178036
|
+
export type MutationMercury_DeleteAskCustomFieldDefinitionOptionsArgs = {
|
|
178037
|
+
input: MercuryDeleteCustomFieldDefinitionOptionsInput;
|
|
178038
|
+
};
|
|
177252
178039
|
export type MutationMercury_DeleteAskLinkArgs = {
|
|
177253
178040
|
input: MercuryDeleteAskLinkInput;
|
|
177254
178041
|
};
|
|
@@ -177264,6 +178051,24 @@ export type MutationMercury_RejectProposedDateArgs = {
|
|
|
177264
178051
|
export type MutationMercury_RemoveConnectedWorkArgs = {
|
|
177265
178052
|
input: MercuryAskConnectedWorkInput;
|
|
177266
178053
|
};
|
|
178054
|
+
export type MutationMercury_ReorderAskCustomFieldDefinitionOptionsArgs = {
|
|
178055
|
+
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
178056
|
+
};
|
|
178057
|
+
export type MutationMercury_SetAskCustomFieldValueArgs = {
|
|
178058
|
+
input: MercurySetAskCustomFieldInput;
|
|
178059
|
+
};
|
|
178060
|
+
export type MutationMercury_SetAskCustomFieldValuesArgs = {
|
|
178061
|
+
input: MercurySetAskCustomFieldsInput;
|
|
178062
|
+
};
|
|
178063
|
+
export type MutationMercury_UpdateAskCustomFieldDefinitionDescriptionArgs = {
|
|
178064
|
+
input: MercuryUpdateCustomFieldDefinitionDescriptionInput;
|
|
178065
|
+
};
|
|
178066
|
+
export type MutationMercury_UpdateAskCustomFieldDefinitionNameArgs = {
|
|
178067
|
+
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
178068
|
+
};
|
|
178069
|
+
export type MutationMercury_UpdateAskCustomFieldDefinitionOptionArgs = {
|
|
178070
|
+
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
178071
|
+
};
|
|
177267
178072
|
export type MutationMercury_UpdateAskDescriptionArgs = {
|
|
177268
178073
|
input: MercuryUpdateAskDescriptionInput;
|
|
177269
178074
|
};
|
|
@@ -180989,6 +181794,7 @@ export type ProactiveAiStratusTestInsightsMinionResult = {
|
|
|
180989
181794
|
error?: Maybe<ProactiveAiStratusTestInsightsMinionError>;
|
|
180990
181795
|
eventCount: Scalars['Int']['output'];
|
|
180991
181796
|
minion: ProactiveAiStratusTestInsightsMinion;
|
|
181797
|
+
renderedPrompt?: Maybe<Scalars['String']['output']>;
|
|
180992
181798
|
responseText?: Maybe<Scalars['String']['output']>;
|
|
180993
181799
|
};
|
|
180994
181800
|
export type ProactiveAiStratusTestInsightsPromptVariable = {
|
|
@@ -181065,6 +181871,83 @@ export type ProvisionDemoSiteResponse = {
|
|
|
181065
181871
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
181066
181872
|
xnId?: Maybe<Scalars['String']['output']>;
|
|
181067
181873
|
};
|
|
181874
|
+
export type PsmAuditActor = {
|
|
181875
|
+
__typename?: 'PsmAuditActor';
|
|
181876
|
+
accountId: Scalars['ID']['output'];
|
|
181877
|
+
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
181878
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
181879
|
+
};
|
|
181880
|
+
export type PsmAuditDevice = {
|
|
181881
|
+
__typename?: 'PsmAuditDevice';
|
|
181882
|
+
deviceId: Scalars['ID']['output'];
|
|
181883
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
181884
|
+
serialNumber: Scalars['String']['output'];
|
|
181885
|
+
};
|
|
181886
|
+
export type PsmAuditLogConnection = {
|
|
181887
|
+
__typename?: 'PsmAuditLogConnection';
|
|
181888
|
+
edges?: Maybe<Array<PsmAuditLogEdge>>;
|
|
181889
|
+
generatedAt: Scalars['DateTime']['output'];
|
|
181890
|
+
nodes?: Maybe<Array<Maybe<PsmAuditLogEntry>>>;
|
|
181891
|
+
pageInfo: PageInfo;
|
|
181892
|
+
};
|
|
181893
|
+
export type PsmAuditLogEdge = {
|
|
181894
|
+
__typename?: 'PsmAuditLogEdge';
|
|
181895
|
+
cursor: Scalars['String']['output'];
|
|
181896
|
+
node: PsmAuditLogEntry;
|
|
181897
|
+
};
|
|
181898
|
+
export type PsmAuditLogEntry = {
|
|
181899
|
+
__typename?: 'PsmAuditLogEntry';
|
|
181900
|
+
device: PsmAuditDevice;
|
|
181901
|
+
id: Scalars['ID']['output'];
|
|
181902
|
+
linkedTicket?: Maybe<PsmLinkedTicket>;
|
|
181903
|
+
remediationName: Scalars['String']['output'];
|
|
181904
|
+
result: PsmRemediationResult;
|
|
181905
|
+
sensorName: Scalars['String']['output'];
|
|
181906
|
+
timestamp: Scalars['DateTime']['output'];
|
|
181907
|
+
triggerType: PsmRemediationTrigger;
|
|
181908
|
+
triggeredBy?: Maybe<PsmAuditActor>;
|
|
181909
|
+
};
|
|
181910
|
+
export type PsmAuditLogFilter = {
|
|
181911
|
+
dateRange?: InputMaybe<PsmDateRangeInput>;
|
|
181912
|
+
deviceSerialNumber?: InputMaybe<Scalars['String']['input']>;
|
|
181913
|
+
results?: InputMaybe<Array<PsmRemediationResult>>;
|
|
181914
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
181915
|
+
sensorName?: InputMaybe<Scalars['String']['input']>;
|
|
181916
|
+
triggerTypes?: InputMaybe<Array<PsmRemediationTrigger>>;
|
|
181917
|
+
};
|
|
181918
|
+
export declare enum PsmAuditLogOrder {
|
|
181919
|
+
TimestampAsc = "TIMESTAMP_ASC",
|
|
181920
|
+
TimestampDesc = "TIMESTAMP_DESC"
|
|
181921
|
+
}
|
|
181922
|
+
export type PsmCostSavings = {
|
|
181923
|
+
__typename?: 'PsmCostSavings';
|
|
181924
|
+
currency: Scalars['String']['output'];
|
|
181925
|
+
itCostSaved: Scalars['Float']['output'];
|
|
181926
|
+
ticketsPrevented: Scalars['Int']['output'];
|
|
181927
|
+
};
|
|
181928
|
+
export type PsmDashboardOverview = {
|
|
181929
|
+
__typename?: 'PsmDashboardOverview';
|
|
181930
|
+
activeIssuesBySeverity: Array<PsmSeverityCount>;
|
|
181931
|
+
costSavings?: Maybe<PsmCostSavings>;
|
|
181932
|
+
devicesNotReporting: Scalars['Int']['output'];
|
|
181933
|
+
fleetHealth: PsmFleetHealth;
|
|
181934
|
+
generatedAt: Scalars['DateTime']['output'];
|
|
181935
|
+
pendingEndUserActions: Scalars['Int']['output'];
|
|
181936
|
+
remediationOutcomes: PsmRemediationOutcomes;
|
|
181937
|
+
sensorCoverage: PsmSensorCoverage;
|
|
181938
|
+
silentSaves: PsmSilentSaves;
|
|
181939
|
+
topIssues: Array<PsmTopIssue>;
|
|
181940
|
+
totalManagedDevices: Scalars['Int']['output'];
|
|
181941
|
+
};
|
|
181942
|
+
export type PsmDashboardOverviewInput = {
|
|
181943
|
+
dateRange?: InputMaybe<PsmDateRangeInput>;
|
|
181944
|
+
spaceId: Scalars['ID']['input'];
|
|
181945
|
+
timeWindow: PsmTimeWindow;
|
|
181946
|
+
};
|
|
181947
|
+
export type PsmDateRangeInput = {
|
|
181948
|
+
from: Scalars['DateTime']['input'];
|
|
181949
|
+
to: Scalars['DateTime']['input'];
|
|
181950
|
+
};
|
|
181068
181951
|
export type PsmDevice = {
|
|
181069
181952
|
__typename?: 'PsmDevice';
|
|
181070
181953
|
atlassianAccountId: Scalars['ID']['output'];
|
|
@@ -181104,6 +181987,19 @@ export type PsmFinishOnboardTenantPayload = Payload & {
|
|
|
181104
181987
|
success: Scalars['Boolean']['output'];
|
|
181105
181988
|
tenant?: Maybe<PsmTenant>;
|
|
181106
181989
|
};
|
|
181990
|
+
export type PsmFleetHealth = {
|
|
181991
|
+
__typename?: 'PsmFleetHealth';
|
|
181992
|
+
criticalPct: Scalars['Float']['output'];
|
|
181993
|
+
healthyPct: Scalars['Float']['output'];
|
|
181994
|
+
trendPct?: Maybe<Scalars['Float']['output']>;
|
|
181995
|
+
warningPct: Scalars['Float']['output'];
|
|
181996
|
+
};
|
|
181997
|
+
export type PsmLinkedTicket = {
|
|
181998
|
+
__typename?: 'PsmLinkedTicket';
|
|
181999
|
+
issueId: Scalars['ID']['output'];
|
|
182000
|
+
issueKey: Scalars['String']['output'];
|
|
182001
|
+
url: Scalars['URL']['output'];
|
|
182002
|
+
};
|
|
181107
182003
|
export type PsmOnboardTenantInput = {
|
|
181108
182004
|
spaceId: Scalars['ID']['input'];
|
|
181109
182005
|
};
|
|
@@ -181140,6 +182036,45 @@ export type PsmRegisterDevicePayload = Payload & {
|
|
|
181140
182036
|
errors?: Maybe<Array<MutationError>>;
|
|
181141
182037
|
success: Scalars['Boolean']['output'];
|
|
181142
182038
|
};
|
|
182039
|
+
export type PsmRemediationOutcomes = {
|
|
182040
|
+
__typename?: 'PsmRemediationOutcomes';
|
|
182041
|
+
failed: Scalars['Int']['output'];
|
|
182042
|
+
pending: Scalars['Int']['output'];
|
|
182043
|
+
success: Scalars['Int']['output'];
|
|
182044
|
+
successRatePct: Scalars['Float']['output'];
|
|
182045
|
+
};
|
|
182046
|
+
export declare enum PsmRemediationResult {
|
|
182047
|
+
Failed = "FAILED",
|
|
182048
|
+
Pending = "PENDING",
|
|
182049
|
+
Success = "SUCCESS"
|
|
182050
|
+
}
|
|
182051
|
+
export declare enum PsmRemediationTrigger {
|
|
182052
|
+
Agent = "AGENT",
|
|
182053
|
+
Auto = "AUTO",
|
|
182054
|
+
EndUser = "END_USER"
|
|
182055
|
+
}
|
|
182056
|
+
export type PsmSensorCoverage = {
|
|
182057
|
+
__typename?: 'PsmSensorCoverage';
|
|
182058
|
+
available: Scalars['Int']['output'];
|
|
182059
|
+
enabled: Scalars['Int']['output'];
|
|
182060
|
+
};
|
|
182061
|
+
export declare enum PsmSeverity {
|
|
182062
|
+
Critical = "CRITICAL",
|
|
182063
|
+
High = "HIGH",
|
|
182064
|
+
Low = "LOW",
|
|
182065
|
+
Medium = "MEDIUM"
|
|
182066
|
+
}
|
|
182067
|
+
export type PsmSeverityCount = {
|
|
182068
|
+
__typename?: 'PsmSeverityCount';
|
|
182069
|
+
count: Scalars['Int']['output'];
|
|
182070
|
+
severity: PsmSeverity;
|
|
182071
|
+
};
|
|
182072
|
+
export type PsmSilentSaves = {
|
|
182073
|
+
__typename?: 'PsmSilentSaves';
|
|
182074
|
+
count: Scalars['Int']['output'];
|
|
182075
|
+
timeWindow: PsmTimeWindow;
|
|
182076
|
+
trendPct?: Maybe<Scalars['Float']['output']>;
|
|
182077
|
+
};
|
|
181143
182078
|
export type PsmTenant = {
|
|
181144
182079
|
__typename?: 'PsmTenant';
|
|
181145
182080
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -181147,6 +182082,18 @@ export type PsmTenant = {
|
|
|
181147
182082
|
spaceId: Scalars['ID']['output'];
|
|
181148
182083
|
status: PsmOnboardTenantStatus;
|
|
181149
182084
|
};
|
|
182085
|
+
export declare enum PsmTimeWindow {
|
|
182086
|
+
Custom = "CUSTOM",
|
|
182087
|
+
Last_7Days = "LAST_7_DAYS",
|
|
182088
|
+
Last_24Hours = "LAST_24_HOURS",
|
|
182089
|
+
Last_30Days = "LAST_30_DAYS"
|
|
182090
|
+
}
|
|
182091
|
+
export type PsmTopIssue = {
|
|
182092
|
+
__typename?: 'PsmTopIssue';
|
|
182093
|
+
affectedDeviceCount: Scalars['Int']['output'];
|
|
182094
|
+
name: Scalars['String']['output'];
|
|
182095
|
+
severity: PsmSeverity;
|
|
182096
|
+
};
|
|
181150
182097
|
export type PublicLink = {
|
|
181151
182098
|
__typename?: 'PublicLink';
|
|
181152
182099
|
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
@@ -181517,6 +182464,7 @@ export type Query = {
|
|
|
181517
182464
|
agentStudio_agentByIdForDuplicate?: Maybe<AgentStudioAgentResult>;
|
|
181518
182465
|
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
|
|
181519
182466
|
agentStudio_agentValueConfig?: Maybe<AgentStudioAgentValueConfigResult>;
|
|
182467
|
+
agentStudio_agentsByIdentityAccountIds?: Maybe<Array<Maybe<AgentStudioAgentResult>>>;
|
|
181520
182468
|
agentStudio_agentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
181521
182469
|
agentStudio_authReadinessForAgent?: Maybe<AgentStudioAuthReadinessResult>;
|
|
181522
182470
|
agentStudio_batchEvalConversationById?: Maybe<AgentStudioConversationResult>;
|
|
@@ -182152,6 +183100,7 @@ export type Query = {
|
|
|
182152
183100
|
cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
182153
183101
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
182154
183102
|
cpls_filters?: Maybe<CplsFilterConfigurationType>;
|
|
183103
|
+
cpls_getContributorWorkAssociations?: Maybe<CplsContributorWorkAssociationConnection>;
|
|
182155
183104
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
182156
183105
|
cpls_recommendWork?: Maybe<CplsWorkRecommendations>;
|
|
182157
183106
|
cpls_recommendWorkForContributor?: Maybe<CplsWorkRecommendations>;
|
|
@@ -182394,6 +183343,7 @@ export type Query = {
|
|
|
182394
183343
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
182395
183344
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
182396
183345
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
183346
|
+
graphIntegration_customAuth?: Maybe<GraphIntegrationCustomAuthNode>;
|
|
182397
183347
|
graphIntegration_globalMcpServers?: Maybe<Array<Maybe<GraphIntegrationGlobalMcpServerNode>>>;
|
|
182398
183348
|
graphIntegration_globalMcpTools?: Maybe<Array<Maybe<GraphIntegrationGlobalMcpToolNode>>>;
|
|
182399
183349
|
graphIntegration_mcpAdminManagementCuratedMcpServerTemplates?: Maybe<GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection>;
|
|
@@ -183118,8 +184068,10 @@ export type Query = {
|
|
|
183118
184068
|
graphStoreV2_inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
|
|
183119
184069
|
graphStoreV2_inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
183120
184070
|
graphStoreV2_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
184071
|
+
graphStoreV2_inferredTeamLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredTeamLinksEntityConnection>;
|
|
183121
184072
|
graphStoreV2_jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
|
|
183122
184073
|
graphStoreV2_jiraEpicTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseConnection>;
|
|
184074
|
+
graphStoreV2_jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
|
|
183123
184075
|
graphStoreV2_jiraSpaceDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraSpaceDismissedKnowledgeBaseEntityConnection>;
|
|
183124
184076
|
graphStoreV2_jiraSpaceDismissedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceDismissedKnowledgeBaseEntityInverseConnection>;
|
|
183125
184077
|
graphStoreV2_jiraSpaceExplicitlyLinksExternalRepository?: Maybe<GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalRepositoryConnection>;
|
|
@@ -183748,6 +184700,7 @@ export type Query = {
|
|
|
183748
184700
|
graphStore_inferredDecisionSourceLineageEntity?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection>;
|
|
183749
184701
|
graphStore_inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
|
|
183750
184702
|
graphStore_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
184703
|
+
graphStore_inferredTeamLinksEntity?: Maybe<GraphStoreSimplifiedInferredTeamLinksEntityConnection>;
|
|
183751
184704
|
graphStore_issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
|
|
183752
184705
|
graphStore_issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
183753
184706
|
graphStore_issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
@@ -183842,6 +184795,7 @@ export type Query = {
|
|
|
183842
184795
|
graphStore_jiraIssueBlockedByJiraIssueInverse?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseConnection>;
|
|
183843
184796
|
graphStore_jiraIssueToJiraPriority?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityConnection>;
|
|
183844
184797
|
graphStore_jiraIssueToJiraPriorityInverse?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection>;
|
|
184798
|
+
graphStore_jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreSimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
|
|
183845
184799
|
graphStore_jiraProjectAssociatedAtlasGoal?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection>;
|
|
183846
184800
|
graphStore_jiraProjectAssociatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseConnection>;
|
|
183847
184801
|
graphStore_jiraProjectAssociatedAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
@@ -184537,6 +185491,7 @@ export type Query = {
|
|
|
184537
185491
|
gravity_importIdeas: GravityImportIdeasResult;
|
|
184538
185492
|
gravity_matchDelivery?: Maybe<GravityDeliveryMatchingResult>;
|
|
184539
185493
|
gravity_reactions?: Maybe<GravityReactionsResult>;
|
|
185494
|
+
gravity_viewArrangement?: Maybe<GravityViewArrangementResult>;
|
|
184540
185495
|
gravity_viewTemplateMappingProposals: GravityViewTemplateMappingProposalsResult;
|
|
184541
185496
|
gravity_viewTemplates: GravityViewTemplatesResult;
|
|
184542
185497
|
group?: Maybe<Group>;
|
|
@@ -184594,6 +185549,8 @@ export type Query = {
|
|
|
184594
185549
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
184595
185550
|
jiraReleases?: Maybe<JiraReleases>;
|
|
184596
185551
|
jiraServers?: Maybe<JiraServersResult>;
|
|
185552
|
+
jira_agentAutonomyPoliciesForProject?: Maybe<Array<JiraAgentAutonomyPolicy>>;
|
|
185553
|
+
jira_agentAutonomyPolicy?: Maybe<JiraAgentAutonomyPolicy>;
|
|
184597
185554
|
jira_agentContextSettings?: Maybe<JiraAgentContextSettings>;
|
|
184598
185555
|
jira_agentContextSources?: Maybe<JiraAgentContextItemConnection>;
|
|
184599
185556
|
jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -184687,6 +185644,7 @@ export type Query = {
|
|
|
184687
185644
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
184688
185645
|
jsmTelemetry_aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
184689
185646
|
jsmTelemetry_dashboard?: Maybe<JsmTelemetryDashboardResult>;
|
|
185647
|
+
jsmTelemetry_dashboardByScope?: Maybe<JsmTelemetryDashboardData>;
|
|
184690
185648
|
jsmTelemetry_getIncidentContext?: Maybe<JsmTelemetryIncidentContextResult>;
|
|
184691
185649
|
jsmTelemetry_getMetricAttributeValues?: Maybe<JsmTelemetryMetricAttributeValuesResult>;
|
|
184692
185650
|
jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
|
|
@@ -184807,6 +185765,7 @@ export type Query = {
|
|
|
184807
185765
|
mercury_ask?: Maybe<MercuryAskResult>;
|
|
184808
185766
|
mercury_askActivityHistoryByIds?: Maybe<Array<Maybe<MercuryAskActivityHistory>>>;
|
|
184809
185767
|
mercury_askCountByStatusForFocusArea?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
185768
|
+
mercury_askCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
184810
185769
|
mercury_askLinksByIds?: Maybe<Array<Maybe<MercuryAskLink>>>;
|
|
184811
185770
|
mercury_asks?: Maybe<MercuryAskConnection>;
|
|
184812
185771
|
mercury_asksByIds?: Maybe<Array<Maybe<MercuryAsk>>>;
|
|
@@ -184919,6 +185878,8 @@ export type Query = {
|
|
|
184919
185878
|
projects_statusSummary?: Maybe<TownsquareStatusSummary>;
|
|
184920
185879
|
projects_statusSummaryForTag?: Maybe<TownsquareStatusSummaryForTag>;
|
|
184921
185880
|
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
185881
|
+
psm_auditLog?: Maybe<PsmAuditLogConnection>;
|
|
185882
|
+
psm_dashboardOverview?: Maybe<PsmDashboardOverview>;
|
|
184922
185883
|
psm_device?: Maybe<PsmDevice>;
|
|
184923
185884
|
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
184924
185885
|
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
@@ -185111,6 +186072,7 @@ export type Query = {
|
|
|
185111
186072
|
stakeholderComms_searchIdentityGroupsByName?: Maybe<StakeholderCommsIdentityGroupForPageConnection>;
|
|
185112
186073
|
stakeholderComms_subscriptionStats?: Maybe<StakeholderCommsSubscriptionStatsResponse>;
|
|
185113
186074
|
stakeholderComms_suggestEmailUpdate?: Maybe<StakeholderCommsEmailReasoningResponse>;
|
|
186075
|
+
stakeholderComms_suggestIncidentComponents?: Maybe<StakeholderCommsSuggestIncidentComponentsResponse>;
|
|
185114
186076
|
stakeholderComms_suggestStatusPage?: Maybe<StakeholderCommsSuggestStatusPageResponse>;
|
|
185115
186077
|
stakeholderComms_suggestStatusPageWithReasoning?: Maybe<StakeholderCommsStatusPageReasoningResponse>;
|
|
185116
186078
|
stakeholderComms_testAPIEnterpriseOnly?: Maybe<Scalars['String']['output']>;
|
|
@@ -185582,6 +186544,10 @@ export type QueryAgentStudio_AgentValueConfigArgs = {
|
|
|
185582
186544
|
cloudId: Scalars['String']['input'];
|
|
185583
186545
|
id: Scalars['ID']['input'];
|
|
185584
186546
|
};
|
|
186547
|
+
export type QueryAgentStudio_AgentsByIdentityAccountIdsArgs = {
|
|
186548
|
+
cloudId: Scalars['String']['input'];
|
|
186549
|
+
ids: Array<Scalars['ID']['input']>;
|
|
186550
|
+
};
|
|
185585
186551
|
export type QueryAgentStudio_AgentsByIdsArgs = {
|
|
185586
186552
|
ids: Array<Scalars['ID']['input']>;
|
|
185587
186553
|
};
|
|
@@ -188715,6 +189681,9 @@ export type QueryCpls_FiltersArgs = {
|
|
|
188715
189681
|
includeSuggestions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
188716
189682
|
scopeId: Scalars['ID']['input'];
|
|
188717
189683
|
};
|
|
189684
|
+
export type QueryCpls_GetContributorWorkAssociationsArgs = {
|
|
189685
|
+
input: CplsGetContributorWorkAssociationsInput;
|
|
189686
|
+
};
|
|
188718
189687
|
export type QueryCpls_PeopleViewArgs = {
|
|
188719
189688
|
filters?: InputMaybe<CplsFiltersInput>;
|
|
188720
189689
|
id: Scalars['ID']['input'];
|
|
@@ -189703,6 +190672,7 @@ export type QueryGraphInference_InferredProjectMeArgs = {
|
|
|
189703
190672
|
};
|
|
189704
190673
|
export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
189705
190674
|
contextAri: Scalars['ID']['input'];
|
|
190675
|
+
includeEnabledToolCount?: Scalars['Boolean']['input'];
|
|
189706
190676
|
};
|
|
189707
190677
|
export type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
189708
190678
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -189723,6 +190693,10 @@ export type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
|
189723
190693
|
surface?: InputMaybe<GraphIntegrationSurface>;
|
|
189724
190694
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
189725
190695
|
};
|
|
190696
|
+
export type QueryGraphIntegration_CustomAuthArgs = {
|
|
190697
|
+
authAri: Scalars['ID']['input'];
|
|
190698
|
+
cloudId: Scalars['ID']['input'];
|
|
190699
|
+
};
|
|
189726
190700
|
export type QueryGraphIntegration_GlobalMcpServersArgs = {
|
|
189727
190701
|
ids: Array<Scalars['ID']['input']>;
|
|
189728
190702
|
};
|
|
@@ -194742,6 +195716,13 @@ export type QueryGraphStoreV2_InferredTeamCollaboratesOnInferredProjectInverseAr
|
|
|
194742
195716
|
id: Scalars['ID']['input'];
|
|
194743
195717
|
sort?: InputMaybe<GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput>;
|
|
194744
195718
|
};
|
|
195719
|
+
export type QueryGraphStoreV2_InferredTeamLinksEntityArgs = {
|
|
195720
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
195721
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
195722
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
195723
|
+
id: Scalars['ID']['input'];
|
|
195724
|
+
sort?: InputMaybe<GraphStoreV2InferredTeamLinksEntitySortInput>;
|
|
195725
|
+
};
|
|
194745
195726
|
export type QueryGraphStoreV2_JiraEpicTracksAtlassianProjectArgs = {
|
|
194746
195727
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
194747
195728
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -194756,6 +195737,13 @@ export type QueryGraphStoreV2_JiraEpicTracksAtlassianProjectInverseArgs = {
|
|
|
194756
195737
|
id: Scalars['ID']['input'];
|
|
194757
195738
|
sort?: InputMaybe<GraphStoreV2JiraEpicTracksAtlassianProjectSortInput>;
|
|
194758
195739
|
};
|
|
195740
|
+
export type QueryGraphStoreV2_JiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityArgs = {
|
|
195741
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
195742
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
195743
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
195744
|
+
id: Scalars['ID']['input'];
|
|
195745
|
+
sort?: InputMaybe<GraphStoreV2JiraProjectAgentKnowledgeContextHasKnowledgeBaseEntitySortInput>;
|
|
195746
|
+
};
|
|
194759
195747
|
export type QueryGraphStoreV2_JiraSpaceDismissedKnowledgeBaseEntityArgs = {
|
|
194760
195748
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
194761
195749
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -199533,6 +200521,14 @@ export type QueryGraphStore_InferredTeamCollaboratesOnInferredProjectInverseArgs
|
|
|
199533
200521
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
199534
200522
|
sort?: InputMaybe<GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput>;
|
|
199535
200523
|
};
|
|
200524
|
+
export type QueryGraphStore_InferredTeamLinksEntityArgs = {
|
|
200525
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
200526
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
200527
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
200528
|
+
id: Scalars['ID']['input'];
|
|
200529
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
200530
|
+
sort?: InputMaybe<GraphStoreInferredTeamLinksEntitySortInput>;
|
|
200531
|
+
};
|
|
199536
200532
|
export type QueryGraphStore_IssueAssociatedBranchArgs = {
|
|
199537
200533
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
199538
200534
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -200233,6 +201229,14 @@ export type QueryGraphStore_JiraIssueToJiraPriorityInverseArgs = {
|
|
|
200233
201229
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
200234
201230
|
sort?: InputMaybe<GraphStoreJiraIssueToJiraPrioritySortInput>;
|
|
200235
201231
|
};
|
|
201232
|
+
export type QueryGraphStore_JiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityArgs = {
|
|
201233
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
201234
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201235
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
201236
|
+
id: Scalars['ID']['input'];
|
|
201237
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
201238
|
+
sort?: InputMaybe<GraphStoreJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntitySortInput>;
|
|
201239
|
+
};
|
|
200236
201240
|
export type QueryGraphStore_JiraProjectAssociatedAtlasGoalArgs = {
|
|
200237
201241
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
200238
201242
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -205594,6 +206598,10 @@ export type QueryGravity_ReactionsArgs = {
|
|
|
205594
206598
|
cloudId: Scalars['ID']['input'];
|
|
205595
206599
|
input: GravityGetReactionsInput;
|
|
205596
206600
|
};
|
|
206601
|
+
export type QueryGravity_ViewArrangementArgs = {
|
|
206602
|
+
cloudId: Scalars['ID']['input'];
|
|
206603
|
+
viewId: Scalars['ID']['input'];
|
|
206604
|
+
};
|
|
205597
206605
|
export type QueryGravity_ViewTemplateMappingProposalsArgs = {
|
|
205598
206606
|
cloudId: Scalars['ID']['input'];
|
|
205599
206607
|
maxFieldProposals?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -205786,6 +206794,14 @@ export type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
205786
206794
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
205787
206795
|
id: Scalars['ID']['input'];
|
|
205788
206796
|
};
|
|
206797
|
+
export type QueryJira_AgentAutonomyPoliciesForProjectArgs = {
|
|
206798
|
+
cloudId: Scalars['ID']['input'];
|
|
206799
|
+
projectId: Scalars['ID']['input'];
|
|
206800
|
+
};
|
|
206801
|
+
export type QueryJira_AgentAutonomyPolicyArgs = {
|
|
206802
|
+
cloudId: Scalars['ID']['input'];
|
|
206803
|
+
input: JiraAgentAutonomyPolicyInput;
|
|
206804
|
+
};
|
|
205789
206805
|
export type QueryJira_AgentContextSettingsArgs = {
|
|
205790
206806
|
cloudId: Scalars['ID']['input'];
|
|
205791
206807
|
input: JiraAgentContextSettingsInput;
|
|
@@ -206175,6 +207191,12 @@ export type QueryJsmTelemetry_DashboardArgs = {
|
|
|
206175
207191
|
incidentId: Scalars['ID']['input'];
|
|
206176
207192
|
input: JsmTelemetryDashboardQueryInput;
|
|
206177
207193
|
};
|
|
207194
|
+
export type QueryJsmTelemetry_DashboardByScopeArgs = {
|
|
207195
|
+
cloudId: Scalars['ID']['input'];
|
|
207196
|
+
hypothesisId?: InputMaybe<Scalars['String']['input']>;
|
|
207197
|
+
scopeId: Scalars['String']['input'];
|
|
207198
|
+
scopeType: JsmTelemetryScopeType;
|
|
207199
|
+
};
|
|
206178
207200
|
export type QueryJsmTelemetry_GetIncidentContextArgs = {
|
|
206179
207201
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
206180
207202
|
incidentId: Scalars['ID']['input'];
|
|
@@ -206199,6 +207221,7 @@ export type QueryJsmTelemetry_GetProviderContextSchemaArgs = {
|
|
|
206199
207221
|
export type QueryJsmTelemetry_GetTelemetryConnectionArgs = {
|
|
206200
207222
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
206201
207223
|
id: Scalars['ID']['input'];
|
|
207224
|
+
scopeId: Scalars['String']['input'];
|
|
206202
207225
|
};
|
|
206203
207226
|
export type QueryJsmTelemetry_IncidentTelemetryArgs = {
|
|
206204
207227
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -206207,6 +207230,7 @@ export type QueryJsmTelemetry_IncidentTelemetryArgs = {
|
|
|
206207
207230
|
export type QueryJsmTelemetry_ListTelemetryConnectionsArgs = {
|
|
206208
207231
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
206209
207232
|
filter?: InputMaybe<JsmTelemetryConnectionFilterInput>;
|
|
207233
|
+
scopeId: Scalars['String']['input'];
|
|
206210
207234
|
};
|
|
206211
207235
|
export type QueryJsmTelemetry_ListTelemetryProvidersArgs = {
|
|
206212
207236
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -206592,13 +207616,13 @@ export type QueryMarketplacePricingPlanArgs = {
|
|
|
206592
207616
|
};
|
|
206593
207617
|
export type QueryMedia_ItemsArgs = {
|
|
206594
207618
|
clientId: Scalars['String']['input'];
|
|
206595
|
-
cloudId: Scalars['
|
|
207619
|
+
cloudId: Scalars['ID']['input'];
|
|
206596
207620
|
descriptors: Array<MediaItemDescriptorInput>;
|
|
206597
207621
|
includeHashForDuplicateFiles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
206598
207622
|
token: Scalars['String']['input'];
|
|
206599
207623
|
};
|
|
206600
207624
|
export type QueryMedia_ItemsByDescriptorArgs = {
|
|
206601
|
-
cloudId: Scalars['
|
|
207625
|
+
cloudId: Scalars['ID']['input'];
|
|
206602
207626
|
input: MediaItemsInput;
|
|
206603
207627
|
};
|
|
206604
207628
|
export type QueryMercury_AskArgs = {
|
|
@@ -206610,6 +207634,13 @@ export type QueryMercury_AskActivityHistoryByIdsArgs = {
|
|
|
206610
207634
|
export type QueryMercury_AskCountByStatusForFocusAreaArgs = {
|
|
206611
207635
|
focusAreaAri: Scalars['ID']['input'];
|
|
206612
207636
|
};
|
|
207637
|
+
export type QueryMercury_AskCustomFieldDefinitionsSearchArgs = {
|
|
207638
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
207639
|
+
cloudId: Scalars['ID']['input'];
|
|
207640
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
207641
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
207642
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryCustomFieldDefinitionSort>>>;
|
|
207643
|
+
};
|
|
206613
207644
|
export type QueryMercury_AskLinksByIdsArgs = {
|
|
206614
207645
|
ids: Array<Scalars['ID']['input']>;
|
|
206615
207646
|
};
|
|
@@ -207010,6 +208041,18 @@ export type QueryProjects_StatusSummaryForTagArgs = {
|
|
|
207010
208041
|
export type QueryProjects_UpdatesByIdsArgs = {
|
|
207011
208042
|
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
207012
208043
|
};
|
|
208044
|
+
export type QueryPsm_AuditLogArgs = {
|
|
208045
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208046
|
+
cloudId: Scalars['ID']['input'];
|
|
208047
|
+
filter?: InputMaybe<PsmAuditLogFilter>;
|
|
208048
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208049
|
+
orderBy?: InputMaybe<PsmAuditLogOrder>;
|
|
208050
|
+
spaceId: Scalars['ID']['input'];
|
|
208051
|
+
};
|
|
208052
|
+
export type QueryPsm_DashboardOverviewArgs = {
|
|
208053
|
+
cloudId: Scalars['ID']['input'];
|
|
208054
|
+
input: PsmDashboardOverviewInput;
|
|
208055
|
+
};
|
|
207013
208056
|
export type QueryPsm_DeviceArgs = {
|
|
207014
208057
|
cloudId: Scalars['ID']['input'];
|
|
207015
208058
|
serialNumber: Scalars['String']['input'];
|
|
@@ -207828,6 +208871,12 @@ export type QueryStakeholderComms_SuggestEmailUpdateArgs = {
|
|
|
207828
208871
|
cloudId: Scalars['String']['input'];
|
|
207829
208872
|
incidentId: Scalars['String']['input'];
|
|
207830
208873
|
};
|
|
208874
|
+
export type QueryStakeholderComms_SuggestIncidentComponentsArgs = {
|
|
208875
|
+
cloudId: Scalars['String']['input'];
|
|
208876
|
+
incidentId: Scalars['String']['input'];
|
|
208877
|
+
maxSuggestions?: InputMaybe<Scalars['Int']['input']>;
|
|
208878
|
+
pageId: Scalars['String']['input'];
|
|
208879
|
+
};
|
|
207831
208880
|
export type QueryStakeholderComms_SuggestStatusPageArgs = {
|
|
207832
208881
|
cloudId: Scalars['String']['input'];
|
|
207833
208882
|
incidentKey: Scalars['String']['input'];
|
|
@@ -234645,6 +235694,10 @@ export type StakeholderCommsColoursType = {
|
|
|
234645
235694
|
cssRedColor?: Maybe<Scalars['String']['output']>;
|
|
234646
235695
|
cssYellowColor?: Maybe<Scalars['String']['output']>;
|
|
234647
235696
|
};
|
|
235697
|
+
export declare enum StakeholderCommsComponentImpactType {
|
|
235698
|
+
Direct = "DIRECT",
|
|
235699
|
+
Inferred = "INFERRED"
|
|
235700
|
+
}
|
|
234648
235701
|
export declare enum StakeholderCommsComponentStatus {
|
|
234649
235702
|
DegradedPerformance = "DEGRADED_PERFORMANCE",
|
|
234650
235703
|
MajorOutage = "MAJOR_OUTAGE",
|
|
@@ -234656,6 +235709,13 @@ export declare enum StakeholderCommsComponentStyle {
|
|
|
234656
235709
|
Card = "CARD",
|
|
234657
235710
|
Table = "TABLE"
|
|
234658
235711
|
}
|
|
235712
|
+
export declare enum StakeholderCommsComponentSuppressionReason {
|
|
235713
|
+
AllComponentsIneligible = "ALL_COMPONENTS_INELIGIBLE",
|
|
235714
|
+
BelowThreshold = "BELOW_THRESHOLD",
|
|
235715
|
+
EngineError = "ENGINE_ERROR",
|
|
235716
|
+
FeatureDisabled = "FEATURE_DISABLED",
|
|
235717
|
+
NoComponentsConfigured = "NO_COMPONENTS_CONFIGURED"
|
|
235718
|
+
}
|
|
234659
235719
|
export declare enum StakeholderCommsComponentType {
|
|
234660
235720
|
Component = "COMPONENT",
|
|
234661
235721
|
GroupComponent = "GROUP_COMPONENT"
|
|
@@ -235903,6 +236963,12 @@ export declare enum StakeholderCommsSubscriptionType {
|
|
|
235903
236963
|
Sms = "SMS",
|
|
235904
236964
|
Webhook = "WEBHOOK"
|
|
235905
236965
|
}
|
|
236966
|
+
export type StakeholderCommsSuggestIncidentComponentsResponse = {
|
|
236967
|
+
__typename?: 'StakeholderCommsSuggestIncidentComponentsResponse';
|
|
236968
|
+
suggestions: Array<StakeholderCommsSuggestedComponent>;
|
|
236969
|
+
suppressed: Scalars['Boolean']['output'];
|
|
236970
|
+
suppressionReason?: Maybe<StakeholderCommsComponentSuppressionReason>;
|
|
236971
|
+
};
|
|
235906
236972
|
export type StakeholderCommsSuggestStatusPageResponse = {
|
|
235907
236973
|
__typename?: 'StakeholderCommsSuggestStatusPageResponse';
|
|
235908
236974
|
alreadyLinkedPage?: Maybe<StakeholderCommsSuggestedPage>;
|
|
@@ -235911,6 +236977,18 @@ export type StakeholderCommsSuggestStatusPageResponse = {
|
|
|
235911
236977
|
suppressed: Scalars['Boolean']['output'];
|
|
235912
236978
|
suppressionReason?: Maybe<StakeholderCommsSuggestionSuppressionReason>;
|
|
235913
236979
|
};
|
|
236980
|
+
export type StakeholderCommsSuggestedComponent = {
|
|
236981
|
+
__typename?: 'StakeholderCommsSuggestedComponent';
|
|
236982
|
+
affectedServiceName?: Maybe<Scalars['String']['output']>;
|
|
236983
|
+
componentId: Scalars['String']['output'];
|
|
236984
|
+
componentName: Scalars['String']['output'];
|
|
236985
|
+
confidence: StakeholderCommsSuggestionConfidence;
|
|
236986
|
+
impactType: StakeholderCommsComponentImpactType;
|
|
236987
|
+
inferred: Scalars['Boolean']['output'];
|
|
236988
|
+
pageId: Scalars['String']['output'];
|
|
236989
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
236990
|
+
suggestedStatus?: Maybe<StakeholderCommsComponentStatus>;
|
|
236991
|
+
};
|
|
235914
236992
|
export declare enum StakeholderCommsSuggestedImpact {
|
|
235915
236993
|
Critical = "CRITICAL",
|
|
235916
236994
|
Major = "MAJOR",
|
|
@@ -236277,6 +237355,7 @@ export type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
236277
237355
|
};
|
|
236278
237356
|
export type Subscription = {
|
|
236279
237357
|
__typename?: 'Subscription';
|
|
237358
|
+
_placeholder?: Maybe<Scalars['String']['output']>;
|
|
236280
237359
|
aiops_onInvestigationProgressChanged?: Maybe<AiOpsInvestigationQueryResult>;
|
|
236281
237360
|
assetsVertical_onAsyncTaskUpdated?: Maybe<AssetsVerticalAsyncTask>;
|
|
236282
237361
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
@@ -239486,10 +240565,12 @@ export declare enum TownsquareGoalAccessRoleInput {
|
|
|
239486
240565
|
}
|
|
239487
240566
|
export type TownsquareGoalAppCapabilities = {
|
|
239488
240567
|
__typename?: 'TownsquareGoalAppCapabilities';
|
|
240568
|
+
canAddAppLevelPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
239489
240569
|
canCreateGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
239490
240570
|
canCreateUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
239491
240571
|
canExportGoals?: Maybe<Scalars['Boolean']['output']>;
|
|
239492
240572
|
canManageConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
240573
|
+
canRemoveAppLevelPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
239493
240574
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
239494
240575
|
};
|
|
239495
240576
|
export type TownsquareGoalArchivedChange = {
|
|
@@ -241290,10 +242371,12 @@ export declare enum TownsquareProjectAccessRoleInput {
|
|
|
241290
242371
|
}
|
|
241291
242372
|
export type TownsquareProjectAppCapabilities = {
|
|
241292
242373
|
__typename?: 'TownsquareProjectAppCapabilities';
|
|
242374
|
+
canAddAppLevelPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
241293
242375
|
canCreateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
241294
242376
|
canCreateUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
241295
242377
|
canExportProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
241296
242378
|
canManageConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
242379
|
+
canRemoveAppLevelPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
241297
242380
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
241298
242381
|
};
|
|
241299
242382
|
export type TownsquareProjectCapabilities = {
|
|
@@ -243638,6 +244721,15 @@ export type TrelloApplicationUsage = {
|
|
|
243638
244721
|
boards?: Maybe<Scalars['Int']['output']>;
|
|
243639
244722
|
members?: Maybe<Scalars['Int']['output']>;
|
|
243640
244723
|
};
|
|
244724
|
+
export type TrelloArchiveAllCardsInListInput = {
|
|
244725
|
+
boardId: Scalars['ID']['input'];
|
|
244726
|
+
listId: Scalars['ID']['input'];
|
|
244727
|
+
};
|
|
244728
|
+
export type TrelloArchiveAllCardsInListPayload = Payload & {
|
|
244729
|
+
__typename?: 'TrelloArchiveAllCardsInListPayload';
|
|
244730
|
+
errors?: Maybe<Array<MutationError>>;
|
|
244731
|
+
success: Scalars['Boolean']['output'];
|
|
244732
|
+
};
|
|
243641
244733
|
export type TrelloArchivedCardConnection = {
|
|
243642
244734
|
__typename?: 'TrelloArchivedCardConnection';
|
|
243643
244735
|
edges?: Maybe<Array<TrelloArchivedCardEdge>>;
|
|
@@ -243691,6 +244783,8 @@ export type TrelloAtlassianOrganization = {
|
|
|
243691
244783
|
};
|
|
243692
244784
|
export type TrelloAtlassianSite = {
|
|
243693
244785
|
__typename?: 'TrelloAtlassianSite';
|
|
244786
|
+
cloudUrl?: Maybe<Scalars['String']['output']>;
|
|
244787
|
+
hostname?: Maybe<Scalars['String']['output']>;
|
|
243694
244788
|
isRovoAiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
243695
244789
|
resourceId: Scalars['String']['output'];
|
|
243696
244790
|
};
|
|
@@ -245431,6 +246525,17 @@ export type TrelloCreateChecklistPayload = Payload & {
|
|
|
245431
246525
|
errors?: Maybe<Array<MutationError>>;
|
|
245432
246526
|
success: Scalars['Boolean']['output'];
|
|
245433
246527
|
};
|
|
246528
|
+
export type TrelloCreateCommentInput = {
|
|
246529
|
+
cardId: Scalars['ID']['input'];
|
|
246530
|
+
text: Scalars['String']['input'];
|
|
246531
|
+
};
|
|
246532
|
+
export type TrelloCreateCommentPayload = Payload & {
|
|
246533
|
+
__typename?: 'TrelloCreateCommentPayload';
|
|
246534
|
+
card?: Maybe<TrelloBaseCard>;
|
|
246535
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
246536
|
+
errors?: Maybe<Array<MutationError>>;
|
|
246537
|
+
success: Scalars['Boolean']['output'];
|
|
246538
|
+
};
|
|
245434
246539
|
export type TrelloCreateCustomFieldInput = {
|
|
245435
246540
|
boardId: Scalars['ID']['input'];
|
|
245436
246541
|
display?: InputMaybe<TrelloCustomFieldDisplayInput>;
|
|
@@ -247019,6 +248124,7 @@ export type TrelloMutationApi = {
|
|
|
247019
248124
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
247020
248125
|
addOnboardingInboxCards?: Maybe<TrelloAddOnboardingInboxCardsPayload>;
|
|
247021
248126
|
addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
|
|
248127
|
+
archiveAllCardsInList?: Maybe<TrelloArchiveAllCardsInListPayload>;
|
|
247022
248128
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
247023
248129
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
247024
248130
|
bulkCreateCards?: Maybe<TrelloBulkCreateCardsPayload>;
|
|
@@ -247036,6 +248142,7 @@ export type TrelloMutationApi = {
|
|
|
247036
248142
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
247037
248143
|
createCheckItem?: Maybe<TrelloCreateCheckItemPayload>;
|
|
247038
248144
|
createChecklist?: Maybe<TrelloCreateChecklistPayload>;
|
|
248145
|
+
createComment?: Maybe<TrelloCreateCommentPayload>;
|
|
247039
248146
|
createCustomField?: Maybe<TrelloCreateCustomFieldPayload>;
|
|
247040
248147
|
createCustomFieldOption?: Maybe<TrelloCreateCustomFieldOptionPayload>;
|
|
247041
248148
|
createEcho?: Maybe<TrelloEchoPayload>;
|
|
@@ -247181,6 +248288,9 @@ export type TrelloMutationApiAddOnboardingInboxCardsArgs = {
|
|
|
247181
248288
|
export type TrelloMutationApiAddWorkspaceTagToBoardArgs = {
|
|
247182
248289
|
input: TrelloAddWorkspaceTagToBoardInput;
|
|
247183
248290
|
};
|
|
248291
|
+
export type TrelloMutationApiArchiveAllCardsInListArgs = {
|
|
248292
|
+
input: TrelloArchiveAllCardsInListInput;
|
|
248293
|
+
};
|
|
247184
248294
|
export type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
|
|
247185
248295
|
input: TrelloAssignCardToPlannerCalendarEventInput;
|
|
247186
248296
|
};
|
|
@@ -247232,6 +248342,9 @@ export type TrelloMutationApiCreateCheckItemArgs = {
|
|
|
247232
248342
|
export type TrelloMutationApiCreateChecklistArgs = {
|
|
247233
248343
|
input: TrelloCreateChecklistInput;
|
|
247234
248344
|
};
|
|
248345
|
+
export type TrelloMutationApiCreateCommentArgs = {
|
|
248346
|
+
input: TrelloCreateCommentInput;
|
|
248347
|
+
};
|
|
247235
248348
|
export type TrelloMutationApiCreateCustomFieldArgs = {
|
|
247236
248349
|
input: TrelloCreateCustomFieldInput;
|
|
247237
248350
|
};
|
|
@@ -250123,8 +251236,8 @@ export type TrelloWorkspaceMembershipsConnection = {
|
|
|
250123
251236
|
};
|
|
250124
251237
|
export type TrelloWorkspaceMultiboard = {
|
|
250125
251238
|
__typename?: 'TrelloWorkspaceMultiboard';
|
|
250126
|
-
boards?: Maybe<
|
|
250127
|
-
cards?: Maybe<
|
|
251239
|
+
boards?: Maybe<TrelloWorkspaceMultiboardBoardsConnection>;
|
|
251240
|
+
cards?: Maybe<TrelloWorkspaceMultiboardCardsConnection>;
|
|
250128
251241
|
};
|
|
250129
251242
|
export type TrelloWorkspaceMultiboardBoardsArgs = {
|
|
250130
251243
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -250146,15 +251259,25 @@ export type TrelloWorkspaceMultiboardCardsArgs = {
|
|
|
250146
251259
|
memberFilter?: InputMaybe<TrelloMultiboardMemberFilterInput>;
|
|
250147
251260
|
sortBy?: InputMaybe<Array<TrelloMultiboardCardSortInput>>;
|
|
250148
251261
|
};
|
|
250149
|
-
export type
|
|
250150
|
-
__typename?: '
|
|
250151
|
-
|
|
250152
|
-
|
|
251262
|
+
export type TrelloWorkspaceMultiboardBoardEdge = {
|
|
251263
|
+
__typename?: 'TrelloWorkspaceMultiboardBoardEdge';
|
|
251264
|
+
cursor: Scalars['String']['output'];
|
|
251265
|
+
node?: Maybe<TrelloBaseBoard>;
|
|
250153
251266
|
};
|
|
250154
|
-
export type
|
|
250155
|
-
__typename?: '
|
|
250156
|
-
|
|
250157
|
-
|
|
251267
|
+
export type TrelloWorkspaceMultiboardBoardsConnection = {
|
|
251268
|
+
__typename?: 'TrelloWorkspaceMultiboardBoardsConnection';
|
|
251269
|
+
edges?: Maybe<Array<TrelloWorkspaceMultiboardBoardEdge>>;
|
|
251270
|
+
pageInfo: PageInfo;
|
|
251271
|
+
};
|
|
251272
|
+
export type TrelloWorkspaceMultiboardCardEdge = {
|
|
251273
|
+
__typename?: 'TrelloWorkspaceMultiboardCardEdge';
|
|
251274
|
+
cursor: Scalars['String']['output'];
|
|
251275
|
+
node?: Maybe<TrelloBaseCard>;
|
|
251276
|
+
};
|
|
251277
|
+
export type TrelloWorkspaceMultiboardCardsConnection = {
|
|
251278
|
+
__typename?: 'TrelloWorkspaceMultiboardCardsConnection';
|
|
251279
|
+
edges: Array<TrelloWorkspaceMultiboardCardEdge>;
|
|
251280
|
+
pageInfo: PageInfo;
|
|
250158
251281
|
total?: Maybe<Scalars['Int']['output']>;
|
|
250159
251282
|
};
|
|
250160
251283
|
export type TrelloWorkspacePrefs = {
|