@forge/cli-shared 8.2.0-next.11 → 8.2.0-next.13
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 +12 -0
- package/out/graphql/graphql-types.d.ts +678 -28
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +84 -20
- package/out/ui/text.d.ts +32 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +34 -2
- package/package.json +1 -1
|
@@ -1212,9 +1212,9 @@ export declare type AgentStudioAgentEdge = {
|
|
|
1212
1212
|
};
|
|
1213
1213
|
export declare type AgentStudioAgentQueryInput = {
|
|
1214
1214
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1215
|
-
onlyCodingAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1216
1215
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1217
1216
|
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1217
|
+
onlyTemplateAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1218
1218
|
};
|
|
1219
1219
|
export declare type AgentStudioAgentResult = AgentStudioAssistant | AgentStudioServiceAgent | QueryError;
|
|
1220
1220
|
export declare enum AgentStudioAgentType {
|
|
@@ -1244,7 +1244,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
1244
1244
|
};
|
|
1245
1245
|
export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node & {
|
|
1246
1246
|
__typename?: 'AgentStudioAssistantScenario';
|
|
1247
|
-
|
|
1247
|
+
actions?: Maybe<Array<AgentStudioAction>>;
|
|
1248
1248
|
creator?: Maybe<User>;
|
|
1249
1249
|
creatorId: Scalars['ID']['output'];
|
|
1250
1250
|
id: Scalars['ID']['output'];
|
|
@@ -1295,7 +1295,7 @@ export declare type AgentStudioCreateAgentPayload = Payload & {
|
|
|
1295
1295
|
success: Scalars['Boolean']['output'];
|
|
1296
1296
|
};
|
|
1297
1297
|
export declare type AgentStudioCreateScenarioInput = {
|
|
1298
|
-
|
|
1298
|
+
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
1299
1299
|
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
1300
1300
|
instructions: Scalars['String']['input'];
|
|
1301
1301
|
invocationDescription: Scalars['String']['input'];
|
|
@@ -1381,7 +1381,7 @@ export declare type AgentStudioPortalChannel = AgentStudioChannel & {
|
|
|
1381
1381
|
url?: Maybe<Scalars['String']['output']>;
|
|
1382
1382
|
};
|
|
1383
1383
|
export declare type AgentStudioScenario = {
|
|
1384
|
-
|
|
1384
|
+
actions?: Maybe<Array<AgentStudioAction>>;
|
|
1385
1385
|
creatorId: Scalars['ID']['output'];
|
|
1386
1386
|
id: Scalars['ID']['output'];
|
|
1387
1387
|
instructions: Scalars['String']['output'];
|
|
@@ -1483,7 +1483,7 @@ export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
|
|
|
1483
1483
|
success: Scalars['Boolean']['output'];
|
|
1484
1484
|
};
|
|
1485
1485
|
export declare type AgentStudioUpdateScenarioInput = {
|
|
1486
|
-
|
|
1486
|
+
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
1487
1487
|
creatorId: Scalars['ID']['input'];
|
|
1488
1488
|
instructions: Scalars['String']['input'];
|
|
1489
1489
|
invocationDescription: Scalars['String']['input'];
|
|
@@ -3151,14 +3151,16 @@ export declare type AssetsDmAdapters = {
|
|
|
3151
3151
|
product?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
3152
3152
|
};
|
|
3153
3153
|
export declare type AssetsDmAutoColumnMappingInput = {
|
|
3154
|
-
delimiter
|
|
3155
|
-
header
|
|
3154
|
+
delimiter: Scalars['String']['input'];
|
|
3155
|
+
header: Scalars['String']['input'];
|
|
3156
|
+
isEndWithDelimiter?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3157
|
+
qualifier?: InputMaybe<Scalars['String']['input']>;
|
|
3156
3158
|
};
|
|
3157
3159
|
export declare type AssetsDmAutoColumnMappingResponse = {
|
|
3158
3160
|
__typename?: 'AssetsDMAutoColumnMappingResponse';
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3161
|
+
columnMappings: Array<AssetsDmMappedColumn>;
|
|
3162
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3163
|
+
message: Scalars['String']['output'];
|
|
3162
3164
|
};
|
|
3163
3165
|
export declare type AssetsDmDataSource = {
|
|
3164
3166
|
__typename?: 'AssetsDMDataSource';
|
|
@@ -3172,6 +3174,7 @@ export declare type AssetsDmDataSource = {
|
|
|
3172
3174
|
};
|
|
3173
3175
|
export declare type AssetsDmDataSourceFormFields = {
|
|
3174
3176
|
__typename?: 'AssetsDMDataSourceFormFields';
|
|
3177
|
+
dataSourceJobs: Array<AssetsDmDataSourceJobs>;
|
|
3175
3178
|
dataSourceTypes: AssetsDmDataSourceTypesConnection;
|
|
3176
3179
|
dateFormats: Array<AssetsDmDateFormats>;
|
|
3177
3180
|
};
|
|
@@ -3185,6 +3188,13 @@ export declare type AssetsDmDataSourceInput = {
|
|
|
3185
3188
|
configuration: Scalars['JSON']['input'];
|
|
3186
3189
|
objectClassType: AssetsDmObjectClassEnum;
|
|
3187
3190
|
};
|
|
3191
|
+
export declare type AssetsDmDataSourceJobs = {
|
|
3192
|
+
__typename?: 'AssetsDMDataSourceJobs';
|
|
3193
|
+
createdBy: Scalars['String']['output'];
|
|
3194
|
+
createdDate: Scalars['String']['output'];
|
|
3195
|
+
jobId: Scalars['String']['output'];
|
|
3196
|
+
name: Scalars['String']['output'];
|
|
3197
|
+
};
|
|
3188
3198
|
export declare type AssetsDmDataSourceResponse = {
|
|
3189
3199
|
__typename?: 'AssetsDMDataSourceResponse';
|
|
3190
3200
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -3225,12 +3235,12 @@ export declare type AssetsDmGenerateAdapterTokenResponse = {
|
|
|
3225
3235
|
};
|
|
3226
3236
|
export declare type AssetsDmMappedColumn = {
|
|
3227
3237
|
__typename?: 'AssetsDMMappedColumn';
|
|
3228
|
-
columnMappingId
|
|
3229
|
-
columnType
|
|
3230
|
-
dateFormatId
|
|
3231
|
-
destinationColumnName
|
|
3232
|
-
jobId
|
|
3233
|
-
sourceColumnName
|
|
3238
|
+
columnMappingId: Scalars['ID']['output'];
|
|
3239
|
+
columnType: Scalars['Int']['output'];
|
|
3240
|
+
dateFormatId: Scalars['String']['output'];
|
|
3241
|
+
destinationColumnName: Scalars['String']['output'];
|
|
3242
|
+
jobId: Scalars['ID']['output'];
|
|
3243
|
+
sourceColumnName: Scalars['String']['output'];
|
|
3234
3244
|
};
|
|
3235
3245
|
export declare type AssetsDmObjectClass = {
|
|
3236
3246
|
__typename?: 'AssetsDMObjectClass';
|
|
@@ -9276,6 +9286,7 @@ export declare type CompassGlobalPermissions = {
|
|
|
9276
9286
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
9277
9287
|
deleteIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
9278
9288
|
editCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
9289
|
+
viewIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
9279
9290
|
viewMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
9280
9291
|
};
|
|
9281
9292
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
@@ -18167,6 +18178,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
18167
18178
|
updateOrganizationAttributeMultiValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
18168
18179
|
updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
18169
18180
|
updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
18181
|
+
updateParticipants?: Maybe<CustomerServiceRequestUpdateParticipantsPayload>;
|
|
18170
18182
|
updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
|
|
18171
18183
|
updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
|
|
18172
18184
|
};
|
|
@@ -18271,6 +18283,10 @@ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueAr
|
|
|
18271
18283
|
export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueByNameArgs = {
|
|
18272
18284
|
input: CustomerServiceOrganizationUpdateAttributeByNameInput;
|
|
18273
18285
|
};
|
|
18286
|
+
export declare type CustomerServiceMutationApiUpdateParticipantsArgs = {
|
|
18287
|
+
input: CustomerServiceUpdateRequestParticipantInput;
|
|
18288
|
+
workItemId: Scalars['ID']['input'];
|
|
18289
|
+
};
|
|
18274
18290
|
export declare type CustomerServiceMutationApiUpdateProductArgs = {
|
|
18275
18291
|
input: CustomerServiceProductUpdateInput;
|
|
18276
18292
|
};
|
|
@@ -18544,6 +18560,7 @@ export declare type CustomerServiceRequest = {
|
|
|
18544
18560
|
formData?: Maybe<CustomerServiceRequestFormDataConnection>;
|
|
18545
18561
|
id: Scalars['ID']['output'];
|
|
18546
18562
|
key?: Maybe<Scalars['String']['output']>;
|
|
18563
|
+
participants?: Maybe<Array<CustomerServiceRequestParticipant>>;
|
|
18547
18564
|
statusKey?: Maybe<CustomerServiceStatusKey>;
|
|
18548
18565
|
summary?: Maybe<Scalars['String']['output']>;
|
|
18549
18566
|
templateForm?: Maybe<CustomerServiceTemplateForm>;
|
|
@@ -18569,6 +18586,12 @@ export declare type CustomerServiceRequestFormDataEdge = {
|
|
|
18569
18586
|
cursor: Scalars['String']['output'];
|
|
18570
18587
|
node?: Maybe<CustomerServiceRequestFormEntryField>;
|
|
18571
18588
|
};
|
|
18589
|
+
export declare type CustomerServiceRequestFormEntryAttachmentField = CustomerServiceRequestFormEntryField & {
|
|
18590
|
+
__typename?: 'CustomerServiceRequestFormEntryAttachmentField';
|
|
18591
|
+
fileIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
18592
|
+
id: Scalars['ID']['output'];
|
|
18593
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
18594
|
+
};
|
|
18572
18595
|
export declare type CustomerServiceRequestFormEntryField = {
|
|
18573
18596
|
id: Scalars['ID']['output'];
|
|
18574
18597
|
question?: Maybe<Scalars['String']['output']>;
|
|
@@ -18591,6 +18614,18 @@ export declare type CustomerServiceRequestFormEntryTextField = CustomerServiceRe
|
|
|
18591
18614
|
question?: Maybe<Scalars['String']['output']>;
|
|
18592
18615
|
textAnswer?: Maybe<Scalars['String']['output']>;
|
|
18593
18616
|
};
|
|
18617
|
+
export declare type CustomerServiceRequestParticipant = {
|
|
18618
|
+
__typename?: 'CustomerServiceRequestParticipant';
|
|
18619
|
+
accountId: Scalars['String']['output'];
|
|
18620
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
18621
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
18622
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
18623
|
+
};
|
|
18624
|
+
export declare type CustomerServiceRequestUpdateParticipantsPayload = Payload & {
|
|
18625
|
+
__typename?: 'CustomerServiceRequestUpdateParticipantsPayload';
|
|
18626
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18627
|
+
success: Scalars['Boolean']['output'];
|
|
18628
|
+
};
|
|
18594
18629
|
export declare type CustomerServiceRoutingRule = {
|
|
18595
18630
|
__typename?: 'CustomerServiceRoutingRule';
|
|
18596
18631
|
id: Scalars['ID']['output'];
|
|
@@ -18676,6 +18711,10 @@ export declare type CustomerServiceUpdateCustomDetailValuePayload = Payload & {
|
|
|
18676
18711
|
errors?: Maybe<Array<MutationError>>;
|
|
18677
18712
|
success: Scalars['Boolean']['output'];
|
|
18678
18713
|
};
|
|
18714
|
+
export declare type CustomerServiceUpdateRequestParticipantInput = {
|
|
18715
|
+
addedParticipants: Array<Scalars['String']['input']>;
|
|
18716
|
+
deletedParticipants: Array<Scalars['ID']['input']>;
|
|
18717
|
+
};
|
|
18679
18718
|
export declare type CustomerServiceUserDetailValue = {
|
|
18680
18719
|
__typename?: 'CustomerServiceUserDetailValue';
|
|
18681
18720
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -19800,6 +19839,80 @@ export declare enum DevAiRovoAgentTemplateFilter {
|
|
|
19800
19839
|
Include = "INCLUDE",
|
|
19801
19840
|
Only = "ONLY"
|
|
19802
19841
|
}
|
|
19842
|
+
export declare type DevAiRovoDevCreateSessionInput = {
|
|
19843
|
+
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
19844
|
+
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
19845
|
+
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
19846
|
+
repository: DevAiRovoDevRepositoryInput;
|
|
19847
|
+
workspaceAri: Scalars['ID']['input'];
|
|
19848
|
+
};
|
|
19849
|
+
export declare type DevAiRovoDevCreateSessionOptionsInput = {
|
|
19850
|
+
isAutonomous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19851
|
+
raisePullRequestOptions?: InputMaybe<DevAiRovoDevRaisePullRequestOption>;
|
|
19852
|
+
useDeepPlan?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19853
|
+
};
|
|
19854
|
+
export declare type DevAiRovoDevCreateSessionPayload = Payload & {
|
|
19855
|
+
__typename?: 'DevAiRovoDevCreateSessionPayload';
|
|
19856
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19857
|
+
session?: Maybe<DevAiRovoDevSession>;
|
|
19858
|
+
success: Scalars['Boolean']['output'];
|
|
19859
|
+
};
|
|
19860
|
+
export declare enum DevAiRovoDevRaisePullRequestOption {
|
|
19861
|
+
Always = "ALWAYS",
|
|
19862
|
+
Draft = "DRAFT",
|
|
19863
|
+
DraftOnBuildPass = "DRAFT_ON_BUILD_PASS",
|
|
19864
|
+
Never = "NEVER",
|
|
19865
|
+
OnBuildPass = "ON_BUILD_PASS"
|
|
19866
|
+
}
|
|
19867
|
+
export declare type DevAiRovoDevRepository = {
|
|
19868
|
+
__typename?: 'DevAiRovoDevRepository';
|
|
19869
|
+
sourceBranch?: Maybe<Scalars['String']['output']>;
|
|
19870
|
+
targetBranch?: Maybe<Scalars['String']['output']>;
|
|
19871
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19872
|
+
};
|
|
19873
|
+
export declare type DevAiRovoDevRepositoryInput = {
|
|
19874
|
+
sourceBranch?: InputMaybe<Scalars['String']['input']>;
|
|
19875
|
+
targetBranch?: InputMaybe<Scalars['String']['input']>;
|
|
19876
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
19877
|
+
};
|
|
19878
|
+
export declare type DevAiRovoDevSession = {
|
|
19879
|
+
__typename?: 'DevAiRovoDevSession';
|
|
19880
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
19881
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
19882
|
+
editorUrl?: Maybe<Scalars['URL']['output']>;
|
|
19883
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
19884
|
+
id: Scalars['ID']['output'];
|
|
19885
|
+
options?: Maybe<DevAiRovoDevSessionOptions>;
|
|
19886
|
+
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
19887
|
+
repository?: Maybe<DevAiRovoDevRepository>;
|
|
19888
|
+
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
19889
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
19890
|
+
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
19891
|
+
};
|
|
19892
|
+
export declare type DevAiRovoDevSessionLinkInput = {
|
|
19893
|
+
ari: Scalars['String']['input'];
|
|
19894
|
+
rel: DevAiRovoDevSessionLinkRel;
|
|
19895
|
+
};
|
|
19896
|
+
export declare enum DevAiRovoDevSessionLinkRel {
|
|
19897
|
+
Container = "CONTAINER",
|
|
19898
|
+
Site = "SITE",
|
|
19899
|
+
Target = "TARGET"
|
|
19900
|
+
}
|
|
19901
|
+
export declare type DevAiRovoDevSessionOptions = {
|
|
19902
|
+
__typename?: 'DevAiRovoDevSessionOptions';
|
|
19903
|
+
isAutonomous?: Maybe<Scalars['Boolean']['output']>;
|
|
19904
|
+
raisePullRequestOptions?: Maybe<DevAiRovoDevRaisePullRequestOption>;
|
|
19905
|
+
useDeepPlan?: Maybe<Scalars['Boolean']['output']>;
|
|
19906
|
+
};
|
|
19907
|
+
export declare enum DevAiRovoDevSessionStatus {
|
|
19908
|
+
Archived = "ARCHIVED",
|
|
19909
|
+
Failed = "FAILED",
|
|
19910
|
+
Initialising = "INITIALISING",
|
|
19911
|
+
InProgress = "IN_PROGRESS",
|
|
19912
|
+
Pending = "PENDING",
|
|
19913
|
+
ReadyForReview = "READY_FOR_REVIEW",
|
|
19914
|
+
WaitingForUser = "WAITING_FOR_USER"
|
|
19915
|
+
}
|
|
19803
19916
|
export declare type DevAiRunAutofixScanInput = {
|
|
19804
19917
|
repoUrl: Scalars['URL']['input'];
|
|
19805
19918
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28590,6 +28703,10 @@ export declare type GraphStore = {
|
|
|
28590
28703
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28591
28704
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
28592
28705
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28706
|
+
focusAreaHasWatcher?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherConnection>;
|
|
28707
|
+
focusAreaHasWatcherBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
28708
|
+
focusAreaHasWatcherInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection>;
|
|
28709
|
+
focusAreaHasWatcherInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
28593
28710
|
graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
28594
28711
|
graphEntityReplicates3pEntityInverse?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection>;
|
|
28595
28712
|
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
@@ -28972,6 +29089,8 @@ export declare type GraphStore = {
|
|
|
28972
29089
|
userAssignedIssueInverse?: Maybe<GraphStoreSimplifiedUserAssignedIssueInverseConnection>;
|
|
28973
29090
|
userAssignedPir?: Maybe<GraphStoreSimplifiedUserAssignedPirConnection>;
|
|
28974
29091
|
userAssignedPirInverse?: Maybe<GraphStoreSimplifiedUserAssignedPirInverseConnection>;
|
|
29092
|
+
userAssignedWorkItem?: Maybe<GraphStoreSimplifiedUserAssignedWorkItemConnection>;
|
|
29093
|
+
userAssignedWorkItemInverse?: Maybe<GraphStoreSimplifiedUserAssignedWorkItemInverseConnection>;
|
|
28975
29094
|
userAttendedCalendarEvent?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventConnection>;
|
|
28976
29095
|
userAttendedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection>;
|
|
28977
29096
|
userAuthoredCommit?: Maybe<GraphStoreSimplifiedUserAuthoredCommitConnection>;
|
|
@@ -30158,6 +30277,32 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
30158
30277
|
ids: Array<Scalars['ID']['input']>;
|
|
30159
30278
|
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
30160
30279
|
};
|
|
30280
|
+
export declare type GraphStoreFocusAreaHasWatcherArgs = {
|
|
30281
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30282
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30283
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30284
|
+
id: Scalars['ID']['input'];
|
|
30285
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasWatcherSortInput>;
|
|
30286
|
+
};
|
|
30287
|
+
export declare type GraphStoreFocusAreaHasWatcherBatchArgs = {
|
|
30288
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30289
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30290
|
+
ids: Array<Scalars['ID']['input']>;
|
|
30291
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasWatcherSortInput>;
|
|
30292
|
+
};
|
|
30293
|
+
export declare type GraphStoreFocusAreaHasWatcherInverseArgs = {
|
|
30294
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30295
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30296
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30297
|
+
id: Scalars['ID']['input'];
|
|
30298
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasWatcherSortInput>;
|
|
30299
|
+
};
|
|
30300
|
+
export declare type GraphStoreFocusAreaHasWatcherInverseBatchArgs = {
|
|
30301
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30302
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30303
|
+
ids: Array<Scalars['ID']['input']>;
|
|
30304
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasWatcherSortInput>;
|
|
30305
|
+
};
|
|
30161
30306
|
export declare type GraphStoreGraphDocument3pDocumentInverseArgs = {
|
|
30162
30307
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30163
30308
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32650,6 +32795,20 @@ export declare type GraphStoreUserAssignedPirInverseArgs = {
|
|
|
32650
32795
|
id: Scalars['ID']['input'];
|
|
32651
32796
|
sort?: InputMaybe<GraphStoreUserAssignedPirSortInput>;
|
|
32652
32797
|
};
|
|
32798
|
+
export declare type GraphStoreUserAssignedWorkItemArgs = {
|
|
32799
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32800
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32801
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32802
|
+
id: Scalars['ID']['input'];
|
|
32803
|
+
sort?: InputMaybe<GraphStoreUserAssignedWorkItemSortInput>;
|
|
32804
|
+
};
|
|
32805
|
+
export declare type GraphStoreUserAssignedWorkItemInverseArgs = {
|
|
32806
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32807
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32808
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32809
|
+
id: Scalars['ID']['input'];
|
|
32810
|
+
sort?: InputMaybe<GraphStoreUserAssignedWorkItemSortInput>;
|
|
32811
|
+
};
|
|
32653
32812
|
export declare type GraphStoreUserAttendedCalendarEventArgs = {
|
|
32654
32813
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32655
32814
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34568,6 +34727,47 @@ export declare type GraphStoreBatchFocusAreaHasProjectStartNode = {
|
|
|
34568
34727
|
id: Scalars['ID']['output'];
|
|
34569
34728
|
};
|
|
34570
34729
|
export declare type GraphStoreBatchFocusAreaHasProjectStartUnion = MercuryFocusArea;
|
|
34730
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherConnection = HasPageInfo & {
|
|
34731
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherConnection';
|
|
34732
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasWatcherEdge>>;
|
|
34733
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasWatcherNode>>;
|
|
34734
|
+
pageInfo: PageInfo;
|
|
34735
|
+
};
|
|
34736
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherEdge = {
|
|
34737
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherEdge';
|
|
34738
|
+
node: GraphStoreBatchFocusAreaHasWatcherInnerConnection;
|
|
34739
|
+
};
|
|
34740
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherEndNode = {
|
|
34741
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherEndNode';
|
|
34742
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasWatcherEndUnion>;
|
|
34743
|
+
id: Scalars['ID']['output'];
|
|
34744
|
+
};
|
|
34745
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherEndUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
34746
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherInnerConnection = {
|
|
34747
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherInnerConnection';
|
|
34748
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasWatcherInnerEdge>>;
|
|
34749
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasWatcherNode>>;
|
|
34750
|
+
requestedId: Scalars['ID']['output'];
|
|
34751
|
+
};
|
|
34752
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherInnerEdge = {
|
|
34753
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherInnerEdge';
|
|
34754
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34755
|
+
node: GraphStoreBatchFocusAreaHasWatcherNode;
|
|
34756
|
+
};
|
|
34757
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherNode = Node & {
|
|
34758
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherNode';
|
|
34759
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34760
|
+
from: GraphStoreBatchFocusAreaHasWatcherStartNode;
|
|
34761
|
+
id: Scalars['ID']['output'];
|
|
34762
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34763
|
+
to: GraphStoreBatchFocusAreaHasWatcherEndNode;
|
|
34764
|
+
};
|
|
34765
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherStartNode = {
|
|
34766
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherStartNode';
|
|
34767
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasWatcherStartUnion>;
|
|
34768
|
+
id: Scalars['ID']['output'];
|
|
34769
|
+
};
|
|
34770
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherStartUnion = MercuryFocusArea;
|
|
34571
34771
|
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & {
|
|
34572
34772
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection';
|
|
34573
34773
|
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -35691,7 +35891,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35691
35891
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35692
35892
|
id: Scalars['ID']['output'];
|
|
35693
35893
|
};
|
|
35694
|
-
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 | ExternalComment | 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 | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35894
|
+
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 | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | 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 | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35695
35895
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
35696
35896
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
35697
35897
|
value: Scalars['Int']['output'];
|
|
@@ -35726,7 +35926,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
35726
35926
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
35727
35927
|
id: Scalars['ID']['output'];
|
|
35728
35928
|
};
|
|
35729
|
-
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 | ExternalComment | 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 | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35929
|
+
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 | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | 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 | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35730
35930
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
35731
35931
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
35732
35932
|
value: Scalars['String']['output'];
|
|
@@ -35736,19 +35936,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35736
35936
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35737
35937
|
id: Scalars['ID']['output'];
|
|
35738
35938
|
};
|
|
35739
|
-
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 | ExternalComment | 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 | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35939
|
+
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 | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | 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 | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35740
35940
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
35741
35941
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
35742
35942
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
35743
35943
|
id: Scalars['ID']['output'];
|
|
35744
35944
|
};
|
|
35745
|
-
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 | ExternalComment | 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 | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35945
|
+
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 | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | 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 | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35746
35946
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
35747
35947
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
35748
35948
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
35749
35949
|
id: Scalars['ID']['output'];
|
|
35750
35950
|
};
|
|
35751
|
-
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 | ExternalComment | 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 | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35951
|
+
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 | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | 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 | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35752
35952
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
35753
35953
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
35754
35954
|
value: Scalars['Boolean']['output'];
|
|
@@ -35847,7 +36047,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
35847
36047
|
V2 = "V2",
|
|
35848
36048
|
V3 = "V3"
|
|
35849
36049
|
}
|
|
35850
|
-
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 | ExternalComment | 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 | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36050
|
+
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 | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | 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 | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35851
36051
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35852
36052
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35853
36053
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -36266,6 +36466,9 @@ export declare type GraphStoreFocusAreaHasPageSortInput = {
|
|
|
36266
36466
|
export declare type GraphStoreFocusAreaHasProjectSortInput = {
|
|
36267
36467
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36268
36468
|
};
|
|
36469
|
+
export declare type GraphStoreFocusAreaHasWatcherSortInput = {
|
|
36470
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36471
|
+
};
|
|
36269
36472
|
export declare type GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection = HasPageInfo & {
|
|
36270
36473
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection';
|
|
36271
36474
|
edges: Array<Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceEdge>>;
|
|
@@ -42539,6 +42742,34 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
42539
42742
|
};
|
|
42540
42743
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
42541
42744
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
42745
|
+
export declare type GraphStoreSimplifiedFocusAreaHasWatcherConnection = HasPageInfo & {
|
|
42746
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasWatcherConnection';
|
|
42747
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasWatcherEdge>>>;
|
|
42748
|
+
pageInfo: PageInfo;
|
|
42749
|
+
};
|
|
42750
|
+
export declare type GraphStoreSimplifiedFocusAreaHasWatcherEdge = {
|
|
42751
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasWatcherEdge';
|
|
42752
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42753
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42754
|
+
id: Scalars['ID']['output'];
|
|
42755
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42756
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherUnion>;
|
|
42757
|
+
};
|
|
42758
|
+
export declare type GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection = HasPageInfo & {
|
|
42759
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection';
|
|
42760
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseEdge>>>;
|
|
42761
|
+
pageInfo: PageInfo;
|
|
42762
|
+
};
|
|
42763
|
+
export declare type GraphStoreSimplifiedFocusAreaHasWatcherInverseEdge = {
|
|
42764
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasWatcherInverseEdge';
|
|
42765
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42766
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42767
|
+
id: Scalars['ID']['output'];
|
|
42768
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42769
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseUnion>;
|
|
42770
|
+
};
|
|
42771
|
+
export declare type GraphStoreSimplifiedFocusAreaHasWatcherInverseUnion = MercuryFocusArea;
|
|
42772
|
+
export declare type GraphStoreSimplifiedFocusAreaHasWatcherUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42542
42773
|
export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection = HasPageInfo & {
|
|
42543
42774
|
__typename?: 'GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection';
|
|
42544
42775
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseEdge>>>;
|
|
@@ -46019,6 +46250,34 @@ export declare type GraphStoreSimplifiedUserAssignedPirInverseEdge = {
|
|
|
46019
46250
|
};
|
|
46020
46251
|
export declare type GraphStoreSimplifiedUserAssignedPirInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46021
46252
|
export declare type GraphStoreSimplifiedUserAssignedPirUnion = JiraIssue;
|
|
46253
|
+
export declare type GraphStoreSimplifiedUserAssignedWorkItemConnection = HasPageInfo & {
|
|
46254
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedWorkItemConnection';
|
|
46255
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedWorkItemEdge>>>;
|
|
46256
|
+
pageInfo: PageInfo;
|
|
46257
|
+
};
|
|
46258
|
+
export declare type GraphStoreSimplifiedUserAssignedWorkItemEdge = {
|
|
46259
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedWorkItemEdge';
|
|
46260
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46261
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46262
|
+
id: Scalars['ID']['output'];
|
|
46263
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46264
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedWorkItemUnion>;
|
|
46265
|
+
};
|
|
46266
|
+
export declare type GraphStoreSimplifiedUserAssignedWorkItemInverseConnection = HasPageInfo & {
|
|
46267
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedWorkItemInverseConnection';
|
|
46268
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedWorkItemInverseEdge>>>;
|
|
46269
|
+
pageInfo: PageInfo;
|
|
46270
|
+
};
|
|
46271
|
+
export declare type GraphStoreSimplifiedUserAssignedWorkItemInverseEdge = {
|
|
46272
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedWorkItemInverseEdge';
|
|
46273
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46274
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46275
|
+
id: Scalars['ID']['output'];
|
|
46276
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46277
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedWorkItemInverseUnion>;
|
|
46278
|
+
};
|
|
46279
|
+
export declare type GraphStoreSimplifiedUserAssignedWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46280
|
+
export declare type GraphStoreSimplifiedUserAssignedWorkItemUnion = ExternalWorkItem;
|
|
46022
46281
|
export declare type GraphStoreSimplifiedUserAttendedCalendarEventConnection = HasPageInfo & HasTotal & {
|
|
46023
46282
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventConnection';
|
|
46024
46283
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventEdge>>>;
|
|
@@ -46077,7 +46336,7 @@ export declare type GraphStoreSimplifiedUserAuthoredCommitInverseEdge = {
|
|
|
46077
46336
|
lastUpdated: Scalars['DateTime']['output'];
|
|
46078
46337
|
node?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseUnion>;
|
|
46079
46338
|
};
|
|
46080
|
-
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46339
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46081
46340
|
export declare type GraphStoreSimplifiedUserAuthoredCommitUnion = ExternalCommit;
|
|
46082
46341
|
export declare type GraphStoreSimplifiedUserAuthoredPrConnection = HasPageInfo & {
|
|
46083
46342
|
__typename?: 'GraphStoreSimplifiedUserAuthoredPrConnection';
|
|
@@ -46105,7 +46364,7 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
46105
46364
|
lastUpdated: Scalars['DateTime']['output'];
|
|
46106
46365
|
node?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseUnion>;
|
|
46107
46366
|
};
|
|
46108
|
-
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46367
|
+
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46109
46368
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
46110
46369
|
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection = HasPageInfo & HasTotal & {
|
|
46111
46370
|
__typename?: 'GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection';
|
|
@@ -47809,7 +48068,7 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
47809
48068
|
lastUpdated: Scalars['DateTime']['output'];
|
|
47810
48069
|
node?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseUnion>;
|
|
47811
48070
|
};
|
|
47812
|
-
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48071
|
+
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
47813
48072
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
47814
48073
|
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
47815
48074
|
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageConnection';
|
|
@@ -49271,6 +49530,9 @@ export declare type GraphStoreUserAssignedIssueSortInput = {
|
|
|
49271
49530
|
export declare type GraphStoreUserAssignedPirSortInput = {
|
|
49272
49531
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49273
49532
|
};
|
|
49533
|
+
export declare type GraphStoreUserAssignedWorkItemSortInput = {
|
|
49534
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49535
|
+
};
|
|
49274
49536
|
export declare type GraphStoreUserAttendedCalendarEventConditionalFilterInput = {
|
|
49275
49537
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
49276
49538
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -53326,7 +53588,8 @@ export declare type JiraAccessAtlassianIntelligenceFeature = {
|
|
|
53326
53588
|
export declare enum JiraActionType {
|
|
53327
53589
|
CreateCompanyManagedProject = "CREATE_COMPANY_MANAGED_PROJECT",
|
|
53328
53590
|
CreateProject = "CREATE_PROJECT",
|
|
53329
|
-
CreateTeamManagedProject = "CREATE_TEAM_MANAGED_PROJECT"
|
|
53591
|
+
CreateTeamManagedProject = "CREATE_TEAM_MANAGED_PROJECT",
|
|
53592
|
+
ViewProjectCreationEntry = "VIEW_PROJECT_CREATION_ENTRY"
|
|
53330
53593
|
}
|
|
53331
53594
|
export declare type JiraActiveBackgroundDetailsResult = JiraAttachmentBackground | JiraColorBackground | JiraGradientBackground | JiraMediaBackground | QueryError;
|
|
53332
53595
|
export declare type JiraActivityConfiguration = {
|
|
@@ -56329,6 +56592,7 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
|
|
|
56329
56592
|
};
|
|
56330
56593
|
export declare type JiraCreateGlobalCustomFieldInput = {
|
|
56331
56594
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
56595
|
+
formatConfig?: InputMaybe<JiraFieldFormatConfigInput>;
|
|
56332
56596
|
name: Scalars['String']['input'];
|
|
56333
56597
|
options?: InputMaybe<Array<JiraCreateGlobalCustomFieldOptionInput>>;
|
|
56334
56598
|
type: JiraConfigFieldType;
|
|
@@ -58371,12 +58635,13 @@ export declare type JiraForgeWorkItemPanel = {
|
|
|
58371
58635
|
};
|
|
58372
58636
|
export declare type JiraForgeWorkItemPanelInstance = {
|
|
58373
58637
|
__typename?: 'JiraForgeWorkItemPanelInstance';
|
|
58638
|
+
added: Scalars['Long']['output'];
|
|
58374
58639
|
collapsed: Scalars['Boolean']['output'];
|
|
58375
58640
|
id: Scalars['ID']['output'];
|
|
58376
58641
|
pinnedTo: JiraForgeWorkItemPinnableEntityType;
|
|
58377
58642
|
};
|
|
58378
58643
|
export declare type JiraForgeWorkItemPanelsContextInput = {
|
|
58379
|
-
workItemIdOrKey
|
|
58644
|
+
workItemIdOrKey: Scalars['String']['input'];
|
|
58380
58645
|
};
|
|
58381
58646
|
export declare enum JiraForgeWorkItemPinnableEntityType {
|
|
58382
58647
|
Project = "PROJECT",
|
|
@@ -58669,9 +58934,12 @@ export declare type JiraGrantTypeValueEdge = {
|
|
|
58669
58934
|
};
|
|
58670
58935
|
export declare type JiraGroup = Node & {
|
|
58671
58936
|
__typename?: 'JiraGroup';
|
|
58937
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
58672
58938
|
groupId: Scalars['String']['output'];
|
|
58673
58939
|
id: Scalars['ID']['output'];
|
|
58940
|
+
managedBy?: Maybe<JiraGroupManagedBy>;
|
|
58674
58941
|
name: Scalars['String']['output'];
|
|
58942
|
+
usageType?: Maybe<JiraGroupUsageType>;
|
|
58675
58943
|
};
|
|
58676
58944
|
export declare type JiraGroupByDropdownFilter = {
|
|
58677
58945
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58697,6 +58965,16 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
58697
58965
|
export declare type JiraGroupInput = {
|
|
58698
58966
|
groupName: Scalars['ID']['input'];
|
|
58699
58967
|
};
|
|
58968
|
+
export declare enum JiraGroupManagedBy {
|
|
58969
|
+
Admins = "ADMINS",
|
|
58970
|
+
External = "EXTERNAL",
|
|
58971
|
+
Open = "OPEN",
|
|
58972
|
+
TeamMembers = "TEAM_MEMBERS"
|
|
58973
|
+
}
|
|
58974
|
+
export declare enum JiraGroupUsageType {
|
|
58975
|
+
TeamCollaboration = "TEAM_COLLABORATION",
|
|
58976
|
+
UserbaseGroup = "USERBASE_GROUP"
|
|
58977
|
+
}
|
|
58700
58978
|
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
58701
58979
|
__typename?: 'JiraGroupedListView';
|
|
58702
58980
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59520,6 +59798,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
59520
59798
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
59521
59799
|
description?: Maybe<Scalars['String']['output']>;
|
|
59522
59800
|
fieldId: Scalars['String']['output'];
|
|
59801
|
+
formatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
59523
59802
|
id: Scalars['ID']['output'];
|
|
59524
59803
|
isCustom: Scalars['Boolean']['output'];
|
|
59525
59804
|
isDefaultFieldOptionsCountOverLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59946,6 +60225,7 @@ export declare type JiraIssueLinkRelationshipTypeField = JiraIssueField & JiraIs
|
|
|
59946
60225
|
type: Scalars['String']['output'];
|
|
59947
60226
|
};
|
|
59948
60227
|
export declare type JiraIssueLinkRelationshipTypeUpdateInput = {
|
|
60228
|
+
direction?: InputMaybe<JiraIssueLinkDirection>;
|
|
59949
60229
|
issueLinkId: Scalars['ID']['input'];
|
|
59950
60230
|
issueLinkTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
59951
60231
|
};
|
|
@@ -60832,6 +61112,36 @@ export declare type JiraJourneyItemCommon = {
|
|
|
60832
61112
|
name?: Maybe<Scalars['String']['output']>;
|
|
60833
61113
|
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
60834
61114
|
};
|
|
61115
|
+
export declare type JiraJourneyItemCondition = {
|
|
61116
|
+
__typename?: 'JiraJourneyItemCondition';
|
|
61117
|
+
comparator: JiraJourneyItemConditionComparator;
|
|
61118
|
+
left: Scalars['String']['output'];
|
|
61119
|
+
right: Scalars['String']['output'];
|
|
61120
|
+
};
|
|
61121
|
+
export declare enum JiraJourneyItemConditionComparator {
|
|
61122
|
+
Contains = "CONTAINS",
|
|
61123
|
+
Equals = "EQUALS",
|
|
61124
|
+
GreaterThan = "GREATER_THAN",
|
|
61125
|
+
LessThan = "LESS_THAN",
|
|
61126
|
+
NotContains = "NOT_CONTAINS",
|
|
61127
|
+
NotEquals = "NOT_EQUALS",
|
|
61128
|
+
RegexContains = "REGEX_CONTAINS",
|
|
61129
|
+
RegexMatches = "REGEX_MATCHES",
|
|
61130
|
+
RegexNotMatches = "REGEX_NOT_MATCHES",
|
|
61131
|
+
StartsWith = "STARTS_WITH"
|
|
61132
|
+
}
|
|
61133
|
+
export declare type JiraJourneyItemConditionInput = {
|
|
61134
|
+
comparator: JiraJourneyItemConditionComparator;
|
|
61135
|
+
left: Scalars['String']['input'];
|
|
61136
|
+
right: Scalars['String']['input'];
|
|
61137
|
+
};
|
|
61138
|
+
export declare type JiraJourneyItemConditions = {
|
|
61139
|
+
__typename?: 'JiraJourneyItemConditions';
|
|
61140
|
+
conditions?: Maybe<Array<JiraJourneyItemCondition>>;
|
|
61141
|
+
};
|
|
61142
|
+
export declare type JiraJourneyItemConditionsInput = {
|
|
61143
|
+
conditions: Array<JiraJourneyItemConditionInput>;
|
|
61144
|
+
};
|
|
60835
61145
|
export declare type JiraJourneyItemConfigurationInput = {
|
|
60836
61146
|
statusDependencyConfiguration?: InputMaybe<JiraJourneyStatusDependencyConfigurationInput>;
|
|
60837
61147
|
workItemConfiguration?: InputMaybe<JiraJourneyWorkItemConfigurationInput>;
|
|
@@ -60927,6 +61237,7 @@ export declare type JiraJourneyValidationError = {
|
|
|
60927
61237
|
export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
60928
61238
|
__typename?: 'JiraJourneyWorkItem';
|
|
60929
61239
|
associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
|
|
61240
|
+
conditions?: Maybe<JiraJourneyItemConditions>;
|
|
60930
61241
|
fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
|
|
60931
61242
|
id: Scalars['ID']['output'];
|
|
60932
61243
|
issueType?: Maybe<JiraIssueType>;
|
|
@@ -62113,6 +62424,7 @@ export declare type JiraMutation = {
|
|
|
62113
62424
|
addFieldsToProject?: Maybe<JiraAddFieldsToProjectPayload>;
|
|
62114
62425
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
62115
62426
|
addJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
62427
|
+
addJiraJourneyWorkItemConditions?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
62116
62428
|
addJiraVersionApprover?: Maybe<JiraVersionAddApproverPayload>;
|
|
62117
62429
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
62118
62430
|
addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
|
|
@@ -62197,6 +62509,7 @@ export declare type JiraMutation = {
|
|
|
62197
62509
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
62198
62510
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
62199
62511
|
removeJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
62512
|
+
removeJiraJourneyWorkItemConditions?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
62200
62513
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
62201
62514
|
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
62202
62515
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
@@ -62327,6 +62640,10 @@ export declare type JiraMutationAddJiraJourneyWorkItemAssociatedAutomationRuleAr
|
|
|
62327
62640
|
cloudId: Scalars['ID']['input'];
|
|
62328
62641
|
input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
|
|
62329
62642
|
};
|
|
62643
|
+
export declare type JiraMutationAddJiraJourneyWorkItemConditionsArgs = {
|
|
62644
|
+
cloudId: Scalars['ID']['input'];
|
|
62645
|
+
input: JiraUpdateJourneyWorkItemConditionsInput;
|
|
62646
|
+
};
|
|
62330
62647
|
export declare type JiraMutationAddJiraVersionApproverArgs = {
|
|
62331
62648
|
input: JiraVersionAddApproverInput;
|
|
62332
62649
|
};
|
|
@@ -62380,6 +62697,7 @@ export declare type JiraMutationCreateBoardArgs = {
|
|
|
62380
62697
|
input: JiraCreateBoardInput;
|
|
62381
62698
|
};
|
|
62382
62699
|
export declare type JiraMutationCreateCalendarIssueArgs = {
|
|
62700
|
+
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
62383
62701
|
configuration: JiraCalendarViewConfigurationInput;
|
|
62384
62702
|
endDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
62385
62703
|
issueTypeId: Scalars['ID']['input'];
|
|
@@ -62602,6 +62920,10 @@ export declare type JiraMutationRemoveJiraJourneyWorkItemAssociatedAutomationRul
|
|
|
62602
62920
|
cloudId: Scalars['ID']['input'];
|
|
62603
62921
|
input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
|
|
62604
62922
|
};
|
|
62923
|
+
export declare type JiraMutationRemoveJiraJourneyWorkItemConditionsArgs = {
|
|
62924
|
+
cloudId: Scalars['ID']['input'];
|
|
62925
|
+
input: JiraUpdateJourneyWorkItemConditionsInput;
|
|
62926
|
+
};
|
|
62605
62927
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
62606
62928
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
62607
62929
|
};
|
|
@@ -62742,6 +63064,7 @@ export declare type JiraMutationUpdateEntitlementFieldArgs = {
|
|
|
62742
63064
|
export declare type JiraMutationUpdateFieldSetsViewArgs = {
|
|
62743
63065
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
62744
63066
|
id: Scalars['ID']['input'];
|
|
63067
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
62745
63068
|
};
|
|
62746
63069
|
export declare type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
62747
63070
|
input: JiraUpdateForgeObjectFieldInput;
|
|
@@ -70283,6 +70606,7 @@ export declare type JiraUpdateFormattingRulePayload = Payload & {
|
|
|
70283
70606
|
export declare type JiraUpdateGlobalCustomFieldInput = {
|
|
70284
70607
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
70285
70608
|
fieldId: Scalars['String']['input'];
|
|
70609
|
+
formatConfig?: InputMaybe<JiraFieldFormatConfigInput>;
|
|
70286
70610
|
name: Scalars['String']['input'];
|
|
70287
70611
|
searcherKey?: InputMaybe<Scalars['String']['input']>;
|
|
70288
70612
|
};
|
|
@@ -70393,6 +70717,13 @@ export declare type JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput = {
|
|
|
70393
70717
|
journeyItemId: Scalars['ID']['input'];
|
|
70394
70718
|
journeyVersion: Scalars['Long']['input'];
|
|
70395
70719
|
};
|
|
70720
|
+
export declare type JiraUpdateJourneyWorkItemConditionsInput = {
|
|
70721
|
+
conditions: JiraJourneyItemConditionsInput;
|
|
70722
|
+
etag: Scalars['String']['input'];
|
|
70723
|
+
journeyId: Scalars['ID']['input'];
|
|
70724
|
+
journeyItemId: Scalars['ID']['input'];
|
|
70725
|
+
journeyVersion: Scalars['Long']['input'];
|
|
70726
|
+
};
|
|
70396
70727
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
70397
70728
|
id: Scalars['ID']['input'];
|
|
70398
70729
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -74114,6 +74445,17 @@ export declare type LoomFolder = {
|
|
|
74114
74445
|
name: Scalars['String']['output'];
|
|
74115
74446
|
parentSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
74116
74447
|
};
|
|
74448
|
+
export declare type LoomJoinWorkspace = {
|
|
74449
|
+
__typename?: 'LoomJoinWorkspace';
|
|
74450
|
+
status: Scalars['String']['output'];
|
|
74451
|
+
};
|
|
74452
|
+
export declare type LoomJoinableWorkspace = {
|
|
74453
|
+
__typename?: 'LoomJoinableWorkspace';
|
|
74454
|
+
autoJoinable: Scalars['Boolean']['output'];
|
|
74455
|
+
guid: Scalars['String']['output'];
|
|
74456
|
+
memberCount: Scalars['Int']['output'];
|
|
74457
|
+
name: Scalars['String']['output'];
|
|
74458
|
+
};
|
|
74117
74459
|
export declare type LoomMeeting = Node & {
|
|
74118
74460
|
__typename?: 'LoomMeeting';
|
|
74119
74461
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -79898,6 +80240,7 @@ export declare type Mutation = {
|
|
|
79898
80240
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
79899
80241
|
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
79900
80242
|
devai_invokeSelfCorrection?: Maybe<DevAiInvokeSelfCorrectionPayload>;
|
|
80243
|
+
devai_rovodevCreateSession?: Maybe<DevAiRovoDevCreateSessionPayload>;
|
|
79901
80244
|
disableExperiment?: Maybe<TapExperiment>;
|
|
79902
80245
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
79903
80246
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -79987,6 +80330,7 @@ export declare type Mutation = {
|
|
|
79987
80330
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
79988
80331
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
79989
80332
|
likeContent?: Maybe<LikeContentPayload>;
|
|
80333
|
+
loom_joinWorkspace?: Maybe<LoomJoinWorkspace>;
|
|
79990
80334
|
loom_spaceCreate?: Maybe<LoomSpace>;
|
|
79991
80335
|
markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
|
|
79992
80336
|
markFeatureDiscovered?: Maybe<FeatureDiscoveryPayload>;
|
|
@@ -80989,6 +81333,9 @@ export declare type MutationDevai_InvokeSelfCorrectionArgs = {
|
|
|
80989
81333
|
issueAri: Scalars['ID']['input'];
|
|
80990
81334
|
jobId: Scalars['ID']['input'];
|
|
80991
81335
|
};
|
|
81336
|
+
export declare type MutationDevai_RovodevCreateSessionArgs = {
|
|
81337
|
+
input: DevAiRovoDevCreateSessionInput;
|
|
81338
|
+
};
|
|
80992
81339
|
export declare type MutationDisableExperimentArgs = {
|
|
80993
81340
|
experimentKey: Scalars['String']['input'];
|
|
80994
81341
|
};
|
|
@@ -81228,6 +81575,9 @@ export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
|
81228
81575
|
export declare type MutationLikeContentArgs = {
|
|
81229
81576
|
input: LikeContentInput;
|
|
81230
81577
|
};
|
|
81578
|
+
export declare type MutationLoom_JoinWorkspaceArgs = {
|
|
81579
|
+
workspaceId: Scalars['String']['input'];
|
|
81580
|
+
};
|
|
81231
81581
|
export declare type MutationLoom_SpaceCreateArgs = {
|
|
81232
81582
|
analyticsSource?: InputMaybe<Scalars['String']['input']>;
|
|
81233
81583
|
name: Scalars['String']['input'];
|
|
@@ -84900,6 +85250,7 @@ export declare type Query = {
|
|
|
84900
85250
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
84901
85251
|
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
84902
85252
|
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
85253
|
+
devai_flowSessionsConnectionByCreatorAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
84903
85254
|
devai_getPrefillRepoUrlForFlow?: Maybe<DevAiFlowRepository>;
|
|
84904
85255
|
devai_getUserPermissionsForRepo?: Maybe<Scalars['Boolean']['output']>;
|
|
84905
85256
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
@@ -85045,6 +85396,7 @@ export declare type Query = {
|
|
|
85045
85396
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
85046
85397
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
85047
85398
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
85399
|
+
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
85048
85400
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
85049
85401
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
85050
85402
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
@@ -85219,8 +85571,10 @@ export declare type Query = {
|
|
|
85219
85571
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
85220
85572
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
85221
85573
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
85574
|
+
stakeholderComms_getAssignmentsByStakeholderV2?: Maybe<StakeholderCommsAssignmentConnection>;
|
|
85222
85575
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
85223
85576
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
85577
|
+
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
85224
85578
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
85225
85579
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
85226
85580
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -86323,9 +86677,17 @@ export declare type QueryDevai_FlowSessionsByIssueKeyAndCloudIdArgs = {
|
|
|
86323
86677
|
issueKey: Scalars['String']['input'];
|
|
86324
86678
|
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
86325
86679
|
};
|
|
86680
|
+
export declare type QueryDevai_FlowSessionsConnectionByCreatorAndCloudIdArgs = {
|
|
86681
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86682
|
+
cloudId: Scalars['ID']['input'];
|
|
86683
|
+
creator: Scalars['String']['input'];
|
|
86684
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86685
|
+
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
86686
|
+
};
|
|
86326
86687
|
export declare type QueryDevai_GetPrefillRepoUrlForFlowArgs = {
|
|
86327
86688
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86328
86689
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
86690
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
86329
86691
|
};
|
|
86330
86692
|
export declare type QueryDevai_GetUserPermissionsForRepoArgs = {
|
|
86331
86693
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -87448,12 +87810,18 @@ export declare type QuerySqlSlowQueryLogsArgs = {
|
|
|
87448
87810
|
export declare type QueryStakeholderComms_GetAssignmentsByStakeholderArgs = {
|
|
87449
87811
|
paginatedAssignmentByStakeholderIdInput: StakeholderCommsPaginatedAssignmentByStakeholderInput;
|
|
87450
87812
|
};
|
|
87813
|
+
export declare type QueryStakeholderComms_GetAssignmentsByStakeholderV2Args = {
|
|
87814
|
+
assignmentConnectionInput: StakeholderCommsAssignmentConnectionInput;
|
|
87815
|
+
};
|
|
87451
87816
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
87452
87817
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
87453
87818
|
};
|
|
87454
87819
|
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
|
|
87455
87820
|
paginatedStakeholderInput: StakeholderCommsPaginatedStakeholderInput;
|
|
87456
87821
|
};
|
|
87822
|
+
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
87823
|
+
stakeholderConnectionInput: StakeholderCommsStakeholderConnectionInput;
|
|
87824
|
+
};
|
|
87457
87825
|
export declare type QueryStalePagesArgs = {
|
|
87458
87826
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
87459
87827
|
includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -90713,7 +91081,9 @@ export declare type Security = {
|
|
|
90713
91081
|
compliantCertifications?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
90714
91082
|
hasCompliantCertifications?: Maybe<Scalars['Boolean']['output']>;
|
|
90715
91083
|
isDiskEncryptionSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
91084
|
+
permissionsJustification?: Maybe<Scalars['String']['output']>;
|
|
90716
91085
|
publicSecurityPoliciesLink?: Maybe<Scalars['String']['output']>;
|
|
91086
|
+
requiresUsersToProvidePATs?: Maybe<Scalars['Boolean']['output']>;
|
|
90717
91087
|
securityContact: Scalars['String']['output'];
|
|
90718
91088
|
};
|
|
90719
91089
|
export declare type SecurityContainer = {
|
|
@@ -93784,7 +94154,7 @@ export declare type SpfAskResult = QueryError | SpfAsk;
|
|
|
93784
94154
|
export declare enum SpfAskStatus {
|
|
93785
94155
|
Accepted = "ACCEPTED",
|
|
93786
94156
|
Canceled = "CANCELED",
|
|
93787
|
-
|
|
94157
|
+
Deferred = "DEFERRED",
|
|
93788
94158
|
Draft = "DRAFT",
|
|
93789
94159
|
InReview = "IN_REVIEW",
|
|
93790
94160
|
Revising = "REVISING",
|
|
@@ -93960,6 +94330,7 @@ export declare type SpfUpdateAskDescriptionInput = {
|
|
|
93960
94330
|
export declare type SpfUpdateAskImpactedWorkInput = {
|
|
93961
94331
|
id: Scalars['ID']['input'];
|
|
93962
94332
|
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
94333
|
+
impactedWorkUrl?: InputMaybe<Scalars['String']['input']>;
|
|
93963
94334
|
};
|
|
93964
94335
|
export declare type SpfUpdateAskJustificationInput = {
|
|
93965
94336
|
id: Scalars['ID']['input'];
|
|
@@ -94100,6 +94471,27 @@ export declare type StakeholderCommsAssignment = {
|
|
|
94100
94471
|
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
94101
94472
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
94102
94473
|
};
|
|
94474
|
+
export declare type StakeholderCommsAssignmentConnection = {
|
|
94475
|
+
__typename?: 'StakeholderCommsAssignmentConnection';
|
|
94476
|
+
edges: Array<StakeholderCommsAssignmentEdge>;
|
|
94477
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
94478
|
+
nodes: Array<StakeholderCommsAssignment>;
|
|
94479
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
94480
|
+
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
94481
|
+
totalCount: Scalars['Int']['output'];
|
|
94482
|
+
};
|
|
94483
|
+
export declare type StakeholderCommsAssignmentConnectionInput = {
|
|
94484
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94485
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
94486
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94487
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
94488
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
94489
|
+
};
|
|
94490
|
+
export declare type StakeholderCommsAssignmentEdge = {
|
|
94491
|
+
__typename?: 'StakeholderCommsAssignmentEdge';
|
|
94492
|
+
cursor: Scalars['String']['output'];
|
|
94493
|
+
node: StakeholderCommsAssignment;
|
|
94494
|
+
};
|
|
94103
94495
|
export declare type StakeholderCommsAssignmentIdInput = {
|
|
94104
94496
|
assignmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
94105
94497
|
assignmentType?: InputMaybe<StakeholderCommsAssignmentType>;
|
|
@@ -94152,6 +94544,13 @@ export declare type StakeholderCommsNotificationPreferenceInput = {
|
|
|
94152
94544
|
preference?: InputMaybe<StakeholderCommsPreferencesInput>;
|
|
94153
94545
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
94154
94546
|
};
|
|
94547
|
+
export declare type StakeholderCommsPageInfo = {
|
|
94548
|
+
__typename?: 'StakeholderCommsPageInfo';
|
|
94549
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
94550
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
94551
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
94552
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
94553
|
+
};
|
|
94155
94554
|
export declare type StakeholderCommsPaginatedAssignmentByStakeholderInput = {
|
|
94156
94555
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
94157
94556
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -94209,6 +94608,27 @@ export declare type StakeholderCommsStakeholderAssignmentResponse = {
|
|
|
94209
94608
|
message?: Maybe<Scalars['String']['output']>;
|
|
94210
94609
|
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
94211
94610
|
};
|
|
94611
|
+
export declare type StakeholderCommsStakeholderConnection = {
|
|
94612
|
+
__typename?: 'StakeholderCommsStakeholderConnection';
|
|
94613
|
+
assignment?: Maybe<StakeholderCommsAssignment>;
|
|
94614
|
+
edges: Array<StakeholderCommsStakeholderEdge>;
|
|
94615
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
94616
|
+
nodes: Array<StakeholderCommsStakeholder>;
|
|
94617
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
94618
|
+
totalCount: Scalars['Int']['output'];
|
|
94619
|
+
};
|
|
94620
|
+
export declare type StakeholderCommsStakeholderConnectionInput = {
|
|
94621
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94622
|
+
assignmentIdInput: StakeholderCommsAssignmentIdInput;
|
|
94623
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
94624
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94625
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
94626
|
+
};
|
|
94627
|
+
export declare type StakeholderCommsStakeholderEdge = {
|
|
94628
|
+
__typename?: 'StakeholderCommsStakeholderEdge';
|
|
94629
|
+
cursor: Scalars['String']['output'];
|
|
94630
|
+
node: StakeholderCommsStakeholder;
|
|
94631
|
+
};
|
|
94212
94632
|
export declare type StakeholderCommsStakeholderIdInput = {
|
|
94213
94633
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
94214
94634
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97343,6 +97763,10 @@ export declare type TrelloBoardPowerUpConnection = {
|
|
|
97343
97763
|
nodes?: Maybe<Array<TrelloPowerUp>>;
|
|
97344
97764
|
pageInfo: PageInfo;
|
|
97345
97765
|
};
|
|
97766
|
+
export declare type TrelloBoardPowerUpConnectionUpdated = {
|
|
97767
|
+
__typename?: 'TrelloBoardPowerUpConnectionUpdated';
|
|
97768
|
+
edges?: Maybe<Array<TrelloBoardPowerUpEdgeUpdated>>;
|
|
97769
|
+
};
|
|
97346
97770
|
export declare type TrelloBoardPowerUpEdge = {
|
|
97347
97771
|
__typename?: 'TrelloBoardPowerUpEdge';
|
|
97348
97772
|
cursor: Scalars['String']['output'];
|
|
@@ -97351,6 +97775,13 @@ export declare type TrelloBoardPowerUpEdge = {
|
|
|
97351
97775
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
97352
97776
|
promotional?: Maybe<Scalars['Boolean']['output']>;
|
|
97353
97777
|
};
|
|
97778
|
+
export declare type TrelloBoardPowerUpEdgeUpdated = {
|
|
97779
|
+
__typename?: 'TrelloBoardPowerUpEdgeUpdated';
|
|
97780
|
+
memberId?: Maybe<Scalars['ID']['output']>;
|
|
97781
|
+
node: TrelloPowerUp;
|
|
97782
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
97783
|
+
promotional?: Maybe<Scalars['Boolean']['output']>;
|
|
97784
|
+
};
|
|
97354
97785
|
export declare type TrelloBoardPowerUpFilterInput = {
|
|
97355
97786
|
access?: InputMaybe<Scalars['String']['input']>;
|
|
97356
97787
|
};
|
|
@@ -97411,6 +97842,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
97411
97842
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
97412
97843
|
onCustomFieldDeleted?: Maybe<Array<TrelloCustomFieldDeleted>>;
|
|
97413
97844
|
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
97845
|
+
powerUps?: Maybe<TrelloBoardPowerUpConnectionUpdated>;
|
|
97414
97846
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
97415
97847
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
97416
97848
|
url?: Maybe<Scalars['URL']['output']>;
|
|
@@ -97477,6 +97909,7 @@ export declare type TrelloCard = Node & {
|
|
|
97477
97909
|
list?: Maybe<TrelloList>;
|
|
97478
97910
|
location?: Maybe<TrelloCardLocation>;
|
|
97479
97911
|
members?: Maybe<TrelloMemberConnection>;
|
|
97912
|
+
membersVoted?: Maybe<TrelloMemberConnection>;
|
|
97480
97913
|
mirrorSource?: Maybe<TrelloCard>;
|
|
97481
97914
|
mirrorSourceId?: Maybe<Scalars['ID']['output']>;
|
|
97482
97915
|
mirrorSourceNodeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -97519,6 +97952,10 @@ export declare type TrelloCardMembersArgs = {
|
|
|
97519
97952
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
97520
97953
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97521
97954
|
};
|
|
97955
|
+
export declare type TrelloCardMembersVotedArgs = {
|
|
97956
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
97957
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97958
|
+
};
|
|
97522
97959
|
export declare type TrelloCardPowerUpDataArgs = {
|
|
97523
97960
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
97524
97961
|
filter?: InputMaybe<TrelloPowerUpDataFilterInput>;
|
|
@@ -97729,6 +98166,10 @@ export declare type TrelloCardCustomFieldItemEdgeUpdated = {
|
|
|
97729
98166
|
__typename?: 'TrelloCardCustomFieldItemEdgeUpdated';
|
|
97730
98167
|
node: TrelloCustomFieldItemUpdated;
|
|
97731
98168
|
};
|
|
98169
|
+
export declare type TrelloCardDeleted = {
|
|
98170
|
+
__typename?: 'TrelloCardDeleted';
|
|
98171
|
+
id: Scalars['ID']['output'];
|
|
98172
|
+
};
|
|
97732
98173
|
export declare type TrelloCardDueInfo = {
|
|
97733
98174
|
__typename?: 'TrelloCardDueInfo';
|
|
97734
98175
|
at?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -97809,6 +98250,7 @@ export declare type TrelloCardUpdated = {
|
|
|
97809
98250
|
list?: Maybe<TrelloList>;
|
|
97810
98251
|
location?: Maybe<TrelloCardLocation>;
|
|
97811
98252
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
98253
|
+
membersVoted?: Maybe<TrelloMemberUpdatedConnection>;
|
|
97812
98254
|
mirrorSource?: Maybe<TrelloCard>;
|
|
97813
98255
|
mirrorSourceId?: Maybe<Scalars['ID']['output']>;
|
|
97814
98256
|
mirrorSourceObjectId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -98013,6 +98455,23 @@ export declare type TrelloCopyInboxCardActionDisplayEntities = {
|
|
|
98013
98455
|
card?: Maybe<TrelloActionCardEntity>;
|
|
98014
98456
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
98015
98457
|
};
|
|
98458
|
+
export declare type TrelloCreateApplicationInput = {
|
|
98459
|
+
agreementId: Scalars['ID']['input'];
|
|
98460
|
+
author: Scalars['String']['input'];
|
|
98461
|
+
email: Scalars['String']['input'];
|
|
98462
|
+
iframeUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
98463
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
98464
|
+
name: Scalars['String']['input'];
|
|
98465
|
+
supportContact: Scalars['String']['input'];
|
|
98466
|
+
workspaceId: Scalars['ID']['input'];
|
|
98467
|
+
};
|
|
98468
|
+
export declare type TrelloCreateApplicationPayload = Payload & {
|
|
98469
|
+
__typename?: 'TrelloCreateApplicationPayload';
|
|
98470
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98471
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
98472
|
+
oauth2Client?: Maybe<TrelloOAuth2Client>;
|
|
98473
|
+
success: Scalars['Boolean']['output'];
|
|
98474
|
+
};
|
|
98016
98475
|
export declare type TrelloCreateCardAction = TrelloAction & TrelloCardActionData & {
|
|
98017
98476
|
__typename?: 'TrelloCreateCardAction';
|
|
98018
98477
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -98476,6 +98935,7 @@ export declare type TrelloListUpdated = {
|
|
|
98476
98935
|
id: Scalars['ID']['output'];
|
|
98477
98936
|
name?: Maybe<Scalars['String']['output']>;
|
|
98478
98937
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
98938
|
+
onCardDeleted?: Maybe<Array<TrelloCardDeleted>>;
|
|
98479
98939
|
position?: Maybe<Scalars['Float']['output']>;
|
|
98480
98940
|
softLimit?: Maybe<Scalars['Int']['output']>;
|
|
98481
98941
|
};
|
|
@@ -98652,6 +99112,7 @@ export declare type TrelloMutationApi = {
|
|
|
98652
99112
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
98653
99113
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
98654
99114
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
99115
|
+
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
98655
99116
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
98656
99117
|
createOAuth2Application?: Maybe<TrelloCreateOAuth2ApplicationPayload>;
|
|
98657
99118
|
createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
|
|
@@ -98675,6 +99136,7 @@ export declare type TrelloMutationApi = {
|
|
|
98675
99136
|
updateBoardVisibility?: Maybe<TrelloUpdateBoardVisibilityPayload>;
|
|
98676
99137
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
98677
99138
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
99139
|
+
updateOAuth2AppCallbackUrls?: Maybe<TrelloUpdateOAuth2AppCallbackUrlsPayload>;
|
|
98678
99140
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
98679
99141
|
};
|
|
98680
99142
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
@@ -98686,6 +99148,9 @@ export declare type TrelloMutationApiArchiveCardArgs = {
|
|
|
98686
99148
|
export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
|
|
98687
99149
|
input: TrelloAssignCardToPlannerCalendarEventInput;
|
|
98688
99150
|
};
|
|
99151
|
+
export declare type TrelloMutationApiCreateApplicationArgs = {
|
|
99152
|
+
input: TrelloCreateApplicationInput;
|
|
99153
|
+
};
|
|
98689
99154
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
98690
99155
|
input: TrelloCreateCardInput;
|
|
98691
99156
|
};
|
|
@@ -98755,6 +99220,9 @@ export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
|
98755
99220
|
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
98756
99221
|
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
98757
99222
|
};
|
|
99223
|
+
export declare type TrelloMutationApiUpdateOAuth2AppCallbackUrlsArgs = {
|
|
99224
|
+
input: TrelloUpdateOAuth2AppCallbackUrlsInput;
|
|
99225
|
+
};
|
|
98758
99226
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
98759
99227
|
input: TrelloWatchCardInput;
|
|
98760
99228
|
};
|
|
@@ -99741,6 +100209,17 @@ export declare type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
|
|
|
99741
100209
|
errors?: Maybe<Array<MutationError>>;
|
|
99742
100210
|
success: Scalars['Boolean']['output'];
|
|
99743
100211
|
};
|
|
100212
|
+
export declare type TrelloUpdateOAuth2AppCallbackUrlsInput = {
|
|
100213
|
+
callbackUrls: Array<Scalars['URL']['input']>;
|
|
100214
|
+
id: Scalars['ID']['input'];
|
|
100215
|
+
};
|
|
100216
|
+
export declare type TrelloUpdateOAuth2AppCallbackUrlsPayload = Payload & {
|
|
100217
|
+
__typename?: 'TrelloUpdateOAuth2AppCallbackUrlsPayload';
|
|
100218
|
+
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
100219
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100220
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
100221
|
+
success: Scalars['Boolean']['output'];
|
|
100222
|
+
};
|
|
99744
100223
|
export declare type TrelloUploadedBackground = {
|
|
99745
100224
|
__typename?: 'TrelloUploadedBackground';
|
|
99746
100225
|
objectId: Scalars['ID']['output'];
|
|
@@ -99944,6 +100423,171 @@ export declare type UnifiedAdmins = UnifiedINode & {
|
|
|
99944
100423
|
admins?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
99945
100424
|
id: Scalars['ID']['output'];
|
|
99946
100425
|
};
|
|
100426
|
+
export declare type UnifiedAiAccount = UnifiedINode & {
|
|
100427
|
+
__typename?: 'UnifiedAiAccount';
|
|
100428
|
+
aaid: Scalars['String']['output'];
|
|
100429
|
+
created_at: Scalars['String']['output'];
|
|
100430
|
+
email_id?: Maybe<Scalars['String']['output']>;
|
|
100431
|
+
id: Scalars['ID']['output'];
|
|
100432
|
+
nickname?: Maybe<Scalars['String']['output']>;
|
|
100433
|
+
org_id?: Maybe<Scalars['String']['output']>;
|
|
100434
|
+
updated_at: Scalars['String']['output'];
|
|
100435
|
+
};
|
|
100436
|
+
export declare type UnifiedAiCategoriesResult = {
|
|
100437
|
+
__typename?: 'UnifiedAiCategoriesResult';
|
|
100438
|
+
categories: Array<UnifiedAiCategory>;
|
|
100439
|
+
};
|
|
100440
|
+
export declare type UnifiedAiCategory = UnifiedINode & {
|
|
100441
|
+
__typename?: 'UnifiedAiCategory';
|
|
100442
|
+
created_at: Scalars['String']['output'];
|
|
100443
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
100444
|
+
href: Scalars['String']['output'];
|
|
100445
|
+
id: Scalars['ID']['output'];
|
|
100446
|
+
is_active: Scalars['Boolean']['output'];
|
|
100447
|
+
name: Scalars['String']['output'];
|
|
100448
|
+
order: Scalars['Int']['output'];
|
|
100449
|
+
parent_id?: Maybe<Scalars['String']['output']>;
|
|
100450
|
+
type: Scalars['String']['output'];
|
|
100451
|
+
updated_at: Scalars['String']['output'];
|
|
100452
|
+
};
|
|
100453
|
+
export declare type UnifiedAiCategoryPayload = {
|
|
100454
|
+
__typename?: 'UnifiedAiCategoryPayload';
|
|
100455
|
+
category?: Maybe<UnifiedAiCategory>;
|
|
100456
|
+
errors?: Maybe<Array<Maybe<UnifiedAiError>>>;
|
|
100457
|
+
success: Scalars['Boolean']['output'];
|
|
100458
|
+
};
|
|
100459
|
+
export declare type UnifiedAiEditHistory = {
|
|
100460
|
+
__typename?: 'UnifiedAiEditHistory';
|
|
100461
|
+
edit_reason?: Maybe<Scalars['String']['output']>;
|
|
100462
|
+
edited_at: Scalars['String']['output'];
|
|
100463
|
+
editor?: Maybe<UnifiedAiAccount>;
|
|
100464
|
+
editor_id: Scalars['String']['output'];
|
|
100465
|
+
id: Scalars['ID']['output'];
|
|
100466
|
+
post_id: Scalars['String']['output'];
|
|
100467
|
+
};
|
|
100468
|
+
export declare type UnifiedAiError = {
|
|
100469
|
+
__typename?: 'UnifiedAiError';
|
|
100470
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
100471
|
+
extensions?: Maybe<UnifiedAiErrorExtensions>;
|
|
100472
|
+
message: Scalars['String']['output'];
|
|
100473
|
+
};
|
|
100474
|
+
export declare type UnifiedAiErrorExtensions = {
|
|
100475
|
+
__typename?: 'UnifiedAiErrorExtensions';
|
|
100476
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
100477
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
100478
|
+
};
|
|
100479
|
+
export declare type UnifiedAiMutation = {
|
|
100480
|
+
__typename?: 'UnifiedAiMutation';
|
|
100481
|
+
createForumCategory?: Maybe<UnifiedAiCategoryPayload>;
|
|
100482
|
+
createPost?: Maybe<UnifiedAiPostPayload>;
|
|
100483
|
+
deletePost?: Maybe<UnifiedAiPostPayload>;
|
|
100484
|
+
updatePost?: Maybe<UnifiedAiPostPayload>;
|
|
100485
|
+
};
|
|
100486
|
+
export declare type UnifiedAiMutationCreateForumCategoryArgs = {
|
|
100487
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
100488
|
+
href: Scalars['String']['input'];
|
|
100489
|
+
is_active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100490
|
+
name: Scalars['String']['input'];
|
|
100491
|
+
order?: InputMaybe<Scalars['Int']['input']>;
|
|
100492
|
+
parent_id?: InputMaybe<Scalars['String']['input']>;
|
|
100493
|
+
type: Scalars['String']['input'];
|
|
100494
|
+
};
|
|
100495
|
+
export declare type UnifiedAiMutationCreatePostArgs = {
|
|
100496
|
+
categoryId: Scalars['String']['input'];
|
|
100497
|
+
content: Scalars['String']['input'];
|
|
100498
|
+
title: Scalars['String']['input'];
|
|
100499
|
+
type: Scalars['String']['input'];
|
|
100500
|
+
};
|
|
100501
|
+
export declare type UnifiedAiMutationDeletePostArgs = {
|
|
100502
|
+
id: Scalars['String']['input'];
|
|
100503
|
+
};
|
|
100504
|
+
export declare type UnifiedAiMutationUpdatePostArgs = {
|
|
100505
|
+
content: Scalars['String']['input'];
|
|
100506
|
+
editReason?: InputMaybe<Scalars['String']['input']>;
|
|
100507
|
+
id: Scalars['String']['input'];
|
|
100508
|
+
};
|
|
100509
|
+
export declare type UnifiedAiPost = UnifiedINode & {
|
|
100510
|
+
__typename?: 'UnifiedAiPost';
|
|
100511
|
+
author?: Maybe<UnifiedAiAccount>;
|
|
100512
|
+
author_id: Scalars['String']['output'];
|
|
100513
|
+
category?: Maybe<UnifiedAiCategory>;
|
|
100514
|
+
category_id: Scalars['String']['output'];
|
|
100515
|
+
content: Scalars['String']['output'];
|
|
100516
|
+
created_at: Scalars['String']['output'];
|
|
100517
|
+
edit_history?: Maybe<Array<Maybe<UnifiedAiEditHistory>>>;
|
|
100518
|
+
id: Scalars['ID']['output'];
|
|
100519
|
+
is_locked: Scalars['Boolean']['output'];
|
|
100520
|
+
is_pinned: Scalars['Boolean']['output'];
|
|
100521
|
+
like_ids: Array<Scalars['String']['output']>;
|
|
100522
|
+
responses?: Maybe<Array<Maybe<UnifiedAiPost>>>;
|
|
100523
|
+
tags: Array<Scalars['String']['output']>;
|
|
100524
|
+
title: Scalars['String']['output'];
|
|
100525
|
+
type: Scalars['String']['output'];
|
|
100526
|
+
updated_at: Scalars['String']['output'];
|
|
100527
|
+
};
|
|
100528
|
+
export declare type UnifiedAiPostEdge = UnifiedIEdge & {
|
|
100529
|
+
__typename?: 'UnifiedAiPostEdge';
|
|
100530
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100531
|
+
node?: Maybe<UnifiedAiPost>;
|
|
100532
|
+
};
|
|
100533
|
+
export declare type UnifiedAiPostPayload = {
|
|
100534
|
+
__typename?: 'UnifiedAiPostPayload';
|
|
100535
|
+
errors?: Maybe<Array<Maybe<UnifiedAiError>>>;
|
|
100536
|
+
post?: Maybe<UnifiedAiPost>;
|
|
100537
|
+
success: Scalars['Boolean']['output'];
|
|
100538
|
+
};
|
|
100539
|
+
export declare type UnifiedAiPostResult = {
|
|
100540
|
+
__typename?: 'UnifiedAiPostResult';
|
|
100541
|
+
post: UnifiedAiPost;
|
|
100542
|
+
};
|
|
100543
|
+
export declare enum UnifiedAiPostSortField {
|
|
100544
|
+
CreatedAt = "CREATED_AT",
|
|
100545
|
+
IsPinned = "IS_PINNED",
|
|
100546
|
+
LastReplyAt = "LAST_REPLY_AT",
|
|
100547
|
+
Title = "TITLE",
|
|
100548
|
+
UpdatedAt = "UPDATED_AT",
|
|
100549
|
+
ViewCount = "VIEW_COUNT"
|
|
100550
|
+
}
|
|
100551
|
+
export declare enum UnifiedAiPostType {
|
|
100552
|
+
Article = "ARTICLE",
|
|
100553
|
+
Question = "QUESTION"
|
|
100554
|
+
}
|
|
100555
|
+
export declare type UnifiedAiPostsConnection = UnifiedIConnection & {
|
|
100556
|
+
__typename?: 'UnifiedAiPostsConnection';
|
|
100557
|
+
edges?: Maybe<Array<Maybe<UnifiedAiPostEdge>>>;
|
|
100558
|
+
pageInfo: UnifiedPageInfo;
|
|
100559
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
100560
|
+
};
|
|
100561
|
+
export declare type UnifiedAiPostsResult = {
|
|
100562
|
+
__typename?: 'UnifiedAiPostsResult';
|
|
100563
|
+
posts: Array<UnifiedAiPost>;
|
|
100564
|
+
};
|
|
100565
|
+
export declare type UnifiedAiQuery = {
|
|
100566
|
+
__typename?: 'UnifiedAiQuery';
|
|
100567
|
+
getAllPosts?: Maybe<UnifiedUAiPostsConnectionResult>;
|
|
100568
|
+
getForumCategories?: Maybe<UnifiedUAiCategoriesResult>;
|
|
100569
|
+
getPostById?: Maybe<UnifiedUAiPostResult>;
|
|
100570
|
+
getPostsByAuthorId?: Maybe<UnifiedUAiPostsResult>;
|
|
100571
|
+
getPostsByCategory?: Maybe<UnifiedUAiPostsResult>;
|
|
100572
|
+
};
|
|
100573
|
+
export declare type UnifiedAiQueryGetAllPostsArgs = {
|
|
100574
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
100575
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100576
|
+
isLocked?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100577
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100578
|
+
sortDirection?: InputMaybe<UnifiedSortDirection>;
|
|
100579
|
+
sortField?: InputMaybe<UnifiedAiPostSortField>;
|
|
100580
|
+
type?: InputMaybe<Array<UnifiedAiPostType>>;
|
|
100581
|
+
};
|
|
100582
|
+
export declare type UnifiedAiQueryGetPostByIdArgs = {
|
|
100583
|
+
id: Scalars['String']['input'];
|
|
100584
|
+
};
|
|
100585
|
+
export declare type UnifiedAiQueryGetPostsByAuthorIdArgs = {
|
|
100586
|
+
authorId: Scalars['String']['input'];
|
|
100587
|
+
};
|
|
100588
|
+
export declare type UnifiedAiQueryGetPostsByCategoryArgs = {
|
|
100589
|
+
categoryId: Scalars['String']['input'];
|
|
100590
|
+
};
|
|
99947
100591
|
export declare type UnifiedAllowList = UnifiedINode & {
|
|
99948
100592
|
__typename?: 'UnifiedAllowList';
|
|
99949
100593
|
allowList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -100455,6 +101099,7 @@ export declare type UnifiedLinkingStatusPayload = UnifiedPayload & {
|
|
|
100455
101099
|
export declare type UnifiedMutation = {
|
|
100456
101100
|
__typename?: 'UnifiedMutation';
|
|
100457
101101
|
account?: Maybe<UnifiedAccountMutation>;
|
|
101102
|
+
ai?: Maybe<UnifiedAiMutation>;
|
|
100458
101103
|
caching?: Maybe<UnifiedCachingMutation>;
|
|
100459
101104
|
community?: Maybe<UnifiedCommunityMutation>;
|
|
100460
101105
|
consent?: Maybe<UnifiedConsentMutation>;
|
|
@@ -100581,6 +101226,7 @@ export declare type UnifiedQuery = {
|
|
|
100581
101226
|
account?: Maybe<UnifiedUAccountResult>;
|
|
100582
101227
|
accountBasics?: Maybe<UnifiedUAccountBasicsResult>;
|
|
100583
101228
|
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
101229
|
+
ai?: Maybe<UnifiedAiQuery>;
|
|
100584
101230
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
100585
101231
|
caching?: Maybe<UnifiedCachingQuery>;
|
|
100586
101232
|
consent?: Maybe<UnifiedConsentQuery>;
|
|
@@ -100649,6 +101295,10 @@ export declare type UnifiedUAccountBasicsResult = UnifiedAccountBasics | Unified
|
|
|
100649
101295
|
export declare type UnifiedUAccountDetailsResult = UnifiedAccountDetails | UnifiedQueryError;
|
|
100650
101296
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
100651
101297
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
101298
|
+
export declare type UnifiedUAiCategoriesResult = UnifiedAiCategoriesResult | UnifiedQueryError;
|
|
101299
|
+
export declare type UnifiedUAiPostResult = UnifiedAiPostResult | UnifiedQueryError;
|
|
101300
|
+
export declare type UnifiedUAiPostsConnectionResult = UnifiedAiPostsConnection | UnifiedQueryError;
|
|
101301
|
+
export declare type UnifiedUAiPostsResult = UnifiedAiPostsResult | UnifiedQueryError;
|
|
100652
101302
|
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
|
|
100653
101303
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
100654
101304
|
export declare type UnifiedUCacheKeyResult = UnifiedCacheKeyResult | UnifiedQueryError;
|