@forge/cli-shared 8.0.0-next.9 → 8.0.0
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 +84 -0
- package/out/app-logs/graphql-client.d.ts +1 -1
- package/out/app-logs/graphql-client.d.ts.map +1 -1
- package/out/app-logs/graphql-client.js +33 -18
- package/out/app-logs/view-logs.d.ts +4 -2
- package/out/app-logs/view-logs.d.ts.map +1 -1
- package/out/app-logs/view-logs.js +4 -3
- package/out/graphql/graphql-types.d.ts +474 -77
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +75 -26
- package/out/shared/test.d.ts.map +1 -1
- package/out/shared/test.js +1 -2
- package/out/ui/command-line-ui.d.ts +0 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +0 -5
- package/out/ui/logger.d.ts +0 -1
- package/out/ui/logger.d.ts.map +1 -1
- package/out/ui/logger.js +0 -2
- package/out/ui/text.d.ts +0 -14
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -20
- package/package.json +2 -2
|
@@ -872,7 +872,9 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
872
872
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
873
873
|
conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
|
|
874
874
|
creator?: Maybe<User>;
|
|
875
|
+
creatorType?: Maybe<Scalars['String']['output']>;
|
|
875
876
|
description?: Maybe<Scalars['String']['output']>;
|
|
877
|
+
externalConfigReference?: Maybe<Scalars['String']['output']>;
|
|
876
878
|
id: Scalars['ID']['output'];
|
|
877
879
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
878
880
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2088,6 +2090,14 @@ export declare type AppStorageAdmin = {
|
|
|
2088
2090
|
export declare type AppStorageAdminKvsQueryArgs = {
|
|
2089
2091
|
input: AppStorageKvsQueryInput;
|
|
2090
2092
|
};
|
|
2093
|
+
export declare type AppStorageAdminMutation = {
|
|
2094
|
+
__typename?: 'AppStorageAdminMutation';
|
|
2095
|
+
appId: Scalars['ID']['output'];
|
|
2096
|
+
kvsSet?: Maybe<AppStorageKvsSetPayload>;
|
|
2097
|
+
};
|
|
2098
|
+
export declare type AppStorageAdminMutationKvsSetArgs = {
|
|
2099
|
+
input: AppStorageKvsSetInput;
|
|
2100
|
+
};
|
|
2091
2101
|
export declare type AppStorageCustomEntityMutation = {
|
|
2092
2102
|
__typename?: 'AppStorageCustomEntityMutation';
|
|
2093
2103
|
deleteAppStoredCustomEntity?: Maybe<DeleteAppStoredCustomEntityPayload>;
|
|
@@ -2119,6 +2129,19 @@ export declare type AppStorageKvsQueryPayload = {
|
|
|
2119
2129
|
pageInfo: AppStoragePageInfo;
|
|
2120
2130
|
totalCount: Scalars['Int']['output'];
|
|
2121
2131
|
};
|
|
2132
|
+
export declare type AppStorageKvsSetInput = {
|
|
2133
|
+
contextAri: Scalars['ID']['input'];
|
|
2134
|
+
environmentId: Scalars['ID']['input'];
|
|
2135
|
+
installationId: Scalars['ID']['input'];
|
|
2136
|
+
key: Scalars['String']['input'];
|
|
2137
|
+
oauthClientId: Scalars['ID']['input'];
|
|
2138
|
+
value: Scalars['AppStorageEntityValue']['input'];
|
|
2139
|
+
};
|
|
2140
|
+
export declare type AppStorageKvsSetPayload = {
|
|
2141
|
+
__typename?: 'AppStorageKvsSetPayload';
|
|
2142
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2143
|
+
success: Scalars['Boolean']['output'];
|
|
2144
|
+
};
|
|
2122
2145
|
export declare type AppStorageMutation = {
|
|
2123
2146
|
__typename?: 'AppStorageMutation';
|
|
2124
2147
|
deleteAppStoredEntity?: Maybe<DeleteAppStoredEntityPayload>;
|
|
@@ -4055,14 +4078,29 @@ export declare enum CcpEntitlementStatus {
|
|
|
4055
4078
|
Active = "ACTIVE",
|
|
4056
4079
|
Inactive = "INACTIVE"
|
|
4057
4080
|
}
|
|
4058
|
-
export declare type CcpEntitlementTemplate = {
|
|
4081
|
+
export declare type CcpEntitlementTemplate = Node & {
|
|
4059
4082
|
__typename?: 'CcpEntitlementTemplate';
|
|
4083
|
+
catalogAccountKey?: Maybe<Scalars['ID']['output']>;
|
|
4084
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4060
4085
|
data?: Maybe<Scalars['String']['output']>;
|
|
4086
|
+
defaultRevision?: Maybe<Scalars['Boolean']['output']>;
|
|
4087
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4088
|
+
id: Scalars['ID']['output'];
|
|
4061
4089
|
key?: Maybe<Scalars['ID']['output']>;
|
|
4090
|
+
productKey?: Maybe<Scalars['String']['output']>;
|
|
4062
4091
|
provisionedBy?: Maybe<Scalars['String']['output']>;
|
|
4092
|
+
status?: Maybe<CcpEntitlementTemplateStatus>;
|
|
4093
|
+
uniqueKey?: Maybe<Scalars['ID']['output']>;
|
|
4094
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4063
4095
|
userUsageInclusions?: Maybe<CcpEntitlementTemplateUserUsageInclusions>;
|
|
4064
4096
|
version?: Maybe<Scalars['Int']['output']>;
|
|
4065
4097
|
};
|
|
4098
|
+
export declare enum CcpEntitlementTemplateStatus {
|
|
4099
|
+
Deprecated = "DEPRECATED",
|
|
4100
|
+
None = "NONE",
|
|
4101
|
+
Published = "PUBLISHED",
|
|
4102
|
+
Unpublished = "UNPUBLISHED"
|
|
4103
|
+
}
|
|
4066
4104
|
export declare type CcpEntitlementTemplateUserUsageInclusions = {
|
|
4067
4105
|
__typename?: 'CcpEntitlementTemplateUserUsageInclusions';
|
|
4068
4106
|
references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -4829,7 +4867,9 @@ export declare type CcpQueryApi = {
|
|
|
4829
4867
|
__typename?: 'CcpQueryApi';
|
|
4830
4868
|
catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
|
|
4831
4869
|
entitlement?: Maybe<CcpEntitlement>;
|
|
4870
|
+
entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
|
|
4832
4871
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
4872
|
+
entitlementsV2?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
4833
4873
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
4834
4874
|
invoiceGroups?: Maybe<Array<Maybe<CcpInvoiceGroupV2>>>;
|
|
4835
4875
|
offering?: Maybe<CcpOffering>;
|
|
@@ -4851,9 +4891,15 @@ export declare type CcpQueryApiCatalogAccountsArgs = {
|
|
|
4851
4891
|
export declare type CcpQueryApiEntitlementArgs = {
|
|
4852
4892
|
id: Scalars['ID']['input'];
|
|
4853
4893
|
};
|
|
4894
|
+
export declare type CcpQueryApiEntitlementTemplatesArgs = {
|
|
4895
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4896
|
+
};
|
|
4854
4897
|
export declare type CcpQueryApiEntitlementsArgs = {
|
|
4855
4898
|
ids: Array<Scalars['ID']['input']>;
|
|
4856
4899
|
};
|
|
4900
|
+
export declare type CcpQueryApiEntitlementsV2Args = {
|
|
4901
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4902
|
+
};
|
|
4857
4903
|
export declare type CcpQueryApiInvoiceGroupsArgs = {
|
|
4858
4904
|
ids: Array<Scalars['ID']['input']>;
|
|
4859
4905
|
};
|
|
@@ -5487,6 +5533,7 @@ export declare type ChannelPlatformSampleQueueConfig = {
|
|
|
5487
5533
|
queueId?: Maybe<Scalars['ID']['output']>;
|
|
5488
5534
|
};
|
|
5489
5535
|
export declare type ChannelPlatformSubmitRequestInput = {
|
|
5536
|
+
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
5490
5537
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5491
5538
|
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
5492
5539
|
};
|
|
@@ -9611,6 +9658,7 @@ export declare type CompassScorecard = Node & {
|
|
|
9611
9658
|
name: Scalars['String']['output'];
|
|
9612
9659
|
owner?: Maybe<User>;
|
|
9613
9660
|
scoreSystem?: Maybe<CompassScorecardScoreSystem>;
|
|
9661
|
+
scorecardMaturityLevelStatisticsHistories?: Maybe<CompassScorecardMaturityLevelStatisticsHistoryConnection>;
|
|
9614
9662
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
9615
9663
|
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
9616
9664
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
@@ -9640,6 +9688,11 @@ export declare type CompassScorecardDeactivatedComponentsArgs = {
|
|
|
9640
9688
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9641
9689
|
query?: InputMaybe<CompassScorecardDeactivatedComponentsQuery>;
|
|
9642
9690
|
};
|
|
9691
|
+
export declare type CompassScorecardScorecardMaturityLevelStatisticsHistoriesArgs = {
|
|
9692
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9693
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9694
|
+
query?: InputMaybe<CompassScorecardMaturityLevelStatisticsHistoryQuery>;
|
|
9695
|
+
};
|
|
9643
9696
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
9644
9697
|
query?: InputMaybe<CompassScorecardScoreQuery>;
|
|
9645
9698
|
};
|
|
@@ -9654,6 +9707,9 @@ export declare type CompassScorecardScorecardScoreStatisticsHistoriesArgs = {
|
|
|
9654
9707
|
export declare type CompassScorecardApplicationModel = {
|
|
9655
9708
|
applicationType: Scalars['String']['output'];
|
|
9656
9709
|
};
|
|
9710
|
+
export declare type CompassScorecardAppliedToComponentsComponentStateFilter = {
|
|
9711
|
+
in: Array<Scalars['String']['input']>;
|
|
9712
|
+
};
|
|
9657
9713
|
export declare type CompassScorecardAppliedToComponentsConnection = {
|
|
9658
9714
|
__typename?: 'CompassScorecardAppliedToComponentsConnection';
|
|
9659
9715
|
edges?: Maybe<Array<CompassScorecardAppliedToComponentsEdge>>;
|
|
@@ -9697,6 +9753,7 @@ export declare type CompassScorecardAppliedToComponentsQuery = {
|
|
|
9697
9753
|
sort?: InputMaybe<CompassScorecardAppliedToComponentsQuerySort>;
|
|
9698
9754
|
};
|
|
9699
9755
|
export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
9756
|
+
componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
|
|
9700
9757
|
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
9701
9758
|
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
9702
9759
|
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
@@ -10119,6 +10176,36 @@ export declare type CompassScorecardMaturityLevelScoreSystem = {
|
|
|
10119
10176
|
__typename?: 'CompassScorecardMaturityLevelScoreSystem';
|
|
10120
10177
|
levelConfig?: Maybe<CompassScorecardMaturityLevelConfig>;
|
|
10121
10178
|
};
|
|
10179
|
+
export declare type CompassScorecardMaturityLevelStatistic = {
|
|
10180
|
+
__typename?: 'CompassScorecardMaturityLevelStatistic';
|
|
10181
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
10182
|
+
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
10183
|
+
};
|
|
10184
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistory = {
|
|
10185
|
+
__typename?: 'CompassScorecardMaturityLevelStatisticsHistory';
|
|
10186
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
10187
|
+
statistics?: Maybe<Array<CompassScorecardMaturityLevelStatistic>>;
|
|
10188
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10189
|
+
};
|
|
10190
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryConnection = {
|
|
10191
|
+
__typename?: 'CompassScorecardMaturityLevelStatisticsHistoryConnection';
|
|
10192
|
+
edges?: Maybe<Array<CompassScorecardMaturityLevelStatisticsHistoryEdge>>;
|
|
10193
|
+
nodes?: Maybe<Array<CompassScorecardMaturityLevelStatisticsHistory>>;
|
|
10194
|
+
pageInfo: PageInfo;
|
|
10195
|
+
};
|
|
10196
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryEdge = {
|
|
10197
|
+
__typename?: 'CompassScorecardMaturityLevelStatisticsHistoryEdge';
|
|
10198
|
+
cursor: Scalars['String']['output'];
|
|
10199
|
+
node?: Maybe<CompassScorecardMaturityLevelStatisticsHistory>;
|
|
10200
|
+
};
|
|
10201
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryQuery = {
|
|
10202
|
+
filter?: InputMaybe<CompassScorecardMaturityLevelStatisticsHistoryQueryFilter>;
|
|
10203
|
+
};
|
|
10204
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryQueryFilter = {
|
|
10205
|
+
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
10206
|
+
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
10207
|
+
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
10208
|
+
};
|
|
10122
10209
|
export declare type CompassScorecardMetricCriterionScore = CompassScorecardCriterionScore & {
|
|
10123
10210
|
__typename?: 'CompassScorecardMetricCriterionScore';
|
|
10124
10211
|
criterionId: Scalars['ID']['output'];
|
|
@@ -11012,6 +11099,10 @@ export declare type CompleteSprintResponse = MutationResponse & {
|
|
|
11012
11099
|
success: Scalars['Boolean']['output'];
|
|
11013
11100
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
11014
11101
|
};
|
|
11102
|
+
export declare enum ComplianceBoundary {
|
|
11103
|
+
Commercial = "COMMERCIAL",
|
|
11104
|
+
FedrampModerate = "FEDRAMP_MODERATE"
|
|
11105
|
+
}
|
|
11015
11106
|
export declare type ComponentApiUpload = {
|
|
11016
11107
|
__typename?: 'ComponentApiUpload';
|
|
11017
11108
|
specUrl: Scalars['String']['output'];
|
|
@@ -11040,21 +11131,6 @@ export declare enum ComponentSyncEventStatus {
|
|
|
11040
11131
|
Success = "SUCCESS",
|
|
11041
11132
|
UserError = "USER_ERROR"
|
|
11042
11133
|
}
|
|
11043
|
-
export declare type ConfigurePolarisRefreshInput = {
|
|
11044
|
-
autoRefreshTimeSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
11045
|
-
clearError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11046
|
-
disable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11047
|
-
project: Scalars['ID']['input'];
|
|
11048
|
-
setError?: InputMaybe<PolarisRefreshError>;
|
|
11049
|
-
subject?: InputMaybe<Scalars['ID']['input']>;
|
|
11050
|
-
timeToLiveSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
11051
|
-
};
|
|
11052
|
-
export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
11053
|
-
__typename?: 'ConfigurePolarisRefreshPayload';
|
|
11054
|
-
errors?: Maybe<Array<MutationError>>;
|
|
11055
|
-
node?: Maybe<Scalars['Int']['output']>;
|
|
11056
|
-
success: Scalars['Boolean']['output'];
|
|
11057
|
-
};
|
|
11058
11134
|
export declare type ConfluenceAdminAnnouncementBanner = {
|
|
11059
11135
|
__typename?: 'ConfluenceAdminAnnouncementBanner';
|
|
11060
11136
|
appearance: Scalars['String']['output'];
|
|
@@ -21553,6 +21629,7 @@ export declare type CreateInvitationUrlPayload = {
|
|
|
21553
21629
|
export declare type CreateJiraPlaybookInput = {
|
|
21554
21630
|
cloudId: Scalars['ID']['input'];
|
|
21555
21631
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
21632
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
21556
21633
|
name: Scalars['String']['input'];
|
|
21557
21634
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
21558
21635
|
scopeType: JiraPlaybookScopeType;
|
|
@@ -21798,6 +21875,7 @@ export declare type CsmAiAction = {
|
|
|
21798
21875
|
description?: Maybe<Scalars['String']['output']>;
|
|
21799
21876
|
id: Scalars['ID']['output'];
|
|
21800
21877
|
isConfirmationRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
21878
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
21801
21879
|
name?: Maybe<Scalars['String']['output']>;
|
|
21802
21880
|
variables?: Maybe<Array<Maybe<CsmAiActionVariable>>>;
|
|
21803
21881
|
};
|
|
@@ -21890,6 +21968,7 @@ export declare type CsmAiCreateActionInput = {
|
|
|
21890
21968
|
authentication: CsmAiAuthenticationInput;
|
|
21891
21969
|
description: Scalars['String']['input'];
|
|
21892
21970
|
isConfirmationRequired: Scalars['Boolean']['input'];
|
|
21971
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
21893
21972
|
name: Scalars['String']['input'];
|
|
21894
21973
|
variables?: InputMaybe<Array<CsmAiActionVariableInput>>;
|
|
21895
21974
|
};
|
|
@@ -21933,6 +22012,10 @@ export declare type CsmAiHub = {
|
|
|
21933
22012
|
agent?: Maybe<CsmAiAgentResult>;
|
|
21934
22013
|
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
21935
22014
|
id: Scalars['ID']['output'];
|
|
22015
|
+
widgets?: Maybe<Array<Maybe<CsmAiWidgetConfigResult>>>;
|
|
22016
|
+
};
|
|
22017
|
+
export declare type CsmAiHubActionsArgs = {
|
|
22018
|
+
filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
21936
22019
|
};
|
|
21937
22020
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
21938
22021
|
export declare type CsmAiKeyValueInput = {
|
|
@@ -21964,6 +22047,7 @@ export declare type CsmAiUpdateActionInput = {
|
|
|
21964
22047
|
authentication?: InputMaybe<CsmAiAuthenticationInput>;
|
|
21965
22048
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21966
22049
|
isConfirmationRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22050
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
21967
22051
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21968
22052
|
variables?: InputMaybe<Array<InputMaybe<CsmAiActionVariableInput>>>;
|
|
21969
22053
|
};
|
|
@@ -22005,6 +22089,78 @@ export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
|
|
|
22005
22089
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfig>>;
|
|
22006
22090
|
success: Scalars['Boolean']['output'];
|
|
22007
22091
|
};
|
|
22092
|
+
export declare type CsmAiUpdateWidgetPayload = Payload & {
|
|
22093
|
+
__typename?: 'CsmAiUpdateWidgetPayload';
|
|
22094
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22095
|
+
success: Scalars['Boolean']['output'];
|
|
22096
|
+
widget?: Maybe<CsmAiWidgetConfig>;
|
|
22097
|
+
};
|
|
22098
|
+
export declare type CsmAiWidgetBrandingAttribution = {
|
|
22099
|
+
__typename?: 'CsmAiWidgetBrandingAttribution';
|
|
22100
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
22101
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
22102
|
+
};
|
|
22103
|
+
export declare type CsmAiWidgetBrandingAttributionInput = {
|
|
22104
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
22105
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
22106
|
+
};
|
|
22107
|
+
export declare enum CsmAiWidgetBrandingChatColorVibeVariant {
|
|
22108
|
+
Dark = "DARK",
|
|
22109
|
+
Default = "DEFAULT",
|
|
22110
|
+
Light = "LIGHT",
|
|
22111
|
+
Vibrant = "VIBRANT"
|
|
22112
|
+
}
|
|
22113
|
+
export declare enum CsmAiWidgetBrandingColorVibeVariant {
|
|
22114
|
+
Dark = "DARK",
|
|
22115
|
+
Light = "LIGHT",
|
|
22116
|
+
Vibrant = "VIBRANT"
|
|
22117
|
+
}
|
|
22118
|
+
export declare enum CsmAiWidgetBrandingRadius {
|
|
22119
|
+
Normal = "NORMAL",
|
|
22120
|
+
Rounded = "ROUNDED",
|
|
22121
|
+
Sharp = "SHARP"
|
|
22122
|
+
}
|
|
22123
|
+
export declare enum CsmAiWidgetBrandingSpaceVariant {
|
|
22124
|
+
Comfortable = "COMFORTABLE",
|
|
22125
|
+
Cosy = "COSY",
|
|
22126
|
+
Generous = "GENEROUS"
|
|
22127
|
+
}
|
|
22128
|
+
export declare type CsmAiWidgetBrandingTheme = {
|
|
22129
|
+
__typename?: 'CsmAiWidgetBrandingTheme';
|
|
22130
|
+
attribution?: Maybe<CsmAiWidgetBrandingAttribution>;
|
|
22131
|
+
chatColor?: Maybe<CsmAiWidgetBrandingChatColorVibeVariant>;
|
|
22132
|
+
colorVibeVariant?: Maybe<CsmAiWidgetBrandingColorVibeVariant>;
|
|
22133
|
+
radius?: Maybe<CsmAiWidgetBrandingRadius>;
|
|
22134
|
+
space?: Maybe<CsmAiWidgetBrandingSpaceVariant>;
|
|
22135
|
+
};
|
|
22136
|
+
export declare type CsmAiWidgetBrandingThemeUpdateInput = {
|
|
22137
|
+
attribution?: InputMaybe<CsmAiWidgetBrandingAttributionInput>;
|
|
22138
|
+
chatColor: CsmAiWidgetBrandingChatColorVibeVariant;
|
|
22139
|
+
colorVibeVariant: CsmAiWidgetBrandingColorVibeVariant;
|
|
22140
|
+
radius: CsmAiWidgetBrandingRadius;
|
|
22141
|
+
space: CsmAiWidgetBrandingSpaceVariant;
|
|
22142
|
+
};
|
|
22143
|
+
export declare type CsmAiWidgetConfig = {
|
|
22144
|
+
__typename?: 'CsmAiWidgetConfig';
|
|
22145
|
+
allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
|
|
22146
|
+
id: Scalars['ID']['output'];
|
|
22147
|
+
isAnonymousAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22148
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22149
|
+
theme?: Maybe<CsmAiWidgetBrandingTheme>;
|
|
22150
|
+
type: CsmAiWidgetType;
|
|
22151
|
+
};
|
|
22152
|
+
export declare type CsmAiWidgetConfigResult = CsmAiWidgetConfig | QueryError;
|
|
22153
|
+
export declare enum CsmAiWidgetType {
|
|
22154
|
+
Embed = "EMBED",
|
|
22155
|
+
SupportSite = "SUPPORT_SITE"
|
|
22156
|
+
}
|
|
22157
|
+
export declare type CsmAiWidgetUpdateInput = {
|
|
22158
|
+
allowedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
22159
|
+
isAnonymousAccessEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22160
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22161
|
+
theme?: InputMaybe<CsmAiWidgetBrandingThemeUpdateInput>;
|
|
22162
|
+
type: CsmAiWidgetType;
|
|
22163
|
+
};
|
|
22008
22164
|
export declare type CumulativeFlowDiagram = {
|
|
22009
22165
|
__typename?: 'CumulativeFlowDiagram';
|
|
22010
22166
|
chart: CfdChartConnection;
|
|
@@ -24350,6 +24506,42 @@ export declare type DevAiWorkspace = {
|
|
|
24350
24506
|
status?: Maybe<Scalars['String']['output']>;
|
|
24351
24507
|
workspaceAri: Scalars['ID']['output'];
|
|
24352
24508
|
};
|
|
24509
|
+
export declare type DevConsoleCreateDeveloperSpaceInput = {
|
|
24510
|
+
name: Scalars['String']['input'];
|
|
24511
|
+
};
|
|
24512
|
+
export declare type DevConsoleDeveloperSpace = {
|
|
24513
|
+
__typename?: 'DevConsoleDeveloperSpace';
|
|
24514
|
+
id: Scalars['String']['output'];
|
|
24515
|
+
name: Scalars['String']['output'];
|
|
24516
|
+
status: Scalars['String']['output'];
|
|
24517
|
+
type: DevConsoleDeveloperSpaceType;
|
|
24518
|
+
version: Scalars['Int']['output'];
|
|
24519
|
+
versionId: Scalars['Int']['output'];
|
|
24520
|
+
};
|
|
24521
|
+
export declare type DevConsoleDeveloperSpaceDetails = {
|
|
24522
|
+
__typename?: 'DevConsoleDeveloperSpaceDetails';
|
|
24523
|
+
logo?: Maybe<Scalars['String']['output']>;
|
|
24524
|
+
name: Scalars['String']['output'];
|
|
24525
|
+
};
|
|
24526
|
+
export declare enum DevConsoleDeveloperSpaceType {
|
|
24527
|
+
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
24528
|
+
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
24529
|
+
}
|
|
24530
|
+
export declare type DevConsoleMutation = {
|
|
24531
|
+
__typename?: 'DevConsoleMutation';
|
|
24532
|
+
createDeveloperSpace: DevConsoleDeveloperSpace;
|
|
24533
|
+
};
|
|
24534
|
+
export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
24535
|
+
input: DevConsoleCreateDeveloperSpaceInput;
|
|
24536
|
+
};
|
|
24537
|
+
export declare type DevConsoleQuery = {
|
|
24538
|
+
__typename?: 'DevConsoleQuery';
|
|
24539
|
+
getDeveloperSpaceDetails: DevConsoleDeveloperSpaceDetails;
|
|
24540
|
+
getDeveloperSpaceWithLinkingAccess: Array<Maybe<Scalars['String']['output']>>;
|
|
24541
|
+
};
|
|
24542
|
+
export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
24543
|
+
developerSpaceId: Scalars['String']['input'];
|
|
24544
|
+
};
|
|
24353
24545
|
export declare type DevOps = {
|
|
24354
24546
|
__typename?: 'DevOps';
|
|
24355
24547
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -26030,6 +26222,7 @@ export declare type EcosystemMutation = {
|
|
|
26030
26222
|
createAppVersionRollout?: Maybe<CreateAppVersionRolloutPayload>;
|
|
26031
26223
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
26032
26224
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
26225
|
+
devConsole?: Maybe<DevConsoleMutation>;
|
|
26033
26226
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
26034
26227
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
26035
26228
|
publishAppClientEvent?: Maybe<EcosystemPublishEventBody>;
|
|
@@ -26134,6 +26327,7 @@ export declare type EcosystemQuery = {
|
|
|
26134
26327
|
appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
|
|
26135
26328
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
26136
26329
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
26330
|
+
devConsole?: Maybe<DevConsoleQuery>;
|
|
26137
26331
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
26138
26332
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
26139
26333
|
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
@@ -32874,8 +33068,6 @@ export declare type GraphStore = {
|
|
|
32874
33068
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
32875
33069
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
32876
33070
|
componentLinkIsJiraProjectInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection>;
|
|
32877
|
-
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
32878
|
-
componentLinkIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection>;
|
|
32879
33071
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
32880
33072
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
32881
33073
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -33331,6 +33523,7 @@ export declare type GraphStore = {
|
|
|
33331
33523
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
33332
33524
|
thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
|
|
33333
33525
|
topicHasRelatedEntity?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
33526
|
+
topicHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection>;
|
|
33334
33527
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
33335
33528
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
33336
33529
|
userAssignedIssue?: Maybe<GraphStoreSimplifiedUserAssignedIssueConnection>;
|
|
@@ -33981,20 +34174,6 @@ export declare type GraphStoreComponentLinkIsJiraProjectInverseArgs = {
|
|
|
33981
34174
|
id: Scalars['ID']['input'];
|
|
33982
34175
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
33983
34176
|
};
|
|
33984
|
-
export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
33985
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33986
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33987
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33988
|
-
id: Scalars['ID']['input'];
|
|
33989
|
-
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
33990
|
-
};
|
|
33991
|
-
export declare type GraphStoreComponentLinkIsProviderRepoInverseArgs = {
|
|
33992
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33993
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33994
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33995
|
-
id: Scalars['ID']['input'];
|
|
33996
|
-
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
33997
|
-
};
|
|
33998
34177
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
33999
34178
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34000
34179
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36976,6 +37155,13 @@ export declare type GraphStoreTopicHasRelatedEntityArgs = {
|
|
|
36976
37155
|
id: Scalars['ID']['input'];
|
|
36977
37156
|
sort?: InputMaybe<GraphStoreTopicHasRelatedEntitySortInput>;
|
|
36978
37157
|
};
|
|
37158
|
+
export declare type GraphStoreTopicHasRelatedEntityInverseArgs = {
|
|
37159
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37160
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37161
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37162
|
+
id: Scalars['ID']['input'];
|
|
37163
|
+
sort?: InputMaybe<GraphStoreTopicHasRelatedEntitySortInput>;
|
|
37164
|
+
};
|
|
36979
37165
|
export declare type GraphStoreUserAssignedIncidentArgs = {
|
|
36980
37166
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36981
37167
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39641,9 +39827,6 @@ export declare type GraphStoreComponentImpactedByIncidentSortInput = {
|
|
|
39641
39827
|
export declare type GraphStoreComponentLinkIsJiraProjectSortInput = {
|
|
39642
39828
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39643
39829
|
};
|
|
39644
|
-
export declare type GraphStoreComponentLinkIsProviderRepoSortInput = {
|
|
39645
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39646
|
-
};
|
|
39647
39830
|
export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
39648
39831
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
39649
39832
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40165,7 +40348,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
40165
40348
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
40166
40349
|
id: Scalars['ID']['output'];
|
|
40167
40350
|
};
|
|
40168
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40351
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40169
40352
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
40170
40353
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
40171
40354
|
value: Scalars['Int']['output'];
|
|
@@ -40200,7 +40383,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
40200
40383
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
40201
40384
|
id: Scalars['ID']['output'];
|
|
40202
40385
|
};
|
|
40203
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40386
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40204
40387
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
40205
40388
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
40206
40389
|
value: Scalars['String']['output'];
|
|
@@ -40210,19 +40393,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
40210
40393
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
40211
40394
|
id: Scalars['ID']['output'];
|
|
40212
40395
|
};
|
|
40213
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40396
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40214
40397
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
40215
40398
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
40216
40399
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
40217
40400
|
id: Scalars['ID']['output'];
|
|
40218
40401
|
};
|
|
40219
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40402
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40220
40403
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
40221
40404
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
40222
40405
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
40223
40406
|
id: Scalars['ID']['output'];
|
|
40224
40407
|
};
|
|
40225
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40408
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40226
40409
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
40227
40410
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
40228
40411
|
value: Scalars['Boolean']['output'];
|
|
@@ -40321,7 +40504,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
40321
40504
|
V2 = "V2",
|
|
40322
40505
|
V3 = "V3"
|
|
40323
40506
|
}
|
|
40324
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40507
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40325
40508
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
40326
40509
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
40327
40510
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -46126,34 +46309,6 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge =
|
|
|
46126
46309
|
};
|
|
46127
46310
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion = CompassLinkNode;
|
|
46128
46311
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
|
|
46129
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
|
|
46130
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
|
|
46131
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoEdge>>>;
|
|
46132
|
-
pageInfo: PageInfo;
|
|
46133
|
-
};
|
|
46134
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
|
|
46135
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoEdge';
|
|
46136
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46137
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46138
|
-
id: Scalars['ID']['output'];
|
|
46139
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46140
|
-
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
|
|
46141
|
-
};
|
|
46142
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection = HasPageInfo & {
|
|
46143
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection';
|
|
46144
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge>>>;
|
|
46145
|
-
pageInfo: PageInfo;
|
|
46146
|
-
};
|
|
46147
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge = {
|
|
46148
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge';
|
|
46149
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46150
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46151
|
-
id: Scalars['ID']['output'];
|
|
46152
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46153
|
-
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion>;
|
|
46154
|
-
};
|
|
46155
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion = CompassLinkNode;
|
|
46156
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
|
|
46157
46312
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
46158
46313
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
46159
46314
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkedJswIssueEdge>>>;
|
|
@@ -50419,6 +50574,20 @@ export declare type GraphStoreSimplifiedTopicHasRelatedEntityEdge = {
|
|
|
50419
50574
|
lastUpdated: Scalars['DateTime']['output'];
|
|
50420
50575
|
node?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityUnion>;
|
|
50421
50576
|
};
|
|
50577
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection = HasPageInfo & {
|
|
50578
|
+
__typename?: 'GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection';
|
|
50579
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge>>>;
|
|
50580
|
+
pageInfo: PageInfo;
|
|
50581
|
+
};
|
|
50582
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge = {
|
|
50583
|
+
__typename?: 'GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge';
|
|
50584
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50585
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50586
|
+
id: Scalars['ID']['output'];
|
|
50587
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50588
|
+
node?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseUnion>;
|
|
50589
|
+
};
|
|
50590
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseUnion = KnowledgeDiscoveryTopicByAri;
|
|
50422
50591
|
export declare type GraphStoreSimplifiedTopicHasRelatedEntityUnion = AppUser | AtlassianAccountUser | ConfluenceBlogPost | ConfluencePage | CustomerUser;
|
|
50423
50592
|
export declare type GraphStoreSimplifiedUserAssignedIncidentConnection = HasPageInfo & {
|
|
50424
50593
|
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentConnection';
|
|
@@ -58663,6 +58832,7 @@ export declare enum JiraBoardType {
|
|
|
58663
58832
|
}
|
|
58664
58833
|
export declare type JiraBoardView = {
|
|
58665
58834
|
__typename?: 'JiraBoardView';
|
|
58835
|
+
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
58666
58836
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
58667
58837
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
58668
58838
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
@@ -58674,6 +58844,7 @@ export declare type JiraBoardView = {
|
|
|
58674
58844
|
id: Scalars['ID']['output'];
|
|
58675
58845
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
58676
58846
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
58847
|
+
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
58677
58848
|
};
|
|
58678
58849
|
export declare type JiraBoardViewCardOptionsArgs = {
|
|
58679
58850
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58697,8 +58868,13 @@ export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
|
58697
58868
|
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
58698
58869
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
58699
58870
|
};
|
|
58871
|
+
export declare type JiraBoardViewUnmappedStatusesArgs = {
|
|
58872
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58873
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58874
|
+
};
|
|
58700
58875
|
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
58701
58876
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
58877
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58702
58878
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58703
58879
|
id: Scalars['ID']['output'];
|
|
58704
58880
|
user?: Maybe<User>;
|
|
@@ -58721,11 +58897,13 @@ export declare type JiraBoardViewCardOptionEdge = {
|
|
|
58721
58897
|
};
|
|
58722
58898
|
export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & {
|
|
58723
58899
|
__typename?: 'JiraBoardViewCategoryColumn';
|
|
58900
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58724
58901
|
category?: Maybe<JiraOption>;
|
|
58725
58902
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58726
58903
|
id: Scalars['ID']['output'];
|
|
58727
58904
|
};
|
|
58728
58905
|
export declare type JiraBoardViewColumn = {
|
|
58906
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58729
58907
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58730
58908
|
id: Scalars['ID']['output'];
|
|
58731
58909
|
};
|
|
@@ -58754,6 +58932,7 @@ export declare type JiraBoardViewInput = {
|
|
|
58754
58932
|
};
|
|
58755
58933
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
58756
58934
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
58935
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58757
58936
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58758
58937
|
id: Scalars['ID']['output'];
|
|
58759
58938
|
priority?: Maybe<JiraPriority>;
|
|
@@ -58771,18 +58950,45 @@ export declare type JiraBoardViewSettings = {
|
|
|
58771
58950
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
58772
58951
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
58773
58952
|
};
|
|
58953
|
+
export declare type JiraBoardViewStatus = {
|
|
58954
|
+
__typename?: 'JiraBoardViewStatus';
|
|
58955
|
+
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
58956
|
+
id: Scalars['ID']['output'];
|
|
58957
|
+
status?: Maybe<JiraStatus>;
|
|
58958
|
+
};
|
|
58959
|
+
export declare type JiraBoardViewStatusAssociatedIssueTypesArgs = {
|
|
58960
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58961
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58962
|
+
};
|
|
58774
58963
|
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
58775
58964
|
__typename?: 'JiraBoardViewStatusColumn';
|
|
58965
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58776
58966
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58777
58967
|
id: Scalars['ID']['output'];
|
|
58968
|
+
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
58778
58969
|
name?: Maybe<Scalars['String']['output']>;
|
|
58779
58970
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
58780
58971
|
};
|
|
58972
|
+
export declare type JiraBoardViewStatusColumnMappedStatusesArgs = {
|
|
58973
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58974
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58975
|
+
};
|
|
58781
58976
|
export declare type JiraBoardViewStatusColumnMapping = {
|
|
58782
58977
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
58783
58978
|
name: Scalars['String']['input'];
|
|
58784
58979
|
statusIds: Array<Scalars['ID']['input']>;
|
|
58785
58980
|
};
|
|
58981
|
+
export declare type JiraBoardViewStatusConnection = {
|
|
58982
|
+
__typename?: 'JiraBoardViewStatusConnection';
|
|
58983
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewStatusEdge>>>;
|
|
58984
|
+
errors?: Maybe<Array<QueryError>>;
|
|
58985
|
+
pageInfo?: Maybe<PageInfo>;
|
|
58986
|
+
};
|
|
58987
|
+
export declare type JiraBoardViewStatusEdge = {
|
|
58988
|
+
__typename?: 'JiraBoardViewStatusEdge';
|
|
58989
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58990
|
+
node?: Maybe<JiraBoardViewStatus>;
|
|
58991
|
+
};
|
|
58786
58992
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
58787
58993
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
58788
58994
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -60447,6 +60653,10 @@ export declare type JiraCreateEmptyActivityConfigurationInput = {
|
|
|
60447
60653
|
journeyVersion: Scalars['Long']['input'];
|
|
60448
60654
|
name: Scalars['String']['input'];
|
|
60449
60655
|
};
|
|
60656
|
+
export declare type JiraCreateFieldSchemeInput = {
|
|
60657
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
60658
|
+
name: Scalars['String']['input'];
|
|
60659
|
+
};
|
|
60450
60660
|
export declare type JiraCreateFormattingRuleInput = {
|
|
60451
60661
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
60452
60662
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -60937,6 +61147,15 @@ export declare type JiraDeleteCustomFilterPayload = Payload & {
|
|
|
60937
61147
|
errors?: Maybe<Array<MutationError>>;
|
|
60938
61148
|
success: Scalars['Boolean']['output'];
|
|
60939
61149
|
};
|
|
61150
|
+
export declare type JiraDeleteFieldSchemeInput = {
|
|
61151
|
+
schemeId: Scalars['ID']['input'];
|
|
61152
|
+
};
|
|
61153
|
+
export declare type JiraDeleteFieldSchemePayload = Payload & {
|
|
61154
|
+
__typename?: 'JiraDeleteFieldSchemePayload';
|
|
61155
|
+
affectedSchemeId?: Maybe<Scalars['ID']['output']>;
|
|
61156
|
+
errors?: Maybe<Array<MutationError>>;
|
|
61157
|
+
success: Scalars['Boolean']['output'];
|
|
61158
|
+
};
|
|
60940
61159
|
export declare type JiraDeleteFormattingRuleInput = {
|
|
60941
61160
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
60942
61161
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -61009,6 +61228,7 @@ export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView &
|
|
|
61009
61228
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
61010
61229
|
issues?: Maybe<JiraIssueConnection>;
|
|
61011
61230
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
61231
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
61012
61232
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
61013
61233
|
};
|
|
61014
61234
|
export declare type JiraDetailedViewFieldSetsArgs = {
|
|
@@ -61019,6 +61239,9 @@ export declare type JiraDetailedViewFieldSetsArgs = {
|
|
|
61019
61239
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61020
61240
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61021
61241
|
};
|
|
61242
|
+
export declare type JiraDetailedViewHasDefaultFieldSetsArgs = {
|
|
61243
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61244
|
+
};
|
|
61022
61245
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
61023
61246
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61024
61247
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -61444,6 +61667,11 @@ export declare type JiraEditCustomFieldPayload = Payload & {
|
|
|
61444
61667
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
61445
61668
|
success: Scalars['Boolean']['output'];
|
|
61446
61669
|
};
|
|
61670
|
+
export declare type JiraEditFieldSchemeInput = {
|
|
61671
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
61672
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
61673
|
+
schemeId: Scalars['ID']['input'];
|
|
61674
|
+
};
|
|
61447
61675
|
export declare enum JiraEmailMimeType {
|
|
61448
61676
|
Html = "HTML",
|
|
61449
61677
|
Text = "TEXT"
|
|
@@ -61818,6 +62046,15 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
61818
62046
|
Allow = "ALLOW",
|
|
61819
62047
|
Exclude = "EXCLUDE"
|
|
61820
62048
|
}
|
|
62049
|
+
export declare type JiraFieldSchemePayload = Payload & {
|
|
62050
|
+
__typename?: 'JiraFieldSchemePayload';
|
|
62051
|
+
errors?: Maybe<Array<MutationError>>;
|
|
62052
|
+
fieldScheme?: Maybe<JiraFieldConfigScheme>;
|
|
62053
|
+
success: Scalars['Boolean']['output'];
|
|
62054
|
+
};
|
|
62055
|
+
export declare type JiraFieldSchemesInput = {
|
|
62056
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
62057
|
+
};
|
|
61821
62058
|
export declare type JiraFieldSearcherTemplate = {
|
|
61822
62059
|
__typename?: 'JiraFieldSearcherTemplate';
|
|
61823
62060
|
displayName: Scalars['String']['output'];
|
|
@@ -61838,6 +62075,10 @@ export declare type JiraFieldSetPreferences = {
|
|
|
61838
62075
|
__typename?: 'JiraFieldSetPreferences';
|
|
61839
62076
|
width?: Maybe<Scalars['Int']['output']>;
|
|
61840
62077
|
};
|
|
62078
|
+
export declare type JiraFieldSetPreferencesInput = {
|
|
62079
|
+
fieldSetId: Scalars['String']['input'];
|
|
62080
|
+
width?: InputMaybe<Scalars['Int']['input']>;
|
|
62081
|
+
};
|
|
61841
62082
|
export declare type JiraFieldSetPreferencesMutationInput = {
|
|
61842
62083
|
nodes?: InputMaybe<Array<JiraUpdateFieldSetPreferencesInput>>;
|
|
61843
62084
|
};
|
|
@@ -61860,10 +62101,14 @@ export declare type JiraFieldSetViewFieldSetsArgs = {
|
|
|
61860
62101
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61861
62102
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61862
62103
|
};
|
|
62104
|
+
export declare type JiraFieldSetViewHasDefaultFieldSetsArgs = {
|
|
62105
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62106
|
+
};
|
|
61863
62107
|
export declare type JiraFieldSetViewResult = JiraFieldSetView | QueryError;
|
|
61864
62108
|
export declare type JiraFieldSetsMutationInput = {
|
|
61865
62109
|
replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
61866
62110
|
resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62111
|
+
scopedResetToDefaultFieldSets?: InputMaybe<JiraScopedResetFieldsetsInput>;
|
|
61867
62112
|
};
|
|
61868
62113
|
export declare type JiraFieldSetsViewMetadata = {
|
|
61869
62114
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -61878,6 +62123,9 @@ export declare type JiraFieldSetsViewMetadataFieldSetsArgs = {
|
|
|
61878
62123
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61879
62124
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61880
62125
|
};
|
|
62126
|
+
export declare type JiraFieldSetsViewMetadataHasDefaultFieldSetsArgs = {
|
|
62127
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62128
|
+
};
|
|
61881
62129
|
export declare type JiraFieldSetsViewPayload = Payload & {
|
|
61882
62130
|
__typename?: 'JiraFieldSetsViewPayload';
|
|
61883
62131
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -62692,7 +62940,6 @@ export declare type JiraGroup = Node & {
|
|
|
62692
62940
|
name: Scalars['String']['output'];
|
|
62693
62941
|
};
|
|
62694
62942
|
export declare type JiraGroupByDropdownFilter = {
|
|
62695
|
-
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
62696
62943
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
62697
62944
|
};
|
|
62698
62945
|
export declare type JiraGroupConnection = {
|
|
@@ -62726,6 +62973,7 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpre
|
|
|
62726
62973
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62727
62974
|
jql?: Maybe<Scalars['String']['output']>;
|
|
62728
62975
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
62976
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
62729
62977
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
62730
62978
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
62731
62979
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
@@ -62749,6 +62997,9 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
62749
62997
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62750
62998
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62751
62999
|
};
|
|
63000
|
+
export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
63001
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
63002
|
+
};
|
|
62752
63003
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
62753
63004
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
62754
63005
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -64287,6 +64538,9 @@ export declare type JiraIssueSearchScope = {
|
|
|
64287
64538
|
operationScope?: InputMaybe<JiraIssueSearchOperationScope>;
|
|
64288
64539
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
64289
64540
|
};
|
|
64541
|
+
export declare type JiraIssueSearchSettings = {
|
|
64542
|
+
hideDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64543
|
+
};
|
|
64290
64544
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
64291
64545
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64292
64546
|
isHideDoneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -64315,6 +64569,9 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
64315
64569
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64316
64570
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64317
64571
|
};
|
|
64572
|
+
export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
|
|
64573
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64574
|
+
};
|
|
64318
64575
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
64319
64576
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
64320
64577
|
};
|
|
@@ -64402,6 +64659,9 @@ export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
|
64402
64659
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64403
64660
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64404
64661
|
};
|
|
64662
|
+
export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
|
|
64663
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64664
|
+
};
|
|
64405
64665
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
64406
64666
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
64407
64667
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -65638,6 +65898,7 @@ export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheet
|
|
|
65638
65898
|
issues?: Maybe<JiraIssueConnection>;
|
|
65639
65899
|
jql?: Maybe<Scalars['String']['output']>;
|
|
65640
65900
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
65901
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
65641
65902
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
65642
65903
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
65643
65904
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
@@ -65650,6 +65911,9 @@ export declare type JiraListViewFieldSetsArgs = {
|
|
|
65650
65911
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65651
65912
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
65652
65913
|
};
|
|
65914
|
+
export declare type JiraListViewHasDefaultFieldSetsArgs = {
|
|
65915
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
65916
|
+
};
|
|
65653
65917
|
export declare type JiraListViewIssuesArgs = {
|
|
65654
65918
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65655
65919
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65665,6 +65929,7 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
65665
65929
|
export declare type JiraListViewViewSettingsArgs = {
|
|
65666
65930
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
65667
65931
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
65932
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
65668
65933
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
65669
65934
|
};
|
|
65670
65935
|
export declare type JiraLongRunningTaskProgress = {
|
|
@@ -67931,6 +68196,7 @@ export declare type JiraPlaybook = Node & {
|
|
|
67931
68196
|
__typename?: 'JiraPlaybook';
|
|
67932
68197
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
67933
68198
|
id: Scalars['ID']['output'];
|
|
68199
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
67934
68200
|
name?: Maybe<Scalars['String']['output']>;
|
|
67935
68201
|
owner?: Maybe<User>;
|
|
67936
68202
|
scopeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -67951,6 +68217,13 @@ export declare type JiraPlaybookEdge = {
|
|
|
67951
68217
|
cursor: Scalars['String']['output'];
|
|
67952
68218
|
node?: Maybe<JiraPlaybook>;
|
|
67953
68219
|
};
|
|
68220
|
+
export declare type JiraPlaybookExecutionFilter = {
|
|
68221
|
+
contextId?: InputMaybe<Scalars['String']['input']>;
|
|
68222
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68223
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
68224
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68225
|
+
status?: InputMaybe<Array<JiraPlaybookStepRunStatus>>;
|
|
68226
|
+
};
|
|
67954
68227
|
export declare type JiraPlaybookFilter = {
|
|
67955
68228
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
67956
68229
|
};
|
|
@@ -68958,6 +69231,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
68958
69231
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
68959
69232
|
mostRecent?: Maybe<JiraProject>;
|
|
68960
69233
|
mostRecentFromHistory?: Maybe<JiraProject>;
|
|
69234
|
+
otherItems?: Maybe<JiraProjectConnection>;
|
|
68961
69235
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
68962
69236
|
recents?: Maybe<JiraProjectConnection>;
|
|
68963
69237
|
};
|
|
@@ -68975,6 +69249,10 @@ export declare type JiraProjectsSidebarMenuMoreRecentsArgs = {
|
|
|
68975
69249
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68976
69250
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68977
69251
|
};
|
|
69252
|
+
export declare type JiraProjectsSidebarMenuOtherItemsArgs = {
|
|
69253
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69254
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69255
|
+
};
|
|
68978
69256
|
export declare type JiraProjectsSidebarMenuRecentsArgs = {
|
|
68979
69257
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68980
69258
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69153,6 +69431,7 @@ export declare type JiraQuery = {
|
|
|
69153
69431
|
jwmSavedViewsByProject?: Maybe<JiraNavigationItemConnection>;
|
|
69154
69432
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
69155
69433
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
69434
|
+
labelsInBoard?: Maybe<JiraLabelConnection>;
|
|
69156
69435
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
69157
69436
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
69158
69437
|
mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -69879,6 +70158,9 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
|
69879
70158
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
69880
70159
|
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
69881
70160
|
};
|
|
70161
|
+
export declare type JiraQueryLabelsInBoardArgs = {
|
|
70162
|
+
boardId: Scalars['ID']['input'];
|
|
70163
|
+
};
|
|
69882
70164
|
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
69883
70165
|
cloudId: Scalars['ID']['input'];
|
|
69884
70166
|
};
|
|
@@ -71085,6 +71367,10 @@ export declare type JiraScmRepository = {
|
|
|
71085
71367
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
71086
71368
|
name?: Maybe<Scalars['String']['output']>;
|
|
71087
71369
|
};
|
|
71370
|
+
export declare type JiraScopedResetFieldsetsInput = {
|
|
71371
|
+
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
71372
|
+
doReset?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71373
|
+
};
|
|
71088
71374
|
export declare type JiraScreen = Node & {
|
|
71089
71375
|
__typename?: 'JiraScreen';
|
|
71090
71376
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -72460,6 +72746,15 @@ export declare type JiraSetFieldAssociationWithIssueTypesPayload = Payload & {
|
|
|
72460
72746
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
72461
72747
|
success: Scalars['Boolean']['output'];
|
|
72462
72748
|
};
|
|
72749
|
+
export declare type JiraSetFieldSetsPreferencesInput = {
|
|
72750
|
+
fieldSetsPreferences?: InputMaybe<Array<JiraFieldSetPreferencesInput>>;
|
|
72751
|
+
viewId: Scalars['ID']['input'];
|
|
72752
|
+
};
|
|
72753
|
+
export declare type JiraSetFieldSetsPreferencesPayload = Payload & {
|
|
72754
|
+
__typename?: 'JiraSetFieldSetsPreferencesPayload';
|
|
72755
|
+
errors?: Maybe<Array<MutationError>>;
|
|
72756
|
+
success: Scalars['Boolean']['output'];
|
|
72757
|
+
};
|
|
72463
72758
|
export declare type JiraSetIsFavouriteInput = {
|
|
72464
72759
|
beforeEntityId?: InputMaybe<Scalars['ID']['input']>;
|
|
72465
72760
|
entityId: Scalars['ID']['input'];
|
|
@@ -72955,6 +73250,7 @@ export declare type JiraSpreadsheetGroupIssuesArgs = {
|
|
|
72955
73250
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72956
73251
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
72957
73252
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
73253
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
72958
73254
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
72959
73255
|
};
|
|
72960
73256
|
export declare type JiraSpreadsheetGroupByConfig = {
|
|
@@ -73024,6 +73320,9 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
73024
73320
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
73025
73321
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73026
73322
|
};
|
|
73323
|
+
export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
73324
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73325
|
+
};
|
|
73027
73326
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
73028
73327
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
73029
73328
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -77111,6 +77410,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
77111
77410
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
77112
77411
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
77113
77412
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
77413
|
+
topicsByAris?: Maybe<Array<Maybe<KnowledgeDiscoveryTopicByAri>>>;
|
|
77114
77414
|
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
77115
77415
|
};
|
|
77116
77416
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
@@ -77211,6 +77511,9 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
77211
77511
|
id: Scalars['String']['input'];
|
|
77212
77512
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
77213
77513
|
};
|
|
77514
|
+
export declare type KnowledgeDiscoveryQueryApiTopicsByArisArgs = {
|
|
77515
|
+
ids: Array<Scalars['ID']['input']>;
|
|
77516
|
+
};
|
|
77214
77517
|
export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
77215
77518
|
cloudId: Scalars['String']['input'];
|
|
77216
77519
|
};
|
|
@@ -77294,6 +77597,20 @@ export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
|
77294
77597
|
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
77295
77598
|
updatedAt: Scalars['String']['output'];
|
|
77296
77599
|
};
|
|
77600
|
+
export declare type KnowledgeDiscoveryTopicByAri = Node & {
|
|
77601
|
+
__typename?: 'KnowledgeDiscoveryTopicByAri';
|
|
77602
|
+
description: Scalars['String']['output'];
|
|
77603
|
+
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
77604
|
+
id: Scalars['ID']['output'];
|
|
77605
|
+
name: Scalars['String']['output'];
|
|
77606
|
+
relatedEntities?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
77607
|
+
relatedQuestion?: Maybe<Scalars['String']['output']>;
|
|
77608
|
+
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
77609
|
+
updatedAt: Scalars['String']['output'];
|
|
77610
|
+
};
|
|
77611
|
+
export declare type KnowledgeDiscoveryTopicByAriRelatedEntitiesArgs = {
|
|
77612
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77613
|
+
};
|
|
77297
77614
|
export declare type KnowledgeDiscoveryTopicResult = KnowledgeDiscoveryTopic | QueryError;
|
|
77298
77615
|
export declare enum KnowledgeDiscoveryTopicType {
|
|
77299
77616
|
Area = "AREA",
|
|
@@ -78278,6 +78595,7 @@ export declare type MarketplaceAppVersionEdge = {
|
|
|
78278
78595
|
};
|
|
78279
78596
|
export declare type MarketplaceAppVersionFilter = {
|
|
78280
78597
|
cloudAppVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
78598
|
+
cloudComplianceBoundary?: InputMaybe<Array<InputMaybe<ComplianceBoundary>>>;
|
|
78281
78599
|
excludeHiddenIn?: InputMaybe<MarketplaceLocation>;
|
|
78282
78600
|
productHostingOptions?: InputMaybe<Array<AtlassianProductHostingType>>;
|
|
78283
78601
|
visibility?: InputMaybe<MarketplaceAppVersionVisibility>;
|
|
@@ -81112,6 +81430,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
81112
81430
|
ari: Scalars['String']['output'];
|
|
81113
81431
|
changeSummary?: Maybe<MercuryChangeSummary>;
|
|
81114
81432
|
createdDate: Scalars['String']['output'];
|
|
81433
|
+
draft: Scalars['Boolean']['output'];
|
|
81115
81434
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
81116
81435
|
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
81117
81436
|
focusAreaStatusUpdates?: Maybe<MercuryFocusAreaStatusUpdateConnection>;
|
|
@@ -83192,6 +83511,7 @@ export declare type Mutation = {
|
|
|
83192
83511
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
83193
83512
|
appStorage?: Maybe<AppStorageMutation>;
|
|
83194
83513
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
83514
|
+
appStorage_admin?: Maybe<AppStorageAdminMutation>;
|
|
83195
83515
|
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
83196
83516
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
83197
83517
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
@@ -83216,7 +83536,6 @@ export declare type Mutation = {
|
|
|
83216
83536
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
83217
83537
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
83218
83538
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
83219
|
-
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
83220
83539
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
83221
83540
|
confluenceLegacy_activatePaywallContent?: Maybe<ConfluenceLegacyActivatePaywallContentPayload>;
|
|
83222
83541
|
confluenceLegacy_addDefaultExCoSpacePermissions?: Maybe<ConfluenceLegacyAddDefaultExCoSpacePermissionsPayload>;
|
|
@@ -83471,6 +83790,7 @@ export declare type Mutation = {
|
|
|
83471
83790
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
83472
83791
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
83473
83792
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
83793
|
+
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
83474
83794
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
83475
83795
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
83476
83796
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -83557,10 +83877,13 @@ export declare type Mutation = {
|
|
|
83557
83877
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
83558
83878
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
83559
83879
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
83880
|
+
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
83560
83881
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
83561
83882
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
83883
|
+
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
83562
83884
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
83563
83885
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
83886
|
+
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
83564
83887
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
83565
83888
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
83566
83889
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
@@ -83576,6 +83899,7 @@ export declare type Mutation = {
|
|
|
83576
83899
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
83577
83900
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
83578
83901
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
83902
|
+
jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
|
|
83579
83903
|
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
83580
83904
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
83581
83905
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
@@ -83891,6 +84215,9 @@ export declare type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs =
|
|
|
83891
84215
|
containerId: Scalars['String']['input'];
|
|
83892
84216
|
scenarioIds: Array<Scalars['ID']['input']>;
|
|
83893
84217
|
};
|
|
84218
|
+
export declare type MutationAppStorage_AdminArgs = {
|
|
84219
|
+
appId: Scalars['ID']['input'];
|
|
84220
|
+
};
|
|
83894
84221
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
83895
84222
|
input: ApplyPolarisProjectTemplateInput;
|
|
83896
84223
|
};
|
|
@@ -83945,11 +84272,10 @@ export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
|
83945
84272
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
83946
84273
|
};
|
|
83947
84274
|
export declare type MutationChannelPlatform_CreateAttendeeArgs = {
|
|
83948
|
-
|
|
84275
|
+
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
83949
84276
|
};
|
|
83950
84277
|
export declare type MutationChannelPlatform_CreateMeetingDetailsArgs = {
|
|
83951
84278
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
83952
|
-
requestUuid?: InputMaybe<Scalars['String']['input']>;
|
|
83953
84279
|
};
|
|
83954
84280
|
export declare type MutationChannelPlatform_CreateQueuesArgs = {
|
|
83955
84281
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -83970,9 +84296,6 @@ export declare type MutationClearRestrictionsForFreeArgs = {
|
|
|
83970
84296
|
export declare type MutationCompleteSprintArgs = {
|
|
83971
84297
|
input?: InputMaybe<CompleteSprintInput>;
|
|
83972
84298
|
};
|
|
83973
|
-
export declare type MutationConfigurePolarisRefreshArgs = {
|
|
83974
|
-
input: ConfigurePolarisRefreshInput;
|
|
83975
|
-
};
|
|
83976
84299
|
export declare type MutationConfluenceLegacy_ActivatePaywallContentArgs = {
|
|
83977
84300
|
input: ConfluenceLegacyActivatePaywallContentInput;
|
|
83978
84301
|
};
|
|
@@ -84814,6 +85137,11 @@ export declare type MutationCsmAi_UpdateHandoffConfigArgs = {
|
|
|
84814
85137
|
helpCenterAri: Scalars['ID']['input'];
|
|
84815
85138
|
input: CsmAiUpdateHandoffConfigInput;
|
|
84816
85139
|
};
|
|
85140
|
+
export declare type MutationCsmAi_UpdateWidgetArgs = {
|
|
85141
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
85142
|
+
input: CsmAiWidgetUpdateInput;
|
|
85143
|
+
widgetId: Scalars['ID']['input'];
|
|
85144
|
+
};
|
|
84817
85145
|
export declare type MutationCustomerServiceArgs = {
|
|
84818
85146
|
cloudId: Scalars['ID']['input'];
|
|
84819
85147
|
};
|
|
@@ -85065,6 +85393,10 @@ export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
|
85065
85393
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
85066
85394
|
input: JiraCreateCustomBackgroundInput;
|
|
85067
85395
|
};
|
|
85396
|
+
export declare type MutationJira_CreateFieldSchemeArgs = {
|
|
85397
|
+
cloudId: Scalars['ID']['input'];
|
|
85398
|
+
input: JiraCreateFieldSchemeInput;
|
|
85399
|
+
};
|
|
85068
85400
|
export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
85069
85401
|
cloudId: Scalars['ID']['input'];
|
|
85070
85402
|
input: JiraCreateGlobalCustomFieldInput;
|
|
@@ -85072,12 +85404,20 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
85072
85404
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
85073
85405
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
85074
85406
|
};
|
|
85407
|
+
export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
85408
|
+
cloudId: Scalars['ID']['input'];
|
|
85409
|
+
input: JiraDeleteFieldSchemeInput;
|
|
85410
|
+
};
|
|
85075
85411
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
85076
85412
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
85077
85413
|
};
|
|
85078
85414
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
85079
85415
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
85080
85416
|
};
|
|
85417
|
+
export declare type MutationJira_EditFieldSchemeArgs = {
|
|
85418
|
+
cloudId: Scalars['ID']['input'];
|
|
85419
|
+
input: JiraEditFieldSchemeInput;
|
|
85420
|
+
};
|
|
85081
85421
|
export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
85082
85422
|
input: JiraPublishBoardViewConfigInput;
|
|
85083
85423
|
};
|
|
@@ -85124,6 +85464,9 @@ export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
|
85124
85464
|
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
85125
85465
|
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
85126
85466
|
};
|
|
85467
|
+
export declare type MutationJira_SetFieldSetsPreferencesArgs = {
|
|
85468
|
+
input: JiraSetFieldSetsPreferencesInput;
|
|
85469
|
+
};
|
|
85127
85470
|
export declare type MutationJira_SetIssueSearchGroupByArgs = {
|
|
85128
85471
|
input: JiraSetIssueSearchGroupByInput;
|
|
85129
85472
|
};
|
|
@@ -86189,6 +86532,7 @@ export declare type OAuthClientsAccountGrant = {
|
|
|
86189
86532
|
clientInfo?: Maybe<OAuthClientsClientInfo>;
|
|
86190
86533
|
scopeDetails?: Maybe<Array<Maybe<OAuthClientsScopeDetails>>>;
|
|
86191
86534
|
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
86535
|
+
scopesInfo?: Maybe<Array<OAuthClientsScopeInfo>>;
|
|
86192
86536
|
};
|
|
86193
86537
|
export declare type OAuthClientsAccountGrantConnection = {
|
|
86194
86538
|
__typename?: 'OAuthClientsAccountGrantConnection';
|
|
@@ -86210,6 +86554,11 @@ export declare type OAuthClientsAccountGrantPageInfo = {
|
|
|
86210
86554
|
};
|
|
86211
86555
|
export declare type OAuthClientsClientInfo = {
|
|
86212
86556
|
__typename?: 'OAuthClientsClientInfo';
|
|
86557
|
+
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
86558
|
+
appDescription?: Maybe<Scalars['String']['output']>;
|
|
86559
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
86560
|
+
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
86561
|
+
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
86213
86562
|
clientId: Scalars['String']['output'];
|
|
86214
86563
|
clientName?: Maybe<Scalars['String']['output']>;
|
|
86215
86564
|
customerName?: Maybe<Scalars['String']['output']>;
|
|
@@ -86228,6 +86577,11 @@ export declare type OAuthClientsScopeDetails = {
|
|
|
86228
86577
|
description?: Maybe<Scalars['String']['output']>;
|
|
86229
86578
|
key: Scalars['String']['output'];
|
|
86230
86579
|
};
|
|
86580
|
+
export declare type OAuthClientsScopeInfo = {
|
|
86581
|
+
__typename?: 'OAuthClientsScopeInfo';
|
|
86582
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
86583
|
+
key: Scalars['String']['output'];
|
|
86584
|
+
};
|
|
86231
86585
|
export declare type OfflineUserAuthTokenForExtensionInput = {
|
|
86232
86586
|
contextIds: Array<Scalars['ID']['input']>;
|
|
86233
86587
|
extensionId: Scalars['ID']['input'];
|
|
@@ -88656,6 +89010,9 @@ export declare type Query = {
|
|
|
88656
89010
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
88657
89011
|
apps?: Maybe<AppConnection>;
|
|
88658
89012
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
89013
|
+
atlasGoalLinkedToIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89014
|
+
atlasProjectsLinkedToGoals?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89015
|
+
atlasProjectsLinkedToIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
88659
89016
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
88660
89017
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
88661
89018
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
@@ -88946,6 +89303,7 @@ export declare type Query = {
|
|
|
88946
89303
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
88947
89304
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
88948
89305
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
89306
|
+
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
88949
89307
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
88950
89308
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
88951
89309
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
@@ -89103,6 +89461,7 @@ export declare type Query = {
|
|
|
89103
89461
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
89104
89462
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
89105
89463
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
89464
|
+
jira_fieldSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
89106
89465
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
89107
89466
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
89108
89467
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -89213,6 +89572,8 @@ export declare type Query = {
|
|
|
89213
89572
|
pricings: ContentPlatformPricingSearchConnection;
|
|
89214
89573
|
productListing?: Maybe<ProductListingResult>;
|
|
89215
89574
|
productListings: Array<ProductListingResult>;
|
|
89575
|
+
projects_byAri?: Maybe<TownsquareProject>;
|
|
89576
|
+
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
89216
89577
|
ptpage?: Maybe<PtPage>;
|
|
89217
89578
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
89218
89579
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -89548,6 +89909,15 @@ export declare type QueryAppsArgs = {
|
|
|
89548
89909
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
89549
89910
|
cloudId: Scalars['ID']['input'];
|
|
89550
89911
|
};
|
|
89912
|
+
export declare type QueryAtlasGoalLinkedToIssueArgs = {
|
|
89913
|
+
issueId: Scalars['ID']['input'];
|
|
89914
|
+
};
|
|
89915
|
+
export declare type QueryAtlasProjectsLinkedToGoalsArgs = {
|
|
89916
|
+
goalId: Scalars['ID']['input'];
|
|
89917
|
+
};
|
|
89918
|
+
export declare type QueryAtlasProjectsLinkedToIssueArgs = {
|
|
89919
|
+
issueId: Scalars['ID']['input'];
|
|
89920
|
+
};
|
|
89551
89921
|
export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
89552
89922
|
cloudId: Scalars['ID']['input'];
|
|
89553
89923
|
};
|
|
@@ -90851,6 +91221,11 @@ export declare type QueryContentWatchersArgs = {
|
|
|
90851
91221
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90852
91222
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
90853
91223
|
};
|
|
91224
|
+
export declare type QueryContributorsLinkedToAtlasProjectArgs = {
|
|
91225
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91226
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91227
|
+
projectId: Scalars['ID']['input'];
|
|
91228
|
+
};
|
|
90854
91229
|
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
90855
91230
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90856
91231
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -91413,6 +91788,12 @@ export declare type QueryJira_CreatableGlobalCustomFieldTypesArgs = {
|
|
|
91413
91788
|
cloudId: Scalars['ID']['input'];
|
|
91414
91789
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91415
91790
|
};
|
|
91791
|
+
export declare type QueryJira_FieldSchemesArgs = {
|
|
91792
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91793
|
+
cloudId: Scalars['ID']['input'];
|
|
91794
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91795
|
+
input?: InputMaybe<JiraFieldSchemesInput>;
|
|
91796
|
+
};
|
|
91416
91797
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
91417
91798
|
cloudId: Scalars['ID']['input'];
|
|
91418
91799
|
};
|
|
@@ -91665,6 +92046,7 @@ export declare type QueryPlaybook_JiraPlaybookStepRunsForProjectArgs = {
|
|
|
91665
92046
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91666
92047
|
cloudId: Scalars['ID']['input'];
|
|
91667
92048
|
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
92049
|
+
filters?: InputMaybe<JiraPlaybookExecutionFilter>;
|
|
91668
92050
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91669
92051
|
projectKey: Scalars['String']['input'];
|
|
91670
92052
|
};
|
|
@@ -91743,6 +92125,12 @@ export declare type QueryProductListingsArgs = {
|
|
|
91743
92125
|
ids: Array<Scalars['ID']['input']>;
|
|
91744
92126
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
91745
92127
|
};
|
|
92128
|
+
export declare type QueryProjects_ByAriArgs = {
|
|
92129
|
+
ari: Scalars['String']['input'];
|
|
92130
|
+
};
|
|
92131
|
+
export declare type QueryProjects_ByArisArgs = {
|
|
92132
|
+
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
92133
|
+
};
|
|
91746
92134
|
export declare type QueryPtpageArgs = {
|
|
91747
92135
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
91748
92136
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -91823,7 +92211,7 @@ export declare type QueryRadar_PositionsByEntitySearchArgs = {
|
|
|
91823
92211
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91824
92212
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
91825
92213
|
cloudId: Scalars['ID']['input'];
|
|
91826
|
-
entity
|
|
92214
|
+
entity?: InputMaybe<RadarPositionsByEntityType>;
|
|
91827
92215
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91828
92216
|
input?: InputMaybe<RadarPositionsByEntityInput>;
|
|
91829
92217
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -92865,6 +93253,8 @@ export declare enum RateLimitingCurrency {
|
|
|
92865
93253
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
92866
93254
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
92867
93255
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
93256
|
+
DevConsoleMutationCurrency = "DEV_CONSOLE_MUTATION_CURRENCY",
|
|
93257
|
+
DevConsoleQueryCurrency = "DEV_CONSOLE_QUERY_CURRENCY",
|
|
92868
93258
|
ExportMetricsCurrency = "EXPORT_METRICS_CURRENCY",
|
|
92869
93259
|
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY",
|
|
92870
93260
|
ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
|
|
@@ -99920,6 +100310,7 @@ export declare type TenantContext = {
|
|
|
99920
100310
|
entitlementInfo?: Maybe<CommerceEntitlementInfo>;
|
|
99921
100311
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
99922
100312
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
100313
|
+
transactionAccounts?: Maybe<Array<Maybe<CommerceTransactionAccount>>>;
|
|
99923
100314
|
};
|
|
99924
100315
|
export declare type TenantContextActivationIdByProductArgs = {
|
|
99925
100316
|
product: Scalars['String']['input'];
|
|
@@ -102211,6 +102602,7 @@ export declare enum TrelloCardBatchStatus {
|
|
|
102211
102602
|
export declare type TrelloCardClause = {
|
|
102212
102603
|
closed?: InputMaybe<TrelloCardClosedClause>;
|
|
102213
102604
|
completed?: InputMaybe<TrelloCardCompleteClause>;
|
|
102605
|
+
ids?: InputMaybe<TrelloCardIdsClause>;
|
|
102214
102606
|
list?: InputMaybe<TrelloCardListClause>;
|
|
102215
102607
|
};
|
|
102216
102608
|
export declare type TrelloCardCloseCommand = {
|
|
@@ -102319,6 +102711,9 @@ export declare enum TrelloCardExternalSource {
|
|
|
102319
102711
|
Siri = "SIRI",
|
|
102320
102712
|
Slack = "SLACK"
|
|
102321
102713
|
}
|
|
102714
|
+
export declare type TrelloCardIdsClause = {
|
|
102715
|
+
cards?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
102716
|
+
};
|
|
102322
102717
|
export declare type TrelloCardLabelEdgeUpdated = {
|
|
102323
102718
|
__typename?: 'TrelloCardLabelEdgeUpdated';
|
|
102324
102719
|
node: TrelloLabelId;
|
|
@@ -102465,6 +102860,7 @@ export declare type TrelloChecklistConnectionUpdated = {
|
|
|
102465
102860
|
};
|
|
102466
102861
|
export declare type TrelloChecklistDeleted = {
|
|
102467
102862
|
__typename?: 'TrelloChecklistDeleted';
|
|
102863
|
+
id: Scalars['ID']['output'];
|
|
102468
102864
|
objectId: Scalars['ID']['output'];
|
|
102469
102865
|
};
|
|
102470
102866
|
export declare type TrelloChecklistEdge = {
|
|
@@ -105736,6 +106132,7 @@ export declare type UpdateInstallationDetailsResponse = {
|
|
|
105736
106132
|
export declare type UpdateJiraPlaybookInput = {
|
|
105737
106133
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
105738
106134
|
id: Scalars['ID']['input'];
|
|
106135
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
105739
106136
|
name: Scalars['String']['input'];
|
|
105740
106137
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
105741
106138
|
scopeType: JiraPlaybookScopeType;
|