@forge/cli-shared 6.5.1-next.4 → 6.5.1
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 +20 -0
- package/out/graphql/graphql-types.d.ts +287 -35
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +28 -14
- package/package.json +3 -3
|
@@ -3955,6 +3955,22 @@ export declare type CompassAssistantAnswer = Node & {
|
|
|
3955
3955
|
status?: Maybe<Scalars['String']['output']>;
|
|
3956
3956
|
value?: Maybe<Scalars['String']['output']>;
|
|
3957
3957
|
};
|
|
3958
|
+
export declare type CompassAssistantConversation = {
|
|
3959
|
+
__typename?: 'CompassAssistantConversation';
|
|
3960
|
+
createdAt: Scalars['DateTime']['output'];
|
|
3961
|
+
id: Scalars['ID']['output'];
|
|
3962
|
+
messages: Array<CompassAssistantMessage>;
|
|
3963
|
+
state: Scalars['String']['output'];
|
|
3964
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
3965
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
3966
|
+
};
|
|
3967
|
+
export declare type CompassAssistantMessage = {
|
|
3968
|
+
__typename?: 'CompassAssistantMessage';
|
|
3969
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
3970
|
+
messageType: Scalars['String']['output'];
|
|
3971
|
+
role: Scalars['String']['output'];
|
|
3972
|
+
timestamp: Scalars['DateTime']['output'];
|
|
3973
|
+
};
|
|
3958
3974
|
export declare type CompassAttentionItem = Node & {
|
|
3959
3975
|
__typename?: 'CompassAttentionItem';
|
|
3960
3976
|
actionLabel: Scalars['String']['output'];
|
|
@@ -4085,6 +4101,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
4085
4101
|
applyScorecardToComponent?: Maybe<ApplyCompassScorecardToComponentPayload>;
|
|
4086
4102
|
attachComponentDataManager?: Maybe<AttachCompassComponentDataManagerPayload>;
|
|
4087
4103
|
attachEventSource?: Maybe<AttachEventSourcePayload>;
|
|
4104
|
+
continueChat?: Maybe<CompassAssistantConversation>;
|
|
4088
4105
|
createAnnouncement?: Maybe<CompassCreateAnnouncementPayload>;
|
|
4089
4106
|
createAssistantAnswer?: Maybe<CompassCreateAssistantAnswerPayload>;
|
|
4090
4107
|
createCampaign?: Maybe<CompassCreateCampaignPayload>;
|
|
@@ -4138,6 +4155,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
4138
4155
|
removeTeamLabels?: Maybe<CompassRemoveTeamLabelsPayload>;
|
|
4139
4156
|
revokeJqlMetricSourceUser?: Maybe<CompassRevokeJqlMetricSourceUserPayload>;
|
|
4140
4157
|
setEntityProperty?: Maybe<CompassSetEntityPropertyPayload>;
|
|
4158
|
+
startChat?: Maybe<CompassAssistantConversation>;
|
|
4141
4159
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
4142
4160
|
unlinkExternalSource?: Maybe<UnlinkExternalSourcePayload>;
|
|
4143
4161
|
unsetEntityProperty?: Maybe<CompassUnsetEntityPropertyPayload>;
|
|
@@ -4184,6 +4202,11 @@ export declare type CompassCatalogMutationApiAttachComponentDataManagerArgs = {
|
|
|
4184
4202
|
export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
|
|
4185
4203
|
input: AttachEventSourceInput;
|
|
4186
4204
|
};
|
|
4205
|
+
export declare type CompassCatalogMutationApiContinueChatArgs = {
|
|
4206
|
+
cloudId: Scalars['ID']['input'];
|
|
4207
|
+
conversationId: Scalars['ID']['input'];
|
|
4208
|
+
message: Scalars['String']['input'];
|
|
4209
|
+
};
|
|
4187
4210
|
export declare type CompassCatalogMutationApiCreateAnnouncementArgs = {
|
|
4188
4211
|
input: CompassCreateAnnouncementInput;
|
|
4189
4212
|
};
|
|
@@ -4352,6 +4375,10 @@ export declare type CompassCatalogMutationApiRevokeJqlMetricSourceUserArgs = {
|
|
|
4352
4375
|
export declare type CompassCatalogMutationApiSetEntityPropertyArgs = {
|
|
4353
4376
|
input: CompassSetEntityPropertyInput;
|
|
4354
4377
|
};
|
|
4378
|
+
export declare type CompassCatalogMutationApiStartChatArgs = {
|
|
4379
|
+
cloudId: Scalars['ID']['input'];
|
|
4380
|
+
message: Scalars['String']['input'];
|
|
4381
|
+
};
|
|
4355
4382
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
4356
4383
|
input?: InputMaybe<CompassSynchronizeLinkAssociationsInput>;
|
|
4357
4384
|
};
|
|
@@ -4441,6 +4468,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
4441
4468
|
componentTypes?: Maybe<CompassComponentTypesQueryResult>;
|
|
4442
4469
|
components?: Maybe<Array<CompassComponent>>;
|
|
4443
4470
|
componentsByReferences?: Maybe<Array<CompassComponent>>;
|
|
4471
|
+
conversation?: Maybe<CompassAssistantConversation>;
|
|
4444
4472
|
customFieldDefinition?: Maybe<CompassCustomFieldDefinitionResult>;
|
|
4445
4473
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
4446
4474
|
customPermissionConfigs?: Maybe<CompassCustomPermissionConfigsResult>;
|
|
@@ -4522,6 +4550,10 @@ export declare type CompassCatalogQueryApiComponentsArgs = {
|
|
|
4522
4550
|
export declare type CompassCatalogQueryApiComponentsByReferencesArgs = {
|
|
4523
4551
|
references: Array<ComponentReferenceInput>;
|
|
4524
4552
|
};
|
|
4553
|
+
export declare type CompassCatalogQueryApiConversationArgs = {
|
|
4554
|
+
cloudId: Scalars['ID']['input'];
|
|
4555
|
+
conversationId: Scalars['ID']['input'];
|
|
4556
|
+
};
|
|
4525
4557
|
export declare type CompassCatalogQueryApiCustomFieldDefinitionArgs = {
|
|
4526
4558
|
query: CompassCustomFieldDefinitionQuery;
|
|
4527
4559
|
};
|
|
@@ -22484,7 +22516,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
22484
22516
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
22485
22517
|
node?: Maybe<ExternalAssociation>;
|
|
22486
22518
|
};
|
|
22487
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
22519
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
22488
22520
|
export declare type ExternalAttachment = {
|
|
22489
22521
|
__typename?: 'ExternalAttachment';
|
|
22490
22522
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -22820,6 +22852,8 @@ export declare type ExternalEntities = {
|
|
|
22820
22852
|
document?: Maybe<Array<Maybe<ExternalDocument>>>;
|
|
22821
22853
|
featureFlag?: Maybe<Array<Maybe<ExternalFeatureFlag>>>;
|
|
22822
22854
|
message?: Maybe<Array<Maybe<ExternalMessage>>>;
|
|
22855
|
+
organisation?: Maybe<Array<Maybe<ExternalOrganisation>>>;
|
|
22856
|
+
position?: Maybe<Array<Maybe<ExternalPosition>>>;
|
|
22823
22857
|
pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
|
|
22824
22858
|
remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
|
|
22825
22859
|
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
@@ -22827,8 +22861,9 @@ export declare type ExternalEntities = {
|
|
|
22827
22861
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
22828
22862
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
22829
22863
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
22864
|
+
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
22830
22865
|
};
|
|
22831
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem;
|
|
22866
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
22832
22867
|
export declare type ExternalEnvironment = {
|
|
22833
22868
|
__typename?: 'ExternalEnvironment';
|
|
22834
22869
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -22960,12 +22995,47 @@ export declare type ExternalMessage = Node & {
|
|
|
22960
22995
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
22961
22996
|
url?: Maybe<Scalars['String']['output']>;
|
|
22962
22997
|
};
|
|
22998
|
+
export declare type ExternalOrganisation = Node & {
|
|
22999
|
+
__typename?: 'ExternalOrganisation';
|
|
23000
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
23001
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
23002
|
+
createdBy?: Maybe<ExternalUser>;
|
|
23003
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
23004
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
23005
|
+
id: Scalars['ID']['output'];
|
|
23006
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
23007
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
23008
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23009
|
+
parent?: Maybe<ExternalEntity>;
|
|
23010
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
23011
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23012
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23013
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
23014
|
+
};
|
|
22963
23015
|
export declare type ExternalPipeline = {
|
|
22964
23016
|
__typename?: 'ExternalPipeline';
|
|
22965
23017
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
22966
23018
|
id?: Maybe<Scalars['String']['output']>;
|
|
22967
23019
|
url?: Maybe<Scalars['String']['output']>;
|
|
22968
23020
|
};
|
|
23021
|
+
export declare type ExternalPosition = Node & {
|
|
23022
|
+
__typename?: 'ExternalPosition';
|
|
23023
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
23024
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
23025
|
+
createdBy?: Maybe<ExternalUser>;
|
|
23026
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
23027
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
23028
|
+
id: Scalars['ID']['output'];
|
|
23029
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
23030
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
23031
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23032
|
+
parent?: Maybe<ExternalEntity>;
|
|
23033
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
23034
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
23035
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23036
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23037
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
23038
|
+
};
|
|
22969
23039
|
export declare type ExternalProject = {
|
|
22970
23040
|
__typename?: 'ExternalProject';
|
|
22971
23041
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -23220,6 +23290,23 @@ export declare enum ExternalWorkItemSubtype {
|
|
|
23220
23290
|
Task = "TASK",
|
|
23221
23291
|
WorkItem = "WORK_ITEM"
|
|
23222
23292
|
}
|
|
23293
|
+
export declare type ExternalWorker = Node & {
|
|
23294
|
+
__typename?: 'ExternalWorker';
|
|
23295
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
23296
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
23297
|
+
createdBy?: Maybe<ExternalUser>;
|
|
23298
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
23299
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
23300
|
+
hiredAt?: Maybe<Scalars['String']['output']>;
|
|
23301
|
+
id: Scalars['ID']['output'];
|
|
23302
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
23303
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
23304
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23305
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23306
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23307
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
23308
|
+
workerUser?: Maybe<ExternalUser>;
|
|
23309
|
+
};
|
|
23223
23310
|
export declare type FailedRoles = {
|
|
23224
23311
|
__typename?: 'FailedRoles';
|
|
23225
23312
|
reason: Scalars['String']['output'];
|
|
@@ -28515,6 +28602,8 @@ export declare type GraphStore = {
|
|
|
28515
28602
|
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
28516
28603
|
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
28517
28604
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
28605
|
+
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
28606
|
+
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
28518
28607
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
28519
28608
|
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
28520
28609
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
@@ -28531,6 +28620,8 @@ export declare type GraphStore = {
|
|
|
28531
28620
|
userMergedPullRequestInverse?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseConnection>;
|
|
28532
28621
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
28533
28622
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
28623
|
+
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
28624
|
+
userReportedIncidentInverse?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseConnection>;
|
|
28534
28625
|
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
28535
28626
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28536
28627
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
@@ -28670,6 +28761,7 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
28670
28761
|
};
|
|
28671
28762
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
28672
28763
|
container_ids: Array<Scalars['ID']['input']>;
|
|
28764
|
+
ranking_criteria?: InputMaybe<GraphStoreAtlasHomeRankingCriteria>;
|
|
28673
28765
|
};
|
|
28674
28766
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalArgs = {
|
|
28675
28767
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30922,6 +31014,20 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
|
|
|
30922
31014
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30923
31015
|
id: Scalars['ID']['input'];
|
|
30924
31016
|
};
|
|
31017
|
+
export declare type GraphStoreUserAssignedIncidentArgs = {
|
|
31018
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31019
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31020
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31021
|
+
id: Scalars['ID']['input'];
|
|
31022
|
+
sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
|
|
31023
|
+
};
|
|
31024
|
+
export declare type GraphStoreUserAssignedIncidentInverseArgs = {
|
|
31025
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31026
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31027
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31028
|
+
id: Scalars['ID']['input'];
|
|
31029
|
+
sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
|
|
31030
|
+
};
|
|
30925
31031
|
export declare type GraphStoreUserAuthoredPrArgs = {
|
|
30926
31032
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30927
31033
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31034,6 +31140,20 @@ export declare type GraphStoreUserOwnsComponentInverseArgs = {
|
|
|
31034
31140
|
id: Scalars['ID']['input'];
|
|
31035
31141
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
31036
31142
|
};
|
|
31143
|
+
export declare type GraphStoreUserReportedIncidentArgs = {
|
|
31144
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31145
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31146
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31147
|
+
id: Scalars['ID']['input'];
|
|
31148
|
+
sort?: InputMaybe<GraphStoreUserReportedIncidentSortInput>;
|
|
31149
|
+
};
|
|
31150
|
+
export declare type GraphStoreUserReportedIncidentInverseArgs = {
|
|
31151
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31152
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31153
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31154
|
+
id: Scalars['ID']['input'];
|
|
31155
|
+
sort?: InputMaybe<GraphStoreUserReportedIncidentSortInput>;
|
|
31156
|
+
};
|
|
31037
31157
|
export declare type GraphStoreUserReportsIssueArgs = {
|
|
31038
31158
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31039
31159
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31474,6 +31594,13 @@ export declare type GraphStoreAtlasHomeQueryNode = {
|
|
|
31474
31594
|
item?: Maybe<GraphStoreAtlasHomeQueryItem>;
|
|
31475
31595
|
source: Scalars['String']['output'];
|
|
31476
31596
|
};
|
|
31597
|
+
export declare type GraphStoreAtlasHomeRankingCriteria = {
|
|
31598
|
+
criteria: GraphStoreAtlasHomeRankingCriteriaEnum;
|
|
31599
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
31600
|
+
};
|
|
31601
|
+
export declare enum GraphStoreAtlasHomeRankingCriteriaEnum {
|
|
31602
|
+
RoundRobinRandom = "ROUND_ROBIN_RANDOM"
|
|
31603
|
+
}
|
|
31477
31604
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
31478
31605
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
31479
31606
|
};
|
|
@@ -40080,6 +40207,34 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
|
|
|
40080
40207
|
};
|
|
40081
40208
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
|
|
40082
40209
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipUnion = ExternalBuildInfo;
|
|
40210
|
+
export declare type GraphStoreSimplifiedUserAssignedIncidentConnection = HasPageInfo & {
|
|
40211
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentConnection';
|
|
40212
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIncidentEdge>>>;
|
|
40213
|
+
pageInfo: PageInfo;
|
|
40214
|
+
};
|
|
40215
|
+
export declare type GraphStoreSimplifiedUserAssignedIncidentEdge = {
|
|
40216
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentEdge';
|
|
40217
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40218
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40219
|
+
id: Scalars['ID']['output'];
|
|
40220
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40221
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedIncidentUnion>;
|
|
40222
|
+
};
|
|
40223
|
+
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseConnection = HasPageInfo & {
|
|
40224
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentInverseConnection';
|
|
40225
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseEdge>>>;
|
|
40226
|
+
pageInfo: PageInfo;
|
|
40227
|
+
};
|
|
40228
|
+
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseEdge = {
|
|
40229
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentInverseEdge';
|
|
40230
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40231
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40232
|
+
id: Scalars['ID']['output'];
|
|
40233
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40234
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseUnion>;
|
|
40235
|
+
};
|
|
40236
|
+
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40237
|
+
export declare type GraphStoreSimplifiedUserAssignedIncidentUnion = JiraIssue;
|
|
40083
40238
|
export declare type GraphStoreSimplifiedUserAuthoredPrConnection = HasPageInfo & {
|
|
40084
40239
|
__typename?: 'GraphStoreSimplifiedUserAuthoredPrConnection';
|
|
40085
40240
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredPrEdge>>>;
|
|
@@ -40312,6 +40467,34 @@ export declare type GraphStoreSimplifiedUserOwnsComponentInverseEdge = {
|
|
|
40312
40467
|
};
|
|
40313
40468
|
export declare type GraphStoreSimplifiedUserOwnsComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40314
40469
|
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
40470
|
+
export declare type GraphStoreSimplifiedUserReportedIncidentConnection = HasPageInfo & {
|
|
40471
|
+
__typename?: 'GraphStoreSimplifiedUserReportedIncidentConnection';
|
|
40472
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentEdge>>>;
|
|
40473
|
+
pageInfo: PageInfo;
|
|
40474
|
+
};
|
|
40475
|
+
export declare type GraphStoreSimplifiedUserReportedIncidentEdge = {
|
|
40476
|
+
__typename?: 'GraphStoreSimplifiedUserReportedIncidentEdge';
|
|
40477
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40478
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40479
|
+
id: Scalars['ID']['output'];
|
|
40480
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40481
|
+
node?: Maybe<GraphStoreSimplifiedUserReportedIncidentUnion>;
|
|
40482
|
+
};
|
|
40483
|
+
export declare type GraphStoreSimplifiedUserReportedIncidentInverseConnection = HasPageInfo & {
|
|
40484
|
+
__typename?: 'GraphStoreSimplifiedUserReportedIncidentInverseConnection';
|
|
40485
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentInverseEdge>>>;
|
|
40486
|
+
pageInfo: PageInfo;
|
|
40487
|
+
};
|
|
40488
|
+
export declare type GraphStoreSimplifiedUserReportedIncidentInverseEdge = {
|
|
40489
|
+
__typename?: 'GraphStoreSimplifiedUserReportedIncidentInverseEdge';
|
|
40490
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40491
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40492
|
+
id: Scalars['ID']['output'];
|
|
40493
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40494
|
+
node?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseUnion>;
|
|
40495
|
+
};
|
|
40496
|
+
export declare type GraphStoreSimplifiedUserReportedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40497
|
+
export declare type GraphStoreSimplifiedUserReportedIncidentUnion = JiraIssue;
|
|
40315
40498
|
export declare type GraphStoreSimplifiedUserReportsIssueConnection = HasPageInfo & {
|
|
40316
40499
|
__typename?: 'GraphStoreSimplifiedUserReportsIssueConnection';
|
|
40317
40500
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportsIssueEdge>>>;
|
|
@@ -41242,6 +41425,9 @@ export declare type GraphStoreTestPerfhammerMaterializationSortInput = {
|
|
|
41242
41425
|
export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
41243
41426
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41244
41427
|
};
|
|
41428
|
+
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
41429
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41430
|
+
};
|
|
41245
41431
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
41246
41432
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41247
41433
|
};
|
|
@@ -41272,6 +41458,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
|
41272
41458
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41273
41459
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
41274
41460
|
};
|
|
41461
|
+
export declare type GraphStoreUserReportedIncidentSortInput = {
|
|
41462
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41463
|
+
};
|
|
41275
41464
|
export declare type GraphStoreUserReportsIssueSortInput = {
|
|
41276
41465
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41277
41466
|
};
|
|
@@ -50728,6 +50917,9 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
50728
50917
|
User = "USER",
|
|
50729
50918
|
Version = "VERSION"
|
|
50730
50919
|
}
|
|
50920
|
+
export declare type JiraJqlBoardInput = {
|
|
50921
|
+
boardId?: InputMaybe<Scalars['Long']['input']>;
|
|
50922
|
+
};
|
|
50731
50923
|
export declare type JiraJqlBuilder = {
|
|
50732
50924
|
__typename?: 'JiraJqlBuilder';
|
|
50733
50925
|
cascadingSelectValues?: Maybe<JiraJqlCascadingOptionFieldValueConnection>;
|
|
@@ -50760,6 +50952,7 @@ export declare type JiraJqlBuilderFieldValuesArgs = {
|
|
|
50760
50952
|
jqlContext?: InputMaybe<Scalars['String']['input']>;
|
|
50761
50953
|
jqlTerm: Scalars['String']['input'];
|
|
50762
50954
|
projectOptions?: InputMaybe<JiraProjectOptions>;
|
|
50955
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
50763
50956
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
50764
50957
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
50765
50958
|
};
|
|
@@ -51116,6 +51309,9 @@ export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
|
|
|
51116
51309
|
jqlTerm: Scalars['String']['output'];
|
|
51117
51310
|
resolution?: Maybe<JiraResolution>;
|
|
51118
51311
|
};
|
|
51312
|
+
export declare type JiraJqlScopeInput = {
|
|
51313
|
+
board?: InputMaybe<JiraJqlBoardInput>;
|
|
51314
|
+
};
|
|
51119
51315
|
export declare type JiraJqlSearchTemplate = {
|
|
51120
51316
|
__typename?: 'JiraJqlSearchTemplate';
|
|
51121
51317
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -59143,6 +59339,7 @@ export declare type JiraUserPreferences = {
|
|
|
59143
59339
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
59144
59340
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
59145
59341
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
59342
|
+
requestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
59146
59343
|
showDateFieldAssociationMessageByIssueKey?: Maybe<Scalars['Boolean']['output']>;
|
|
59147
59344
|
};
|
|
59148
59345
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
@@ -59151,12 +59348,16 @@ export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProject
|
|
|
59151
59348
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
59152
59349
|
projectKey: Scalars['String']['input'];
|
|
59153
59350
|
};
|
|
59351
|
+
export declare type JiraUserPreferencesRequestTypeTableViewSettingsArgs = {
|
|
59352
|
+
projectKey: Scalars['String']['input'];
|
|
59353
|
+
};
|
|
59154
59354
|
export declare type JiraUserPreferencesShowDateFieldAssociationMessageByIssueKeyArgs = {
|
|
59155
59355
|
issueKey: Scalars['String']['input'];
|
|
59156
59356
|
};
|
|
59157
59357
|
export declare type JiraUserPreferencesMutation = {
|
|
59158
59358
|
__typename?: 'JiraUserPreferencesMutation';
|
|
59159
59359
|
dismissDateFieldAssociationMessageByIssueKey?: Maybe<JiraDateFieldAssociationMessageMutationPayload>;
|
|
59360
|
+
saveRequestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
59160
59361
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
59161
59362
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
59162
59363
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
@@ -59165,6 +59366,10 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
59165
59366
|
export declare type JiraUserPreferencesMutationDismissDateFieldAssociationMessageByIssueKeyArgs = {
|
|
59166
59367
|
issueKey: Scalars['String']['input'];
|
|
59167
59368
|
};
|
|
59369
|
+
export declare type JiraUserPreferencesMutationSaveRequestTypeTableViewSettingsArgs = {
|
|
59370
|
+
projectKey: Scalars['String']['input'];
|
|
59371
|
+
viewSettings: Scalars['String']['input'];
|
|
59372
|
+
};
|
|
59168
59373
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
59169
59374
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
59170
59375
|
};
|
|
@@ -61657,6 +61862,15 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
|
61657
61862
|
Person = "PERSON",
|
|
61658
61863
|
Team = "TEAM"
|
|
61659
61864
|
}
|
|
61865
|
+
export declare enum KnowledgeDiscoverySearchQueryClassificationSubtype {
|
|
61866
|
+
Command = "COMMAND",
|
|
61867
|
+
Confluence = "CONFLUENCE",
|
|
61868
|
+
Evaluate = "EVALUATE",
|
|
61869
|
+
Jira = "JIRA",
|
|
61870
|
+
JobTitle = "JOB_TITLE",
|
|
61871
|
+
Llm = "LLM",
|
|
61872
|
+
Question = "QUESTION"
|
|
61873
|
+
}
|
|
61660
61874
|
export declare type KnowledgeDiscoverySearchRelatedEntities = {
|
|
61661
61875
|
__typename?: 'KnowledgeDiscoverySearchRelatedEntities';
|
|
61662
61876
|
entityGroups?: Maybe<Array<Maybe<KnowledgeDiscoveryEntityGroup>>>;
|
|
@@ -61665,6 +61879,7 @@ export declare type KnowledgeDiscoverySearchRelatedEntitiesResult = KnowledgeDis
|
|
|
61665
61879
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
61666
61880
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
61667
61881
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
61882
|
+
subTypes?: Maybe<Array<Maybe<KnowledgeDiscoverySearchQueryClassificationSubtype>>>;
|
|
61668
61883
|
transformedQuery: Scalars['String']['output'];
|
|
61669
61884
|
};
|
|
61670
61885
|
export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
|
|
@@ -63217,6 +63432,17 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
63217
63432
|
vendorId: Scalars['String']['output'];
|
|
63218
63433
|
vendorLinks?: Maybe<MarketplaceConsoleVendorLinks>;
|
|
63219
63434
|
};
|
|
63435
|
+
export declare type MarketplaceConsoleProductListingAdditionalChecks = {
|
|
63436
|
+
__typename?: 'MarketplaceConsoleProductListingAdditionalChecks';
|
|
63437
|
+
canProductBeDelisted?: Maybe<Scalars['Boolean']['output']>;
|
|
63438
|
+
isProductJiraCompatible?: Maybe<Scalars['Boolean']['output']>;
|
|
63439
|
+
};
|
|
63440
|
+
export declare type MarketplaceConsoleProductListingAdditionalChecksInput = {
|
|
63441
|
+
cloudAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
63442
|
+
dataCenterAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
63443
|
+
productId: Scalars['ID']['input'];
|
|
63444
|
+
serverAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
63445
|
+
};
|
|
63220
63446
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
63221
63447
|
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
63222
63448
|
category?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
@@ -63264,6 +63490,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
63264
63490
|
parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
|
|
63265
63491
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
63266
63492
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
63493
|
+
productListingAdditionalChecks?: Maybe<MarketplaceConsoleProductListingAdditionalChecks>;
|
|
63267
63494
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
63268
63495
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
63269
63496
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
@@ -63323,6 +63550,9 @@ export declare type MarketplaceConsoleQueryApiProductArgs = {
|
|
|
63323
63550
|
appKey: Scalars['ID']['input'];
|
|
63324
63551
|
productId: Scalars['ID']['input'];
|
|
63325
63552
|
};
|
|
63553
|
+
export declare type MarketplaceConsoleQueryApiProductListingAdditionalChecksArgs = {
|
|
63554
|
+
productListingAdditionalChecksInput: MarketplaceConsoleProductListingAdditionalChecksInput;
|
|
63555
|
+
};
|
|
63326
63556
|
export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
63327
63557
|
appId: Scalars['ID']['input'];
|
|
63328
63558
|
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -65196,6 +65426,7 @@ export declare type MercuryQueryApi = {
|
|
|
65196
65426
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
65197
65427
|
focusAreaTeamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
65198
65428
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
65429
|
+
focusAreaTypesByAris?: Maybe<Array<Maybe<MercuryFocusAreaType>>>;
|
|
65199
65430
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
65200
65431
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
65201
65432
|
forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
|
|
@@ -65257,6 +65488,9 @@ export declare type MercuryQueryApiFocusAreaTeamAllocationsArgs = {
|
|
|
65257
65488
|
export declare type MercuryQueryApiFocusAreaTypesArgs = {
|
|
65258
65489
|
cloudId: Scalars['ID']['input'];
|
|
65259
65490
|
};
|
|
65491
|
+
export declare type MercuryQueryApiFocusAreaTypesByArisArgs = {
|
|
65492
|
+
ids: Array<Scalars['ID']['input']>;
|
|
65493
|
+
};
|
|
65260
65494
|
export declare type MercuryQueryApiFocusAreasArgs = {
|
|
65261
65495
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65262
65496
|
cloudId: Scalars['ID']['input'];
|
|
@@ -73050,9 +73284,11 @@ export declare type QuerySpacesWithExemptionsArgs = {
|
|
|
73050
73284
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
73051
73285
|
};
|
|
73052
73286
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
73287
|
+
appId: Scalars['ID']['input'];
|
|
73053
73288
|
installationId: Scalars['ID']['input'];
|
|
73054
73289
|
};
|
|
73055
73290
|
export declare type QuerySqlSlowQueryLogsArgs = {
|
|
73291
|
+
appId: Scalars['ID']['input'];
|
|
73056
73292
|
installationId: Scalars['ID']['input'];
|
|
73057
73293
|
interval: QueryInterval;
|
|
73058
73294
|
queryType: Array<QueryType>;
|
|
@@ -73541,6 +73777,7 @@ export declare type RadarWorkspace = {
|
|
|
73541
73777
|
__typename?: 'RadarWorkspace';
|
|
73542
73778
|
entityId: Scalars['ID']['output'];
|
|
73543
73779
|
focusAreaFields: Array<RadarFieldDefinition>;
|
|
73780
|
+
focusAreaTypeFields: Array<RadarFieldDefinition>;
|
|
73544
73781
|
functions: Array<RadarFunction>;
|
|
73545
73782
|
id: Scalars['ID']['output'];
|
|
73546
73783
|
positionFields: Array<RadarFieldDefinition>;
|
|
@@ -80848,18 +81085,26 @@ export declare type TrelloAttachmentConnection = {
|
|
|
80848
81085
|
nodes?: Maybe<Array<TrelloAttachment>>;
|
|
80849
81086
|
pageInfo: PageInfo;
|
|
80850
81087
|
};
|
|
81088
|
+
export declare type TrelloAttachmentConnectionUpdated = {
|
|
81089
|
+
__typename?: 'TrelloAttachmentConnectionUpdated';
|
|
81090
|
+
edges?: Maybe<Array<TrelloAttachmentEdgeUpdated>>;
|
|
81091
|
+
};
|
|
80851
81092
|
export declare type TrelloAttachmentEdge = {
|
|
80852
81093
|
__typename?: 'TrelloAttachmentEdge';
|
|
80853
81094
|
cursor: Scalars['String']['output'];
|
|
80854
81095
|
node: TrelloAttachment;
|
|
80855
81096
|
};
|
|
81097
|
+
export declare type TrelloAttachmentEdgeUpdated = {
|
|
81098
|
+
__typename?: 'TrelloAttachmentEdgeUpdated';
|
|
81099
|
+
node: TrelloAttachment;
|
|
81100
|
+
};
|
|
80856
81101
|
export declare type TrelloBoard = Node & {
|
|
80857
81102
|
__typename?: 'TrelloBoard';
|
|
80858
81103
|
closed: Scalars['Boolean']['output'];
|
|
80859
81104
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
80860
81105
|
creator?: Maybe<TrelloMember>;
|
|
80861
81106
|
customFields?: Maybe<TrelloCustomFieldConnection>;
|
|
80862
|
-
description?: Maybe<
|
|
81107
|
+
description?: Maybe<TrelloUserGeneratedText>;
|
|
80863
81108
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
80864
81109
|
enterpriseOwned: Scalars['Boolean']['output'];
|
|
80865
81110
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
@@ -81053,6 +81298,7 @@ export declare type TrelloBoardPrefs = {
|
|
|
81053
81298
|
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
81054
81299
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
81055
81300
|
selfJoin?: Maybe<Scalars['Boolean']['output']>;
|
|
81301
|
+
showCompleteStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
81056
81302
|
switcherViews?: Maybe<Array<Maybe<TrelloSwitcherViewsInfo>>>;
|
|
81057
81303
|
voting?: Maybe<Scalars['String']['output']>;
|
|
81058
81304
|
};
|
|
@@ -81076,7 +81322,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
81076
81322
|
__typename?: 'TrelloBoardUpdated';
|
|
81077
81323
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
81078
81324
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
81079
|
-
description?: Maybe<
|
|
81325
|
+
description?: Maybe<TrelloUserGeneratedText>;
|
|
81080
81326
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
81081
81327
|
id?: Maybe<Scalars['ID']['output']>;
|
|
81082
81328
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
@@ -81137,7 +81383,7 @@ export declare type TrelloCard = Node & {
|
|
|
81137
81383
|
cover?: Maybe<TrelloCardCover>;
|
|
81138
81384
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
81139
81385
|
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
81140
|
-
description?: Maybe<
|
|
81386
|
+
description?: Maybe<TrelloUserGeneratedText>;
|
|
81141
81387
|
due?: Maybe<TrelloCardDueInfo>;
|
|
81142
81388
|
id: Scalars['ID']['output'];
|
|
81143
81389
|
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -81323,7 +81569,9 @@ export declare enum TrelloCardRole {
|
|
|
81323
81569
|
}
|
|
81324
81570
|
export declare type TrelloCardUpdated = {
|
|
81325
81571
|
__typename?: 'TrelloCardUpdated';
|
|
81572
|
+
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
81326
81573
|
badges?: Maybe<TrelloCardBadges>;
|
|
81574
|
+
checklists?: Maybe<TrelloChecklistConnectionUpdated>;
|
|
81327
81575
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
81328
81576
|
cover?: Maybe<TrelloCardCoverUpdated>;
|
|
81329
81577
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
@@ -81351,7 +81599,8 @@ export declare type TrelloCardViewer = {
|
|
|
81351
81599
|
};
|
|
81352
81600
|
export declare type TrelloCheckItem = {
|
|
81353
81601
|
__typename?: 'TrelloCheckItem';
|
|
81354
|
-
|
|
81602
|
+
due?: Maybe<TrelloCheckItemDueInfo>;
|
|
81603
|
+
name?: Maybe<TrelloUserGeneratedText>;
|
|
81355
81604
|
objectId: Scalars['ID']['output'];
|
|
81356
81605
|
position?: Maybe<Scalars['Float']['output']>;
|
|
81357
81606
|
state?: Maybe<TrelloCheckItemState>;
|
|
@@ -81362,11 +81611,24 @@ export declare type TrelloCheckItemConnection = {
|
|
|
81362
81611
|
nodes?: Maybe<Array<TrelloCheckItem>>;
|
|
81363
81612
|
pageInfo: PageInfo;
|
|
81364
81613
|
};
|
|
81614
|
+
export declare type TrelloCheckItemConnectionUpdated = {
|
|
81615
|
+
__typename?: 'TrelloCheckItemConnectionUpdated';
|
|
81616
|
+
edges?: Maybe<Array<TrelloCheckItemEdgeUpdated>>;
|
|
81617
|
+
};
|
|
81618
|
+
export declare type TrelloCheckItemDueInfo = {
|
|
81619
|
+
__typename?: 'TrelloCheckItemDueInfo';
|
|
81620
|
+
at?: Maybe<Scalars['DateTime']['output']>;
|
|
81621
|
+
reminder?: Maybe<Scalars['Int']['output']>;
|
|
81622
|
+
};
|
|
81365
81623
|
export declare type TrelloCheckItemEdge = {
|
|
81366
81624
|
__typename?: 'TrelloCheckItemEdge';
|
|
81367
81625
|
cursor: Scalars['String']['output'];
|
|
81368
81626
|
node: TrelloCheckItem;
|
|
81369
81627
|
};
|
|
81628
|
+
export declare type TrelloCheckItemEdgeUpdated = {
|
|
81629
|
+
__typename?: 'TrelloCheckItemEdgeUpdated';
|
|
81630
|
+
node: TrelloCheckItem;
|
|
81631
|
+
};
|
|
81370
81632
|
export declare enum TrelloCheckItemState {
|
|
81371
81633
|
Complete = "COMPLETE",
|
|
81372
81634
|
Incomplete = "INCOMPLETE"
|
|
@@ -81390,11 +81652,26 @@ export declare type TrelloChecklistConnection = {
|
|
|
81390
81652
|
nodes?: Maybe<Array<TrelloChecklist>>;
|
|
81391
81653
|
pageInfo: PageInfo;
|
|
81392
81654
|
};
|
|
81655
|
+
export declare type TrelloChecklistConnectionUpdated = {
|
|
81656
|
+
__typename?: 'TrelloChecklistConnectionUpdated';
|
|
81657
|
+
edges?: Maybe<Array<TrelloChecklistEdgeUpdated>>;
|
|
81658
|
+
};
|
|
81393
81659
|
export declare type TrelloChecklistEdge = {
|
|
81394
81660
|
__typename?: 'TrelloChecklistEdge';
|
|
81395
81661
|
cursor: Scalars['String']['output'];
|
|
81396
81662
|
node: TrelloChecklist;
|
|
81397
81663
|
};
|
|
81664
|
+
export declare type TrelloChecklistEdgeUpdated = {
|
|
81665
|
+
__typename?: 'TrelloChecklistEdgeUpdated';
|
|
81666
|
+
node: TrelloChecklistUpdated;
|
|
81667
|
+
};
|
|
81668
|
+
export declare type TrelloChecklistUpdated = {
|
|
81669
|
+
__typename?: 'TrelloChecklistUpdated';
|
|
81670
|
+
checkItems?: Maybe<TrelloCheckItemConnectionUpdated>;
|
|
81671
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
81672
|
+
objectId: Scalars['ID']['output'];
|
|
81673
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
81674
|
+
};
|
|
81398
81675
|
export declare type TrelloCreateCardInput = {
|
|
81399
81676
|
listId: Scalars['ID']['input'];
|
|
81400
81677
|
name: Scalars['String']['input'];
|
|
@@ -81516,35 +81793,6 @@ export declare type TrelloDeletePlannerCalendarEventPayload = Payload & {
|
|
|
81516
81793
|
event?: Maybe<TrelloPlannerCalendarEventDeleted>;
|
|
81517
81794
|
success: Scalars['Boolean']['output'];
|
|
81518
81795
|
};
|
|
81519
|
-
export declare type TrelloDescription = {
|
|
81520
|
-
__typename?: 'TrelloDescription';
|
|
81521
|
-
customData?: Maybe<TrelloDescriptionData>;
|
|
81522
|
-
text?: Maybe<Scalars['String']['output']>;
|
|
81523
|
-
};
|
|
81524
|
-
export declare type TrelloDescriptionCustomEmoji = {
|
|
81525
|
-
__typename?: 'TrelloDescriptionCustomEmoji';
|
|
81526
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
81527
|
-
url?: Maybe<Scalars['URL']['output']>;
|
|
81528
|
-
};
|
|
81529
|
-
export declare type TrelloDescriptionCustomEmojiConnection = {
|
|
81530
|
-
__typename?: 'TrelloDescriptionCustomEmojiConnection';
|
|
81531
|
-
edges?: Maybe<Array<TrelloDescriptionCustomEmojiEdge>>;
|
|
81532
|
-
nodes?: Maybe<Array<TrelloDescriptionCustomEmoji>>;
|
|
81533
|
-
pageInfo: PageInfo;
|
|
81534
|
-
};
|
|
81535
|
-
export declare type TrelloDescriptionCustomEmojiEdge = {
|
|
81536
|
-
__typename?: 'TrelloDescriptionCustomEmojiEdge';
|
|
81537
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
81538
|
-
node?: Maybe<TrelloDescriptionCustomEmoji>;
|
|
81539
|
-
};
|
|
81540
|
-
export declare type TrelloDescriptionData = {
|
|
81541
|
-
__typename?: 'TrelloDescriptionData';
|
|
81542
|
-
emojis?: Maybe<TrelloDescriptionCustomEmojiConnection>;
|
|
81543
|
-
};
|
|
81544
|
-
export declare type TrelloDescriptionDataEmojisArgs = {
|
|
81545
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
81546
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81547
|
-
};
|
|
81548
81796
|
export declare type TrelloEditPlannerCalendarEventInput = {
|
|
81549
81797
|
event: TrelloEditPlannerCalendarEventOptions;
|
|
81550
81798
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -82475,6 +82723,10 @@ export declare type TrelloUploadedBackground = {
|
|
|
82475
82723
|
__typename?: 'TrelloUploadedBackground';
|
|
82476
82724
|
objectId: Scalars['ID']['output'];
|
|
82477
82725
|
};
|
|
82726
|
+
export declare type TrelloUserGeneratedText = {
|
|
82727
|
+
__typename?: 'TrelloUserGeneratedText';
|
|
82728
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
82729
|
+
};
|
|
82478
82730
|
export declare type TrelloWatchCardInput = {
|
|
82479
82731
|
cardId: Scalars['ID']['input'];
|
|
82480
82732
|
};
|