@forge/cli-shared 8.2.0-next.9 → 8.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +72 -0
- package/out/graphql/graphql-types.d.ts +1095 -35
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +123 -25
- package/out/shared/environment.d.ts +1 -1
- package/out/shared/environment.d.ts.map +1 -1
- 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 +3 -3
|
@@ -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';
|
|
@@ -4560,6 +4570,8 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
4560
4570
|
invoiceRequests?: Maybe<Array<Maybe<CcpInvoiceRequest>>>;
|
|
4561
4571
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
4562
4572
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
4573
|
+
meteredChargeElementUsageAggregated?: Maybe<CcpUsageQueryResult>;
|
|
4574
|
+
meteredChargeElementUsageLatest?: Maybe<Scalars['Float']['output']>;
|
|
4563
4575
|
offering?: Maybe<CcpOffering>;
|
|
4564
4576
|
offeringKey?: Maybe<Scalars['ID']['output']>;
|
|
4565
4577
|
order?: Maybe<CcpOrder>;
|
|
@@ -4589,6 +4601,12 @@ export declare type CcpEntitlementInvoiceRequestsArgs = {
|
|
|
4589
4601
|
export declare type CcpEntitlementLatestUsageForChargeElementArgs = {
|
|
4590
4602
|
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
4591
4603
|
};
|
|
4604
|
+
export declare type CcpEntitlementMeteredChargeElementUsageAggregatedArgs = {
|
|
4605
|
+
input: CcpMeteredChargeElementAggregatedInput;
|
|
4606
|
+
};
|
|
4607
|
+
export declare type CcpEntitlementMeteredChargeElementUsageLatestArgs = {
|
|
4608
|
+
input: CcpMeteredChargeElementLatestUsageInput;
|
|
4609
|
+
};
|
|
4592
4610
|
export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
4593
4611
|
__typename?: 'CcpEntitlementExperienceCapabilities';
|
|
4594
4612
|
applyEntitlementPromotion?: Maybe<CcpApplyEntitlementPromotionExperienceCapability>;
|
|
@@ -4768,6 +4786,25 @@ export declare type CcpMapEntry = {
|
|
|
4768
4786
|
key?: Maybe<Scalars['String']['output']>;
|
|
4769
4787
|
value?: Maybe<Scalars['String']['output']>;
|
|
4770
4788
|
};
|
|
4789
|
+
export declare type CcpMeteredChargeElementAggregatedInput = {
|
|
4790
|
+
chargeElementName: Scalars['String']['input'];
|
|
4791
|
+
end: Scalars['Float']['input'];
|
|
4792
|
+
groupByDimensions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4793
|
+
page: Scalars['Int']['input'];
|
|
4794
|
+
pageSize: Scalars['Int']['input'];
|
|
4795
|
+
resolution: CcpUsageQueryResolution;
|
|
4796
|
+
start: Scalars['Float']['input'];
|
|
4797
|
+
statistics: CcpUsageQueryStatistics;
|
|
4798
|
+
};
|
|
4799
|
+
export declare type CcpMeteredChargeElementLatestUsageInput = {
|
|
4800
|
+
chargeElementName: Scalars['String']['input'];
|
|
4801
|
+
chargeElementType: CcpMeteredChargeElementType;
|
|
4802
|
+
groupByDimensions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4803
|
+
};
|
|
4804
|
+
export declare enum CcpMeteredChargeElementType {
|
|
4805
|
+
Counter = "COUNTER",
|
|
4806
|
+
Gauge = "GAUGE"
|
|
4807
|
+
}
|
|
4771
4808
|
export declare type CcpMultipleProductUpgradesExperienceCapability = CommerceExperienceCapability & {
|
|
4772
4809
|
__typename?: 'CcpMultipleProductUpgradesExperienceCapability';
|
|
4773
4810
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -5980,6 +6017,48 @@ export declare enum CcpTrialEndBehaviour {
|
|
|
5980
6017
|
BillingPlan = "BILLING_PLAN",
|
|
5981
6018
|
TrialPlan = "TRIAL_PLAN"
|
|
5982
6019
|
}
|
|
6020
|
+
export declare type CcpUsageQueryBucket = {
|
|
6021
|
+
__typename?: 'CcpUsageQueryBucket';
|
|
6022
|
+
end?: Maybe<Scalars['Float']['output']>;
|
|
6023
|
+
groups?: Maybe<Array<Maybe<CcpUsageQueryGroup>>>;
|
|
6024
|
+
start?: Maybe<Scalars['Float']['output']>;
|
|
6025
|
+
};
|
|
6026
|
+
export declare type CcpUsageQueryDimension = {
|
|
6027
|
+
__typename?: 'CcpUsageQueryDimension';
|
|
6028
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
6029
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
6030
|
+
};
|
|
6031
|
+
export declare type CcpUsageQueryGroup = {
|
|
6032
|
+
__typename?: 'CcpUsageQueryGroup';
|
|
6033
|
+
group?: Maybe<Array<Maybe<CcpUsageQueryDimension>>>;
|
|
6034
|
+
resolution?: Maybe<CcpUsageQueryResolution>;
|
|
6035
|
+
statistics?: Maybe<Array<Maybe<CcpUsageQueryStatistic>>>;
|
|
6036
|
+
};
|
|
6037
|
+
export declare type CcpUsageQueryMetadata = {
|
|
6038
|
+
__typename?: 'CcpUsageQueryMetadata';
|
|
6039
|
+
page?: Maybe<Scalars['Int']['output']>;
|
|
6040
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
6041
|
+
usageKey?: Maybe<Scalars['String']['output']>;
|
|
6042
|
+
};
|
|
6043
|
+
export declare enum CcpUsageQueryResolution {
|
|
6044
|
+
OneDay = "ONE_DAY",
|
|
6045
|
+
OneHour = "ONE_HOUR",
|
|
6046
|
+
OneMonth = "ONE_MONTH"
|
|
6047
|
+
}
|
|
6048
|
+
export declare type CcpUsageQueryResult = {
|
|
6049
|
+
__typename?: 'CcpUsageQueryResult';
|
|
6050
|
+
metadata?: Maybe<CcpUsageQueryMetadata>;
|
|
6051
|
+
results?: Maybe<Array<Maybe<CcpUsageQueryBucket>>>;
|
|
6052
|
+
};
|
|
6053
|
+
export declare type CcpUsageQueryStatistic = {
|
|
6054
|
+
__typename?: 'CcpUsageQueryStatistic';
|
|
6055
|
+
type?: Maybe<CcpUsageQueryStatistics>;
|
|
6056
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
6057
|
+
};
|
|
6058
|
+
export declare enum CcpUsageQueryStatistics {
|
|
6059
|
+
Latest = "LATEST",
|
|
6060
|
+
Sum = "SUM"
|
|
6061
|
+
}
|
|
5983
6062
|
export declare type CcpUsageUpdateCadence = {
|
|
5984
6063
|
__typename?: 'CcpUsageUpdateCadence';
|
|
5985
6064
|
cadenceIntervalMinutes?: Maybe<Scalars['Int']['output']>;
|
|
@@ -9276,6 +9355,7 @@ export declare type CompassGlobalPermissions = {
|
|
|
9276
9355
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
9277
9356
|
deleteIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
9278
9357
|
editCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
9358
|
+
viewIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
9279
9359
|
viewMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
9280
9360
|
};
|
|
9281
9361
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
@@ -12807,16 +12887,26 @@ export declare type ConfluenceInlineCommentStep = {
|
|
|
12807
12887
|
from?: Maybe<Scalars['Int']['output']>;
|
|
12808
12888
|
mark?: Maybe<ConfluenceInlineCommentStepMark>;
|
|
12809
12889
|
pos?: Maybe<Scalars['Int']['output']>;
|
|
12890
|
+
stepType?: Maybe<ConfluenceInlineCommentStepType>;
|
|
12810
12891
|
to?: Maybe<Scalars['Int']['output']>;
|
|
12811
12892
|
};
|
|
12812
12893
|
export declare type ConfluenceInlineCommentStepMark = {
|
|
12813
12894
|
__typename?: 'ConfluenceInlineCommentStepMark';
|
|
12814
12895
|
attrs?: Maybe<ConfluenceInlineCommentStepMarkAttrs>;
|
|
12896
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
12815
12897
|
};
|
|
12816
12898
|
export declare type ConfluenceInlineCommentStepMarkAttrs = {
|
|
12817
12899
|
__typename?: 'ConfluenceInlineCommentStepMarkAttrs';
|
|
12818
12900
|
annotationType?: Maybe<Scalars['String']['output']>;
|
|
12901
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
12819
12902
|
};
|
|
12903
|
+
export declare enum ConfluenceInlineCommentStepType {
|
|
12904
|
+
AddMark = "ADD_MARK",
|
|
12905
|
+
AddNodeMark = "ADD_NODE_MARK",
|
|
12906
|
+
RemoveMark = "REMOVE_MARK",
|
|
12907
|
+
RemoveNodeMark = "REMOVE_NODE_MARK",
|
|
12908
|
+
SetAttrs = "SET_ATTRS"
|
|
12909
|
+
}
|
|
12820
12910
|
export declare type ConfluenceInlineCommentUpdated = {
|
|
12821
12911
|
__typename?: 'ConfluenceInlineCommentUpdated';
|
|
12822
12912
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -14323,6 +14413,7 @@ export declare type Content = {
|
|
|
14323
14413
|
archivedContentMetadata?: Maybe<ArchivedContentMetadata>;
|
|
14324
14414
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
14325
14415
|
attachments?: Maybe<PaginatedContentList>;
|
|
14416
|
+
base64EncodedAri?: Maybe<Scalars['ID']['output']>;
|
|
14326
14417
|
blank: Scalars['Boolean']['output'];
|
|
14327
14418
|
body?: Maybe<ContentBodyPerRepresentation>;
|
|
14328
14419
|
childTypes?: Maybe<ChildContentTypesAvailable>;
|
|
@@ -17394,6 +17485,10 @@ export declare type CsmAiHub = {
|
|
|
17394
17485
|
export declare type CsmAiHubActionsArgs = {
|
|
17395
17486
|
filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17396
17487
|
};
|
|
17488
|
+
export declare type CsmAiHubCoachingContentsArgs = {
|
|
17489
|
+
conversationId?: InputMaybe<Scalars['ID']['input']>;
|
|
17490
|
+
messageId?: InputMaybe<Scalars['ID']['input']>;
|
|
17491
|
+
};
|
|
17397
17492
|
export declare type CsmAiHubWidgetsArgs = {
|
|
17398
17493
|
type?: InputMaybe<CsmAiWidgetType>;
|
|
17399
17494
|
};
|
|
@@ -18167,6 +18262,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
18167
18262
|
updateOrganizationAttributeMultiValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
18168
18263
|
updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
18169
18264
|
updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
18265
|
+
updateParticipants?: Maybe<CustomerServiceRequestUpdateParticipantsPayload>;
|
|
18170
18266
|
updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
|
|
18171
18267
|
updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
|
|
18172
18268
|
};
|
|
@@ -18271,6 +18367,10 @@ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueAr
|
|
|
18271
18367
|
export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueByNameArgs = {
|
|
18272
18368
|
input: CustomerServiceOrganizationUpdateAttributeByNameInput;
|
|
18273
18369
|
};
|
|
18370
|
+
export declare type CustomerServiceMutationApiUpdateParticipantsArgs = {
|
|
18371
|
+
input: CustomerServiceUpdateRequestParticipantInput;
|
|
18372
|
+
workItemId: Scalars['ID']['input'];
|
|
18373
|
+
};
|
|
18274
18374
|
export declare type CustomerServiceMutationApiUpdateProductArgs = {
|
|
18275
18375
|
input: CustomerServiceProductUpdateInput;
|
|
18276
18376
|
};
|
|
@@ -18544,6 +18644,7 @@ export declare type CustomerServiceRequest = {
|
|
|
18544
18644
|
formData?: Maybe<CustomerServiceRequestFormDataConnection>;
|
|
18545
18645
|
id: Scalars['ID']['output'];
|
|
18546
18646
|
key?: Maybe<Scalars['String']['output']>;
|
|
18647
|
+
participants?: Maybe<Array<CustomerServiceRequestParticipant>>;
|
|
18547
18648
|
statusKey?: Maybe<CustomerServiceStatusKey>;
|
|
18548
18649
|
summary?: Maybe<Scalars['String']['output']>;
|
|
18549
18650
|
templateForm?: Maybe<CustomerServiceTemplateForm>;
|
|
@@ -18569,6 +18670,12 @@ export declare type CustomerServiceRequestFormDataEdge = {
|
|
|
18569
18670
|
cursor: Scalars['String']['output'];
|
|
18570
18671
|
node?: Maybe<CustomerServiceRequestFormEntryField>;
|
|
18571
18672
|
};
|
|
18673
|
+
export declare type CustomerServiceRequestFormEntryAttachmentField = CustomerServiceRequestFormEntryField & {
|
|
18674
|
+
__typename?: 'CustomerServiceRequestFormEntryAttachmentField';
|
|
18675
|
+
fileIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
18676
|
+
id: Scalars['ID']['output'];
|
|
18677
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
18678
|
+
};
|
|
18572
18679
|
export declare type CustomerServiceRequestFormEntryField = {
|
|
18573
18680
|
id: Scalars['ID']['output'];
|
|
18574
18681
|
question?: Maybe<Scalars['String']['output']>;
|
|
@@ -18591,6 +18698,18 @@ export declare type CustomerServiceRequestFormEntryTextField = CustomerServiceRe
|
|
|
18591
18698
|
question?: Maybe<Scalars['String']['output']>;
|
|
18592
18699
|
textAnswer?: Maybe<Scalars['String']['output']>;
|
|
18593
18700
|
};
|
|
18701
|
+
export declare type CustomerServiceRequestParticipant = {
|
|
18702
|
+
__typename?: 'CustomerServiceRequestParticipant';
|
|
18703
|
+
accountId: Scalars['String']['output'];
|
|
18704
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
18705
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
18706
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
18707
|
+
};
|
|
18708
|
+
export declare type CustomerServiceRequestUpdateParticipantsPayload = Payload & {
|
|
18709
|
+
__typename?: 'CustomerServiceRequestUpdateParticipantsPayload';
|
|
18710
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18711
|
+
success: Scalars['Boolean']['output'];
|
|
18712
|
+
};
|
|
18594
18713
|
export declare type CustomerServiceRoutingRule = {
|
|
18595
18714
|
__typename?: 'CustomerServiceRoutingRule';
|
|
18596
18715
|
id: Scalars['ID']['output'];
|
|
@@ -18676,6 +18795,10 @@ export declare type CustomerServiceUpdateCustomDetailValuePayload = Payload & {
|
|
|
18676
18795
|
errors?: Maybe<Array<MutationError>>;
|
|
18677
18796
|
success: Scalars['Boolean']['output'];
|
|
18678
18797
|
};
|
|
18798
|
+
export declare type CustomerServiceUpdateRequestParticipantInput = {
|
|
18799
|
+
addedParticipants: Array<Scalars['String']['input']>;
|
|
18800
|
+
deletedParticipants: Array<Scalars['ID']['input']>;
|
|
18801
|
+
};
|
|
18679
18802
|
export declare type CustomerServiceUserDetailValue = {
|
|
18680
18803
|
__typename?: 'CustomerServiceUserDetailValue';
|
|
18681
18804
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -19800,6 +19923,91 @@ export declare enum DevAiRovoAgentTemplateFilter {
|
|
|
19800
19923
|
Include = "INCLUDE",
|
|
19801
19924
|
Only = "ONLY"
|
|
19802
19925
|
}
|
|
19926
|
+
export declare type DevAiRovoDevCreateSessionInput = {
|
|
19927
|
+
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
19928
|
+
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
19929
|
+
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
19930
|
+
repository: DevAiRovoDevRepositoryInput;
|
|
19931
|
+
workspaceAri: Scalars['ID']['input'];
|
|
19932
|
+
};
|
|
19933
|
+
export declare type DevAiRovoDevCreateSessionOptionsInput = {
|
|
19934
|
+
isAutonomous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19935
|
+
raisePullRequestOptions?: InputMaybe<DevAiRovoDevRaisePullRequestOption>;
|
|
19936
|
+
useDeepPlan?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19937
|
+
};
|
|
19938
|
+
export declare type DevAiRovoDevCreateSessionPayload = Payload & {
|
|
19939
|
+
__typename?: 'DevAiRovoDevCreateSessionPayload';
|
|
19940
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19941
|
+
session?: Maybe<DevAiRovoDevSession>;
|
|
19942
|
+
success: Scalars['Boolean']['output'];
|
|
19943
|
+
};
|
|
19944
|
+
export declare enum DevAiRovoDevRaisePullRequestOption {
|
|
19945
|
+
Always = "ALWAYS",
|
|
19946
|
+
Draft = "DRAFT",
|
|
19947
|
+
DraftOnBuildPass = "DRAFT_ON_BUILD_PASS",
|
|
19948
|
+
Never = "NEVER",
|
|
19949
|
+
OnBuildPass = "ON_BUILD_PASS"
|
|
19950
|
+
}
|
|
19951
|
+
export declare type DevAiRovoDevRepository = {
|
|
19952
|
+
__typename?: 'DevAiRovoDevRepository';
|
|
19953
|
+
sourceBranch?: Maybe<Scalars['String']['output']>;
|
|
19954
|
+
targetBranch?: Maybe<Scalars['String']['output']>;
|
|
19955
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19956
|
+
};
|
|
19957
|
+
export declare type DevAiRovoDevRepositoryInput = {
|
|
19958
|
+
sourceBranch?: InputMaybe<Scalars['String']['input']>;
|
|
19959
|
+
targetBranch?: InputMaybe<Scalars['String']['input']>;
|
|
19960
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
19961
|
+
};
|
|
19962
|
+
export declare type DevAiRovoDevSession = Node & {
|
|
19963
|
+
__typename?: 'DevAiRovoDevSession';
|
|
19964
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
19965
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
19966
|
+
editorUrl?: Maybe<Scalars['URL']['output']>;
|
|
19967
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
19968
|
+
id: Scalars['ID']['output'];
|
|
19969
|
+
options?: Maybe<DevAiRovoDevSessionOptions>;
|
|
19970
|
+
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
19971
|
+
repository?: Maybe<DevAiRovoDevRepository>;
|
|
19972
|
+
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
19973
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
19974
|
+
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
19975
|
+
};
|
|
19976
|
+
export declare type DevAiRovoDevSessionConnection = {
|
|
19977
|
+
__typename?: 'DevAiRovoDevSessionConnection';
|
|
19978
|
+
edges?: Maybe<Array<Maybe<DevAiRovoDevSessionEdge>>>;
|
|
19979
|
+
nodes?: Maybe<Array<Maybe<DevAiRovoDevSession>>>;
|
|
19980
|
+
pageInfo?: Maybe<PageInfo>;
|
|
19981
|
+
};
|
|
19982
|
+
export declare type DevAiRovoDevSessionEdge = {
|
|
19983
|
+
__typename?: 'DevAiRovoDevSessionEdge';
|
|
19984
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
19985
|
+
node?: Maybe<DevAiRovoDevSession>;
|
|
19986
|
+
};
|
|
19987
|
+
export declare type DevAiRovoDevSessionLinkInput = {
|
|
19988
|
+
ari: Scalars['String']['input'];
|
|
19989
|
+
rel: DevAiRovoDevSessionLinkRel;
|
|
19990
|
+
};
|
|
19991
|
+
export declare enum DevAiRovoDevSessionLinkRel {
|
|
19992
|
+
Container = "CONTAINER",
|
|
19993
|
+
Site = "SITE",
|
|
19994
|
+
Target = "TARGET"
|
|
19995
|
+
}
|
|
19996
|
+
export declare type DevAiRovoDevSessionOptions = {
|
|
19997
|
+
__typename?: 'DevAiRovoDevSessionOptions';
|
|
19998
|
+
isAutonomous?: Maybe<Scalars['Boolean']['output']>;
|
|
19999
|
+
raisePullRequestOptions?: Maybe<DevAiRovoDevRaisePullRequestOption>;
|
|
20000
|
+
useDeepPlan?: Maybe<Scalars['Boolean']['output']>;
|
|
20001
|
+
};
|
|
20002
|
+
export declare enum DevAiRovoDevSessionStatus {
|
|
20003
|
+
Archived = "ARCHIVED",
|
|
20004
|
+
Failed = "FAILED",
|
|
20005
|
+
Initialising = "INITIALISING",
|
|
20006
|
+
InProgress = "IN_PROGRESS",
|
|
20007
|
+
Pending = "PENDING",
|
|
20008
|
+
ReadyForReview = "READY_FOR_REVIEW",
|
|
20009
|
+
WaitingForUser = "WAITING_FOR_USER"
|
|
20010
|
+
}
|
|
19803
20011
|
export declare type DevAiRunAutofixScanInput = {
|
|
19804
20012
|
repoUrl: Scalars['URL']['input'];
|
|
19805
20013
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28590,6 +28798,10 @@ export declare type GraphStore = {
|
|
|
28590
28798
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28591
28799
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
28592
28800
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28801
|
+
focusAreaHasWatcher?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherConnection>;
|
|
28802
|
+
focusAreaHasWatcherBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
28803
|
+
focusAreaHasWatcherInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection>;
|
|
28804
|
+
focusAreaHasWatcherInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
28593
28805
|
graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
28594
28806
|
graphEntityReplicates3pEntityInverse?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection>;
|
|
28595
28807
|
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
@@ -28972,6 +29184,8 @@ export declare type GraphStore = {
|
|
|
28972
29184
|
userAssignedIssueInverse?: Maybe<GraphStoreSimplifiedUserAssignedIssueInverseConnection>;
|
|
28973
29185
|
userAssignedPir?: Maybe<GraphStoreSimplifiedUserAssignedPirConnection>;
|
|
28974
29186
|
userAssignedPirInverse?: Maybe<GraphStoreSimplifiedUserAssignedPirInverseConnection>;
|
|
29187
|
+
userAssignedWorkItem?: Maybe<GraphStoreSimplifiedUserAssignedWorkItemConnection>;
|
|
29188
|
+
userAssignedWorkItemInverse?: Maybe<GraphStoreSimplifiedUserAssignedWorkItemInverseConnection>;
|
|
28975
29189
|
userAttendedCalendarEvent?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventConnection>;
|
|
28976
29190
|
userAttendedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection>;
|
|
28977
29191
|
userAuthoredCommit?: Maybe<GraphStoreSimplifiedUserAuthoredCommitConnection>;
|
|
@@ -30158,6 +30372,32 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
30158
30372
|
ids: Array<Scalars['ID']['input']>;
|
|
30159
30373
|
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
30160
30374
|
};
|
|
30375
|
+
export declare type GraphStoreFocusAreaHasWatcherArgs = {
|
|
30376
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30377
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30378
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30379
|
+
id: Scalars['ID']['input'];
|
|
30380
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasWatcherSortInput>;
|
|
30381
|
+
};
|
|
30382
|
+
export declare type GraphStoreFocusAreaHasWatcherBatchArgs = {
|
|
30383
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30384
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30385
|
+
ids: Array<Scalars['ID']['input']>;
|
|
30386
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasWatcherSortInput>;
|
|
30387
|
+
};
|
|
30388
|
+
export declare type GraphStoreFocusAreaHasWatcherInverseArgs = {
|
|
30389
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30390
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30391
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30392
|
+
id: Scalars['ID']['input'];
|
|
30393
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasWatcherSortInput>;
|
|
30394
|
+
};
|
|
30395
|
+
export declare type GraphStoreFocusAreaHasWatcherInverseBatchArgs = {
|
|
30396
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30397
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30398
|
+
ids: Array<Scalars['ID']['input']>;
|
|
30399
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasWatcherSortInput>;
|
|
30400
|
+
};
|
|
30161
30401
|
export declare type GraphStoreGraphDocument3pDocumentInverseArgs = {
|
|
30162
30402
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30163
30403
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32650,6 +32890,20 @@ export declare type GraphStoreUserAssignedPirInverseArgs = {
|
|
|
32650
32890
|
id: Scalars['ID']['input'];
|
|
32651
32891
|
sort?: InputMaybe<GraphStoreUserAssignedPirSortInput>;
|
|
32652
32892
|
};
|
|
32893
|
+
export declare type GraphStoreUserAssignedWorkItemArgs = {
|
|
32894
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32895
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32896
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32897
|
+
id: Scalars['ID']['input'];
|
|
32898
|
+
sort?: InputMaybe<GraphStoreUserAssignedWorkItemSortInput>;
|
|
32899
|
+
};
|
|
32900
|
+
export declare type GraphStoreUserAssignedWorkItemInverseArgs = {
|
|
32901
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32902
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32903
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32904
|
+
id: Scalars['ID']['input'];
|
|
32905
|
+
sort?: InputMaybe<GraphStoreUserAssignedWorkItemSortInput>;
|
|
32906
|
+
};
|
|
32653
32907
|
export declare type GraphStoreUserAttendedCalendarEventArgs = {
|
|
32654
32908
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32655
32909
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34568,6 +34822,47 @@ export declare type GraphStoreBatchFocusAreaHasProjectStartNode = {
|
|
|
34568
34822
|
id: Scalars['ID']['output'];
|
|
34569
34823
|
};
|
|
34570
34824
|
export declare type GraphStoreBatchFocusAreaHasProjectStartUnion = MercuryFocusArea;
|
|
34825
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherConnection = HasPageInfo & {
|
|
34826
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherConnection';
|
|
34827
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasWatcherEdge>>;
|
|
34828
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasWatcherNode>>;
|
|
34829
|
+
pageInfo: PageInfo;
|
|
34830
|
+
};
|
|
34831
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherEdge = {
|
|
34832
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherEdge';
|
|
34833
|
+
node: GraphStoreBatchFocusAreaHasWatcherInnerConnection;
|
|
34834
|
+
};
|
|
34835
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherEndNode = {
|
|
34836
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherEndNode';
|
|
34837
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasWatcherEndUnion>;
|
|
34838
|
+
id: Scalars['ID']['output'];
|
|
34839
|
+
};
|
|
34840
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherEndUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
34841
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherInnerConnection = {
|
|
34842
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherInnerConnection';
|
|
34843
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasWatcherInnerEdge>>;
|
|
34844
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasWatcherNode>>;
|
|
34845
|
+
requestedId: Scalars['ID']['output'];
|
|
34846
|
+
};
|
|
34847
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherInnerEdge = {
|
|
34848
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherInnerEdge';
|
|
34849
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34850
|
+
node: GraphStoreBatchFocusAreaHasWatcherNode;
|
|
34851
|
+
};
|
|
34852
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherNode = Node & {
|
|
34853
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherNode';
|
|
34854
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34855
|
+
from: GraphStoreBatchFocusAreaHasWatcherStartNode;
|
|
34856
|
+
id: Scalars['ID']['output'];
|
|
34857
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34858
|
+
to: GraphStoreBatchFocusAreaHasWatcherEndNode;
|
|
34859
|
+
};
|
|
34860
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherStartNode = {
|
|
34861
|
+
__typename?: 'GraphStoreBatchFocusAreaHasWatcherStartNode';
|
|
34862
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasWatcherStartUnion>;
|
|
34863
|
+
id: Scalars['ID']['output'];
|
|
34864
|
+
};
|
|
34865
|
+
export declare type GraphStoreBatchFocusAreaHasWatcherStartUnion = MercuryFocusArea;
|
|
34571
34866
|
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & {
|
|
34572
34867
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection';
|
|
34573
34868
|
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -35691,7 +35986,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35691
35986
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35692
35987
|
id: Scalars['ID']['output'];
|
|
35693
35988
|
};
|
|
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;
|
|
35989
|
+
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
35990
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
35696
35991
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
35697
35992
|
value: Scalars['Int']['output'];
|
|
@@ -35726,7 +36021,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
35726
36021
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
35727
36022
|
id: Scalars['ID']['output'];
|
|
35728
36023
|
};
|
|
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;
|
|
36024
|
+
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
36025
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
35731
36026
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
35732
36027
|
value: Scalars['String']['output'];
|
|
@@ -35736,19 +36031,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35736
36031
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35737
36032
|
id: Scalars['ID']['output'];
|
|
35738
36033
|
};
|
|
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;
|
|
36034
|
+
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
36035
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
35741
36036
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
35742
36037
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
35743
36038
|
id: Scalars['ID']['output'];
|
|
35744
36039
|
};
|
|
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;
|
|
36040
|
+
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
36041
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
35747
36042
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
35748
36043
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
35749
36044
|
id: Scalars['ID']['output'];
|
|
35750
36045
|
};
|
|
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;
|
|
36046
|
+
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
36047
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
35753
36048
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
35754
36049
|
value: Scalars['Boolean']['output'];
|
|
@@ -35847,7 +36142,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
35847
36142
|
V2 = "V2",
|
|
35848
36143
|
V3 = "V3"
|
|
35849
36144
|
}
|
|
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;
|
|
36145
|
+
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
36146
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35852
36147
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35853
36148
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -36266,6 +36561,9 @@ export declare type GraphStoreFocusAreaHasPageSortInput = {
|
|
|
36266
36561
|
export declare type GraphStoreFocusAreaHasProjectSortInput = {
|
|
36267
36562
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36268
36563
|
};
|
|
36564
|
+
export declare type GraphStoreFocusAreaHasWatcherSortInput = {
|
|
36565
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36566
|
+
};
|
|
36269
36567
|
export declare type GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection = HasPageInfo & {
|
|
36270
36568
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection';
|
|
36271
36569
|
edges: Array<Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceEdge>>;
|
|
@@ -42539,6 +42837,34 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
42539
42837
|
};
|
|
42540
42838
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
42541
42839
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
42840
|
+
export declare type GraphStoreSimplifiedFocusAreaHasWatcherConnection = HasPageInfo & {
|
|
42841
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasWatcherConnection';
|
|
42842
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasWatcherEdge>>>;
|
|
42843
|
+
pageInfo: PageInfo;
|
|
42844
|
+
};
|
|
42845
|
+
export declare type GraphStoreSimplifiedFocusAreaHasWatcherEdge = {
|
|
42846
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasWatcherEdge';
|
|
42847
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42848
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42849
|
+
id: Scalars['ID']['output'];
|
|
42850
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42851
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherUnion>;
|
|
42852
|
+
};
|
|
42853
|
+
export declare type GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection = HasPageInfo & {
|
|
42854
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection';
|
|
42855
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseEdge>>>;
|
|
42856
|
+
pageInfo: PageInfo;
|
|
42857
|
+
};
|
|
42858
|
+
export declare type GraphStoreSimplifiedFocusAreaHasWatcherInverseEdge = {
|
|
42859
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasWatcherInverseEdge';
|
|
42860
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42861
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42862
|
+
id: Scalars['ID']['output'];
|
|
42863
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42864
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseUnion>;
|
|
42865
|
+
};
|
|
42866
|
+
export declare type GraphStoreSimplifiedFocusAreaHasWatcherInverseUnion = MercuryFocusArea;
|
|
42867
|
+
export declare type GraphStoreSimplifiedFocusAreaHasWatcherUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42542
42868
|
export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection = HasPageInfo & {
|
|
42543
42869
|
__typename?: 'GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection';
|
|
42544
42870
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseEdge>>>;
|
|
@@ -46019,6 +46345,34 @@ export declare type GraphStoreSimplifiedUserAssignedPirInverseEdge = {
|
|
|
46019
46345
|
};
|
|
46020
46346
|
export declare type GraphStoreSimplifiedUserAssignedPirInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46021
46347
|
export declare type GraphStoreSimplifiedUserAssignedPirUnion = JiraIssue;
|
|
46348
|
+
export declare type GraphStoreSimplifiedUserAssignedWorkItemConnection = HasPageInfo & {
|
|
46349
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedWorkItemConnection';
|
|
46350
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedWorkItemEdge>>>;
|
|
46351
|
+
pageInfo: PageInfo;
|
|
46352
|
+
};
|
|
46353
|
+
export declare type GraphStoreSimplifiedUserAssignedWorkItemEdge = {
|
|
46354
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedWorkItemEdge';
|
|
46355
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46356
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46357
|
+
id: Scalars['ID']['output'];
|
|
46358
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46359
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedWorkItemUnion>;
|
|
46360
|
+
};
|
|
46361
|
+
export declare type GraphStoreSimplifiedUserAssignedWorkItemInverseConnection = HasPageInfo & {
|
|
46362
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedWorkItemInverseConnection';
|
|
46363
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedWorkItemInverseEdge>>>;
|
|
46364
|
+
pageInfo: PageInfo;
|
|
46365
|
+
};
|
|
46366
|
+
export declare type GraphStoreSimplifiedUserAssignedWorkItemInverseEdge = {
|
|
46367
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedWorkItemInverseEdge';
|
|
46368
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46369
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46370
|
+
id: Scalars['ID']['output'];
|
|
46371
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46372
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedWorkItemInverseUnion>;
|
|
46373
|
+
};
|
|
46374
|
+
export declare type GraphStoreSimplifiedUserAssignedWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46375
|
+
export declare type GraphStoreSimplifiedUserAssignedWorkItemUnion = ExternalWorkItem;
|
|
46022
46376
|
export declare type GraphStoreSimplifiedUserAttendedCalendarEventConnection = HasPageInfo & HasTotal & {
|
|
46023
46377
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventConnection';
|
|
46024
46378
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventEdge>>>;
|
|
@@ -46077,7 +46431,7 @@ export declare type GraphStoreSimplifiedUserAuthoredCommitInverseEdge = {
|
|
|
46077
46431
|
lastUpdated: Scalars['DateTime']['output'];
|
|
46078
46432
|
node?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseUnion>;
|
|
46079
46433
|
};
|
|
46080
|
-
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46434
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46081
46435
|
export declare type GraphStoreSimplifiedUserAuthoredCommitUnion = ExternalCommit;
|
|
46082
46436
|
export declare type GraphStoreSimplifiedUserAuthoredPrConnection = HasPageInfo & {
|
|
46083
46437
|
__typename?: 'GraphStoreSimplifiedUserAuthoredPrConnection';
|
|
@@ -46105,7 +46459,7 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
46105
46459
|
lastUpdated: Scalars['DateTime']['output'];
|
|
46106
46460
|
node?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseUnion>;
|
|
46107
46461
|
};
|
|
46108
|
-
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46462
|
+
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46109
46463
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
46110
46464
|
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection = HasPageInfo & HasTotal & {
|
|
46111
46465
|
__typename?: 'GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection';
|
|
@@ -47809,7 +48163,7 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
47809
48163
|
lastUpdated: Scalars['DateTime']['output'];
|
|
47810
48164
|
node?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseUnion>;
|
|
47811
48165
|
};
|
|
47812
|
-
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48166
|
+
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
47813
48167
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
47814
48168
|
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
47815
48169
|
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageConnection';
|
|
@@ -49271,6 +49625,9 @@ export declare type GraphStoreUserAssignedIssueSortInput = {
|
|
|
49271
49625
|
export declare type GraphStoreUserAssignedPirSortInput = {
|
|
49272
49626
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49273
49627
|
};
|
|
49628
|
+
export declare type GraphStoreUserAssignedWorkItemSortInput = {
|
|
49629
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49630
|
+
};
|
|
49274
49631
|
export declare type GraphStoreUserAttendedCalendarEventConditionalFilterInput = {
|
|
49275
49632
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
49276
49633
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -50209,11 +50566,15 @@ export declare type GrowthUnifiedProfileTrialContextInput = {
|
|
|
50209
50566
|
trialType: GrowthUnifiedProfileTrialType;
|
|
50210
50567
|
};
|
|
50211
50568
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
50569
|
+
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
50212
50570
|
EditionParity = "EDITION_PARITY",
|
|
50213
|
-
ReverseTrial = "REVERSE_TRIAL"
|
|
50571
|
+
ReverseTrial = "REVERSE_TRIAL",
|
|
50572
|
+
Ui = "UI"
|
|
50214
50573
|
}
|
|
50215
50574
|
export declare enum GrowthUnifiedProfileTrialType {
|
|
50575
|
+
AutoUpgrade = "AUTO_UPGRADE",
|
|
50216
50576
|
DirectTrial = "DIRECT_TRIAL",
|
|
50577
|
+
ManualTrial = "MANUAL_TRIAL",
|
|
50217
50578
|
ReverseTrial = "REVERSE_TRIAL"
|
|
50218
50579
|
}
|
|
50219
50580
|
export declare type GrowthUnifiedProfileTwcCreateOrgProfileResponse = {
|
|
@@ -52255,7 +52616,7 @@ export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
|
52255
52616
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
52256
52617
|
topLevelArticlesOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52257
52618
|
};
|
|
52258
|
-
export declare type HelpObjectStoreSupportSiteArticleSearchResponse =
|
|
52619
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResponse = HelpObjectStoreSupportSiteArticleSearchResult | QueryError;
|
|
52259
52620
|
export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
|
|
52260
52621
|
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResult';
|
|
52261
52622
|
ancestors?: Maybe<Array<HelpObjectStoreArticleRelative>>;
|
|
@@ -52270,14 +52631,14 @@ export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
|
|
|
52270
52631
|
};
|
|
52271
52632
|
export declare type HelpObjectStoreSupportSiteArticleSearchResultConnection = {
|
|
52272
52633
|
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultConnection';
|
|
52273
|
-
edges?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResultEdge
|
|
52274
|
-
nodes?: Maybe<Array<
|
|
52634
|
+
edges?: Maybe<Array<Maybe<HelpObjectStoreSupportSiteArticleSearchResultEdge>>>;
|
|
52635
|
+
nodes?: Maybe<Array<Maybe<HelpObjectStoreSupportSiteArticleSearchResponse>>>;
|
|
52275
52636
|
pageInfo: PageInfo;
|
|
52276
52637
|
};
|
|
52277
52638
|
export declare type HelpObjectStoreSupportSiteArticleSearchResultEdge = {
|
|
52278
52639
|
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultEdge';
|
|
52279
52640
|
cursor: Scalars['String']['output'];
|
|
52280
|
-
node
|
|
52641
|
+
node?: Maybe<HelpObjectStoreSupportSiteArticleSearchResponse>;
|
|
52281
52642
|
};
|
|
52282
52643
|
export declare type History = {
|
|
52283
52644
|
__typename?: 'History';
|
|
@@ -53322,7 +53683,8 @@ export declare type JiraAccessAtlassianIntelligenceFeature = {
|
|
|
53322
53683
|
export declare enum JiraActionType {
|
|
53323
53684
|
CreateCompanyManagedProject = "CREATE_COMPANY_MANAGED_PROJECT",
|
|
53324
53685
|
CreateProject = "CREATE_PROJECT",
|
|
53325
|
-
CreateTeamManagedProject = "CREATE_TEAM_MANAGED_PROJECT"
|
|
53686
|
+
CreateTeamManagedProject = "CREATE_TEAM_MANAGED_PROJECT",
|
|
53687
|
+
ViewProjectCreationEntry = "VIEW_PROJECT_CREATION_ENTRY"
|
|
53326
53688
|
}
|
|
53327
53689
|
export declare type JiraActiveBackgroundDetailsResult = JiraAttachmentBackground | JiraColorBackground | JiraGradientBackground | JiraMediaBackground | QueryError;
|
|
53328
53690
|
export declare type JiraActivityConfiguration = {
|
|
@@ -54966,6 +55328,19 @@ export declare type JiraCalendarVersionsInput = {
|
|
|
54966
55328
|
includeSharedReleases?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54967
55329
|
versionStatuses?: InputMaybe<Array<JiraVersionStatus>>;
|
|
54968
55330
|
};
|
|
55331
|
+
export declare type JiraCalendarView = {
|
|
55332
|
+
__typename?: 'JiraCalendarView';
|
|
55333
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
55334
|
+
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
55335
|
+
id: Scalars['ID']['output'];
|
|
55336
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
55337
|
+
};
|
|
55338
|
+
export declare type JiraCalendarViewFilterConfigArgs = {
|
|
55339
|
+
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
55340
|
+
};
|
|
55341
|
+
export declare type JiraCalendarViewIsViewConfigModifiedArgs = {
|
|
55342
|
+
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
55343
|
+
};
|
|
54969
55344
|
export declare type JiraCalendarViewConfigurationInput = {
|
|
54970
55345
|
date?: InputMaybe<Scalars['DateTime']['input']>;
|
|
54971
55346
|
endDateField?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -54974,6 +55349,9 @@ export declare type JiraCalendarViewConfigurationInput = {
|
|
|
54974
55349
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
54975
55350
|
weekStart?: InputMaybe<JiraCalendarWeekStart>;
|
|
54976
55351
|
};
|
|
55352
|
+
export declare type JiraCalendarViewSettings = {
|
|
55353
|
+
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
55354
|
+
};
|
|
54977
55355
|
export declare enum JiraCalendarWeekStart {
|
|
54978
55356
|
Monday = "MONDAY",
|
|
54979
55357
|
Saturday = "SATURDAY",
|
|
@@ -56325,6 +56703,7 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
|
|
|
56325
56703
|
};
|
|
56326
56704
|
export declare type JiraCreateGlobalCustomFieldInput = {
|
|
56327
56705
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
56706
|
+
formatConfig?: InputMaybe<JiraFieldFormatConfigInput>;
|
|
56328
56707
|
name: Scalars['String']['input'];
|
|
56329
56708
|
options?: InputMaybe<Array<JiraCreateGlobalCustomFieldOptionInput>>;
|
|
56330
56709
|
type: JiraConfigFieldType;
|
|
@@ -56628,6 +57007,11 @@ export declare type JiraCustomerServiceUpdateOrganizationOperationInput = {
|
|
|
56628
57007
|
operation: JiraSingleValueFieldOperations;
|
|
56629
57008
|
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
56630
57009
|
};
|
|
57010
|
+
export declare type JiraCustomizeProjectLevelSidebarMenuItemInput = {
|
|
57011
|
+
cloudId: Scalars['ID']['input'];
|
|
57012
|
+
hiddenMenuItems: Array<InputMaybe<JiraProjectLevelSidebarMenuItemInput>>;
|
|
57013
|
+
projectId: Scalars['ID']['input'];
|
|
57014
|
+
};
|
|
56631
57015
|
export declare type JiraDashboard = Node & {
|
|
56632
57016
|
__typename?: 'JiraDashboard';
|
|
56633
57017
|
dashboardId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -56868,6 +57252,17 @@ export declare type JiraDeleteIssueSearchFormattingRulePayload = {
|
|
|
56868
57252
|
errors?: Maybe<Array<MutationError>>;
|
|
56869
57253
|
success: Scalars['Boolean']['output'];
|
|
56870
57254
|
};
|
|
57255
|
+
export declare type JiraDeleteIssueTypeInput = {
|
|
57256
|
+
cloudId: Scalars['ID']['input'];
|
|
57257
|
+
issueTypeId: Scalars['ID']['input'];
|
|
57258
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
57259
|
+
};
|
|
57260
|
+
export declare type JiraDeleteIssueTypePayload = Payload & {
|
|
57261
|
+
__typename?: 'JiraDeleteIssueTypePayload';
|
|
57262
|
+
deletedIssueTypeId?: Maybe<Scalars['ID']['output']>;
|
|
57263
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57264
|
+
success: Scalars['Boolean']['output'];
|
|
57265
|
+
};
|
|
56871
57266
|
export declare type JiraDeleteJourneyItemInput = {
|
|
56872
57267
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
56873
57268
|
itemId: Scalars['ID']['input'];
|
|
@@ -56950,6 +57345,7 @@ export declare type JiraDetailedViewIssuesArgs = {
|
|
|
56950
57345
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
56951
57346
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56952
57347
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
57348
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
56953
57349
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
56954
57350
|
};
|
|
56955
57351
|
export declare type JiraDevInfoConfigError = {
|
|
@@ -57296,6 +57692,9 @@ export declare type JiraDiscardUserIssueSearchConfigPayload = {
|
|
|
57296
57692
|
errors?: Maybe<Array<MutationError>>;
|
|
57297
57693
|
success: Scalars['Boolean']['output'];
|
|
57298
57694
|
};
|
|
57695
|
+
export declare type JiraDiscardUserViewConfigInput = {
|
|
57696
|
+
viewId: Scalars['ID']['input'];
|
|
57697
|
+
};
|
|
57299
57698
|
export declare type JiraDismissBitbucketPendingAccessRequestBannerInput = {
|
|
57300
57699
|
isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57301
57700
|
};
|
|
@@ -58361,12 +58760,13 @@ export declare type JiraForgeWorkItemPanel = {
|
|
|
58361
58760
|
};
|
|
58362
58761
|
export declare type JiraForgeWorkItemPanelInstance = {
|
|
58363
58762
|
__typename?: 'JiraForgeWorkItemPanelInstance';
|
|
58763
|
+
added: Scalars['Long']['output'];
|
|
58364
58764
|
collapsed: Scalars['Boolean']['output'];
|
|
58365
58765
|
id: Scalars['ID']['output'];
|
|
58366
58766
|
pinnedTo: JiraForgeWorkItemPinnableEntityType;
|
|
58367
58767
|
};
|
|
58368
58768
|
export declare type JiraForgeWorkItemPanelsContextInput = {
|
|
58369
|
-
workItemIdOrKey
|
|
58769
|
+
workItemIdOrKey: Scalars['String']['input'];
|
|
58370
58770
|
};
|
|
58371
58771
|
export declare enum JiraForgeWorkItemPinnableEntityType {
|
|
58372
58772
|
Project = "PROJECT",
|
|
@@ -58659,9 +59059,12 @@ export declare type JiraGrantTypeValueEdge = {
|
|
|
58659
59059
|
};
|
|
58660
59060
|
export declare type JiraGroup = Node & {
|
|
58661
59061
|
__typename?: 'JiraGroup';
|
|
59062
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
58662
59063
|
groupId: Scalars['String']['output'];
|
|
58663
59064
|
id: Scalars['ID']['output'];
|
|
59065
|
+
managedBy?: Maybe<JiraGroupManagedBy>;
|
|
58664
59066
|
name: Scalars['String']['output'];
|
|
59067
|
+
usageType?: Maybe<JiraGroupUsageType>;
|
|
58665
59068
|
};
|
|
58666
59069
|
export declare type JiraGroupByDropdownFilter = {
|
|
58667
59070
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58687,6 +59090,16 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
58687
59090
|
export declare type JiraGroupInput = {
|
|
58688
59091
|
groupName: Scalars['ID']['input'];
|
|
58689
59092
|
};
|
|
59093
|
+
export declare enum JiraGroupManagedBy {
|
|
59094
|
+
Admins = "ADMINS",
|
|
59095
|
+
External = "EXTERNAL",
|
|
59096
|
+
Open = "OPEN",
|
|
59097
|
+
TeamMembers = "TEAM_MEMBERS"
|
|
59098
|
+
}
|
|
59099
|
+
export declare enum JiraGroupUsageType {
|
|
59100
|
+
TeamCollaboration = "TEAM_COLLABORATION",
|
|
59101
|
+
UserbaseGroup = "USERBASE_GROUP"
|
|
59102
|
+
}
|
|
58690
59103
|
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
58691
59104
|
__typename?: 'JiraGroupedListView';
|
|
58692
59105
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -58880,6 +59293,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
58880
59293
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
58881
59294
|
legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
58882
59295
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
59296
|
+
linkedBranches?: Maybe<JiraIssueBranches>;
|
|
58883
59297
|
linkedCommits?: Maybe<JiraIssueCommits>;
|
|
58884
59298
|
linkedPullRequests?: Maybe<JiraIssuePullRequests>;
|
|
58885
59299
|
matchesIssueSearch?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59068,6 +59482,9 @@ export declare type JiraIssueLegacyContentPanelsArgs = {
|
|
|
59068
59482
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59069
59483
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
59070
59484
|
};
|
|
59485
|
+
export declare type JiraIssueLinkedBranchesArgs = {
|
|
59486
|
+
input?: InputMaybe<JiraIssueBranchesInput>;
|
|
59487
|
+
};
|
|
59071
59488
|
export declare type JiraIssueLinkedCommitsArgs = {
|
|
59072
59489
|
input?: InputMaybe<JiraIssueCommitsInput>;
|
|
59073
59490
|
};
|
|
@@ -59140,6 +59557,9 @@ export declare type JiraIssueBranches = {
|
|
|
59140
59557
|
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
59141
59558
|
details?: Maybe<Array<JiraDevOpsBranchDetails>>;
|
|
59142
59559
|
};
|
|
59560
|
+
export declare type JiraIssueBranchesInput = {
|
|
59561
|
+
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59562
|
+
};
|
|
59143
59563
|
export declare type JiraIssueBuildDevSummary = {
|
|
59144
59564
|
__typename?: 'JiraIssueBuildDevSummary';
|
|
59145
59565
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -59510,6 +59930,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
59510
59930
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
59511
59931
|
description?: Maybe<Scalars['String']['output']>;
|
|
59512
59932
|
fieldId: Scalars['String']['output'];
|
|
59933
|
+
formatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
59513
59934
|
id: Scalars['ID']['output'];
|
|
59514
59935
|
isCustom: Scalars['Boolean']['output'];
|
|
59515
59936
|
isDefaultFieldOptionsCountOverLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59936,6 +60357,7 @@ export declare type JiraIssueLinkRelationshipTypeField = JiraIssueField & JiraIs
|
|
|
59936
60357
|
type: Scalars['String']['output'];
|
|
59937
60358
|
};
|
|
59938
60359
|
export declare type JiraIssueLinkRelationshipTypeUpdateInput = {
|
|
60360
|
+
direction?: InputMaybe<JiraIssueLinkDirection>;
|
|
59939
60361
|
issueLinkId: Scalars['ID']['input'];
|
|
59940
60362
|
issueLinkTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
59941
60363
|
};
|
|
@@ -60593,6 +61015,9 @@ export declare type JiraIssueTypeConnection = {
|
|
|
60593
61015
|
export declare type JiraIssueTypeEdge = {
|
|
60594
61016
|
__typename?: 'JiraIssueTypeEdge';
|
|
60595
61017
|
cursor: Scalars['String']['output'];
|
|
61018
|
+
isAssigneePresentInIssueCreate?: Maybe<Scalars['Boolean']['output']>;
|
|
61019
|
+
isDueDatePresentInIssueCreate?: Maybe<Scalars['Boolean']['output']>;
|
|
61020
|
+
isDueDateRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
60596
61021
|
node?: Maybe<JiraIssueType>;
|
|
60597
61022
|
};
|
|
60598
61023
|
export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
@@ -60822,6 +61247,36 @@ export declare type JiraJourneyItemCommon = {
|
|
|
60822
61247
|
name?: Maybe<Scalars['String']['output']>;
|
|
60823
61248
|
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
60824
61249
|
};
|
|
61250
|
+
export declare type JiraJourneyItemCondition = {
|
|
61251
|
+
__typename?: 'JiraJourneyItemCondition';
|
|
61252
|
+
comparator: JiraJourneyItemConditionComparator;
|
|
61253
|
+
left: Scalars['String']['output'];
|
|
61254
|
+
right: Scalars['String']['output'];
|
|
61255
|
+
};
|
|
61256
|
+
export declare enum JiraJourneyItemConditionComparator {
|
|
61257
|
+
Contains = "CONTAINS",
|
|
61258
|
+
Equals = "EQUALS",
|
|
61259
|
+
GreaterThan = "GREATER_THAN",
|
|
61260
|
+
LessThan = "LESS_THAN",
|
|
61261
|
+
NotContains = "NOT_CONTAINS",
|
|
61262
|
+
NotEquals = "NOT_EQUALS",
|
|
61263
|
+
RegexContains = "REGEX_CONTAINS",
|
|
61264
|
+
RegexMatches = "REGEX_MATCHES",
|
|
61265
|
+
RegexNotMatches = "REGEX_NOT_MATCHES",
|
|
61266
|
+
StartsWith = "STARTS_WITH"
|
|
61267
|
+
}
|
|
61268
|
+
export declare type JiraJourneyItemConditionInput = {
|
|
61269
|
+
comparator: JiraJourneyItemConditionComparator;
|
|
61270
|
+
left: Scalars['String']['input'];
|
|
61271
|
+
right: Scalars['String']['input'];
|
|
61272
|
+
};
|
|
61273
|
+
export declare type JiraJourneyItemConditions = {
|
|
61274
|
+
__typename?: 'JiraJourneyItemConditions';
|
|
61275
|
+
conditions?: Maybe<Array<JiraJourneyItemCondition>>;
|
|
61276
|
+
};
|
|
61277
|
+
export declare type JiraJourneyItemConditionsInput = {
|
|
61278
|
+
conditions: Array<JiraJourneyItemConditionInput>;
|
|
61279
|
+
};
|
|
60825
61280
|
export declare type JiraJourneyItemConfigurationInput = {
|
|
60826
61281
|
statusDependencyConfiguration?: InputMaybe<JiraJourneyStatusDependencyConfigurationInput>;
|
|
60827
61282
|
workItemConfiguration?: InputMaybe<JiraJourneyWorkItemConfigurationInput>;
|
|
@@ -60917,6 +61372,7 @@ export declare type JiraJourneyValidationError = {
|
|
|
60917
61372
|
export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
60918
61373
|
__typename?: 'JiraJourneyWorkItem';
|
|
60919
61374
|
associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
|
|
61375
|
+
conditions?: Maybe<JiraJourneyItemConditions>;
|
|
60920
61376
|
fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
|
|
60921
61377
|
id: Scalars['ID']['output'];
|
|
60922
61378
|
issueType?: Maybe<JiraIssueType>;
|
|
@@ -61717,6 +62173,7 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
61717
62173
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
61718
62174
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61719
62175
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62176
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
61720
62177
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
61721
62178
|
};
|
|
61722
62179
|
export declare type JiraListViewViewSettingsArgs = {
|
|
@@ -62102,6 +62559,7 @@ export declare type JiraMutation = {
|
|
|
62102
62559
|
addFieldsToProject?: Maybe<JiraAddFieldsToProjectPayload>;
|
|
62103
62560
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
62104
62561
|
addJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
62562
|
+
addJiraJourneyWorkItemConditions?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
62105
62563
|
addJiraVersionApprover?: Maybe<JiraVersionAddApproverPayload>;
|
|
62106
62564
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
62107
62565
|
addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
|
|
@@ -62186,6 +62644,7 @@ export declare type JiraMutation = {
|
|
|
62186
62644
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
62187
62645
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
62188
62646
|
removeJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
62647
|
+
removeJiraJourneyWorkItemConditions?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
62189
62648
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
62190
62649
|
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
62191
62650
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
@@ -62316,6 +62775,10 @@ export declare type JiraMutationAddJiraJourneyWorkItemAssociatedAutomationRuleAr
|
|
|
62316
62775
|
cloudId: Scalars['ID']['input'];
|
|
62317
62776
|
input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
|
|
62318
62777
|
};
|
|
62778
|
+
export declare type JiraMutationAddJiraJourneyWorkItemConditionsArgs = {
|
|
62779
|
+
cloudId: Scalars['ID']['input'];
|
|
62780
|
+
input: JiraUpdateJourneyWorkItemConditionsInput;
|
|
62781
|
+
};
|
|
62319
62782
|
export declare type JiraMutationAddJiraVersionApproverArgs = {
|
|
62320
62783
|
input: JiraVersionAddApproverInput;
|
|
62321
62784
|
};
|
|
@@ -62369,6 +62832,7 @@ export declare type JiraMutationCreateBoardArgs = {
|
|
|
62369
62832
|
input: JiraCreateBoardInput;
|
|
62370
62833
|
};
|
|
62371
62834
|
export declare type JiraMutationCreateCalendarIssueArgs = {
|
|
62835
|
+
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
62372
62836
|
configuration: JiraCalendarViewConfigurationInput;
|
|
62373
62837
|
endDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
62374
62838
|
issueTypeId: Scalars['ID']['input'];
|
|
@@ -62591,6 +63055,10 @@ export declare type JiraMutationRemoveJiraJourneyWorkItemAssociatedAutomationRul
|
|
|
62591
63055
|
cloudId: Scalars['ID']['input'];
|
|
62592
63056
|
input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
|
|
62593
63057
|
};
|
|
63058
|
+
export declare type JiraMutationRemoveJiraJourneyWorkItemConditionsArgs = {
|
|
63059
|
+
cloudId: Scalars['ID']['input'];
|
|
63060
|
+
input: JiraUpdateJourneyWorkItemConditionsInput;
|
|
63061
|
+
};
|
|
62594
63062
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
62595
63063
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
62596
63064
|
};
|
|
@@ -62731,6 +63199,7 @@ export declare type JiraMutationUpdateEntitlementFieldArgs = {
|
|
|
62731
63199
|
export declare type JiraMutationUpdateFieldSetsViewArgs = {
|
|
62732
63200
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
62733
63201
|
id: Scalars['ID']['input'];
|
|
63202
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
62734
63203
|
};
|
|
62735
63204
|
export declare type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
62736
63205
|
input: JiraUpdateForgeObjectFieldInput;
|
|
@@ -63070,6 +63539,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
63070
63539
|
Requests = "REQUESTS",
|
|
63071
63540
|
Security = "SECURITY",
|
|
63072
63541
|
Shortcuts = "SHORTCUTS",
|
|
63542
|
+
Staffing = "STAFFING",
|
|
63073
63543
|
Summary = "SUMMARY",
|
|
63074
63544
|
Teams = "TEAMS",
|
|
63075
63545
|
Timeline = "TIMELINE"
|
|
@@ -64814,6 +65284,29 @@ export declare type JiraProjectKeysInput = {
|
|
|
64814
65284
|
cloudId: Scalars['ID']['input'];
|
|
64815
65285
|
keys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
64816
65286
|
};
|
|
65287
|
+
export declare type JiraProjectLevelSidebarMenuCustomization = {
|
|
65288
|
+
__typename?: 'JiraProjectLevelSidebarMenuCustomization';
|
|
65289
|
+
hiddenMenuItems?: Maybe<JiraProjectLevelSidebarMenuItemConnection>;
|
|
65290
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
65291
|
+
};
|
|
65292
|
+
export declare type JiraProjectLevelSidebarMenuItem = {
|
|
65293
|
+
__typename?: 'JiraProjectLevelSidebarMenuItem';
|
|
65294
|
+
itemId: Scalars['ID']['output'];
|
|
65295
|
+
};
|
|
65296
|
+
export declare type JiraProjectLevelSidebarMenuItemConnection = {
|
|
65297
|
+
__typename?: 'JiraProjectLevelSidebarMenuItemConnection';
|
|
65298
|
+
edges?: Maybe<Array<Maybe<JiraProjectLevelSidebarMenuItemEdge>>>;
|
|
65299
|
+
pageInfo?: Maybe<PageInfo>;
|
|
65300
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
65301
|
+
};
|
|
65302
|
+
export declare type JiraProjectLevelSidebarMenuItemEdge = {
|
|
65303
|
+
__typename?: 'JiraProjectLevelSidebarMenuItemEdge';
|
|
65304
|
+
cursor: Scalars['String']['output'];
|
|
65305
|
+
node?: Maybe<JiraProjectLevelSidebarMenuItem>;
|
|
65306
|
+
};
|
|
65307
|
+
export declare type JiraProjectLevelSidebarMenuItemInput = {
|
|
65308
|
+
itemId: Scalars['ID']['input'];
|
|
65309
|
+
};
|
|
64817
65310
|
export declare enum JiraProjectListRightPanelState {
|
|
64818
65311
|
Closed = "CLOSED",
|
|
64819
65312
|
Open = "OPEN"
|
|
@@ -65170,6 +65663,7 @@ export declare type JiraPublishIssueSearchConfigPayload = Payload & {
|
|
|
65170
65663
|
__typename?: 'JiraPublishIssueSearchConfigPayload';
|
|
65171
65664
|
errors?: Maybe<Array<MutationError>>;
|
|
65172
65665
|
success: Scalars['Boolean']['output'];
|
|
65666
|
+
view?: Maybe<JiraView>;
|
|
65173
65667
|
};
|
|
65174
65668
|
export declare type JiraPublishJourneyConfigurationInput = {
|
|
65175
65669
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -66838,6 +67332,7 @@ export declare type JiraReportCategory = {
|
|
|
66838
67332
|
export declare type JiraReportCategoryConnection = {
|
|
66839
67333
|
__typename?: 'JiraReportCategoryConnection';
|
|
66840
67334
|
edges?: Maybe<Array<Maybe<JiraReportCategoryEdge>>>;
|
|
67335
|
+
errors?: Maybe<Array<QueryError>>;
|
|
66841
67336
|
pageInfo: PageInfo;
|
|
66842
67337
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
66843
67338
|
};
|
|
@@ -69236,11 +69731,13 @@ export declare type JiraSpreadsheetGroupByConfigRecentlyUsedArgs = {
|
|
|
69236
69731
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
69237
69732
|
filter?: InputMaybe<JiraGroupByDropdownFilter>;
|
|
69238
69733
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69734
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
69239
69735
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69240
69736
|
};
|
|
69241
69737
|
export declare type JiraSpreadsheetGroupByFieldOptionConnection = {
|
|
69242
69738
|
__typename?: 'JiraSpreadsheetGroupByFieldOptionConnection';
|
|
69243
69739
|
edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupByFieldOptionEdge>>>;
|
|
69740
|
+
error?: Maybe<QueryError>;
|
|
69244
69741
|
pageInfo?: Maybe<PageInfo>;
|
|
69245
69742
|
};
|
|
69246
69743
|
export declare type JiraSpreadsheetGroupByFieldOptionEdge = {
|
|
@@ -70136,6 +70633,12 @@ export declare type JiraUpdateBackgroundInput = {
|
|
|
70136
70633
|
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
70137
70634
|
entityId: Scalars['ID']['input'];
|
|
70138
70635
|
};
|
|
70636
|
+
export declare type JiraUpdateCalendarViewConfigPayload = Payload & {
|
|
70637
|
+
__typename?: 'JiraUpdateCalendarViewConfigPayload';
|
|
70638
|
+
calendarView?: Maybe<JiraCalendarView>;
|
|
70639
|
+
errors?: Maybe<Array<MutationError>>;
|
|
70640
|
+
success: Scalars['Boolean']['output'];
|
|
70641
|
+
};
|
|
70139
70642
|
export declare type JiraUpdateCascadingSelectFieldInput = {
|
|
70140
70643
|
id: Scalars['ID']['input'];
|
|
70141
70644
|
operation: JiraCascadingSelectFieldOperationInput;
|
|
@@ -70246,6 +70749,7 @@ export declare type JiraUpdateFormattingRulePayload = Payload & {
|
|
|
70246
70749
|
export declare type JiraUpdateGlobalCustomFieldInput = {
|
|
70247
70750
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
70248
70751
|
fieldId: Scalars['String']['input'];
|
|
70752
|
+
formatConfig?: InputMaybe<JiraFieldFormatConfigInput>;
|
|
70249
70753
|
name: Scalars['String']['input'];
|
|
70250
70754
|
searcherKey?: InputMaybe<Scalars['String']['input']>;
|
|
70251
70755
|
};
|
|
@@ -70305,6 +70809,14 @@ export declare type JiraUpdateIssueTypeFieldInput = {
|
|
|
70305
70809
|
id: Scalars['ID']['input'];
|
|
70306
70810
|
operation: JiraIssueTypeFieldOperationInput;
|
|
70307
70811
|
};
|
|
70812
|
+
export declare type JiraUpdateIssueTypeInput = {
|
|
70813
|
+
avatarId?: InputMaybe<Scalars['String']['input']>;
|
|
70814
|
+
cloudId: Scalars['ID']['input'];
|
|
70815
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
70816
|
+
issueTypeId: Scalars['String']['input'];
|
|
70817
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
70818
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
70819
|
+
};
|
|
70308
70820
|
export declare type JiraUpdateJourneyActivityConfigurationInput = {
|
|
70309
70821
|
createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
|
|
70310
70822
|
id: Scalars['ID']['input'];
|
|
@@ -70356,6 +70868,13 @@ export declare type JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput = {
|
|
|
70356
70868
|
journeyItemId: Scalars['ID']['input'];
|
|
70357
70869
|
journeyVersion: Scalars['Long']['input'];
|
|
70358
70870
|
};
|
|
70871
|
+
export declare type JiraUpdateJourneyWorkItemConditionsInput = {
|
|
70872
|
+
conditions: JiraJourneyItemConditionsInput;
|
|
70873
|
+
etag: Scalars['String']['input'];
|
|
70874
|
+
journeyId: Scalars['ID']['input'];
|
|
70875
|
+
journeyItemId: Scalars['ID']['input'];
|
|
70876
|
+
journeyVersion: Scalars['Long']['input'];
|
|
70877
|
+
};
|
|
70359
70878
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
70360
70879
|
id: Scalars['ID']['input'];
|
|
70361
70880
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -71416,6 +71935,18 @@ export declare type JiraViewGroupByConfig = {
|
|
|
71416
71935
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
71417
71936
|
fieldName?: Maybe<Scalars['String']['output']>;
|
|
71418
71937
|
};
|
|
71938
|
+
export declare type JiraViewInput = {
|
|
71939
|
+
jiraViewQueryInput: JiraViewQueryInput;
|
|
71940
|
+
};
|
|
71941
|
+
export declare type JiraViewProjectKeyAndItemQuery = {
|
|
71942
|
+
cloudId: Scalars['ID']['input'];
|
|
71943
|
+
itemId: Scalars['String']['input'];
|
|
71944
|
+
projectKey: Scalars['String']['input'];
|
|
71945
|
+
};
|
|
71946
|
+
export declare type JiraViewQueryInput = {
|
|
71947
|
+
projectKeyAndItemQuery?: InputMaybe<JiraViewProjectKeyAndItemQuery>;
|
|
71948
|
+
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
71949
|
+
};
|
|
71419
71950
|
export declare type JiraViewScopeInput = {
|
|
71420
71951
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
71421
71952
|
projectKeys?: InputMaybe<JiraProjectKeysInput>;
|
|
@@ -73029,6 +73560,7 @@ export declare type KnowledgeBaseCrossSiteSearchConnection = {
|
|
|
73029
73560
|
edges?: Maybe<Array<KnowledgeBaseCrossSiteArticleEdge>>;
|
|
73030
73561
|
nodes?: Maybe<Array<Maybe<KnowledgeBaseCrossSiteArticle>>>;
|
|
73031
73562
|
pageInfo: PageInfo;
|
|
73563
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
73032
73564
|
};
|
|
73033
73565
|
export declare type KnowledgeBaseLinkResponse = {
|
|
73034
73566
|
__typename?: 'KnowledgeBaseLinkResponse';
|
|
@@ -73145,6 +73677,7 @@ export declare type KnowledgeBaseThirdPartyConnection = {
|
|
|
73145
73677
|
__typename?: 'KnowledgeBaseThirdPartyConnection';
|
|
73146
73678
|
edges?: Maybe<Array<KnowledgeBaseThirdPartyArticleEdge>>;
|
|
73147
73679
|
nodes?: Maybe<Array<Maybe<KnowledgeBaseThirdPartyArticle>>>;
|
|
73680
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
73148
73681
|
};
|
|
73149
73682
|
export declare type KnowledgeBaseUnlinkResponse = {
|
|
73150
73683
|
__typename?: 'KnowledgeBaseUnlinkResponse';
|
|
@@ -74077,6 +74610,17 @@ export declare type LoomFolder = {
|
|
|
74077
74610
|
name: Scalars['String']['output'];
|
|
74078
74611
|
parentSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
74079
74612
|
};
|
|
74613
|
+
export declare type LoomJoinWorkspace = {
|
|
74614
|
+
__typename?: 'LoomJoinWorkspace';
|
|
74615
|
+
status: Scalars['String']['output'];
|
|
74616
|
+
};
|
|
74617
|
+
export declare type LoomJoinableWorkspace = {
|
|
74618
|
+
__typename?: 'LoomJoinableWorkspace';
|
|
74619
|
+
autoJoinable: Scalars['Boolean']['output'];
|
|
74620
|
+
guid: Scalars['String']['output'];
|
|
74621
|
+
memberCount: Scalars['Int']['output'];
|
|
74622
|
+
name: Scalars['String']['output'];
|
|
74623
|
+
};
|
|
74080
74624
|
export declare type LoomMeeting = Node & {
|
|
74081
74625
|
__typename?: 'LoomMeeting';
|
|
74082
74626
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -79861,6 +80405,7 @@ export declare type Mutation = {
|
|
|
79861
80405
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
79862
80406
|
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
79863
80407
|
devai_invokeSelfCorrection?: Maybe<DevAiInvokeSelfCorrectionPayload>;
|
|
80408
|
+
devai_rovodevCreateSession?: Maybe<DevAiRovoDevCreateSessionPayload>;
|
|
79864
80409
|
disableExperiment?: Maybe<TapExperiment>;
|
|
79865
80410
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
79866
80411
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -79903,11 +80448,14 @@ export declare type Mutation = {
|
|
|
79903
80448
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
79904
80449
|
jira_createIssueSearchFormattingRule?: Maybe<JiraCreateIssueSearchFormattingRulePayload>;
|
|
79905
80450
|
jira_createIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
80451
|
+
jira_customizeProjectLevelSidebarMenuItem?: Maybe<JiraProjectLevelSidebarMenuCustomization>;
|
|
79906
80452
|
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
79907
80453
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
79908
80454
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
79909
80455
|
jira_deleteIssueSearchFormattingRule?: Maybe<JiraDeleteIssueSearchFormattingRulePayload>;
|
|
80456
|
+
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
79910
80457
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
80458
|
+
jira_discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
79911
80459
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
79912
80460
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
79913
80461
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
@@ -79941,6 +80489,7 @@ export declare type Mutation = {
|
|
|
79941
80489
|
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
79942
80490
|
jira_updateGlobalCustomField?: Maybe<JiraUpdateGlobalCustomFieldPayload>;
|
|
79943
80491
|
jira_updateIssueSearchFormattingRule?: Maybe<JiraUpdateIssueSearchFormattingRulePayload>;
|
|
80492
|
+
jira_updateIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
79944
80493
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
79945
80494
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
79946
80495
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
@@ -79949,6 +80498,7 @@ export declare type Mutation = {
|
|
|
79949
80498
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
79950
80499
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
79951
80500
|
likeContent?: Maybe<LikeContentPayload>;
|
|
80501
|
+
loom_joinWorkspace?: Maybe<LoomJoinWorkspace>;
|
|
79952
80502
|
loom_spaceCreate?: Maybe<LoomSpace>;
|
|
79953
80503
|
markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
|
|
79954
80504
|
markFeatureDiscovered?: Maybe<FeatureDiscoveryPayload>;
|
|
@@ -80066,9 +80616,11 @@ export declare type Mutation = {
|
|
|
80066
80616
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
80067
80617
|
spf_createAsk?: Maybe<SpfCreateAskPayload>;
|
|
80068
80618
|
spf_createAskComment?: Maybe<SpfCreateAskCommentPayload>;
|
|
80619
|
+
spf_createAskUpdate?: Maybe<SpfCreateAskUpdatePayload>;
|
|
80069
80620
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
80070
80621
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
80071
80622
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
80623
|
+
spf_deleteAskUpdate?: Maybe<SpfDeleteAskUpdatePayload>;
|
|
80072
80624
|
spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
|
|
80073
80625
|
spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
|
|
80074
80626
|
spf_updateAskImpactedWork?: Maybe<SpfUpdateAskPayload>;
|
|
@@ -80079,6 +80631,9 @@ export declare type Mutation = {
|
|
|
80079
80631
|
spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
80080
80632
|
spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
|
|
80081
80633
|
spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
80634
|
+
spf_updateAskUpdateDescription?: Maybe<SpfAskUpdatePayload>;
|
|
80635
|
+
spf_updateAskUpdateStatus?: Maybe<SpfAskUpdatePayload>;
|
|
80636
|
+
spf_updateAskUpdateTargetDate?: Maybe<SpfAskUpdatePayload>;
|
|
80082
80637
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
80083
80638
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
80084
80639
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -80946,6 +81501,9 @@ export declare type MutationDevai_InvokeSelfCorrectionArgs = {
|
|
|
80946
81501
|
issueAri: Scalars['ID']['input'];
|
|
80947
81502
|
jobId: Scalars['ID']['input'];
|
|
80948
81503
|
};
|
|
81504
|
+
export declare type MutationDevai_RovodevCreateSessionArgs = {
|
|
81505
|
+
input: DevAiRovoDevCreateSessionInput;
|
|
81506
|
+
};
|
|
80949
81507
|
export declare type MutationDisableExperimentArgs = {
|
|
80950
81508
|
experimentKey: Scalars['String']['input'];
|
|
80951
81509
|
};
|
|
@@ -81044,6 +81602,9 @@ export declare type MutationJira_CreateIssueSearchFormattingRuleArgs = {
|
|
|
81044
81602
|
export declare type MutationJira_CreateIssueTypeArgs = {
|
|
81045
81603
|
input: JiraCreateIssueTypeInput;
|
|
81046
81604
|
};
|
|
81605
|
+
export declare type MutationJira_CustomizeProjectLevelSidebarMenuItemArgs = {
|
|
81606
|
+
input: JiraCustomizeProjectLevelSidebarMenuItemInput;
|
|
81607
|
+
};
|
|
81047
81608
|
export declare type MutationJira_DeleteBoardViewStatusColumnArgs = {
|
|
81048
81609
|
input: JiraDeleteBoardViewStatusColumnInput;
|
|
81049
81610
|
};
|
|
@@ -81057,9 +81618,15 @@ export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
|
81057
81618
|
export declare type MutationJira_DeleteIssueSearchFormattingRuleArgs = {
|
|
81058
81619
|
input: JiraDeleteIssueSearchFormattingRuleInput;
|
|
81059
81620
|
};
|
|
81621
|
+
export declare type MutationJira_DeleteIssueTypeArgs = {
|
|
81622
|
+
input: JiraDeleteIssueTypeInput;
|
|
81623
|
+
};
|
|
81060
81624
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
81061
81625
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
81062
81626
|
};
|
|
81627
|
+
export declare type MutationJira_DiscardUserCalendarViewConfigArgs = {
|
|
81628
|
+
input: JiraDiscardUserViewConfigInput;
|
|
81629
|
+
};
|
|
81063
81630
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
81064
81631
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
81065
81632
|
};
|
|
@@ -81166,6 +81733,9 @@ export declare type MutationJira_UpdateGlobalCustomFieldArgs = {
|
|
|
81166
81733
|
export declare type MutationJira_UpdateIssueSearchFormattingRuleArgs = {
|
|
81167
81734
|
input: JiraUpdateIssueSearchFormattingRuleInput;
|
|
81168
81735
|
};
|
|
81736
|
+
export declare type MutationJira_UpdateIssueTypeArgs = {
|
|
81737
|
+
input: JiraUpdateIssueTypeInput;
|
|
81738
|
+
};
|
|
81169
81739
|
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
81170
81740
|
input: JiraUpdateBackgroundInput;
|
|
81171
81741
|
};
|
|
@@ -81182,6 +81752,9 @@ export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
|
81182
81752
|
export declare type MutationLikeContentArgs = {
|
|
81183
81753
|
input: LikeContentInput;
|
|
81184
81754
|
};
|
|
81755
|
+
export declare type MutationLoom_JoinWorkspaceArgs = {
|
|
81756
|
+
workspaceId: Scalars['String']['input'];
|
|
81757
|
+
};
|
|
81185
81758
|
export declare type MutationLoom_SpaceCreateArgs = {
|
|
81186
81759
|
analyticsSource?: InputMaybe<Scalars['String']['input']>;
|
|
81187
81760
|
name: Scalars['String']['input'];
|
|
@@ -81536,6 +82109,9 @@ export declare type MutationSpf_CreateAskArgs = {
|
|
|
81536
82109
|
export declare type MutationSpf_CreateAskCommentArgs = {
|
|
81537
82110
|
input: SpfCreateAskCommentInput;
|
|
81538
82111
|
};
|
|
82112
|
+
export declare type MutationSpf_CreateAskUpdateArgs = {
|
|
82113
|
+
input: SpfCreateAskUpdateInput;
|
|
82114
|
+
};
|
|
81539
82115
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
81540
82116
|
input: SpfDeleteAskInput;
|
|
81541
82117
|
};
|
|
@@ -81545,6 +82121,9 @@ export declare type MutationSpf_DeleteAskCommentArgs = {
|
|
|
81545
82121
|
export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
81546
82122
|
input: SpfDeleteAskLinkInput;
|
|
81547
82123
|
};
|
|
82124
|
+
export declare type MutationSpf_DeleteAskUpdateArgs = {
|
|
82125
|
+
input: SpfDeleteAskUpdateInput;
|
|
82126
|
+
};
|
|
81548
82127
|
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
81549
82128
|
input: SpfUpdateAskCommentDataInput;
|
|
81550
82129
|
};
|
|
@@ -81575,6 +82154,15 @@ export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
|
81575
82154
|
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
81576
82155
|
input: SpfUpdateAskSubmittingTeamInput;
|
|
81577
82156
|
};
|
|
82157
|
+
export declare type MutationSpf_UpdateAskUpdateDescriptionArgs = {
|
|
82158
|
+
input: SpfAskUpdateDescriptionInput;
|
|
82159
|
+
};
|
|
82160
|
+
export declare type MutationSpf_UpdateAskUpdateStatusArgs = {
|
|
82161
|
+
input: SpfAskUpdateStatusInput;
|
|
82162
|
+
};
|
|
82163
|
+
export declare type MutationSpf_UpdateAskUpdateTargetDateArgs = {
|
|
82164
|
+
input: SpfAskUpdateTargetDateInput;
|
|
82165
|
+
};
|
|
81578
82166
|
export declare type MutationSplitIssueArgs = {
|
|
81579
82167
|
input?: InputMaybe<SplitIssueInput>;
|
|
81580
82168
|
};
|
|
@@ -84839,10 +85427,14 @@ export declare type Query = {
|
|
|
84839
85427
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
84840
85428
|
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
84841
85429
|
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
85430
|
+
devai_flowSessionsConnectionByCreatorAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
84842
85431
|
devai_getPrefillRepoUrlForFlow?: Maybe<DevAiFlowRepository>;
|
|
84843
85432
|
devai_getUserPermissionsForRepo?: Maybe<Scalars['Boolean']['output']>;
|
|
84844
85433
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
84845
85434
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
85435
|
+
devai_rovodevSessionById?: Maybe<DevAiRovoDevSession>;
|
|
85436
|
+
devai_rovodevSessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
85437
|
+
devai_rovodevSessionsByAri?: Maybe<Array<DevAiRovoDevSession>>;
|
|
84846
85438
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
84847
85439
|
devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
84848
85440
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
@@ -84914,7 +85506,7 @@ export declare type Query = {
|
|
|
84914
85506
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
84915
85507
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
84916
85508
|
helpObjectStore_searchArticles?: Maybe<HelpObjectStoreArticleSearchResponse>;
|
|
84917
|
-
helpObjectStore_searchArticlesForSupportSite?: Maybe<
|
|
85509
|
+
helpObjectStore_searchArticlesForSupportSite?: Maybe<HelpObjectStoreSupportSiteArticleSearchResultConnection>;
|
|
84918
85510
|
helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
|
|
84919
85511
|
helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
|
|
84920
85512
|
homeUserSettings?: Maybe<HomeUserSettings>;
|
|
@@ -84948,6 +85540,7 @@ export declare type Query = {
|
|
|
84948
85540
|
jiraReleases?: Maybe<JiraReleases>;
|
|
84949
85541
|
jiraServers?: Maybe<JiraServersResult>;
|
|
84950
85542
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
85543
|
+
jira_calendarView?: Maybe<JiraCalendarView>;
|
|
84951
85544
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
84952
85545
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
84953
85546
|
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
@@ -84958,6 +85551,7 @@ export declare type Query = {
|
|
|
84958
85551
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
84959
85552
|
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
84960
85553
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
85554
|
+
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomization>;
|
|
84961
85555
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
84962
85556
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
84963
85557
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
@@ -84972,6 +85566,7 @@ export declare type Query = {
|
|
|
84972
85566
|
labelSearch?: Maybe<LabelSearchResults>;
|
|
84973
85567
|
latestKnowledgeGraphObject?: Maybe<KnowledgeGraphObjectResponse>;
|
|
84974
85568
|
license?: Maybe<License>;
|
|
85569
|
+
linksIncomingToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
84975
85570
|
linksOutgoingFromConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
84976
85571
|
localStorage?: Maybe<LocalStorage>;
|
|
84977
85572
|
logAccessByContexts?: Maybe<Array<InstallationContextWithInstallationIdResponse>>;
|
|
@@ -84982,6 +85577,7 @@ export declare type Query = {
|
|
|
84982
85577
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
84983
85578
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
84984
85579
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
85580
|
+
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
84985
85581
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
84986
85582
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
84987
85583
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
@@ -85156,8 +85752,10 @@ export declare type Query = {
|
|
|
85156
85752
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
85157
85753
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
85158
85754
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
85755
|
+
stakeholderComms_getAssignmentsByStakeholderV2?: Maybe<StakeholderCommsAssignmentConnection>;
|
|
85159
85756
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
85160
85757
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
85758
|
+
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
85161
85759
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
85162
85760
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
85163
85761
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -85255,7 +85853,7 @@ export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
|
85255
85853
|
};
|
|
85256
85854
|
export declare type QueryAgentStudio_ScenarioListByContainerIdArgs = {
|
|
85257
85855
|
cloudId: Scalars['String']['input'];
|
|
85258
|
-
containerId: Scalars['
|
|
85856
|
+
containerId: Scalars['ID']['input'];
|
|
85259
85857
|
};
|
|
85260
85858
|
export declare type QueryAgentStudio_ScenariosByIdsArgs = {
|
|
85261
85859
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -86260,9 +86858,17 @@ export declare type QueryDevai_FlowSessionsByIssueKeyAndCloudIdArgs = {
|
|
|
86260
86858
|
issueKey: Scalars['String']['input'];
|
|
86261
86859
|
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
86262
86860
|
};
|
|
86861
|
+
export declare type QueryDevai_FlowSessionsConnectionByCreatorAndCloudIdArgs = {
|
|
86862
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86863
|
+
cloudId: Scalars['ID']['input'];
|
|
86864
|
+
creator: Scalars['String']['input'];
|
|
86865
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86866
|
+
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
86867
|
+
};
|
|
86263
86868
|
export declare type QueryDevai_GetPrefillRepoUrlForFlowArgs = {
|
|
86264
86869
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86265
86870
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
86871
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
86266
86872
|
};
|
|
86267
86873
|
export declare type QueryDevai_GetUserPermissionsForRepoArgs = {
|
|
86268
86874
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -86275,6 +86881,18 @@ export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
|
86275
86881
|
export declare type QueryDevai_RovoDevAgentsWorkspaceArgs = {
|
|
86276
86882
|
cloudId: Scalars['ID']['input'];
|
|
86277
86883
|
};
|
|
86884
|
+
export declare type QueryDevai_RovodevSessionByIdArgs = {
|
|
86885
|
+
id: Scalars['ID']['input'];
|
|
86886
|
+
};
|
|
86887
|
+
export declare type QueryDevai_RovodevSessionsArgs = {
|
|
86888
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86889
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86890
|
+
sessionStatus?: InputMaybe<DevAiRovoDevSessionStatus>;
|
|
86891
|
+
workspaceAri: Scalars['ID']['input'];
|
|
86892
|
+
};
|
|
86893
|
+
export declare type QueryDevai_RovodevSessionsByAriArgs = {
|
|
86894
|
+
sessionAris: Array<Scalars['ID']['input']>;
|
|
86895
|
+
};
|
|
86278
86896
|
export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
|
|
86279
86897
|
cloudId: Scalars['ID']['input'];
|
|
86280
86898
|
jobId: Scalars['ID']['input'];
|
|
@@ -86612,6 +87230,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
86612
87230
|
export declare type QueryJira_BoardViewArgs = {
|
|
86613
87231
|
input: JiraBoardViewInput;
|
|
86614
87232
|
};
|
|
87233
|
+
export declare type QueryJira_CalendarViewArgs = {
|
|
87234
|
+
input: JiraViewInput;
|
|
87235
|
+
};
|
|
86615
87236
|
export declare type QueryJira_CategoryFieldArgs = {
|
|
86616
87237
|
cloudId: Scalars['ID']['input'];
|
|
86617
87238
|
};
|
|
@@ -86654,6 +87275,10 @@ export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
|
86654
87275
|
cloudId: Scalars['ID']['input'];
|
|
86655
87276
|
idOrKey: Scalars['String']['input'];
|
|
86656
87277
|
};
|
|
87278
|
+
export declare type QueryJira_ProjectLevelSidebarMenuCustomizationArgs = {
|
|
87279
|
+
cloudId: Scalars['ID']['input'];
|
|
87280
|
+
projectId: Scalars['ID']['input'];
|
|
87281
|
+
};
|
|
86657
87282
|
export declare type QueryJira_ProjectTypesByIdsArgs = {
|
|
86658
87283
|
ids: Array<Scalars['ID']['input']>;
|
|
86659
87284
|
};
|
|
@@ -86697,6 +87322,9 @@ export declare type QueryLatestKnowledgeGraphObjectArgs = {
|
|
|
86697
87322
|
objectType: KnowledgeGraphObjectType;
|
|
86698
87323
|
objectVersion?: Scalars['String']['input'];
|
|
86699
87324
|
};
|
|
87325
|
+
export declare type QueryLinksIncomingToConfluencePageArgs = {
|
|
87326
|
+
pageId: Scalars['ID']['input'];
|
|
87327
|
+
};
|
|
86700
87328
|
export declare type QueryLinksOutgoingFromConfluencePageArgs = {
|
|
86701
87329
|
pageId: Scalars['ID']['input'];
|
|
86702
87330
|
};
|
|
@@ -87378,12 +88006,18 @@ export declare type QuerySqlSlowQueryLogsArgs = {
|
|
|
87378
88006
|
export declare type QueryStakeholderComms_GetAssignmentsByStakeholderArgs = {
|
|
87379
88007
|
paginatedAssignmentByStakeholderIdInput: StakeholderCommsPaginatedAssignmentByStakeholderInput;
|
|
87380
88008
|
};
|
|
88009
|
+
export declare type QueryStakeholderComms_GetAssignmentsByStakeholderV2Args = {
|
|
88010
|
+
assignmentConnectionInput: StakeholderCommsAssignmentConnectionInput;
|
|
88011
|
+
};
|
|
87381
88012
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
87382
88013
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
87383
88014
|
};
|
|
87384
88015
|
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
|
|
87385
88016
|
paginatedStakeholderInput: StakeholderCommsPaginatedStakeholderInput;
|
|
87386
88017
|
};
|
|
88018
|
+
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
88019
|
+
stakeholderConnectionInput: StakeholderCommsStakeholderConnectionInput;
|
|
88020
|
+
};
|
|
87387
88021
|
export declare type QueryStalePagesArgs = {
|
|
87388
88022
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
87389
88023
|
includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -90643,7 +91277,9 @@ export declare type Security = {
|
|
|
90643
91277
|
compliantCertifications?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
90644
91278
|
hasCompliantCertifications?: Maybe<Scalars['Boolean']['output']>;
|
|
90645
91279
|
isDiskEncryptionSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
91280
|
+
permissionsJustification?: Maybe<Scalars['String']['output']>;
|
|
90646
91281
|
publicSecurityPoliciesLink?: Maybe<Scalars['String']['output']>;
|
|
91282
|
+
requiresUsersToProvidePATs?: Maybe<Scalars['Boolean']['output']>;
|
|
90647
91283
|
securityContact: Scalars['String']['output'];
|
|
90648
91284
|
};
|
|
90649
91285
|
export declare type SecurityContainer = {
|
|
@@ -91432,6 +92068,7 @@ export declare type ShepherdClassification = {
|
|
|
91432
92068
|
orgId: Scalars['ID']['output'];
|
|
91433
92069
|
sensitivity: Scalars['Int']['output'];
|
|
91434
92070
|
status: ShepherdClassificationStatus;
|
|
92071
|
+
tagColor?: Maybe<Scalars['String']['output']>;
|
|
91435
92072
|
};
|
|
91436
92073
|
export declare type ShepherdClassificationEdge = {
|
|
91437
92074
|
__typename?: 'ShepherdClassificationEdge';
|
|
@@ -93522,6 +94159,7 @@ export declare type SpfAsk = Node & {
|
|
|
93522
94159
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
93523
94160
|
updatedBy?: Maybe<User>;
|
|
93524
94161
|
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
94162
|
+
updates?: Maybe<SpfAskUpdateConnection>;
|
|
93525
94163
|
};
|
|
93526
94164
|
export declare type SpfAskActivitiesArgs = {
|
|
93527
94165
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -93538,8 +94176,14 @@ export declare type SpfAskLinksArgs = {
|
|
|
93538
94176
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
93539
94177
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
93540
94178
|
};
|
|
94179
|
+
export declare type SpfAskUpdatesArgs = {
|
|
94180
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94181
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94182
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
94183
|
+
};
|
|
93541
94184
|
export declare type SpfAskActivity = {
|
|
93542
94185
|
__typename?: 'SpfAskActivity';
|
|
94186
|
+
askActivityType: SpfAskActivityType;
|
|
93543
94187
|
askId: Scalars['String']['output'];
|
|
93544
94188
|
askUpdatedAt: Scalars['DateTime']['output'];
|
|
93545
94189
|
askUpdatedByUser?: Maybe<User>;
|
|
@@ -93578,6 +94222,10 @@ export declare type SpfAskActivityLink = {
|
|
|
93578
94222
|
linkUrl?: Maybe<Scalars['String']['output']>;
|
|
93579
94223
|
};
|
|
93580
94224
|
export declare type SpfAskActivityResult = QueryError | SpfAskActivity;
|
|
94225
|
+
export declare enum SpfAskActivityType {
|
|
94226
|
+
Created = "CREATED",
|
|
94227
|
+
Updated = "UPDATED"
|
|
94228
|
+
}
|
|
93581
94229
|
export declare type SpfAskActivityUpdatedDocument = SpfAskActivityUpdatedValue & {
|
|
93582
94230
|
__typename?: 'SpfAskActivityUpdatedDocument';
|
|
93583
94231
|
attribute: SpfAskActivityAttribute;
|
|
@@ -93703,7 +94351,7 @@ export declare type SpfAskResult = QueryError | SpfAsk;
|
|
|
93703
94351
|
export declare enum SpfAskStatus {
|
|
93704
94352
|
Accepted = "ACCEPTED",
|
|
93705
94353
|
Canceled = "CANCELED",
|
|
93706
|
-
|
|
94354
|
+
Deferred = "DEFERRED",
|
|
93707
94355
|
Draft = "DRAFT",
|
|
93708
94356
|
InReview = "IN_REVIEW",
|
|
93709
94357
|
Revising = "REVISING",
|
|
@@ -93729,6 +94377,49 @@ export declare type SpfAskTransition = {
|
|
|
93729
94377
|
status?: Maybe<SpfAskStatus>;
|
|
93730
94378
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
93731
94379
|
};
|
|
94380
|
+
export declare type SpfAskUpdate = {
|
|
94381
|
+
__typename?: 'SpfAskUpdate';
|
|
94382
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
94383
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
94384
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
94385
|
+
id: Scalars['ID']['output'];
|
|
94386
|
+
newStatus?: Maybe<SpfAskStatus>;
|
|
94387
|
+
newTargetDate?: Maybe<SpfAskTargetDate>;
|
|
94388
|
+
oldStatus?: Maybe<SpfAskStatus>;
|
|
94389
|
+
oldTargetDate?: Maybe<SpfAskTargetDate>;
|
|
94390
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
94391
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
94392
|
+
};
|
|
94393
|
+
export declare type SpfAskUpdateConnection = {
|
|
94394
|
+
__typename?: 'SpfAskUpdateConnection';
|
|
94395
|
+
edges?: Maybe<Array<Maybe<SpfAskUpdateEdge>>>;
|
|
94396
|
+
pageInfo: PageInfo;
|
|
94397
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
94398
|
+
};
|
|
94399
|
+
export declare type SpfAskUpdateDescriptionInput = {
|
|
94400
|
+
description: Scalars['String']['input'];
|
|
94401
|
+
id: Scalars['ID']['input'];
|
|
94402
|
+
};
|
|
94403
|
+
export declare type SpfAskUpdateEdge = {
|
|
94404
|
+
__typename?: 'SpfAskUpdateEdge';
|
|
94405
|
+
cursor: Scalars['String']['output'];
|
|
94406
|
+
node?: Maybe<SpfAskUpdateResult>;
|
|
94407
|
+
};
|
|
94408
|
+
export declare type SpfAskUpdatePayload = Payload & {
|
|
94409
|
+
__typename?: 'SpfAskUpdatePayload';
|
|
94410
|
+
askUpdate?: Maybe<SpfAskUpdate>;
|
|
94411
|
+
errors?: Maybe<Array<MutationError>>;
|
|
94412
|
+
success: Scalars['Boolean']['output'];
|
|
94413
|
+
};
|
|
94414
|
+
export declare type SpfAskUpdateResult = QueryError | SpfAskUpdate;
|
|
94415
|
+
export declare type SpfAskUpdateStatusInput = {
|
|
94416
|
+
id: Scalars['ID']['input'];
|
|
94417
|
+
status: SpfAskStatus;
|
|
94418
|
+
};
|
|
94419
|
+
export declare type SpfAskUpdateTargetDateInput = {
|
|
94420
|
+
id: Scalars['ID']['input'];
|
|
94421
|
+
targetDate: SpfAskTargetDateInput;
|
|
94422
|
+
};
|
|
93732
94423
|
export declare type SpfAttachAskLinkInput = {
|
|
93733
94424
|
askId: Scalars['ID']['input'];
|
|
93734
94425
|
linkText?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -93770,6 +94461,18 @@ export declare type SpfCreateAskPayload = Payload & {
|
|
|
93770
94461
|
errors?: Maybe<Array<MutationError>>;
|
|
93771
94462
|
success: Scalars['Boolean']['output'];
|
|
93772
94463
|
};
|
|
94464
|
+
export declare type SpfCreateAskUpdateInput = {
|
|
94465
|
+
askId: Scalars['String']['input'];
|
|
94466
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
94467
|
+
status?: InputMaybe<SpfAskStatus>;
|
|
94468
|
+
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
94469
|
+
};
|
|
94470
|
+
export declare type SpfCreateAskUpdatePayload = Payload & {
|
|
94471
|
+
__typename?: 'SpfCreateAskUpdatePayload';
|
|
94472
|
+
askUpdate?: Maybe<SpfAskUpdate>;
|
|
94473
|
+
errors?: Maybe<Array<MutationError>>;
|
|
94474
|
+
success: Scalars['Boolean']['output'];
|
|
94475
|
+
};
|
|
93773
94476
|
export declare type SpfDeleteAskCommentInput = {
|
|
93774
94477
|
id: Scalars['ID']['input'];
|
|
93775
94478
|
};
|
|
@@ -93797,6 +94500,15 @@ export declare type SpfDeleteAskPayload = Payload & {
|
|
|
93797
94500
|
id: Scalars['ID']['output'];
|
|
93798
94501
|
success: Scalars['Boolean']['output'];
|
|
93799
94502
|
};
|
|
94503
|
+
export declare type SpfDeleteAskUpdateInput = {
|
|
94504
|
+
id: Scalars['ID']['input'];
|
|
94505
|
+
};
|
|
94506
|
+
export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
94507
|
+
__typename?: 'SpfDeleteAskUpdatePayload';
|
|
94508
|
+
errors?: Maybe<Array<MutationError>>;
|
|
94509
|
+
id: Scalars['ID']['output'];
|
|
94510
|
+
success: Scalars['Boolean']['output'];
|
|
94511
|
+
};
|
|
93800
94512
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
93801
94513
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
93802
94514
|
data: Scalars['String']['input'];
|
|
@@ -93815,6 +94527,7 @@ export declare type SpfUpdateAskDescriptionInput = {
|
|
|
93815
94527
|
export declare type SpfUpdateAskImpactedWorkInput = {
|
|
93816
94528
|
id: Scalars['ID']['input'];
|
|
93817
94529
|
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
94530
|
+
impactedWorkUrl?: InputMaybe<Scalars['String']['input']>;
|
|
93818
94531
|
};
|
|
93819
94532
|
export declare type SpfUpdateAskJustificationInput = {
|
|
93820
94533
|
id: Scalars['ID']['input'];
|
|
@@ -93955,6 +94668,27 @@ export declare type StakeholderCommsAssignment = {
|
|
|
93955
94668
|
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
93956
94669
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
93957
94670
|
};
|
|
94671
|
+
export declare type StakeholderCommsAssignmentConnection = {
|
|
94672
|
+
__typename?: 'StakeholderCommsAssignmentConnection';
|
|
94673
|
+
edges: Array<StakeholderCommsAssignmentEdge>;
|
|
94674
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
94675
|
+
nodes: Array<StakeholderCommsAssignment>;
|
|
94676
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
94677
|
+
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
94678
|
+
totalCount: Scalars['Int']['output'];
|
|
94679
|
+
};
|
|
94680
|
+
export declare type StakeholderCommsAssignmentConnectionInput = {
|
|
94681
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94682
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
94683
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94684
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
94685
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
94686
|
+
};
|
|
94687
|
+
export declare type StakeholderCommsAssignmentEdge = {
|
|
94688
|
+
__typename?: 'StakeholderCommsAssignmentEdge';
|
|
94689
|
+
cursor: Scalars['String']['output'];
|
|
94690
|
+
node: StakeholderCommsAssignment;
|
|
94691
|
+
};
|
|
93958
94692
|
export declare type StakeholderCommsAssignmentIdInput = {
|
|
93959
94693
|
assignmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
93960
94694
|
assignmentType?: InputMaybe<StakeholderCommsAssignmentType>;
|
|
@@ -94007,6 +94741,13 @@ export declare type StakeholderCommsNotificationPreferenceInput = {
|
|
|
94007
94741
|
preference?: InputMaybe<StakeholderCommsPreferencesInput>;
|
|
94008
94742
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
94009
94743
|
};
|
|
94744
|
+
export declare type StakeholderCommsPageInfo = {
|
|
94745
|
+
__typename?: 'StakeholderCommsPageInfo';
|
|
94746
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
94747
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
94748
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
94749
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
94750
|
+
};
|
|
94010
94751
|
export declare type StakeholderCommsPaginatedAssignmentByStakeholderInput = {
|
|
94011
94752
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
94012
94753
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -94064,6 +94805,27 @@ export declare type StakeholderCommsStakeholderAssignmentResponse = {
|
|
|
94064
94805
|
message?: Maybe<Scalars['String']['output']>;
|
|
94065
94806
|
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
94066
94807
|
};
|
|
94808
|
+
export declare type StakeholderCommsStakeholderConnection = {
|
|
94809
|
+
__typename?: 'StakeholderCommsStakeholderConnection';
|
|
94810
|
+
assignment?: Maybe<StakeholderCommsAssignment>;
|
|
94811
|
+
edges: Array<StakeholderCommsStakeholderEdge>;
|
|
94812
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
94813
|
+
nodes: Array<StakeholderCommsStakeholder>;
|
|
94814
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
94815
|
+
totalCount: Scalars['Int']['output'];
|
|
94816
|
+
};
|
|
94817
|
+
export declare type StakeholderCommsStakeholderConnectionInput = {
|
|
94818
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94819
|
+
assignmentIdInput: StakeholderCommsAssignmentIdInput;
|
|
94820
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
94821
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94822
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
94823
|
+
};
|
|
94824
|
+
export declare type StakeholderCommsStakeholderEdge = {
|
|
94825
|
+
__typename?: 'StakeholderCommsStakeholderEdge';
|
|
94826
|
+
cursor: Scalars['String']['output'];
|
|
94827
|
+
node: StakeholderCommsStakeholder;
|
|
94828
|
+
};
|
|
94067
94829
|
export declare type StakeholderCommsStakeholderIdInput = {
|
|
94068
94830
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
94069
94831
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97198,6 +97960,10 @@ export declare type TrelloBoardPowerUpConnection = {
|
|
|
97198
97960
|
nodes?: Maybe<Array<TrelloPowerUp>>;
|
|
97199
97961
|
pageInfo: PageInfo;
|
|
97200
97962
|
};
|
|
97963
|
+
export declare type TrelloBoardPowerUpConnectionUpdated = {
|
|
97964
|
+
__typename?: 'TrelloBoardPowerUpConnectionUpdated';
|
|
97965
|
+
edges?: Maybe<Array<TrelloBoardPowerUpEdgeUpdated>>;
|
|
97966
|
+
};
|
|
97201
97967
|
export declare type TrelloBoardPowerUpEdge = {
|
|
97202
97968
|
__typename?: 'TrelloBoardPowerUpEdge';
|
|
97203
97969
|
cursor: Scalars['String']['output'];
|
|
@@ -97206,6 +97972,13 @@ export declare type TrelloBoardPowerUpEdge = {
|
|
|
97206
97972
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
97207
97973
|
promotional?: Maybe<Scalars['Boolean']['output']>;
|
|
97208
97974
|
};
|
|
97975
|
+
export declare type TrelloBoardPowerUpEdgeUpdated = {
|
|
97976
|
+
__typename?: 'TrelloBoardPowerUpEdgeUpdated';
|
|
97977
|
+
memberId?: Maybe<Scalars['ID']['output']>;
|
|
97978
|
+
node: TrelloPowerUp;
|
|
97979
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
97980
|
+
promotional?: Maybe<Scalars['Boolean']['output']>;
|
|
97981
|
+
};
|
|
97209
97982
|
export declare type TrelloBoardPowerUpFilterInput = {
|
|
97210
97983
|
access?: InputMaybe<Scalars['String']['input']>;
|
|
97211
97984
|
};
|
|
@@ -97266,6 +98039,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
97266
98039
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
97267
98040
|
onCustomFieldDeleted?: Maybe<Array<TrelloCustomFieldDeleted>>;
|
|
97268
98041
|
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
98042
|
+
powerUps?: Maybe<TrelloBoardPowerUpConnectionUpdated>;
|
|
97269
98043
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
97270
98044
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
97271
98045
|
url?: Maybe<Scalars['URL']['output']>;
|
|
@@ -97332,6 +98106,7 @@ export declare type TrelloCard = Node & {
|
|
|
97332
98106
|
list?: Maybe<TrelloList>;
|
|
97333
98107
|
location?: Maybe<TrelloCardLocation>;
|
|
97334
98108
|
members?: Maybe<TrelloMemberConnection>;
|
|
98109
|
+
membersVoted?: Maybe<TrelloMemberConnection>;
|
|
97335
98110
|
mirrorSource?: Maybe<TrelloCard>;
|
|
97336
98111
|
mirrorSourceId?: Maybe<Scalars['ID']['output']>;
|
|
97337
98112
|
mirrorSourceNodeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -97374,6 +98149,10 @@ export declare type TrelloCardMembersArgs = {
|
|
|
97374
98149
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
97375
98150
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97376
98151
|
};
|
|
98152
|
+
export declare type TrelloCardMembersVotedArgs = {
|
|
98153
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98154
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98155
|
+
};
|
|
97377
98156
|
export declare type TrelloCardPowerUpDataArgs = {
|
|
97378
98157
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
97379
98158
|
filter?: InputMaybe<TrelloPowerUpDataFilterInput>;
|
|
@@ -97584,6 +98363,10 @@ export declare type TrelloCardCustomFieldItemEdgeUpdated = {
|
|
|
97584
98363
|
__typename?: 'TrelloCardCustomFieldItemEdgeUpdated';
|
|
97585
98364
|
node: TrelloCustomFieldItemUpdated;
|
|
97586
98365
|
};
|
|
98366
|
+
export declare type TrelloCardDeleted = {
|
|
98367
|
+
__typename?: 'TrelloCardDeleted';
|
|
98368
|
+
id: Scalars['ID']['output'];
|
|
98369
|
+
};
|
|
97587
98370
|
export declare type TrelloCardDueInfo = {
|
|
97588
98371
|
__typename?: 'TrelloCardDueInfo';
|
|
97589
98372
|
at?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -97664,6 +98447,7 @@ export declare type TrelloCardUpdated = {
|
|
|
97664
98447
|
list?: Maybe<TrelloList>;
|
|
97665
98448
|
location?: Maybe<TrelloCardLocation>;
|
|
97666
98449
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
98450
|
+
membersVoted?: Maybe<TrelloMemberUpdatedConnection>;
|
|
97667
98451
|
mirrorSource?: Maybe<TrelloCard>;
|
|
97668
98452
|
mirrorSourceId?: Maybe<Scalars['ID']['output']>;
|
|
97669
98453
|
mirrorSourceObjectId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -97868,6 +98652,23 @@ export declare type TrelloCopyInboxCardActionDisplayEntities = {
|
|
|
97868
98652
|
card?: Maybe<TrelloActionCardEntity>;
|
|
97869
98653
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
97870
98654
|
};
|
|
98655
|
+
export declare type TrelloCreateApplicationInput = {
|
|
98656
|
+
agreementId: Scalars['ID']['input'];
|
|
98657
|
+
author: Scalars['String']['input'];
|
|
98658
|
+
email: Scalars['String']['input'];
|
|
98659
|
+
iframeUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
98660
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
98661
|
+
name: Scalars['String']['input'];
|
|
98662
|
+
supportContact: Scalars['String']['input'];
|
|
98663
|
+
workspaceId: Scalars['ID']['input'];
|
|
98664
|
+
};
|
|
98665
|
+
export declare type TrelloCreateApplicationPayload = Payload & {
|
|
98666
|
+
__typename?: 'TrelloCreateApplicationPayload';
|
|
98667
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98668
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
98669
|
+
oauth2Client?: Maybe<TrelloOAuth2Client>;
|
|
98670
|
+
success: Scalars['Boolean']['output'];
|
|
98671
|
+
};
|
|
97871
98672
|
export declare type TrelloCreateCardAction = TrelloAction & TrelloCardActionData & {
|
|
97872
98673
|
__typename?: 'TrelloCreateCardAction';
|
|
97873
98674
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -98331,6 +99132,7 @@ export declare type TrelloListUpdated = {
|
|
|
98331
99132
|
id: Scalars['ID']['output'];
|
|
98332
99133
|
name?: Maybe<Scalars['String']['output']>;
|
|
98333
99134
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99135
|
+
onCardDeleted?: Maybe<Array<TrelloCardDeleted>>;
|
|
98334
99136
|
position?: Maybe<Scalars['Float']['output']>;
|
|
98335
99137
|
softLimit?: Maybe<Scalars['Int']['output']>;
|
|
98336
99138
|
};
|
|
@@ -98507,6 +99309,7 @@ export declare type TrelloMutationApi = {
|
|
|
98507
99309
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
98508
99310
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
98509
99311
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
99312
|
+
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
98510
99313
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
98511
99314
|
createOAuth2Application?: Maybe<TrelloCreateOAuth2ApplicationPayload>;
|
|
98512
99315
|
createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
|
|
@@ -98530,6 +99333,7 @@ export declare type TrelloMutationApi = {
|
|
|
98530
99333
|
updateBoardVisibility?: Maybe<TrelloUpdateBoardVisibilityPayload>;
|
|
98531
99334
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
98532
99335
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
99336
|
+
updateOAuth2AppCallbackUrls?: Maybe<TrelloUpdateOAuth2AppCallbackUrlsPayload>;
|
|
98533
99337
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
98534
99338
|
};
|
|
98535
99339
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
@@ -98541,6 +99345,9 @@ export declare type TrelloMutationApiArchiveCardArgs = {
|
|
|
98541
99345
|
export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
|
|
98542
99346
|
input: TrelloAssignCardToPlannerCalendarEventInput;
|
|
98543
99347
|
};
|
|
99348
|
+
export declare type TrelloMutationApiCreateApplicationArgs = {
|
|
99349
|
+
input: TrelloCreateApplicationInput;
|
|
99350
|
+
};
|
|
98544
99351
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
98545
99352
|
input: TrelloCreateCardInput;
|
|
98546
99353
|
};
|
|
@@ -98610,13 +99417,18 @@ export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
|
98610
99417
|
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
98611
99418
|
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
98612
99419
|
};
|
|
99420
|
+
export declare type TrelloMutationApiUpdateOAuth2AppCallbackUrlsArgs = {
|
|
99421
|
+
input: TrelloUpdateOAuth2AppCallbackUrlsInput;
|
|
99422
|
+
};
|
|
98613
99423
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
98614
99424
|
input: TrelloWatchCardInput;
|
|
98615
99425
|
};
|
|
98616
99426
|
export declare type TrelloOAuth2Client = {
|
|
98617
99427
|
__typename?: 'TrelloOAuth2Client';
|
|
99428
|
+
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
98618
99429
|
clientId: Scalars['String']['output'];
|
|
98619
99430
|
clientSecret: Scalars['String']['output'];
|
|
99431
|
+
profile: Scalars['String']['output'];
|
|
98620
99432
|
scopes?: Maybe<Array<TrelloOAuth2Scope>>;
|
|
98621
99433
|
};
|
|
98622
99434
|
export declare type TrelloOAuth2Scope = {
|
|
@@ -99596,6 +100408,17 @@ export declare type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
|
|
|
99596
100408
|
errors?: Maybe<Array<MutationError>>;
|
|
99597
100409
|
success: Scalars['Boolean']['output'];
|
|
99598
100410
|
};
|
|
100411
|
+
export declare type TrelloUpdateOAuth2AppCallbackUrlsInput = {
|
|
100412
|
+
callbackUrls: Array<Scalars['URL']['input']>;
|
|
100413
|
+
id: Scalars['ID']['input'];
|
|
100414
|
+
};
|
|
100415
|
+
export declare type TrelloUpdateOAuth2AppCallbackUrlsPayload = Payload & {
|
|
100416
|
+
__typename?: 'TrelloUpdateOAuth2AppCallbackUrlsPayload';
|
|
100417
|
+
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
100418
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100419
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
100420
|
+
success: Scalars['Boolean']['output'];
|
|
100421
|
+
};
|
|
99599
100422
|
export declare type TrelloUploadedBackground = {
|
|
99600
100423
|
__typename?: 'TrelloUploadedBackground';
|
|
99601
100424
|
objectId: Scalars['ID']['output'];
|
|
@@ -99748,6 +100571,7 @@ export declare type UnifiedAccessStatus = UnifiedINode & {
|
|
|
99748
100571
|
export declare type UnifiedAccount = UnifiedINode & {
|
|
99749
100572
|
__typename?: 'UnifiedAccount';
|
|
99750
100573
|
aaid: Scalars['String']['output'];
|
|
100574
|
+
atlassianOneUserId?: Maybe<Scalars['String']['output']>;
|
|
99751
100575
|
emailId: Scalars['String']['output'];
|
|
99752
100576
|
id: Scalars['ID']['output'];
|
|
99753
100577
|
internalId: Scalars['String']['output'];
|
|
@@ -99799,11 +100623,237 @@ export declare type UnifiedAdmins = UnifiedINode & {
|
|
|
99799
100623
|
admins?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
99800
100624
|
id: Scalars['ID']['output'];
|
|
99801
100625
|
};
|
|
100626
|
+
export declare type UnifiedAiAccount = UnifiedINode & {
|
|
100627
|
+
__typename?: 'UnifiedAiAccount';
|
|
100628
|
+
aaid: Scalars['String']['output'];
|
|
100629
|
+
created_at: Scalars['String']['output'];
|
|
100630
|
+
email_id?: Maybe<Scalars['String']['output']>;
|
|
100631
|
+
id: Scalars['ID']['output'];
|
|
100632
|
+
nickname?: Maybe<Scalars['String']['output']>;
|
|
100633
|
+
org_id?: Maybe<Scalars['String']['output']>;
|
|
100634
|
+
updated_at: Scalars['String']['output'];
|
|
100635
|
+
};
|
|
100636
|
+
export declare type UnifiedAiCategoriesResult = {
|
|
100637
|
+
__typename?: 'UnifiedAiCategoriesResult';
|
|
100638
|
+
categories: Array<UnifiedAiCategory>;
|
|
100639
|
+
};
|
|
100640
|
+
export declare type UnifiedAiCategory = UnifiedINode & {
|
|
100641
|
+
__typename?: 'UnifiedAiCategory';
|
|
100642
|
+
created_at: Scalars['String']['output'];
|
|
100643
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
100644
|
+
href: Scalars['String']['output'];
|
|
100645
|
+
id: Scalars['ID']['output'];
|
|
100646
|
+
is_active: Scalars['Boolean']['output'];
|
|
100647
|
+
name: Scalars['String']['output'];
|
|
100648
|
+
order: Scalars['Int']['output'];
|
|
100649
|
+
parent_id?: Maybe<Scalars['String']['output']>;
|
|
100650
|
+
type: Scalars['String']['output'];
|
|
100651
|
+
updated_at: Scalars['String']['output'];
|
|
100652
|
+
};
|
|
100653
|
+
export declare type UnifiedAiCategoryPayload = {
|
|
100654
|
+
__typename?: 'UnifiedAiCategoryPayload';
|
|
100655
|
+
category?: Maybe<UnifiedAiCategory>;
|
|
100656
|
+
errors?: Maybe<Array<Maybe<UnifiedAiError>>>;
|
|
100657
|
+
success: Scalars['Boolean']['output'];
|
|
100658
|
+
};
|
|
100659
|
+
export declare type UnifiedAiEditHistory = {
|
|
100660
|
+
__typename?: 'UnifiedAiEditHistory';
|
|
100661
|
+
edit_reason?: Maybe<Scalars['String']['output']>;
|
|
100662
|
+
edited_at: Scalars['String']['output'];
|
|
100663
|
+
editor?: Maybe<UnifiedAiAccount>;
|
|
100664
|
+
editor_id: Scalars['String']['output'];
|
|
100665
|
+
id: Scalars['ID']['output'];
|
|
100666
|
+
post_id: Scalars['String']['output'];
|
|
100667
|
+
};
|
|
100668
|
+
export declare type UnifiedAiError = {
|
|
100669
|
+
__typename?: 'UnifiedAiError';
|
|
100670
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
100671
|
+
extensions?: Maybe<UnifiedAiErrorExtensions>;
|
|
100672
|
+
message: Scalars['String']['output'];
|
|
100673
|
+
};
|
|
100674
|
+
export declare type UnifiedAiErrorExtensions = {
|
|
100675
|
+
__typename?: 'UnifiedAiErrorExtensions';
|
|
100676
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
100677
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
100678
|
+
};
|
|
100679
|
+
export declare type UnifiedAiMutation = {
|
|
100680
|
+
__typename?: 'UnifiedAiMutation';
|
|
100681
|
+
createForumCategory?: Maybe<UnifiedAiCategoryPayload>;
|
|
100682
|
+
createPost?: Maybe<UnifiedAiPostPayload>;
|
|
100683
|
+
deletePost?: Maybe<UnifiedAiPostPayload>;
|
|
100684
|
+
updatePost?: Maybe<UnifiedAiPostPayload>;
|
|
100685
|
+
};
|
|
100686
|
+
export declare type UnifiedAiMutationCreateForumCategoryArgs = {
|
|
100687
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
100688
|
+
href: Scalars['String']['input'];
|
|
100689
|
+
is_active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100690
|
+
name: Scalars['String']['input'];
|
|
100691
|
+
order?: InputMaybe<Scalars['Int']['input']>;
|
|
100692
|
+
parent_id?: InputMaybe<Scalars['String']['input']>;
|
|
100693
|
+
type: Scalars['String']['input'];
|
|
100694
|
+
};
|
|
100695
|
+
export declare type UnifiedAiMutationCreatePostArgs = {
|
|
100696
|
+
categoryId: Scalars['String']['input'];
|
|
100697
|
+
content: Scalars['String']['input'];
|
|
100698
|
+
title: Scalars['String']['input'];
|
|
100699
|
+
type: Scalars['String']['input'];
|
|
100700
|
+
};
|
|
100701
|
+
export declare type UnifiedAiMutationDeletePostArgs = {
|
|
100702
|
+
id: Scalars['String']['input'];
|
|
100703
|
+
};
|
|
100704
|
+
export declare type UnifiedAiMutationUpdatePostArgs = {
|
|
100705
|
+
content: Scalars['String']['input'];
|
|
100706
|
+
editReason?: InputMaybe<Scalars['String']['input']>;
|
|
100707
|
+
id: Scalars['String']['input'];
|
|
100708
|
+
};
|
|
100709
|
+
export declare type UnifiedAiPost = UnifiedINode & {
|
|
100710
|
+
__typename?: 'UnifiedAiPost';
|
|
100711
|
+
author?: Maybe<UnifiedAiAccount>;
|
|
100712
|
+
author_id: Scalars['String']['output'];
|
|
100713
|
+
category?: Maybe<UnifiedAiCategory>;
|
|
100714
|
+
category_id: Scalars['String']['output'];
|
|
100715
|
+
content: Scalars['String']['output'];
|
|
100716
|
+
created_at: Scalars['String']['output'];
|
|
100717
|
+
edit_history?: Maybe<Array<Maybe<UnifiedAiEditHistory>>>;
|
|
100718
|
+
id: Scalars['ID']['output'];
|
|
100719
|
+
is_locked: Scalars['Boolean']['output'];
|
|
100720
|
+
is_pinned: Scalars['Boolean']['output'];
|
|
100721
|
+
like_ids: Array<Scalars['String']['output']>;
|
|
100722
|
+
responses?: Maybe<Array<Maybe<UnifiedAiPost>>>;
|
|
100723
|
+
tags: Array<Scalars['String']['output']>;
|
|
100724
|
+
title: Scalars['String']['output'];
|
|
100725
|
+
type: Scalars['String']['output'];
|
|
100726
|
+
updated_at: Scalars['String']['output'];
|
|
100727
|
+
};
|
|
100728
|
+
export declare type UnifiedAiPostEdge = UnifiedIEdge & {
|
|
100729
|
+
__typename?: 'UnifiedAiPostEdge';
|
|
100730
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100731
|
+
node?: Maybe<UnifiedAiPost>;
|
|
100732
|
+
};
|
|
100733
|
+
export declare type UnifiedAiPostPayload = {
|
|
100734
|
+
__typename?: 'UnifiedAiPostPayload';
|
|
100735
|
+
errors?: Maybe<Array<Maybe<UnifiedAiError>>>;
|
|
100736
|
+
post?: Maybe<UnifiedAiPost>;
|
|
100737
|
+
success: Scalars['Boolean']['output'];
|
|
100738
|
+
};
|
|
100739
|
+
export declare type UnifiedAiPostResult = {
|
|
100740
|
+
__typename?: 'UnifiedAiPostResult';
|
|
100741
|
+
post: UnifiedAiPost;
|
|
100742
|
+
};
|
|
100743
|
+
export declare enum UnifiedAiPostSortField {
|
|
100744
|
+
CreatedAt = "CREATED_AT",
|
|
100745
|
+
IsPinned = "IS_PINNED",
|
|
100746
|
+
LastReplyAt = "LAST_REPLY_AT",
|
|
100747
|
+
Title = "TITLE",
|
|
100748
|
+
UpdatedAt = "UPDATED_AT",
|
|
100749
|
+
ViewCount = "VIEW_COUNT"
|
|
100750
|
+
}
|
|
100751
|
+
export declare enum UnifiedAiPostType {
|
|
100752
|
+
Article = "ARTICLE",
|
|
100753
|
+
Question = "QUESTION"
|
|
100754
|
+
}
|
|
100755
|
+
export declare type UnifiedAiPostsConnection = UnifiedIConnection & {
|
|
100756
|
+
__typename?: 'UnifiedAiPostsConnection';
|
|
100757
|
+
edges?: Maybe<Array<Maybe<UnifiedAiPostEdge>>>;
|
|
100758
|
+
pageInfo: UnifiedPageInfo;
|
|
100759
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
100760
|
+
};
|
|
100761
|
+
export declare type UnifiedAiPostsResult = {
|
|
100762
|
+
__typename?: 'UnifiedAiPostsResult';
|
|
100763
|
+
posts: Array<UnifiedAiPost>;
|
|
100764
|
+
};
|
|
100765
|
+
export declare type UnifiedAiQuery = {
|
|
100766
|
+
__typename?: 'UnifiedAiQuery';
|
|
100767
|
+
getAllPosts?: Maybe<UnifiedUAiPostsConnectionResult>;
|
|
100768
|
+
getForumCategories?: Maybe<UnifiedUAiCategoriesResult>;
|
|
100769
|
+
getPostById?: Maybe<UnifiedUAiPostResult>;
|
|
100770
|
+
getPostsByAuthorId?: Maybe<UnifiedUAiPostsResult>;
|
|
100771
|
+
getPostsByCategory?: Maybe<UnifiedUAiPostsResult>;
|
|
100772
|
+
};
|
|
100773
|
+
export declare type UnifiedAiQueryGetAllPostsArgs = {
|
|
100774
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
100775
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100776
|
+
isLocked?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100777
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100778
|
+
sortDirection?: InputMaybe<UnifiedSortDirection>;
|
|
100779
|
+
sortField?: InputMaybe<UnifiedAiPostSortField>;
|
|
100780
|
+
type?: InputMaybe<Array<UnifiedAiPostType>>;
|
|
100781
|
+
};
|
|
100782
|
+
export declare type UnifiedAiQueryGetPostByIdArgs = {
|
|
100783
|
+
id: Scalars['String']['input'];
|
|
100784
|
+
};
|
|
100785
|
+
export declare type UnifiedAiQueryGetPostsByAuthorIdArgs = {
|
|
100786
|
+
authorId: Scalars['String']['input'];
|
|
100787
|
+
};
|
|
100788
|
+
export declare type UnifiedAiQueryGetPostsByCategoryArgs = {
|
|
100789
|
+
categoryId: Scalars['String']['input'];
|
|
100790
|
+
};
|
|
99802
100791
|
export declare type UnifiedAllowList = UnifiedINode & {
|
|
99803
100792
|
__typename?: 'UnifiedAllowList';
|
|
99804
100793
|
allowList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
99805
100794
|
id: Scalars['ID']['output'];
|
|
99806
100795
|
};
|
|
100796
|
+
export declare type UnifiedAtlassianOneUser = UnifiedINode & {
|
|
100797
|
+
__typename?: 'UnifiedAtlassianOneUser';
|
|
100798
|
+
accounts?: Maybe<Array<UnifiedAccount>>;
|
|
100799
|
+
associatedUsers?: Maybe<Array<UnifiedAtlassianOneUser>>;
|
|
100800
|
+
createdAt: Scalars['String']['output'];
|
|
100801
|
+
currentActiveAssociatedId?: Maybe<Scalars['String']['output']>;
|
|
100802
|
+
id: Scalars['ID']['output'];
|
|
100803
|
+
previousAssociatedUser?: Maybe<UnifiedAtlassianOneUser>;
|
|
100804
|
+
updatedAt: Scalars['String']['output'];
|
|
100805
|
+
};
|
|
100806
|
+
export declare type UnifiedAtlassianOneUserConnection = UnifiedIConnection & {
|
|
100807
|
+
__typename?: 'UnifiedAtlassianOneUserConnection';
|
|
100808
|
+
edges?: Maybe<Array<Maybe<UnifiedAtlassianOneUserEdge>>>;
|
|
100809
|
+
pageInfo: UnifiedPageInfo;
|
|
100810
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
100811
|
+
};
|
|
100812
|
+
export declare type UnifiedAtlassianOneUserEdge = UnifiedIEdge & {
|
|
100813
|
+
__typename?: 'UnifiedAtlassianOneUserEdge';
|
|
100814
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100815
|
+
node?: Maybe<UnifiedAtlassianOneUser>;
|
|
100816
|
+
};
|
|
100817
|
+
export declare type UnifiedAtlassianOneUserInput = {
|
|
100818
|
+
currentActiveAssociatedId?: InputMaybe<Scalars['String']['input']>;
|
|
100819
|
+
};
|
|
100820
|
+
export declare type UnifiedAtlassianOneUserMutation = {
|
|
100821
|
+
__typename?: 'UnifiedAtlassianOneUserMutation';
|
|
100822
|
+
createAtlassianOneUser?: Maybe<UnifiedAtlassianOneUserPayload>;
|
|
100823
|
+
deleteAtlassianOneUser?: Maybe<UnifiedAtlassianOneUserPayload>;
|
|
100824
|
+
linkAccountToUser?: Maybe<UnifiedAtlassianOneUserPayload>;
|
|
100825
|
+
setCurrentActiveAssociatedUser?: Maybe<UnifiedAtlassianOneUserPayload>;
|
|
100826
|
+
updateAtlassianOneUser?: Maybe<UnifiedAtlassianOneUserPayload>;
|
|
100827
|
+
};
|
|
100828
|
+
export declare type UnifiedAtlassianOneUserMutationDeleteAtlassianOneUserArgs = {
|
|
100829
|
+
id: Scalars['ID']['input'];
|
|
100830
|
+
};
|
|
100831
|
+
export declare type UnifiedAtlassianOneUserMutationLinkAccountToUserArgs = {
|
|
100832
|
+
accountId: Scalars['ID']['input'];
|
|
100833
|
+
atlassianOneUserId: Scalars['ID']['input'];
|
|
100834
|
+
};
|
|
100835
|
+
export declare type UnifiedAtlassianOneUserMutationSetCurrentActiveAssociatedUserArgs = {
|
|
100836
|
+
currentActiveAssociatedId: Scalars['ID']['input'];
|
|
100837
|
+
id: Scalars['ID']['input'];
|
|
100838
|
+
};
|
|
100839
|
+
export declare type UnifiedAtlassianOneUserMutationUpdateAtlassianOneUserArgs = {
|
|
100840
|
+
id: Scalars['ID']['input'];
|
|
100841
|
+
input?: InputMaybe<UnifiedAtlassianOneUserInput>;
|
|
100842
|
+
};
|
|
100843
|
+
export declare type UnifiedAtlassianOneUserPayload = UnifiedPayload & {
|
|
100844
|
+
__typename?: 'UnifiedAtlassianOneUserPayload';
|
|
100845
|
+
atlassianOneUser?: Maybe<UnifiedAtlassianOneUser>;
|
|
100846
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
100847
|
+
success: Scalars['Boolean']['output'];
|
|
100848
|
+
};
|
|
100849
|
+
export declare type UnifiedAtlassianOneUserQuery = {
|
|
100850
|
+
__typename?: 'UnifiedAtlassianOneUserQuery';
|
|
100851
|
+
getAllAtlassianOneUsers?: Maybe<UnifiedUAtlassianOneUserConnectionResult>;
|
|
100852
|
+
getAtlassianOneUserById?: Maybe<UnifiedUAtlassianOneUserResult>;
|
|
100853
|
+
};
|
|
100854
|
+
export declare type UnifiedAtlassianOneUserQueryGetAtlassianOneUserByIdArgs = {
|
|
100855
|
+
id: Scalars['ID']['input'];
|
|
100856
|
+
};
|
|
99807
100857
|
export declare type UnifiedAtlassianProduct = UnifiedINode & {
|
|
99808
100858
|
__typename?: 'UnifiedAtlassianProduct';
|
|
99809
100859
|
id: Scalars['ID']['output'];
|
|
@@ -100310,6 +101360,8 @@ export declare type UnifiedLinkingStatusPayload = UnifiedPayload & {
|
|
|
100310
101360
|
export declare type UnifiedMutation = {
|
|
100311
101361
|
__typename?: 'UnifiedMutation';
|
|
100312
101362
|
account?: Maybe<UnifiedAccountMutation>;
|
|
101363
|
+
ai?: Maybe<UnifiedAiMutation>;
|
|
101364
|
+
atlassianOneUser?: Maybe<UnifiedAtlassianOneUserMutation>;
|
|
100313
101365
|
caching?: Maybe<UnifiedCachingMutation>;
|
|
100314
101366
|
community?: Maybe<UnifiedCommunityMutation>;
|
|
100315
101367
|
consent?: Maybe<UnifiedConsentMutation>;
|
|
@@ -100436,6 +101488,8 @@ export declare type UnifiedQuery = {
|
|
|
100436
101488
|
account?: Maybe<UnifiedUAccountResult>;
|
|
100437
101489
|
accountBasics?: Maybe<UnifiedUAccountBasicsResult>;
|
|
100438
101490
|
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
101491
|
+
ai?: Maybe<UnifiedAiQuery>;
|
|
101492
|
+
atlassianOneUser?: Maybe<UnifiedAtlassianOneUserQuery>;
|
|
100439
101493
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
100440
101494
|
caching?: Maybe<UnifiedCachingQuery>;
|
|
100441
101495
|
consent?: Maybe<UnifiedConsentQuery>;
|
|
@@ -100504,7 +101558,13 @@ export declare type UnifiedUAccountBasicsResult = UnifiedAccountBasics | Unified
|
|
|
100504
101558
|
export declare type UnifiedUAccountDetailsResult = UnifiedAccountDetails | UnifiedQueryError;
|
|
100505
101559
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
100506
101560
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
101561
|
+
export declare type UnifiedUAiCategoriesResult = UnifiedAiCategoriesResult | UnifiedQueryError;
|
|
101562
|
+
export declare type UnifiedUAiPostResult = UnifiedAiPostResult | UnifiedQueryError;
|
|
101563
|
+
export declare type UnifiedUAiPostsConnectionResult = UnifiedAiPostsConnection | UnifiedQueryError;
|
|
101564
|
+
export declare type UnifiedUAiPostsResult = UnifiedAiPostsResult | UnifiedQueryError;
|
|
100507
101565
|
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
|
|
101566
|
+
export declare type UnifiedUAtlassianOneUserConnectionResult = UnifiedAtlassianOneUserConnection | UnifiedQueryError;
|
|
101567
|
+
export declare type UnifiedUAtlassianOneUserResult = UnifiedAtlassianOneUser | UnifiedQueryError;
|
|
100508
101568
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
100509
101569
|
export declare type UnifiedUCacheKeyResult = UnifiedCacheKeyResult | UnifiedQueryError;
|
|
100510
101570
|
export declare type UnifiedUCacheResult = UnifiedCacheResult | UnifiedQueryError;
|